summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Manually merge r7070 into trunkJohn Mark Bell2009-04-1528-973/+1559
| | | | svn path=/trunk/hubbub/; revision=7082
* Improve error handling in the tokeniserJohn Mark Bell2009-04-061-62/+154
| | | | svn path=/trunk/hubbub/; revision=7052
* Remove hubbub_parser_parse_extraneous_chunk -- this is not supported yet. ↵John Mark Bell2009-04-042-4/+2
| | | | | | Surround implementation with #if 0 pending its reintroduction svn path=/trunk/hubbub/; revision=7045
* ConstifyJohn Mark Bell2009-04-042-4/+4
| | | | svn path=/trunk/hubbub/; revision=7044
* hubbub_alloc -> hubbub_allocator_fnJohn Mark Bell2009-04-0414-22/+26
| | | | svn path=/trunk/hubbub/; revision=7043
* Move tree callback definitions into tree.hJohn Mark Bell2009-04-042-218/+218
| | | | svn path=/trunk/hubbub/; revision=7042
* Move hubbub_error_from_string into testutils.h and remove it from the library.John Mark Bell2009-04-043-27/+27
| | | | svn path=/trunk/hubbub/; revision=7041
* Shared library versioningJohn Mark Bell2009-04-032-14/+16
| | | | svn path=/trunk/hubbub/; revision=7036
* Require libparserutils, rather than munging Libs:John Mark Bell2009-03-311-1/+2
| | | | svn path=/trunk/hubbub/; revision=7011
* Purge testrunnerJohn Mark Bell2009-03-261-257/+0
| | | | svn path=/trunk/hubbub/; revision=6893
* Simplify json requirementsJohn Mark Bell2009-03-251-18/+8
| | | | svn path=/trunk/hubbub/; revision=6880
* Make testcases compile in release modeJohn Mark Bell2009-03-253-1/+56
| | | | svn path=/trunk/hubbub/; revision=6878
* Port to new test scheme.John Mark Bell2009-03-253-4/+6
| | | | | | Avoid strict-aliasing warnings. svn path=/trunk/hubbub/; revision=6870
* Sync svn:ignore with reality. Lose old core makefileJohn Mark Bell2009-03-241-170/+0
| | | | svn path=/trunk/hubbub/; revision=6851
* Declare testrunnerJohn Mark Bell2009-03-241-0/+2
| | | | svn path=/trunk/hubbub/; revision=6847
* Fix determination of whether json is requiredJohn Mark Bell2009-03-242-9/+26
| | | | svn path=/trunk/hubbub/; revision=6846
* Purge redundant makefilesJohn Mark Bell2009-03-242-113/+0
| | | | svn path=/trunk/hubbub/; revision=6845
* Sync with core.John Mark Bell2009-03-241-13/+10
| | | | svn path=/trunk/hubbub/; revision=6844
* Flag argc as unusedJohn Mark Bell2009-03-241-0/+2
| | | | svn path=/trunk/hubbub/; revision=6842
* Add src directory to include path.John Mark Bell2009-03-241-1/+2
| | | | | | Sync makefiles external with the current revision. svn path=/trunk/hubbub/; revision=6840
* First cut at porting hubbub's buildsystem to the core toolsJohn Mark Bell2009-03-249-383/+38
| | | | svn path=/trunk/hubbub/; revision=6837
* Fix compilationJohn Mark Bell2009-03-111-4/+45
| | | | svn path=/trunk/hubbub/; revision=6771
* Fix typoJohn Mark Bell2009-03-111-1/+1
| | | | svn path=/trunk/hubbub/; revision=6770
* Fix form association. It kinda helps to associate the form-related object, ↵John Mark Bell2009-03-101-3/+2
| | | | | | rather than whatever happens to be on the top of the stack at the time. svn path=/trunk/hubbub/; revision=6768
* Sync commentary about expected behaviour with spec.John Mark Bell2009-03-101-0/+11
| | | | svn path=/trunk/hubbub/; revision=6767
* Reflect current statusJohn Mark Bell2009-03-101-1/+1
| | | | svn path=/trunk/hubbub/; revision=6766
* Make BUILD_SHARED actually build shared objectsChris Young2009-03-101-0/+5
| | | | svn path=/trunk/hubbub/; revision=6765
* Sync treebuilder with specJohn Mark Bell2009-03-1019-563/+528
| | | | svn path=/trunk/hubbub/; revision=6764
* Update test data to reflect spec changesJohn Mark Bell2009-03-103-5/+10
| | | | svn path=/trunk/hubbub/; revision=6763
* Sync treebuilder tests with html5libJohn Mark Bell2009-03-108-284/+344
| | | | svn path=/trunk/hubbub/; revision=6757
* Lose svn:executable propertyJohn Mark Bell2009-03-101-0/+0
| | | | svn path=/trunk/hubbub/; revision=6756
* Sync tokeniser tests with html5lib.John Mark Bell2009-03-1010-293/+8598
| | | | | | | | Sync tokeniser implementation with the spec. Fix handling of \0 in the tag open state. The unicodeCharacters test is disabled, as json-c doesn't like it. svn path=/trunk/hubbub/; revision=6755
* Fix bug 2673645John Mark Bell2009-03-092-3/+6
| | | | | | <form><option>foo</option></form> => abort. svn path=/trunk/hubbub/; revision=6746
* Test data for bug 2673645John Mark Bell2009-03-092-1/+1823
| | | | svn path=/trunk/hubbub/; revision=6745
* Actually associate textareas with formsJohn Mark Bell2009-02-201-7/+10
| | | | svn path=/trunk/hubbub/; revision=6578
* Allow TESTTYPE=release to be specified to build the tests with the release ↵Daniel Silverstone2009-02-1410-66/+68
| | | | | | | | | | CFLAGS. Add TARGET to the build paths. You should 'make distclean' before updating to this. Add BUILD_SHARED=yes support to the *nix build svn path=/trunk/hubbub/; revision=6478
* Convert UTF-16 meta charsets to UTF-8, given we'll have auto-detected them ↵John Mark Bell2009-01-231-26/+31
| | | | | | as UTF-8 in the chardet stage. (Credit: Andi Sidwell) svn path=/trunk/hubbub/; revision=6180
* Rework testrunner to avoid deadlocks. Hopefully, this is the last time I ↵John Mark Bell2009-01-231-18/+103
| | | | | | have to do this. svn path=/trunk/hubbub/; revision=6179
* I guess it helps if you document the fact that _both_ a tree handler and a ↵John Mark Bell2009-01-111-0/+4
| | | | | | document node are needed to make treebuilding work. svn path=/trunk/hubbub/; revision=6038
* Improve documentation of tree handler APIs.John Mark Bell2009-01-102-19/+158
| | | | svn path=/trunk/hubbub/; revision=6019
* Document how to enable iconv support in libparserutils.John Mark Bell2009-01-081-0/+9
| | | | | | This also needs documenting in lpu itself, but it's probably wise to document it here, too. svn path=/trunk/hubbub/; revision=6002
* Document "make docs"John Mark Bell2009-01-081-0/+14
| | | | | | Document the Aliases file, what it's used for, and where a copy can be found. svn path=/trunk/hubbub/; revision=6001
* And another one. Now warning free. Huzzah.John Mark Bell2009-01-081-0/+1
| | | | svn path=/trunk/hubbub/; revision=6000
* Add documentation from a couple of missing parametersJohn Mark Bell2009-01-081-2/+4
| | | | svn path=/trunk/hubbub/; revision=5999
* And some moreJohn Mark Bell2009-01-082-3/+3
| | | | svn path=/trunk/hubbub/; revision=5998
* Squash more doxygen warnings. Don't use html tags in comments, folks.John Mark Bell2009-01-081-25/+23
| | | | svn path=/trunk/hubbub/; revision=5997
* Make doxygen produce API documentation. I guess it helps if you enable the ↵John Mark Bell2009-01-083-8/+8
| | | | | | | | right options. Fix a couple more doxygen warnings. svn path=/trunk/hubbub/; revision=5996
* Squash memory leak.John Mark Bell2009-01-081-5/+39
| | | | | | Actually bother to clean up if we got errors, rather than just asserting. svn path=/trunk/hubbub/; revision=5995
* Use doxygen to create API documentation.John Mark Bell2009-01-0816-58/+1327
| | | | | | Add a bunch of extra commentary to stop doxygen warning. svn path=/trunk/hubbub/; revision=5994
* Point at examples directory, instead.John Mark Bell2009-01-081-2/+2
| | | | svn path=/trunk/hubbub/; revision=5993