summaryrefslogtreecommitdiff
path: root/ext/dom/TODO
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2003-06-05 17:06:52 +0000
committerRob Richards <rrichards@php.net>2003-06-05 17:06:52 +0000
commit1b046ed40e63315c11c4e44254efdee4b7b95563 (patch)
treefe91b48932c170f02742a4e130d21468c2bf1199 /ext/dom/TODO
parentbf0e2751bb62a97a0dd1a1edddcaca03f5949753 (diff)
downloadphp-git-1b046ed40e63315c11c4e44254efdee4b7b95563.tar.gz
Inital cut of new dom extension
PHP5 only
Diffstat (limited to 'ext/dom/TODO')
-rw-r--r--ext/dom/TODO12
1 files changed, 12 insertions, 0 deletions
diff --git a/ext/dom/TODO b/ext/dom/TODO
new file mode 100644
index 0000000000..f6b7fe2e61
--- /dev/null
+++ b/ext/dom/TODO
@@ -0,0 +1,12 @@
+1) Change _node_list_pointer to something faster than just a linked list.
+ Currently there to test that unlinked node tracking works
+2) Possible create new object type for documents as these are the only types which need to track nodes
+ - Would also require its own dtor functionality
+3) Define correct behavior. When certain types of nodes are destroyed,
+ do we unlink children (if referenced) or just destroy them. (Element/Attribute nodes)
+4) Find out where XPath goes (this extension or its own)
+5) What DOM object types are really needed (i.e. not currently using DOMString)
+6) Determine how to handle non speced functionality.
+ i.e validation (add method or implement as property for processing)
+
+