index
:
libhubbub.git
chris/amiga-lib
master
rupindersingh/libhubbub
rupindersingh/test
HTML5 parser library
NetSurf Browser Project
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
treebuilder
/
treebuilder.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
treebuilder: Fix debug build variant with new element_type_to_name().
Michael Drake
2021-05-27
1
-19
/
+0
*
Treebuilder: Allow element_type_from_name to be inlined.
Michael Drake
2021-05-15
1
-23
/
+0
*
Treebuilder: Massively optimise element type from name with gperf.
Michael Drake
2021-05-15
1
-134
/
+6
*
Treebuilder: Add some new element names.
Michael Drake
2020-05-22
1
-0
/
+10
*
Treebuilder: Reorganise name_type_map[] src to be easier to change.
Michael Drake
2020-05-22
1
-48
/
+96
*
treebuilder: Add some asserts to hopefully quieten scan-build
Daniel Silverstone
2020-02-21
1
-4
/
+10
*
strncasecmp definition is in strings.h which was not being included
Vincent Sanders
2014-09-04
1
-0
/
+1
*
Remove client allocation function and update for new lpu API.
Michael Drake
2013-12-14
1
-26
/
+15
*
Add Script complete callback
Vincent Sanders
2012-07-05
1
-0
/
+16
*
Fix build with GCC 4.6
John Mark Bell
2011-07-26
1
-28
/
+8
*
Fix broken error checking and return in hubbub_parser_completed.
John Mark Bell
2009-06-20
1
-48
/
+48
*
Manually merge r7070 into trunk
John Mark Bell
2009-04-15
1
-146
/
+252
*
hubbub_alloc -> hubbub_allocator_fn
John Mark Bell
2009-04-04
1
-1
/
+2
*
Fix form association. It kinda helps to associate the form-related object, ra...
John Mark Bell
2009-03-10
1
-3
/
+2
*
Sync treebuilder with spec
John Mark Bell
2009-03-10
1
-134
/
+114
*
Actually associate textareas with forms
John Mark Bell
2009-02-20
1
-7
/
+10
*
And another one. Now warning free. Huzzah.
John Mark Bell
2009-01-08
1
-0
/
+1
*
C89
François Revel
2008-11-30
1
-5
/
+12
*
Return errors from treebuilder constructor/destructor
John Mark Bell
2008-11-09
1
-16
/
+26
*
Ensure we unref collect node if it still exists when we come to destroy the t...
John Mark Bell
2008-09-18
1
-0
/
+6
*
Lose redundant todos
John Mark Bell
2008-09-08
1
-3
/
+0
*
Fix build failures. Quite how these were missed before, I don't know.
John Mark Bell
2008-09-07
1
-0
/
+1
*
Refactor the generic rcdata mode so it's more like the script collection mode...
Andrew Sidwell
2008-08-15
1
-2
/
+0
*
- Add N_ELEMENTS() macro globally rather than using sizeof(x) / sizeof(x[0])...
Andrew Sidwell
2008-08-11
1
-58
/
+60
*
Remove reminders to support UTF-16, since we don't need to anymore.
Andrew Sidwell
2008-08-11
1
-3
/
+0
*
Switch to using hubbub_error for reprocessing state from just a bool, to allo...
Andrew Sidwell
2008-08-10
1
-29
/
+29
*
Propagate the use of hubbub_error up into at least a bit of the treebuilder.
Andrew Sidwell
2008-08-09
1
-2
/
+4
*
Make scripting enable flag configurable
John Mark Bell
2008-08-04
1
-0
/
+4
*
Merged revisions 4631-4838 via svnmerge from
John Mark Bell
2008-07-31
1
-83
/
+32
*
Make tree2 perform reference counting.
John Mark Bell
2008-07-15
1
-29
/
+57
*
Clean up the naming of a hack in the treebuilder.
Andrew Sidwell
2008-07-12
1
-25
/
+26
*
Fix the "reset the insertion mode" steps.
Andrew Sidwell
2008-07-11
1
-0
/
+6
*
Add element names to treebuilder.c, change scoping rules, and more SVG support.
Andrew Sidwell
2008-07-11
1
-2
/
+15
*
Make at least a good start on SVG support (commented-out in the spec). Move ...
Andrew Sidwell
2008-07-11
1
-70
/
+3
*
Significantly refactor the "in foreign content" mode. Still doesn't work, bu...
Andrew Sidwell
2008-07-11
1
-12
/
+0
*
Turn on basic MathML support.
Andrew Sidwell
2008-07-11
1
-1
/
+2
*
- Refactor out a case-insensitive hubbub_string compare function
Andrew Sidwell
2008-07-11
1
-9
/
+13
*
- Ignore #document-fragment sections better
Andrew Sidwell
2008-07-11
1
-2
/
+0
*
- Fix html5lib test. (also committed upstream)
Andrew Sidwell
2008-07-11
1
-0
/
+1
*
Fix whitespace processing.
Andrew Sidwell
2008-07-11
1
-9
/
+12
*
Fix up foster parenting a bit more. Make the current table calculated on-the...
Andrew Sidwell
2008-07-11
1
-23
/
+43
*
Fix whitespace processing.
Andrew Sidwell
2008-07-11
1
-1
/
+1
*
Get in-table fostering working for comments and text too.
Andrew Sidwell
2008-07-10
1
-27
/
+40
*
When handling things as "in body" in the "Anything else" section of the "in t...
Andrew Sidwell
2008-07-10
1
-7
/
+12
*
Push elements onto the stack properly even if they are foster parented in tab...
Andrew Sidwell
2008-07-10
1
-7
/
+7
*
- Handle in_table_foster for element insertion (yet to do comment/character).
Andrew Sidwell
2008-07-10
1
-29
/
+36
*
Make element_type_from_name() available everywhere when debugging.
Andrew Sidwell
2008-07-10
1
-1
/
+0
*
- Fix process_character_expect_whitespace()'s idea of whitespace to match cu...
Andrew Sidwell
2008-07-09
1
-4
/
+10
*
Big testing hack to print the various insertion modes the treebuilder goes th...
Andrew Sidwell
2008-07-09
1
-23
/
+38
*
Fix processing of characters in after head
John Mark Bell
2008-07-08
1
-2
/
+1
[next]