summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update component version for releaserelease/0.3.0Vincent Sanders2014-04-181-1/+1
|
* add support for multilibDavid Tardon2014-01-132-3/+3
| | | | Signed-off-by: John-Mark Bell <jmb@netsurf-browser.org>
* Remove client allocation function and update for new lpu API.Michael Drake2013-12-1417-207/+59
|
* Correct various warnings in the test suiteCraig Barnes2013-05-046-14/+14
|
* Don't use the nonportable alloca() during tests.Anthony J. Bentley2013-04-274-4/+12
|
* update component version for releaserelease/0.2.0Vincent Sanders2013-04-191-1/+1
|
* add a .gitattributes so .gitignore is not exportedVincent Sanders2013-04-181-0/+2
|
* Fix handling of encoding changeJohn-Mark Bell2013-02-271-7/+8
|
* Fix up for json-c 0.10John-Mark Bell2012-08-291-14/+14
|
* Sprinkle some const correctness aroundJohn-Mark Bell2012-08-291-9/+9
|
* update for json-c 0.10 APIVincent Sanders2012-08-281-7/+6
|
* Fix uninitialised pause variableVincent Sanders2012-07-131-0/+2
|
* Add ability to pause tokenisationVincent Sanders2012-07-106-4/+48
|
* Remove unused and unneeded extraneous_chunk APIVincent Sanders2012-07-071-35/+0
|
* Insert data at correct point in input stream.John-Mark Bell2012-07-053-8/+51
|
* Merge branch 'master' of git://git.netsurf-browser.org/libhubbubVincent Sanders2012-07-053-0/+28
|\
| * Fix testsuiteJohn-Mark Bell2012-07-053-0/+28
| |
* | Only call script complete callback if scripting is enabledVincent Sanders2012-07-051-1/+2
|/
* Add Script complete callbackVincent Sanders2012-07-054-1/+28
|
* add hubbub_parser_insert_chunkVincent Sanders2012-07-032-0/+44
|
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-297-9/+11
| | | | svn path=/trunk/hubbub/; revision=14006
* Simple gitignoreDaniel Silverstone2012-06-041-0/+3
| | | | svn path=/trunk/hubbub/; revision=13950
* Bump version numberVincent Sanders2012-02-271-1/+1
| | | | svn path=/trunk/hubbub/; revision=13480
* Don't treat warnings as errors on AmigaOSChris Young2011-10-271-2/+4
| | | | svn path=/trunk/hubbub/; revision=13085
* Fix handling of xmlns attributes on foreign content root elementsJohn Mark Bell2011-10-272-2/+13
| | | | svn path=/trunk/hubbub/; revision=13083
* Bump version numberJohn Mark Bell2011-09-181-1/+1
| | | | svn path=/trunk/hubbub/; revision=12815
* Fix build with GCC 4.6John Mark Bell2011-07-2617-179/+68
| | | | svn path=/trunk/hubbub/; revision=12628
* Bump version numberJohn Mark Bell2011-04-071-1/+1
| | | | svn path=/trunk/hubbub/; revision=12160
* Fix example.Michael Drake2010-12-301-15/+4
| | | | svn path=/trunk/hubbub/; revision=11172
* Fix profile and coverage targetsJohn Mark Bell2010-12-061-1/+3
| | | | svn path=/trunk/hubbub/; revision=11021
* Remove Aliases file from test harnessesJohn Mark Bell2010-12-049-333/+30
| | | | svn path=/trunk/hubbub/; revision=10978
* Remove init/final and embed entity trie at build time. r=vinceDaniel Silverstone2010-12-0425-2690/+2361
| | | | svn path=/trunk/hubbub/; revision=10976
* Make example compileJohn Mark Bell2010-11-152-92/+100
| | | | svn path=/trunk/hubbub/; revision=10944
* Sprinkle some C++ scoping aroundJohn Mark Bell2010-10-236-0/+54
| | | | svn path=/trunk/hubbub/; revision=10901
* Bump versionJohn Mark Bell2010-04-191-1/+1
| | | | svn path=/trunk/hubbub/; revision=10439
* -Wextra is only understood by GCC 3.4.6 or later. John Mark Bell2009-11-061-3/+4
| | | | | | | | | | | | | | | It is a more descriptive synonym for -W. Use -W instead which is understood by all common versions of GCC (i.e. GCC 2.95 supports it, which is the oldest GCC version we have to support) Additionally, conditionalise our -Werror usage on whether we're building for BeOS/Haiku. On these platforms, the standard library headers result in warnings. GCC 2 is quite happy to build this code on other platforms, so shouldn't be the trigger for dropping -Werror (even if BeOS is the only target where GCC2 is likely to be used). svn path=/trunk/hubbub/; revision=9664
* Ensure local include path overrides buildsystem settings.John Mark Bell2009-08-011-2/+2
| | | | svn path=/trunk/hubbub/; revision=8960
* Make locale-agnosticJohn Mark Bell2009-07-121-2/+13
| | | | svn path=/trunk/hubbub/; revision=8474
* Hand off comparison to utility string comparisons.John Mark Bell2009-07-121-1/+2
| | | | svn path=/trunk/hubbub/; revision=8473
* Fix string comparisons.John Mark Bell2009-07-122-34/+7
| | | | svn path=/trunk/hubbub/; revision=8472
* Better guard for the Norcroft hackery.John Mark Bell2009-07-021-5/+11
| | | | | | When building for Windows, replace strncasecmp with calls to _strnicmp svn path=/trunk/hubbub/; revision=8266
* Fix broken error checking and return in hubbub_parser_completed.John Mark Bell2009-06-203-53/+67
| | | | | | | | Avoid potentially broken passing of address of an enum where uint32_t * is expected. Pedantic casting for Norcroft. Particularly ugly #ifdef __CC_NORCROFT in utils.h to ensure we have a strncasecmp implementation with that compiler/libraries. svn path=/trunk/hubbub/; revision=7892
* Fix use of uninitialised variable caused by braindead variable naming.John Mark Bell2009-05-271-3/+3
| | | | svn path=/trunk/hubbub/; revision=7583
* Make assignment of doctype component pointers clearer. Also removes a ↵John Mark Bell2009-05-271-9/+6
| | | | | | redundant pointer increment. svn path=/trunk/hubbub/; revision=7581
* Remove redundant code.John Mark Bell2009-05-271-13/+0
| | | | svn path=/trunk/hubbub/; revision=7580
* Use correct path for Makefile.config.overrideJohn Mark Bell2009-05-061-1/+1
| | | | svn path=/trunk/hubbub/; revision=7408
* Initialise variables to stop GCC 4.4 complaining (credit: Jeroen Habraken)John Mark Bell2009-05-051-4/+4
| | | | svn path=/trunk/hubbub/; revision=7398
* Don't even think about -Werror with gcc2...François Revel2009-04-241-2/+2
| | | | svn path=/trunk/hubbub/; revision=7309
* Fixup non-pkg-config buildJohn Mark Bell2009-04-211-1/+1
| | | | svn path=/trunk/hubbub/; revision=7219
* Update hubbub for the new shared object namingDaniel Silverstone2009-04-212-7/+7
| | | | svn path=/trunk/hubbub/; revision=7206