summaryrefslogtreecommitdiff
path: root/src/tokeniser
Commit message (Expand)AuthorAgeFilesLines
* Make doxygen produce API documentation. I guess it helps if you enable the ri...John Mark Bell2009-01-081-1/+1
* Use doxygen to create API documentation.John Mark Bell2009-01-083-18/+22
* Fix potential read beyond available input data when processing \r in some sta...John Mark Bell2009-01-061-5/+5
* Port to changed lpu API.John Mark Bell2009-01-061-455/+635
* Fix build breakageJohn Mark Bell2008-11-301-1/+3
* lotsa C89, please check.François Revel2008-11-301-48/+91
* Return errors from tokeniser constructor/destructorJohn Mark Bell2008-11-092-16/+25
* Return errors from dictionary constructor/destructor.John Mark Bell2008-11-091-3/+3
* Port hubbub to new lpu APIJohn Mark Bell2008-11-081-2/+3
* Squash memory leakJohn Mark Bell2008-09-081-0/+2
* Fixes for handling of CR followed immediately by multibyte sequences.John Mark Bell2008-09-061-59/+94
* Fix segfault caused by trampling the length of the current character when tes...John Mark Bell2008-08-181-2/+8
* Do what r5107 for system ID for public IDs.Andrew Sidwell2008-08-131-14/+4
* Another COLLECT() -> COLLECT_MS() fix.Andrew Sidwell2008-08-131-14/+4
* Add page which crashed, and fix the bug that caused it to do so.Andrew Sidwell2008-08-131-4/+2
* Remove the CHAR() macro, which lets make test run again.Andrew Sidwell2008-08-131-80/+74
* Optimise COLLECT_MS() macro.Andrew Sidwell2008-08-131-5/+3
* Fix segfault in elimination of duplicate attributes.John Mark Bell2008-08-131-7/+8
* Optimise comment states slightly, taking advantage of the fact that buffers s...Andrew Sidwell2008-08-131-20/+1
* Fix tokeniser so make test passes, with possible perf hit.Andrew Sidwell2008-08-131-18/+43
* Use COLLECT_MS() macro rather than COLLECT() in attribute values.Andrew Sidwell2008-08-131-4/+4
* Sanity checking for string dataJohn Mark Bell2008-08-131-0/+39
* Remember to clear the self-closing flag when emitting a tag token.Andrew Sidwell2008-08-111-0/+3
* - Remove an unused function from utils/string.cAndrew Sidwell2008-08-111-46/+1
* Move one step closer to getting encoding changes working.Andrew Sidwell2008-08-111-1/+1
* Propagate more return codes up the chain from the token emitter.Andrew Sidwell2008-08-091-55/+38
* Propagate the use of hubbub_error up into at least a bit of the treebuilder.Andrew Sidwell2008-08-091-2/+4
* Move tokeniser.c across to using hubbub_error for return codes, not bools, so...Andrew Sidwell2008-08-091-227/+236
* Really fix handling of entities in attributesJohn Mark Bell2008-08-041-1/+1
* Fix previous commit.Andrew Sidwell2008-08-041-6/+14
* Fix bug in hubbub & html5lib tests relating to parsing entities ending withou...Andrew Sidwell2008-08-041-1/+1
* Micro-optimisationAndrew Sidwell2008-08-041-2/+1
* Rearrange emitting functions so they're all clumped together at the bottom of...Andrew Sidwell2008-08-041-162/+172
* Refactor tokeniser token-emitting bits to remove unnecessary conditionals.Andrew Sidwell2008-08-041-63/+62
* Change tokeniser->context.chars from a hubbub_string whose ptr part is never ...Andrew Sidwell2008-08-031-158/+155
* Remove some excessive indentation.Andrew Sidwell2008-08-031-27/+23
* Remove the now-unnecessary COLLECT_*NOBUF() macros, replace them with the sin...Andrew Sidwell2008-08-031-79/+68
* Remove tokeniser->to_buf, SWITCH(), and COLLECT_CHAR(), none of which are now...Andrew Sidwell2008-08-031-54/+26
* - Replace NDEBUG #ifdefs with #if 0s, to avoid slowing down Hubbub when prof...Andrew Sidwell2008-08-031-44/+22
* Fix copy-and-paste error in previous commit.Andrew Sidwell2008-07-311-1/+1
* Handle CRs correctly everwhere.Andrew Sidwell2008-07-311-3/+123
* Handle NUL properly everywhere it should be.Andrew Sidwell2008-07-311-5/+12
* Merged revisions 4631-4838 via svnmerge from John Mark Bell2008-07-312-1927/+1648
* Add an explict null namespace to hubbub_ns.Andrew Sidwell2008-07-091-0/+4
* Add the basics of namespace support.Andrew Sidwell2008-06-261-0/+1
* Add CDATA tests and the infrastructure to support them.Andrew Sidwell2008-06-192-0/+6
* Fix assert()s, and only compile the preceding line when debugging to avoid wa...Andrew Sidwell2008-06-191-4/+8
* Use assert() instead of abort() or returning NULL in code that should not be ...Andrew Sidwell2008-06-191-24/+10
* Fix remaining issues with byte-by-byte tokenisation.Andrew Sidwell2008-06-191-10/+17
* Fix entity tokenisation when data is given one byte at a time.Andrew Sidwell2008-06-181-7/+14