[fizzler] 6 new revisions pushed by azizatif on 2013-01-20 18:12 GMT

2 views
Skip to first unread message

fiz...@googlecode.com

unread,
Jan 20, 2013, 1:12:30 PM1/20/13
to fizzler...@googlegroups.com
6 new revisions:

Revision: 48d979acbaa0
Branch: default
Author: azizatif
Date: Sun Jan 20 09:51:14 2013
Log: Simpler way to look up a key that may not be in a dictionary
http://code.google.com/p/fizzler/source/detail?r=48d979acbaa0

Revision: c2e073074657
Branch: default
Author: azizatif
Date: Sun Jan 20 09:56:09 2013
Log: PUSHD stack leak in packaging batch script
http://code.google.com/p/fizzler/source/detail?r=c2e073074657

Revision: 22db709fa745
Branch: default
Author: azizatif
Date: Sun Jan 20 09:59:06 2013
Log: Separate nuspec for tools
http://code.google.com/p/fizzler/source/detail?r=22db709fa745

Revision: dc312223da38
Branch: default
Author: azizatif
Date: Sun Jan 20 10:00:56 2013
Log: Adding copyright and license files to nuspecs
http://code.google.com/p/fizzler/source/detail?r=dc312223da38

Revision: 6b0eaa3ada43
Branch: default
Author: azizatif
Date: Sun Jan 20 10:03:49 2013
Log: Suppressing warnings during building of Fizzler.Tools package
http://code.google.com/p/fizzler/source/detail?r=6b0eaa3ada43

Revision: 77a0ac7f7479
Branch: default
Author: azizatif
Date: Sun Jan 20 10:11:21 2013
Log: Fixing "External packages cannot depend on packages that target
projec...
http://code.google.com/p/fizzler/source/detail?r=77a0ac7f7479

==============================================================================
Revision: 48d979acbaa0
Branch: default
Author: azizatif
Date: Sun Jan 20 09:51:14 2013
Log: Simpler way to look up a key that may not be in a dictionary
http://code.google.com/p/fizzler/source/detail?r=48d979acbaa0

Modified:
/ConsoleFizzler/Program.cs

=======================================
--- /ConsoleFizzler/Program.cs Sat Jan 19 10:12:09 2013
+++ /ConsoleFizzler/Program.cs Sun Jan 20 09:51:14 2013
@@ -27,7 +27,7 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
-
+ using Mannex.Collections.Generic;
using CommandNames = System.Collections.Generic.KeyValuePair<
/* key */ System.Func<ICommand>,
/* value */ System.Collections.Generic.IEnumerable<string>>;
@@ -65,8 +65,8 @@

var name = args[0];

- Func<ICommand> command;
- if (!commands.TryGetValue(name, out command))
+ var command = commands.Find(name);
+ if (command == null)
throw new ApplicationException("Invalid command.");

return command().Run(args.Skip(1).ToArray());

==============================================================================
Revision: c2e073074657
Branch: default
Author: azizatif
Date: Sun Jan 20 09:56:09 2013
Log: PUSHD stack leak in packaging batch script
http://code.google.com/p/fizzler/source/detail?r=c2e073074657

Modified:
/pack.cmd

=======================================
--- /pack.cmd Sat Jan 19 14:47:29 2013
+++ /pack.cmd Sun Jan 20 09:56:09 2013
@@ -1,7 +1,12 @@
@echo off
setlocal
-chcp 1252 > nul
pushd "%~dp0"
+call :main %*
+popd
+goto :EOF
+
+:main
if not exist dist md dist
if not %errorlevel%==0 exit /b %errorlevel%
call build /v:m && for %%i in (*.nuspec) do .nuget\NuGet pack %%i
-OutputDirectory dist
+goto :EOF

==============================================================================
Revision: 22db709fa745
Branch: default
Author: azizatif
Date: Sun Jan 20 09:59:06 2013
Log: Separate nuspec for tools
http://code.google.com/p/fizzler/source/detail?r=22db709fa745

Added:
/Fizzler.Tools.nuspec
Modified:
/Fizzler.sln

