summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Implement dom_element_get_attribute()John Mark Bell2007-09-221-36/+154
| | | | | | | | | | | | | Implement dom_element_set_attribute() Implement dom_element_remove_attribute() Implement dom_element_get_attribute_node() Make dom_element_set_attribute_node() ensure that the element is writable Implement dom_element_remove_attribute_node() Implement dom_element_get_elements_by_tag_name() Implement dom_element_get_elements_by_tag_name_ns() Implement dom_element_has_attribute() svn path=/trunk/dom/; revision=3577
* Make _dom_node_readonly() accessible to library internalsJohn Mark Bell2007-09-222-1/+4
| | | | svn path=/trunk/dom/; revision=3576
* Remove accidental commit of binaryJames Shaw2007-09-221-0/+0
| | | | svn path=/trunk/dom/; revision=3575
* Extend list implementation, add test-list.c to test some of it.James Shaw2007-09-222-0/+56
| | | | svn path=/trunk/dom/; revision=3574
* Extend list implementation, add test-list.c to test some of it.James Shaw2007-09-229-20/+160
| | | | svn path=/trunk/dom/; revision=3573
* Implement dom_document_get_implementation()John Mark Bell2007-09-221-14/+13
| | | | | | | Implement dom_document_get_elements_by_tag_name() Implement dom_document_get_elements_by_tag_name_ns() svn path=/trunk/dom/; revision=3572
* Rename testcase utility library to libdomtest -- libdebug made no senseJohn Mark Bell2007-09-222-3/+3
| | | | svn path=/trunk/dom/; revision=3571
* Implement dom_node_get_child_nodes()John Mark Bell2007-09-221-8/+21
| | | | | | Implement dom_node_get_attributes() svn path=/trunk/dom/; revision=3570
* Whitespace changesJohn Mark Bell2007-09-222-1/+3
| | | | svn path=/trunk/dom/; revision=3569
* Create a library of utility functions for the testsuite to useJohn Mark Bell2007-09-2213-187/+379
| | | | | | Make test/binding.c include stdio.h itself rather than relying on other things to include it. svn path=/trunk/dom/; revision=3568
* Include required headersJohn Mark Bell2007-09-221-0/+3
| | | | svn path=/trunk/dom/; revision=3567
* More notesJames Shaw2007-09-221-8/+51
| | | | svn path=/trunk/dom/; revision=3566
* Implement #defines for try/catchJames Shaw2007-09-221-0/+27
| | | | svn path=/trunk/dom/; revision=3565
* Use a typedef for the function pointers to comparison functions, add newline ↵Rob Kendrick2007-09-222-4/+6
| | | | | | at end of file svn path=/trunk/dom/; revision=3564
* s/malloc.h/stdlib.h/ (malloc.h is non-standard, though common)John Mark Bell2007-09-222-9/+22
| | | | | | | Sprinkle some assertions about so as to catch malloc failure at the earliest opportunity. Pedantic line length and brace position changes. svn path=/trunk/dom/; revision=3563
* Change to C-style commentsJames Shaw2007-09-221-3/+3
| | | | svn path=/trunk/dom/; revision=3562
* Assume that NULL dom_string pointers imply the empty string.John Mark Bell2007-09-221-0/+17
| | | | svn path=/trunk/dom/; revision=3561
* Implement list_contains_all()James Shaw2007-09-222-0/+15
| | | | svn path=/trunk/dom/; revision=3560
* Initial revision of linked list implementationJames Shaw2007-09-222-0/+99
| | | | svn path=/trunk/dom/; revision=3559
* Implement dom_node_remove_node()John Mark Bell2007-09-221-11/+46
| | | | | | | Make _dom_node_replace() handle DocumentFragments correctly. Ensure _dom_node_detach_range() clears range's previous/next pointers. svn path=/trunk/dom/; revision=3558
* Implement dom_node_replace_child()John Mark Bell2007-09-221-5/+83
| | | | svn path=/trunk/dom/; revision=3557
* If new_child is already in the tree ensure its parent is not read onlyJohn Mark Bell2007-09-221-2/+7
| | | | svn path=/trunk/dom/; revision=3556
* Fix misleading commentsJohn Mark Bell2007-09-221-13/+12
| | | | svn path=/trunk/dom/; revision=3555
* Move cardinality constraint checking for Document Element and DocumentType ↵John Mark Bell2007-09-221-89/+130
| | | | | | | | children to _dom_node_permitted_child(). Break tree insertion/removal code out from dom_node_insert_before() and into their own utility routines. svn path=/trunk/dom/; revision=3554
* Implement dom_node_get_node_name()John Mark Bell2007-09-201-12/+133
| | | | | | | | Implement dom_node_get_node_value() Implement dom_node_set_node_value() Implement utility routines to determine if a given node type is permitted as a child of a node and to detect if a given node is read only. svn path=/trunk/dom/; revision=3553
* Stop TestObject appending .xml to the filename -- the auto-generated ↵John Mark Bell2007-09-192-2/+2
| | | | | | | | testcases already have it appended. Fixup binding testcase appropriately. svn path=/trunk/dom/; revision=3552
* Begin implementation of DocumentType classJohn Mark Bell2007-09-197-87/+202
| | | | | | | | | | | | | | | Remove dom_document_set_doctype() -- dom_node_insert_before() (and thus _append_child()) can be used to achieve the same effect. DocumentType node is now a child of the Document node (as it should have been) rather than a hidden field. Make dom_node_destroy() aware of DocumentType nodes potentially having no owner. Make dom_node_finalise() aware of it, too. Make dom_node_get_owner_document() return NULL for Document nodes, as per the spec. Fix bug in dom_node_insert_before() -- previously it failed to catch attempts to insert a second root element. Make dom_node_insert_before() handle DocumentType nodes appropriately. Implement XML binding's dom_implementation_create_document_type() function. Fix XML binding's dom_implementation_create_document() implementation to cope with changed API relating to doctype insertion. Fix up XML parser wrapper to cater for new doctype insertion mechanism. Also sprinkle some NULL about for paranoia purposes. svn path=/trunk/dom/; revision=3551
* More informational messagingJohn Mark Bell2007-09-181-6/+45
| | | | svn path=/trunk/dom/; revision=3550
* Implement dom_element_get_tag_name()John Mark Bell2007-09-181-8/+105
| | | | | | Implement dom_element_set_attribute_node() [still has some outstanding sanity checking] svn path=/trunk/dom/; revision=3549
* Implement sanity checking in dom_node_insert_before()John Mark Bell2007-09-181-18/+116
| | | | | | There's still a couple of outstanding issues here, marked as todos. svn path=/trunk/dom/; revision=3548
* More logging of failed DOM calls.John Mark Bell2007-09-171-4/+45
| | | | | | Fix segfault caused by failure to add attribute to element svn path=/trunk/dom/; revision=3547
* Partial implementation of dom_node_insert_before. This has utterly no sanity ↵John Mark Bell2007-09-171-5/+29
| | | | | | checking at present so will probably break, badly. svn path=/trunk/dom/; revision=3546
* Fix potential segfaultsJohn Mark Bell2007-09-171-2/+4
| | | | svn path=/trunk/dom/; revision=3544
* Implement xml-binding-specific dom_implementation_create_documentJohn Mark Bell2007-09-171-8/+46
| | | | svn path=/trunk/dom/; revision=3543
* Make Document nodes own themselves (removes need for special case for Documents)John Mark Bell2007-09-172-17/+78
| | | | | | | Fixup dom_node_destroy appropriately. Implement dom_node_{set,get}_user_data. svn path=/trunk/dom/; revision=3542
* Fix testcases after change to xml_parser API (messaging callback)John Mark Bell2007-09-161-3/+18
| | | | svn path=/trunk/dom/; revision=3541
* Add callback for informational messaging (with variable severity, a la syslog)John Mark Bell2007-09-163-43/+99
| | | | | | | Use it to log interesting things during parsing. This needs to grow some i18n at some point. svn path=/trunk/dom/; revision=3540
* Move parameter declaration, as xsltproc (libxml 2.6.26, libxslt 1.1.21, ↵John Mark Bell2007-09-161-5/+5
| | | | | | libexslt 0.8.13) complains otherwise svn path=/trunk/dom/; revision=3539
* Fix bug in dom_node_destroy -- Document nodes have no owner, so attempting ↵John Mark Bell2007-09-161-8/+18
| | | | | | to ref/unref it is stupid svn path=/trunk/dom/; revision=3538
* Notes on W3C test suite elementsJames Shaw2007-08-161-0/+179
| | | | svn path=/trunk/dom/; revision=3526
* Import more W3C tests that compile successfullyJames Shaw2007-08-113-0/+146
| | | | svn path=/trunk/dom/; revision=3506
* Implement assertSizeJames Shaw2007-08-111-2/+66
| | | | svn path=/trunk/dom/; revision=3505
* Import more W3C tests that compile successfullyJames Shaw2007-08-095-0/+233
| | | | svn path=/trunk/dom/; revision=3495
* Add assertTrue and assertFalse templates; add boolean primitive to ↵James Shaw2007-08-092-1/+28
| | | | | | ctypes.xml. Bugfix get-ctype to translate primitive typename when specified. svn path=/trunk/dom/; revision=3494
* Import more W3C tests that compile successfullyJames Shaw2007-08-086-0/+277
| | | | svn path=/trunk/dom/; revision=3492
* Import string helper functions from XSLT Standard LibraryJames Shaw2007-08-081-0/+1233
| | | | svn path=/trunk/dom/; revision=3491
* Fix casting of structs as 'out' parameters. Update ctypes.xml mappings.James Shaw2007-08-082-2/+63
| | | | svn path=/trunk/dom/; revision=3490
* Rename dom_named_node_map to dom_namednodemap to be consistent with the rest ↵James Shaw2007-08-082-4/+4
| | | | | | of the code svn path=/trunk/dom/; revision=3489
* Fix structure name dom_nodelistJames Shaw2007-08-032-4/+4
| | | | svn path=/trunk/dom/; revision=3474
* Import test from W3C test suiteJames Shaw2007-08-031-0/+45
| | | | svn path=/trunk/dom/; revision=3473