commits

date

comment

94773
by DarthObiwan
(1129 downloads)
Dec 14 2011
11:35 PM

Added missing csproj file for HAPPhone.7.1

94772
by DarthObiwan
(16 downloads)
Dec 14 2011
11:01 PM

Added HAPPhone.7.1 project

91044
by DarthObiwan
(806 downloads)
Jul 12 2011
10:04 PM

Updated HAPLight project to include the links to the XPAth partial classes for SL4
Updates for nuget build to support newer version of the nuget.exe

85383
by DarthObiwan
(736 downloads)
Feb 25 2011
1:19 AM

85382
by DarthObiwan
(17 downloads)
Feb 25 2011
1:17 AM

Added NuGet package building
Added patch 7581
Set to be ComVisible for unmanaged usage

85381
by DarthObiwan
(14 downloads)
Feb 25 2011
1:07 AM

Removed the .NET 4.0 experimental project from the main solution

77494
by DarthObiwan
(2265 downloads)
Sep 26 2010
2:46 AM

Initial HAPPhone checkin

76611
by DarthObiwan
(268 downloads)
Aug 29 2010
10:14 PM

reverted GetDocLinks.cs from the samples, removed test code

76610
by DarthObiwan
(21 downloads)
Aug 29 2010
10:12 PM

Added OverrideEncoding to HtmlWeb to allow the Encoding used to read the HttpWebResponse stream to be changed from the default

67079
by DarthObiwan
(657 downloads)
Jun 7 2010
1:39 AM

Associated with Release: Experimental Xpath Updates.

Added Xpath Unit Tests

67078
by DarthObiwan
(16 downloads)
Jun 7 2010
1:29 AM

67077
by DarthObiwan
(7 downloads)
Jun 7 2010
1:27 AM

Added a few files missed in first commit

67076
by DarthObiwan
(5 downloads)
Jun 7 2010
1:25 AM

Added Experimental 2.0 branch for testing breaking changes

67074
by DarthObiwan
(8 downloads)
Jun 7 2010
1:22 AM

67069
by DarthObiwan
(1 download)
Jun 7 2010
12:27 AM

Updates for HAPDynamic to create HtmlNodes and HtmlAttributes if they do not exist when they are invoked dynamically. Currently code is commented out.

67010
by DarthObiwan
(17 downloads)
Jun 6 2010
4:59 PM

Fixed build error for HtmlAgilityPack for .NET 2.0
Removed unneeded libraries for HAPLight
Cleaned up usage of some precompiler directives
Added a fake DebuggerDisplayAttribute for HAPCompact

66937
by DarthObiwan
(17 downloads)
Jun 6 2010
4:56 AM

Added HtmlWeb class for Silverlight. Caching, Cookies and Proxies are removed due to the browser already handling those duties.
HtmlWeb provides for a basic routines for asynchronously downloading a webpage and parsing it into an HtmlDocument object

66896
by DarthObiwan
(4 downloads)
Jun 5 2010
11:35 PM

fixed typo in DynamicTests

66864
by DarthObiwan
(21 downloads)
Jun 5 2010
8:40 PM

Added .NET 4.0 HtmlAgilityPack project.
Extended HtmlNode to inherit from Dynamic Object.
Added dynamic get methods to retrieve HtmlNodes and HtmlAttributes from Childnodes and Attributes respectively
Added unit tests to for dynamically retrieving HtmlNodes and HtmlAttributes.
Example: var body = ((dynamic)doc.DocumentElement).Html.Body;
Example Attribute with _ prefix: var attr = ((dynamic)doc.DocumentElement).Html.Body._Class;

66378
by DarthObiwan
(30 downloads)
Jun 2 2010
4:30 PM

Added missing CompactExtensions.cs class.
Set some user specific files to ignored/deleted

66377
by DarthObiwan
(3 downloads)
Jun 2 2010
4:28 PM

Precompiler directive for AssemblyInfo.cs to remove attributes unavailable in .NET CF

66376
by DarthObiwan
(12 downloads)
Jun 2 2010
4:27 PM

Added HAPCompact project. This can be used in .NET CF 3.5
Split HtmlNode and HtmlDocument classes into partials so the XPATH parts can be excluded from HAPCompact.
Added some Precompiler #if POCKETPC directives to change code for .NETC.
HAPCompact does not have the HtmlWeb and HtmlCmdLine classes. It is also missing any XPATH related methods for HtmlNode and HtmlDocument. Use LINQ to Objects instead

66342
by DarthObiwan
(35 downloads)
May 30 2010
5:38 AM

66341
by DarthObiwan
(4 downloads)
May 30 2010
5:37 AM

Updated HAPExplorer keep a history of urls retrieved

66340
by DarthObiwan
(3 downloads)
May 30 2010
5:24 AM

Fixed a few parsing issues related to the changing from Hashset to Dictionary
Added more unit tests for testing removing/replacing/inserting nodes.
General code cleanups and refactoring