=======================================
--- /dev/null
+++ /Fizzler.Tools.nuspec Sun Jan 20 09:59:06 2013
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
+ <metadata>
+ <id>Fizzler.Tools</id>
+ <version>1.0.0-beta1</version>
+ <title>Fizzler Tools</title>
+ <authors>Atif Aziz, Colin Ramsay</authors>
+ <owners>Atif Aziz</owners>
+ <licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
+ <projectUrl>https://fizzler.googlecode.com/</projectUrl>
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
+ <description>Fizzler is a CSS Selector parser and generic selector
framework for document hierarchies. Fizzler also comes with a default
implementation over HTMLAgilityPack that enables QuerySelector and
QuerySelectorAll (from Selectors API Level 1) for HtmlNode
objects.</description>
+ <summary>CSS Selector Engine for Microsoft .NET Framework</summary>
+ <tags>htmlagility fizzler css html</tags>
+ <dependencies>
+ <dependency id="HtmlAgilityPack" version="1.4.6" />
+ </dependencies>
+ </metadata>
+ <files>
+ <file src="bin\Release\fizz.exe" target="tools\fizz.exe" />
+ <file src="bin\Release\fizz.exe.config"
target="tools\fizz.exe.config" />
+ <file src="bin\Release\fizz.pdb" target="tools\fizz.pdb" />
+ <file src="bin\Release\Fizzler.dll" target="tools\Fizzler.dll" />
+ <file src="bin\Release\Fizzler.pdb" target="tools\Fizzler.pdb" />
+ <file src="bin\Release\Fizzler.Systems.HtmlAgilityPack.dll"
target="tools\Fizzler.Systems.HtmlAgilityPack.dll" />
+ <file src="bin\Release\Fizzler.Systems.HtmlAgilityPack.pdb"
target="tools\Fizzler.Systems.HtmlAgilityPack.pdb" />
+ <file src="bin\Release\HtmlAgilityPack.dll"
target="tools\HtmlAgilityPack.dll" />
+ <file src="bin\Release\HtmlAgilityPack.pdb"
target="tools\HtmlAgilityPack.pdb" />
+ <file src="bin\Release\Mannex.dll" target="tools\Mannex.dll" />
+ <file src="bin\Release\VisualFizzler.exe"
target="tools\VisualFizzler.exe" />
+ <file src="bin\Release\VisualFizzler.pdb"
target="tools\VisualFizzler.pdb" /> </files>
+</package>
=======================================
--- /Fizzler.sln Sat Jan 19 14:54:08 2013
+++ /Fizzler.sln Sun Jan 20 09:59:06 2013
@@ -9,6 +9,7 @@
COPYING.txt = COPYING.txt
default.build = default.build
Fizzler.nuspec = Fizzler.nuspec
+ Fizzler.Tools.nuspec = Fizzler.Tools.nuspec
pack.cmd = pack.cmd
packw.cmd = packw.cmd
EndProjectSection

==============================================================================
Revision: dc312223da38
Branch: default
Author: azizatif
Date: Sun Jan 20 10:00:56 2013
Log: Adding copyright and license files to nuspecs
http://code.google.com/p/fizzler/source/detail?r=dc312223da38

Modified:
/Fizzler.Tools.nuspec
/Fizzler.nuspec

