From: Jan T. <de...@us...> - 2001-12-11 22:24:18
|
Update of /cvsroot/net-script/netscript2/src/perl/XML/DOM2 In directory usw-pr-cvs1:/tmp/cvs-serv4568 Modified Files: notes.txt Log Message: * added information about unsupported features and method call syntax Index: notes.txt =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DOM2/notes.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** notes.txt 2001/11/29 21:42:18 1.1 --- notes.txt 2001/12/11 22:24:16 1.2 *************** *** 10,15 **** #-------------------------------------------------------- The following should explain which methods are implemented in which ! class. (I) means "implemented in" --- 10,34 ---- #-------------------------------------------------------- + This implementation tries to be compliant with the + DOM Level 2 Core specification. + + Not yet supported are: + + * default attributes + * readonly nodes + * node cloning + * normalization of text nodes + + All methods take a hash as parameter which contains the + key-value-pairs as specified by the W3C specification. + + + #--------------------------------------------------------------- + # Details of implementation, you do not need to know about this + #--------------------------------------------------------------- + The following should explain which methods are implemented in which ! class. This is more for myself to keep me informed about which class ! actually implements which method. However if you have use for it... (I) means "implemented in" *************** *** 19,23 **** nodeName - spec defaults (I) Node, others (I) Attr, DocumentType, Element, Entity, EntityReference, Notation, ProcessingInstruction nodeValue - defaults to undef, (I) Attr, CDATASection, Comment, ProcessingInstruction, Text ! nodeType - (I) Node parentNode - (I) Node, undef in Attr, Document, DocumentFragment, Entity, Notation childNodes - (I) Node --- 38,42 ---- nodeName - spec defaults (I) Node, others (I) Attr, DocumentType, Element, Entity, EntityReference, Notation, ProcessingInstruction nodeValue - defaults to undef, (I) Attr, CDATASection, Comment, ProcessingInstruction, Text ! nodeType - (I) in all Classes parentNode - (I) Node, undef in Attr, Document, DocumentFragment, Entity, Notation childNodes - (I) Node |