-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes to make sigil-gumbo pass html5lib tree-construction tests
- Loading branch information
1 parent
7630679
commit 10567da
Showing
22 changed files
with
882 additions
and
613 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,74 @@ | ||
# Compilation artifacts | ||
*.o | ||
*.lo | ||
*.la | ||
|
||
# Editor swap files | ||
*.swp | ||
*.swo | ||
*.swn | ||
|
||
#emacs editor leftovers | ||
*.*~ | ||
|
||
#diff leftovers | ||
*.orig | ||
|
||
# gtest pieces | ||
gtest | ||
gtest-1.7.0 | ||
third_party.tar.gz | ||
testdata.tar.gz | ||
.tar.gz | ||
.zip | ||
|
||
# Other build artifacts | ||
/Debug | ||
/visualc/Debug | ||
/visualc/Release | ||
/visualc/gumbo.sdf | ||
/visualc/gumbo.opensdf | ||
/build | ||
.log | ||
.sdf | ||
.opensdf | ||
.deps | ||
.dirstamp | ||
.libs | ||
Makefile | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache | ||
compile | ||
config.guess | ||
config.log | ||
config.status | ||
config.sub | ||
configure | ||
core | ||
depcomp | ||
gtest/ | ||
gumbo.pc | ||
gumbo_test | ||
gumbo_test.log | ||
gumbo_test.trs | ||
install-sh | ||
libtool | ||
ltmain.sh | ||
m4/ | ||
missing | ||
test-driver | ||
test-suite.log | ||
|
||
# gyp android artifacts | ||
gumbo_parser.target.mk | ||
|
||
# `make dist` artifacts | ||
/gumbo-[0-9].[0-9].tar.gz | ||
/gumbo-[0-9].[0-9]/ | ||
|
||
# Python dist artifacts | ||
*.pyc | ||
dist | ||
build | ||
python/gumbo.egg-info | ||
python/gumbo/libgumbo.so | ||
|
||
# Example binaries | ||
benchmark | ||
clean_text | ||
find_links | ||
get_title | ||
positions_of_class | ||
prettyprint | ||
serialize | ||
well_formed | ||
# Backup files left behind by the Emacs editor. | ||
*~ | ||
|
||
# Lock files used by the Emacs editor. | ||
.\#* | ||
|
||
# emacs auto recovery files from aborted edits | ||
\#*\# | ||
|
||
#use ful for stashing files | ||
*.orig | ||
*.keep | ||
|
||
# Temporary files used by the vim editor. | ||
.*.swp | ||
.swp | ||
|
||
# A hidden file created by the Mac OS X Finder. | ||
.DS_Store | ||
|
||
# Image thumbnail database created by windows | ||
Thumbs.db | ||
|
||
# Various files created by Visual Studio | ||
*.sln | ||
*.suo | ||
*.vcproj | ||
*.user* | ||
#*.rc | ||
*.ncb | ||
*.pch | ||
*.dep | ||
*.idb | ||
*.exp | ||
*.res | ||
*.manifest | ||
*.ilk | ||
*.pdb | ||
*.def | ||
Release | ||
Debug | ||
BuildLog.htm | ||
|
||
# Various files and folders created by CMake | ||
CMakeFiles | ||
CMakeScripts | ||
CMakeCache.txt | ||
*.dir | ||
ALL_BUILD* | ||
|
||
|
||
# Misc files | ||
*.svn | ||
*.a | ||
*.o | ||
*.obj | ||
*.lib | ||
*.exe | ||
*.dll | ||
*.a | ||
*.app | ||
*.xcodeproj | ||
*.pbxbtree | ||
*.pbxindex | ||
*.build | ||
*.smp | ||
*.pl | ||
*.pyc | ||
*.pyo | ||
*.orig | ||
*.bak | ||
*.rar | ||
build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
List of Changes since the Fork | ||
============================== | ||
In reverse chronological order: | ||
|
||
- change update foreign attributes to remove xml:base and add xlink:arcrole to follow whatwg spec | ||
- fixed minor memory leaks | ||
- correctly handle text in form elements | ||
- support for new tags including search and to better follow the latest whatwg parsing spec | ||
- fix for handling </p> and </br> in foreign contexts | ||
- Fix multiple warnings including cast to enum from void pointer | ||
- Re-implement adjust_foreign_attributes() with a gperf hash | ||
- Remove special handling of <menuitem> tag | ||
- Remove special handling of <isindex> tag | ||
- Use realloc(3) instead of malloc(3) in enlarge_vector_if_full() | ||
- Use realloc(3) instead of malloc(3) in maybe_resize_string_buffer() | ||
- Make destroy_node() function non-recursive | ||
- Fix signedness of some format specifiers | ||
- Add maximum element nesting limit | ||
- Remove custom allocator support | ||
- Fix recording of source positions for </form> end tags | ||
- Fix TAGSET_INCLUDES macro to work properly with multiple bit flags | ||
- Re-implement gumbo_normalize_svg_tagname() with a gperf hash | ||
- Replace linear array search in adjust_svg_attributes() with a gperf hash | ||
- Fix duplicate TagSet initializer being ignored in is_special_node() | ||
- Add support for <dialog> tag | ||
- Add missing static qualifiers to hide symbols that shouldn't be extern | ||
- Replace use of locale-dependant ctype.h functions with custom, ASCII-only equiv | ||
- allow support for xhtml parsing rules controllable via GumboOptions use_xhtml_rules flag |
Oops, something went wrong.