/[suikacvs]/messaging/manakai/lib/Message/DOM/ChangeLog
Suika

Diff of /messaging/manakai/lib/Message/DOM/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.158 by wakaba, Tue Mar 28 00:59:50 2006 UTC revision 1.200 by wakaba, Sun Nov 5 12:31:49 2006 UTC
# Line 1  Line 1 
1    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMCore.dis (TypeInfo, UserDataHandler): Removed.
4    
5            * Element.dis (TypeInfo): Moved from |DOMCore.dis|.
6    
7            * TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|.
8    
9    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
10    
11            * DOMFeature.dis (ImplementationList, ImplementationSource,
12            ImplementationRegistry): Parameters |features|
13            now allow |null| (equivalent to an empty string).
14    
15    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
16    
17            * CharacterData.dis (ManakaiDOMDocumentCharacterData): New
18            class.  Factory methods |createTextNode| and |createComment|
19            are moved from |ManakaiDOMDocument|.
20    
21            * DOMCore.dis: References to |ManakaiDOMObject|
22            are removed.
23            (tc:createImplForTest): Moved from |TreeCore.dis|.
24            (DOMImplementation.___create_node_ref): Support
25            for the |mg:nodeRefClass| option is removed.
26            (ManakaiDOMConfiguration.___report_error): Moved
27            from |ManakaiDOMObject| class.
28    
29            * DOMFeature.dis (domidl:extends): New property.
30            (f:getFeatureImpl): Support for |+| classes is removed.
31    
32            * DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed.
33            (ManakaiDOM:ManakaiDOMObject): Removed.
34            (DOMDataType): Removed.
35    
36            * Document.dis (ManakaiDOMImplementationDocument):
37            The |createDocument| method is moved from
38            the |ManakaiDOMImplementationTC| in |TreeCore.dis|.
39            (ManakaiDOMDocument.___create_node_ref): Removed.
40            (createElement, createElementNS, createAttribute,
41            createAttributeNS, createTextNode, createComment,
42            createCDATASection, createEntityReference,
43            createProcessingInstruction): Class implementations
44            are moved to each module.
45    
46            * Element.dis (ManakaiDOMImplementationElement): Factory
47            methods are moved from |Document.dis|.
48            (ManakaiDOMElement.___create_node_ref): Support
49            for old class registry is removed.
50            (ManakaiDOMAttr.___create_node_ref): Removed.
51            (Attr.baseURI): Implementation
52            for |xml:base| attribute is merged.
53            (Attr.nodeValue, Attr.value): Implementation
54            for |xml:id| attribute is merged.
55    
56            * TreeCore.dis (ManakaiDOMImplementationTC): Removed.
57    
58            * XDoctype.dis (ManakaiDOMImplementationXDoctype): The
59            definition for |createDocumentType| method
60            is moved from |TreeCore.dis|.
61    
62            * XML.dis (ManakaiDOMXMLDocument): Factory
63            methods are moved from |Document.dis|.
64            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged
65            into |ManakaiDOMAttr| in |Element.dis|).
66    
67    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
68    
69            * Element.dis (___get_node_ref): |eval|ed |require|
70            statement was broken.
71    
72            * DOMFeature.dis (getImplementationList): Argument
73            is not passed to the |getImplementation| method.
74    
75            * TreeStore.dis (DOMImplementationTreeStore): It
76            did not |f:implements| the |TSFeature30| feature.
77    
78            * XMLParser.dis: Use |create_uri_reference|
79            method instead of internal |_new| method
80            to create a URI reference object.
81    
82    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
83    
84            * DOMCore.dis (ManakaiDOMImplementation): No longer
85            explicitly inherits |urigen:ManakaiURIImplementation| (and
86            the |f:ManakaiMinimumImplementation| class inherited
87            by it).  The |f:Minimum| feature is ever implemented
88            for compatibility (but is expected to be removed).
89            Internal methods such as |___report_error| are copied from
90            obsolete |f:MinimumImplementation| class.  DOM3
91            methods |hasFeature| and |getFeature| are also
92            moved from that class, but they now support no
93            foreign classes.
94    
95            * DOMFeature.dis (ManakaiImplementationSource): It
96            now |p:require|s |Message::Util::AutoLoad::Registry|.
97            The class no longer support classes
98            other than |ManakaiDOMImplementation|.  Note
99            that the |ImplementationRegistry| object does continue
100            to support foreign classes via foreign classes
101            implementing |ImplementationSource|
102            or |DOMImplementationSource| interface.
103            (MinimumImplementation): Removed.
104    
105            * DOMLS.dis (ManakaiDOMImplementationLS): It no
106            longer inherit the |ManakaiDOMImplementation|; it
107            is now expected to be implemented by |DOMImplementation|
108            objects.
109    
110            * DOMMain.dis (null): Removed.
111    
112            * Document.dis (___create_node_ref): It no
113            longer support foreign classes other
114            than |Message::DOM::Document::ManakaiDOMDocument|.
115            Note that document format specific DOM
116            interfaces, if supported, should be
117            all instances of the |Document| interface
118            in the implementation, as defined
119            in the Web Applications 1.0 specification (where
120            the |HTMLDocument| interface must be implemented
121            by all |Document| objects, even if the |Document|
122            contains no HTML element).
123    
124            * GenericLS.dis (GLSImplementation): It no
125            longer inherit the |MinimumImplementation|; it
126            is now expected to be implemented by |DOMImplementation|
127            objects.
128            (createGLSParser, createGLSSerializer): Load
129            module implementing parser or serializer
130            if necessary.
131    
132            * Traversal.dis (ManakaiDOMDocumentTraversal): It no
133            longer inherits the |ManakaiDOMDocument|; it
134            is now expected to be implemented by |Document|
135            objects.
136    
137            * XDP.dis (XDPDocument): It no longer
138            inherits the |Document|; it is now expected
139            to be implemented by all |Document| objects.
140    
141            * XDoctype.dis (ManakaiDOMDocumentXDoctype): It no
142            longer inherits the |ManakaiDOMDocument|; it
143            is now expected to be implemented by |Document|
144            objects.
145    
146    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
147    
148            * DOMCore.dis (ManakaiDOMImplementation): No longer
149            explicitly inherits |tc:ManakaiDOMImplementationTC|.
150            (ManakaiDOMImplementation.AUTOLOAD): New method definition.
151    
152            * TreeCore.dis (ManakaiDOMImplementationTC): Extends
153            the |ManakaiDOMImplementation| class.
154    
155    2006-11-03  Wakaba  <wakaba@suika.fam.cx>
156    
157            * DOMFeature.dis: Definitions for various concepts
158            are added.
159    
160            * GenericLS.dis (GLSImplementation): It no
161            longer inherits the |MinimumImplementation|; rather,
162            any |ManakaiMinimumImplementation| object also
163            implements |GLSImplementation| methods.
164    
165            * TreeStore.dis (DOMImplementationTreeStore): It no
166            longer inherits the |DOMImplementation|; rather,
167            any |ManakaiDOMImplementation| object also
168            implements |DOMImplementationTreeStore| methods.
169    
170    2006-08-15  Wakaba  <wakaba@suika.fam.cx>
171    
172            * TreeStore.pm: Added to the CVS repository
173            to enable for the dis database to contain XML
174            fragments.
175    
176            * Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added.
177    
178            * TreeStore.dis (Namespace): Namespace URI was incorrect.
179    
180    2006-06-18  Wakaba  <wakaba@suika.fam.cx>
181    
182            * Traversal.dis (expandEntityReferences): Syntax was incorrect.
183    
184            * TreeCore.dis (manakaiReadOnly): Test assertion was incorrect.
185    
186            * XDP.dis (dtdText): Test assertion was incorrect.
187    
188    2006-05-21  Wakaba  <wakaba@suika.fam.cx>
189    
190            * XDP.dis (XDPEntityValue.stringify): Don't escape
191            any |%|s in |xdp:attr-definition| children.
192    
193    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
194    
195            * XDP.dis (createXDPRNIKeyword): The Perl method
196            name property is added.
197    
198    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
199    
200            * XDP.dis (createXDPIf): New method.
201            (XDPIfElement): New interface.
202    
203    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
204    
205            * XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition):
206            New methods.
207    
208    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
209    
210            * XDP.dis (XDPDocument): A number of constructor methods
211            are added.
212            (XDPTextDecl.dtdText): The |xml| target was missing.
213    
214    2006-05-14  Wakaba  <wakaba@suika.fam.cx>
215    
216            * Traversal.dis (SerialWalker): New interface.
217            (manakaiCreateSerialWalker): New method.
218    
219    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
220    
221            * Traversal.dis (testNode): Calls |acceptNode| method
222            rather than |&{}| dereferencing.
223            (acceptNode): Implemented.
224    
225    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
226    
227            * XDP.dis: New module.
228    
229            * Makefile: |XDP.dis| is added.
230    
231            * Traversal.dis (NodeFilter): |InputProcessor|
232            and |OutputProcessor| are added.
233    
234    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
235    
236            * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.
237            (TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support
238            is added.  The |FILTER_REJECT| value is treated
239            as |FILTER_ACCEPT| if the |currentNode| is in the
240            rejected subtree as specified in the spec.
241    
242    2006-05-05  Wakaba  <wakaba@suika.fam.cx>
243    
244            * SimpleLS.dis: An |xmlns:| prefix was missing.
245    
246    2006-05-04  Wakaba  <wakaba@suika.fam.cx>
247    
248            * SimpleLS.dis: Namespace bugs are fixed.
249    
250    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
251    
252            * .cvsignore: Updated.
253    
254            * Traversal.dis: Unused declarations are removed.
255    
256    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
257    
258            * CharacterData.dis (Require): A reference to
259            the |MDOM:Traversal| module is added.
260            (wholeText): Implemented.
261    
262    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
263    
264            * Makefile: |Traversal.dis| is added.
265    
266            * Traversal.dis: New module.
267    
268            * TreeCore.dis (___report_error): Return value was
269            not propagated.
270    
271    2006-04-29  Wakaba  <wakaba@suika.fam.cx>
272    
273            * Element.dis (removeAttributeNS): A runtime error
274            was occurred if there was no specified attribute node.
275    
276            * TreeCore.dis (manakaiLanguage): New attribute.
277    
278    2006-04-28  Wakaba  <wakaba@suika.fam.cx>
279    
280            * TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly):
281            New attributes.
282    
283            (StaticNodeList): New interface.
284    
285    2006-04-24  Wakaba  <wakaba@suika.fam.cx>
286    
287            * DOMCore.dis (c:SET_TO_NULL_ERR): New error code.
288    
289    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
290    
291            * SimpleLS.dis: Reimplemented.
292    
293    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
294    
295            * DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now
296            a qualified name.
297            (tc:EXTERNAL_NODE_COMPARISON_ERR): New error type.
298    
299            * TreeCore.dis (compareDocumentPosition): Implemented.
300            (normalize): Implemented.
301            (STORESIZE, CLEAR): Were not implemented for |EmptyNodeList|
302            class.
303    
304    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
305    
306            * DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed.
307    
308    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
309    
310            * CharacterData.dis (length, insertData, substringData,
311            appendData, deleteData, replaceData, splitText): Reimplemented.
312    
313            * DOMCore.dis (NEGATIVE_LENGTH_ERR): New error.
314            (c:index): The definition was missing.
315            (c:length): New property.
316    
317    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
318    
319            * XMLParser.dis (close): Invoke |close| method
320            rather than |close| function.
321    
322    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
323    
324            * CharacterData.dis: New module split from |TreeCore.dis|.
325    
326            * CharacterData.pm: Added to the CVS repository.
327    
328            * TreeCore.dis: The |CharacterData|, |Text|, and |Comment|
329            interfaces are removed.
330            (Require): A reference to the |MDOM:CharacterData| module
331            is added.
332    
333            * DOMMain.dis (StringExtended, StringOutOfBoundsException): Removed.
334    
335            * DOMCore.dis (StringOutOfBoundsException): New error.
336    
337            * Makefile: |CharacterData.pm| is added.
338    
339    2006-04-09  Wakaba  <wakaba@suika.fam.cx>
340    
341            * XMLParser.dis (Require): Requires the |MCharset:Encode|
342            module.
343            (parse): Set the |inputEncoding| attribute of the generated document
344            object.
345            (resolveLSInput default implementation): The |byteStream|
346            and |encoding| attributes of the |LSInput| interface
347            are now supported.
348            (resolveLSInput): Parameters |impl| and |parser| are added.
349            (InputFile.inputEncoding): New attribute.
350    
351    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
352    
353            * Document.dis (adoptNode test): Documents were
354            made by different documents.
355    
356    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
357    
358            * XMLParser.dis: The |cfg:dtd-default-attributes| configuration
359            parameter is changed to |cfg:dtd-default-attribute|.
360    
361    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
362    
363            * TreeCore.dis: The |DOMMain:raiseException| elements
364            are replaced by |disPerl:EXCEPTION|s.
365    
366    2006-04-03  Wakaba  <wakaba@suika.fam.cx>
367    
368            * DOMMain.dis (GetPropNode, CheckReadOnly): Removed.
369    
370            * Node.dis (cfg:dtd-default-attribute): The configuration
371            parameter |cfg:dtd-default-attributes| is renamed
372            as |cfg:dtd-default-attribute|.
373            (Roles): Definitions are changed so that classes
374            that implement those classes MUST implement the |Node|
375            and its subinterfaces.
376            (cfg:dtd-attribute-type): New configuration parameter.
377    
378            * Document.dis (adoptNode): Don't throw exception
379            if |strictErrorChecking| is |false|.
380    
381            * Element.dis (setAttribute, setAttributeNS): Don't
382            set [attribute type] if the |cfg:dtd-attribute-type|
383            configuration parameter is set to |false|.
384            (removeAttribute, removeAttributeNS, removeAttributeNode): Don't
385            regenerate default attribute nodes if the |cfg:dtd-default-attribute|
386            configuration parameter is set to |false|.
387    
388    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
389    
390            * TreeStore.dis: New module.
391    
392            * Makefile: |TreeStore.dis| is added.
393    
394    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
395    
396            * XMLParser.dis: Updated so that it can be used
397            with |TreeCore.pm|, |Document.pm|, |Element.pm|,
398            and |XML.pm|.  Set the read-only flag to
399            the |DocumentType|, |Entity|, and |EntityReference| noes.
400    
401            * Node.dis (textContent): It did not handle descendant
402            element and entity reference nodes.
403    
404            * Element.dis, XML.dis (manakaiBaseURI.get): Its
405            definition has been changed to return only explicit
406            base URI specification.
407    
408            * DOMLS.dis (LSInput, LSOutput): They no longer
409            inherits the |ManakaiDOM:ManakaiDOMObject| class.
410    
411            * Tree.dis, DOMXML.dis, ManakaiDOMLS2003.dis: Removed.
412    
413            * Tree.pm, DOMXML.pm: Removed.
414    
415            * TreeCore.pm, Document.pm, Element.pm: Added
416            to the CVS repository since they are necessary to
417            build the dis library.
418    
419            * Makefile: Sync'ed to new modules disposition.
420    
421    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
422    
423            * Makefile: Rules for |Tree.pm| and |DOMXML.pm| are
424            removed.  For |Element.pm| and |Document.pm| are added.
425    
426            * Document.dis, Element.dis: New module split from |TreeCore.dis|.
427    
428            * TreeCore.dis (Document, DocumentFragment, Element, Attr): Removed.
429    
430    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
431    
432            * DOMFeature.dis (getImplementation, getImplementationList): Support
433            for new class information variables.
434            (DOMLS:Generic): This old feature name is removed.
435    
436            * GenericLS.dis (createGLSParser, createGLSSerializer): Support
437            for new class information variables.
438    
439            * TreeCore.dis (manakaiExpandedURI): New attribute.
440            (Document, Element.___create_node_ref): New method
441            implementations.
442    
443    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
444    
445            * TreeCore.dis (setIdAttribute, setIdAttributeNS, setIdAttributeNode):
446            Reimplemented.
447            (isId): Setter is added.
448            (Element.normalize): Definition copied from the |MDOM:Tree|
449            module.
450    
451    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
452    
453            * Makefile (clean-db): New rule.
454    
455            * TreeCore.dis (setUserData): Schedule to invoke
456            the user data handler when the node is removed
457            from the memory.
458            (setAttribute, setAttributeNS): Set the [attribute type]
459            if DTD attribute definition is available.
460            (CharacterData members): Definitions copied from
461            the |MDOM:Tree| module.
462    
463    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
464    
465            * DOMCore.dis (DOMStringList.==): New overloaded operator.
466    
467            * DOMFeature.dis (ManakaiHasFeatureByGetFeature): The
468            class did not implement the |GetFeature| interface.
469            (hasFeature): The |+| prefix was not taken into account.
470    
471            * TreeCore.dis (Node): The class now inherits
472            the |ManakaiHasFeatureByGetFeature| class.  It now
473            implements the |f:GetFeature| and |ecore:MUErrorTarget|
474            interfaces.
475            (CreateNodeRefMethod): The |mg:nodeRefInterfaces| option
476            is supported.
477            (lookupNamespaceURI, lookupPrefix, isDefaultNamespace): Reimplemented.
478            (manakaiParentElement): New attribute.
479    
480            * XDoctype.dis (d:Feature): Old feature name |ManakaiDOM:XDoctype|
481            is removed.
482            (lookupPrefix): Old method implementation is removed.
483    
484            * XML.dis (CDATASection): The |mg:NodeRefRole| was
485            missing because of the |DISCore:stopISARecursive| property.
486    
487            * TreeCore.dis, XML.dis, XDoctype.dis, DOMCore.dis, DOMFeature.dis:
488            They now pass all tests included in those modules!
489    
490    2006-03-30  Wakaba  <wakaba@suika.fam.cx>
491    
492            * DOMCore.dis (Require): A reference to the |MURI:Generic|
493            module is added.
494            (ManakaiDOMStringList.DESTROY): Removed (no longer necessary).
495            (ManakaiDOMImplementation): It now inherits
496            the |urigen:ManakaiURIImplementation| class and
497            implements the |ecore:MUErrorTarget| interface.  It no
498            longer inherits the |ManakaiDOM:ManakaiDOMObject| class.
499            (ManakaiDOMImplementation.___report_error): New method.
500    
501            * DOMFeature.dis (Require): It now references the |Util:Grove|
502            module instead of |Util:ManakaiNode| module.
503            (DOMMetaImpl:ManakaiDOMImplementationRole): Removed.
504            (f:ManakaiMinimumImplementationCompatible): New role.
505            (ManakaiMinimumImplementation): Now it is built
506            on the new |Util:Grove| module rather than the |Util:ManakaiNode|
507            module.
508            (f:getFeatureImpl): Moved from the |MDOM:TreeCore| module.
509            (c:implementation): Removed.
510            (f:implementation, f:revImplementation): New properties.
511    
512            * DOMMain.dis (checkNamespacePrefix): DOM2 codes are removed.
513    
514            * Tree.dis (cfg:clone-entity-reference-subtree,
515            cfg:dtd-default-attributes, cfg:xml-id,
516            cfg:strict-document-children): Removed (moved
517            to the |MDOM:TreeCore| module).
518    
519            * TreeCore.dis (Require): The reference to the |MURI:Generic|
520            module is removed.
521            (ManakaiDOMImplementationTC): Some members are removed
522            since they are incorporated to the |c:ManakaiDOMImplementation|
523            or the |f:ManakaiMinimumImplementation|.
524            (tc:nodeRefClass): Removed (moved to the |Util:Grove| module).
525            (replaceChildImpl1): A typo on the removing the parent node
526            of the old child node is fixed.
527            (f:getFeatureImpl): Removed (moved to the |MDOM:DOMFeature|
528            module).
529            (tc:implementation, tc:revImplementation): Removed (moved
530            to the |MDOM:DOMFeature| module).
531            (Document.appendChild, insertBefore, replaceChild): Sets
532            the |ownerDocument| attribute of the |tx:DocumentType| nodes.
533            (Attr.prefix, Element.prefix): Don't raise "uninitialized"
534            when the new value is |null|.
535            (Attr.___create_node_ref): Attribute name and
536            owner element type specific classes are supported (it
537            was partially implemented but was incorrect).
538            (ManakaiDOMGetElementsNodeList.item): Don't return
539            a node if the |index| is negative.
540            (setNamedItem): Various typos are fixed.
541            (removeNamedItem): The node was not removed orz
542            (cfg:clone-entity-reference-subtree,
543            cfg:dtd-default-attributes, cfg:xml-id,
544            cfg:strict-document-children): Definitions are moved
545            from the |MDOM:Tree| module.  Note that the tests for default
546            attributes still fail.
547            (ErrDef, IntPropDef): Moved from the |MDOM:Tree| module.
548            (Attr): Role name was incorrect.
549    
550            * XDoctype.dis (setDefinitionNode): Return value was
551            not set.
552            (AttributeDefinition): Role name was incorrect.
553    
554            * XML.dis (Require): A reference to the |DISlib:DISMarkup|
555            module is added.
556            (Notation.appendChild, insertBefore, replaceChild): New method
557            implementations.
558            (Entity.appendChild, insertBefore, replaceChild): New method
559            implementations.
560            (EntityReference.appendChild, insertBefore, replaceChild): Now
561            they are defined as copies of ones in the |Entity| class.
562            (XMLBaseAttribute, XMLIdAttribute): Now they are
563            namespace unaware attributes.
564            (XMLBaseAttributeNS, XMLIdAttributeNS): New attributes.
565            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): References
566            to namespace aware attributes are added.
567    
568    2006-03-29  Wakaba  <wakaba@suika.fam.cx>
569    
570            * DOMCore.dis: Namespace prefixes are changed to new ones.
571    
572            * TreeCore.dis (createDocument, createDocumentType): Reimplemented (but
573            untested).
574            (___report_error): Reimplemented (untested).
575            (manakaiSetReadOnly): New method.
576            (Attr.___create_node_ref): New method (untested).
577            (Document.getFeature): |require|s the |MDOM:XML| Perl module.
578            (createEntityReference, cloneNode): Support for
579            the |cfg:entity-reference-read-only| configuration
580            parameter is removed; newly created entity references
581            are always read-only and use the |manakaiSetReadOnly| method
582            if desired.
583            (Element.manakaiBaseURI): Reimplemented (untested).
584    
585            * XDoctype.dis (createGeneralEntity, createNotation): |require|s
586            the |MDOM:XML| Perl module.
587            (DocumentTypeDefinition.___create_node_stem): Sets
588            the |tc:implementation| internal property if its value
589            is provided.  The |infoset:content| internal property name
590            was incorrect.
591            (DocumentTypeDefinition, ElementTypeDefinition): |MUST|s on
592            read-only |NodeList| and |DOMStringList| are added
593            for clarification.
594    
595  2006-03-26  Wakaba  <wakaba@suika.fam.cx>  2006-03-26  Wakaba  <wakaba@suika.fam.cx>
596    
597          * DOMCore.dis (Require): Reference to the |MDOM:TreeCore|          * DOMCore.dis (Require): Reference to the |MDOM:TreeCore|

Legend:
Removed from v.1.158  
changed lines
  Added in v.1.200

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24