summaryrefslogtreecommitdiff
path: root/src/core/characterdata.c
Commit message (Collapse)AuthorAgeFilesLines
* Constify vtables.Michael Drake2021-02-021-1/+1
|
* Fix some doxygen warningsVincent Sanders2015-09-011-17/+17
|
* Fix reference leak in error case.John-Mark Bell2012-12-311-1/+3
|
* unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral ↵Daniel Silverstone2012-09-101-10/+10
| | | | fixes. Test suite does not pass
* CharacterData.delete: Fix this and enable 5 more testsDaniel Silverstone2012-07-051-1/+5
|
* get_text_content working for all textual nodes modulo processing instructionsDaniel Silverstone2012-03-241-1/+15
| | | | svn path=/trunk/libdom/; revision=13601
* C89 for BeOS build.François Revel2012-03-241-11/+16
| | | | svn path=/trunk/libdom/; revision=13581
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-26/+30
| | | | svn path=/trunk/libdom/; revision=13316
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-071-11/+11
| | | | svn path=/trunk/libdom/; revision=12172
* Jump through hoops to conform to the spec: apparently, it requires unsigned ↵John Mark Bell2010-08-301-8/+28
| | | | | | values to be considered as signed svn path=/trunk/dom/; revision=10725
* Merge the Events module (branches/struggleyb/libdom-events) back to trunk. :)Bo Yang2009-08-131-5/+53
| | | | svn path=/trunk/dom/; revision=9236
* Merge the branches/struggleyb/libdom-remain back to trunk.Bo Yang2009-08-111-21/+62
| | | | svn path=/trunk/dom/; revision=9191
* Fix the last commit, hook up the vtable for dom_characterdata.Bo Yang2009-03-151-2/+1
| | | | svn path=/trunk/dom/; revision=6788
* Convert the dom_characterdata to use vtable.Bo Yang2009-03-151-16/+42
| | | | svn path=/trunk/dom/; revision=6787
* Add, and implement, dom_string_insert() and dom_string_replace() APIJohn Mark Bell2007-11-031-24/+138
| | | | | | | | | | | | | Fix dom_string_substr() to have correct length limits when calling _dom_utf{8,16}_next() Fix dom_string_substr() to calculate correct length of output string when creating from ptr Implement dom_characterdata_get_length() Implement dom_characterdata_substring_data() Implement dom_characterdata_append_data() Implement dom_characterdata_insert_data() Implement dom_characterdata_delete_data() Implement dom_characterdata_replace_data() svn path=/trunk/dom/; revision=3641
* Implement dom_characterdata_get_data()John Mark Bell2007-09-291-6/+21
| | | | | | Implement dom_characterdata_set_data() svn path=/trunk/dom/; revision=3610
* Modify dom_node_initialise() API to permit specification of namespace URI ↵John Mark Bell2007-09-271-1/+2
| | | | | | | | and prefix. Fix up everything else to cope. svn path=/trunk/dom/; revision=3599
* Finalisation and destruction of nodesJohn Mark Bell2007-07-281-0/+14
| | | | svn path=/trunk/dom/; revision=3467
* Sort out somewhat messy object construction.John Mark Bell2007-07-281-39/+0
| | | | | | We now have explicit types for all classes (rather than using the parent class for those which inherit but add no extra data content). svn path=/trunk/dom/; revision=3465
* Implement type-specific node constructors and veneer the appropriate ↵John Mark Bell2007-07-261-0/+59
| | | | | | Document APIs onto them. svn path=/trunk/dom/; revision=3463
* Make CharacterData struct public (within library)John Mark Bell2007-07-111-8/+1
| | | | | | Add Text. svn path=/trunk/dom/; revision=3398
* Add CharacterDataJohn Mark Bell2007-07-111-0/+193
svn path=/trunk/dom/; revision=3397