summaryrefslogtreecommitdiff
path: root/src/core/namednodemap.c
Commit message (Collapse)AuthorAgeFilesLines
* unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral ↵Daniel Silverstone2012-09-101-2/+2
| | | | fixes. Test suite does not pass
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-26/+27
| | | | svn path=/trunk/libdom/; revision=13316
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-071-6/+6
| | | | svn path=/trunk/libdom/; revision=12172
* Merge the branches/struggleyb/libdom-remain back to trunk.Bo Yang2009-08-111-307/+54
| | | | svn path=/trunk/dom/; revision=9191
* Make dom_namednodemap and dom_nodelist more usable through macroes. Note, it ↵Bo Yang2009-04-291-7/+7
| | | | | | is the partly-completed testcase that find this problem. Our DOMTS is on its way. svn path=/trunk/dom/; revision=7365
* Modify NamedNodeMap, note that there is no vtable for this type because it ↵Bo Yang2009-03-231-20/+23
| | | | | | is not in the DOM inherit hierarchy. And the internal API used between different DOM parts should use struct dom_node_internal instead of struct dom_node. svn path=/trunk/dom/; revision=6821
* Implement dom_namednodemap_get_named_item_ns()John Mark Bell2007-09-291-14/+110
| | | | | | | Implement dom_namednodemap_set_named_item_ns() Implement dom_namednodemap_remove_named_item_ns() svn path=/trunk/dom/; revision=3609
* Add library-internal accessor to the head of an Element's attribute list ↵John Mark Bell2007-09-251-19/+156
| | | | | | | | | | | | | | (dom_element_get_first_attribute()) Implement dom_namednodemap_get_length() Implement dom_namednodemap_get_named_item() Implement dom_namednodemap_set_named_item() Implement dom_namednodemap_remove_named_item() Implement dom_namednodemap_item() All dom_namednodemap_*() still require support for maps of Entity and Notation nodes to be added (this requires DocumentType to gain support for these nodes). svn path=/trunk/dom/; revision=3591
* Whitespace changesJohn Mark Bell2007-09-221-1/+1
| | | | svn path=/trunk/dom/; revision=3569
* Make NamedNodeMap more genericJohn Mark Bell2007-07-121-17/+17
| | | | svn path=/trunk/dom/; revision=3404
* Add NamedNodeMap.John Mark Bell2007-07-101-0/+345
Minor fix for NodeList unref function; ensure it unrefs the owner document after it has finished using it. svn path=/trunk/dom/; revision=3395