=======================================
--- /Fizzler.Tools.nuspec Sun Jan 20 09:59:06 2013
+++ /Fizzler.Tools.nuspec Sun Jan 20 10:00:56 2013
@@ -8,6 +8,7 @@
<owners>Atif Aziz</owners>
<licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
<projectUrl>https://fizzler.googlecode.com/</projectUrl>
+ <copyright>Copyright (c) 2009 Atif Aziz, Colin Ramsay. All rights
reserved.</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Fizzler is a CSS Selector parser and generic selector
framework for document hierarchies. Fizzler also comes with a default
implementation over HTMLAgilityPack that enables QuerySelector and
QuerySelectorAll (from Selectors API Level 1) for HtmlNode
objects.</description>
<summary>CSS Selector Engine for Microsoft .NET Framework</summary>
@@ -17,6 +18,8 @@
</dependencies>
</metadata>
<files>
+ <file src="COPYING.txt" target="COPYING.txt" />
+ <file src="COPYING.LESSER.txt" target="COPYING.LESSER.txt" />
<file src="bin\Release\fizz.exe" target="tools\fizz.exe" />
<file src="bin\Release\fizz.exe.config"
target="tools\fizz.exe.config" />
<file src="bin\Release\fizz.pdb" target="tools\fizz.pdb" />
=======================================
--- /Fizzler.nuspec Sat Jan 19 14:47:04 2013
+++ /Fizzler.nuspec Sun Jan 20 10:00:56 2013
@@ -8,6 +8,7 @@
<owners>Atif Aziz</owners>
<licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
<projectUrl>https://fizzler.googlecode.com/</projectUrl>
+ <copyright>Copyright (c) 2009 Atif Aziz, Colin Ramsay. All rights
reserved.</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Fizzler is a CSS Selector parser and generic selector
framework for document hierarchies. Fizzler also comes with a default
implementation over HTMLAgilityPack that enables QuerySelector and
QuerySelectorAll (from Selectors API Level 1) for HtmlNode
objects.</description>
<summary>CSS Selector Engine for Microsoft .NET Framework</summary>
@@ -23,6 +24,8 @@
</dependencies>
</metadata>
<files>
+ <file src="COPYING.txt" target="COPYING.txt" />
+ <file src="COPYING.LESSER.txt" target="COPYING.LESSER.txt" />
<file src="bin\NET-2.0\Release\Fizzler.dll"
target="lib\net20\Fizzler.dll" />
<file src="bin\NET-2.0\Release\Fizzler.xml"
target="lib\net20\Fizzler.xml" />
<file
src="bin\NET-2.0\Release\Fizzler.Systems.HtmlAgilityPack.dll"
target="lib\net20\Fizzler.Systems.HtmlAgilityPack.dll" />

==============================================================================
Revision: 6b0eaa3ada43
Branch: default
Author: azizatif
Date: Sun Jan 20 10:03:49 2013
Log: Suppressing warnings during building of Fizzler.Tools package
http://code.google.com/p/fizzler/source/detail?r=6b0eaa3ada43

Modified:
/pack.cmd

=======================================
--- /pack.cmd Sun Jan 20 09:56:09 2013
+++ /pack.cmd Sun Jan 20 10:03:49 2013
@@ -8,5 +8,6 @@
:main
if not exist dist md dist
if not %errorlevel%==0 exit /b %errorlevel%
-call build /v:m && for %%i in (*.nuspec) do .nuget\NuGet pack %%i
-OutputDirectory dist
+set nupack=.nuget\NuGet pack -OutputDirectory dist
+call build /v:m && %nupack% Fizzler.nuspec && %nupack% -NoPackageAnalysis
Fizzler.Tools.nuspec
goto :EOF

==============================================================================
Revision: 77a0ac7f7479
Branch: default
Author: azizatif
Date: Sun Jan 20 10:11:21 2013
Log: Fixing "External packages cannot depend on packages that target
projects" for Fizzler.Tools
http://code.google.com/p/fizzler/source/detail?r=77a0ac7f7479

Modified:
/Fizzler.Tools.nuspec

=======================================
--- /Fizzler.Tools.nuspec Sun Jan 20 10:00:56 2013
+++ /Fizzler.Tools.nuspec Sun Jan 20 10:11:21 2013
@@ -13,9 +13,6 @@
<description>Fizzler is a CSS Selector parser and generic selector
framework for document hierarchies. Fizzler also comes with a default
implementation over HTMLAgilityPack that enables QuerySelector and
QuerySelectorAll (from Selectors API Level 1) for HtmlNode
objects.</description>
<summary>CSS Selector Engine for Microsoft .NET Framework</summary>
<tags>htmlagility fizzler css html</tags>
- <dependencies>
- <dependency id="HtmlAgilityPack" version="1.4.6" />
- </dependencies>
</metadata>
<files>
<file src="COPYING.txt" target="COPYING.txt" />
Reply all
Reply to author
Forward
0 new messages