/[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.130 by wakaba, Fri Feb 17 15:06:33 2006 UTC revision 1.222 by wakaba, Sun Jun 17 13:37:40 2007 UTC
# Line 1  Line 1 
1    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
2    
3            * Attr.pm (____new): Initialize |specified| as 1.
4            (base_uri, manakai_attribute_type, specified): Implemented.
5            (prefix): Don't check read-only flag unless |strict_error_checking|.
6            (value): Call |text_content| for now.
7    
8            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
9            (declared_type, default_type): Implemented.
10    
11            * CharacterData.pm (____new): Allow a scalar reference
12            as an input for the |data| attribute.
13            (base_uri, manakai_append_text): Implemented.
14    
15            * DOMConfiguration.pm (set_parameter): Resetting implemented.
16    
17            * DOMDocument.pm (____new): Set default values to
18            configuration parameter whose default is true.
19            (document_uri, input_encoding): Implemented.
20            (all_declarations_processed, manakai_is_html): Implemented.
21            (base_uri, manakai_append_text,
22            manakai_entity_base_uri, strict_error_checking,
23            xml_encoding, xml_version, xml_standalone): Implemented.
24    
25            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
26            (get_attribute, get_attribute_node): Alpha version.
27            (set_attribute_node, set_attribute_node_ns): Implemented.
28            (set_attribute_ns): Accept non-ARRAY qualified name.
29    
30            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
31            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
32    
33            * DocumentType.pm (public_id, system_id): Implemented.
34            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
35            manakai_append_text): Implemented.
36            (element_types, general_entities, notations,
37            set_element_type_definition_node, set_general_entity_node,
38            set_notation_node): Alpha version.
39    
40            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
41            (attribute_definitions, set_attribute_definition_node): Alpha version.
42    
43            * Entity.pm (has_replacement_tree, public_id, system_id,
44            manakai_declaration_base_uri, manakai_entity_base_uri,
45            manakai_entity_uri): Implemented.
46    
47            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
48            (base_uri, manakai_entity_base_uri): Implemented.
49    
50            * Node.pm (base_uri): Implemented.
51            (text_content): Don't check read-only or not
52            unless |strict_error_checking|.
53            (manakai_append_text): Implemented.
54            (get_feature): Alpha.
55            (manakai_set_read_only): Implemented.
56    
57            * Notation.pm (public_id, system_id, manakai_append_text,
58            manakai_declaration_base_uri): Implemented.
59    
60            * ProcessingInstruction.pm (manakai_base_uri,
61            base_uri, manakai_append_text): Implemented.
62    
63    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
64    
65            * DOMConfiguration.pm: New module.
66    
67            * Attr.pm (trivial accessor for read-write attributes): Throw
68            an exception if the node is read-only.  Delete the property
69            if undef is specified.
70            (prefix): Implemented.
71    
72            * DOMElement.pm (trivial accessor for read-write attributes): Throw
73            an exception if the node is read-only.  Delete the property
74            if undef is specified.
75            (prefix): Implemented.
76            (text_content, manakai_append_text): Old implementations are removed.
77    
78            * DOMCharacterData.pm (text_content): Implemented.
79    
80            * DOMDocument.pm (____new): Initialize the strict-document-children
81            parameter by true.
82            (text_content): Reimplemented.
83            (dom_config): New.
84    
85            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
86    
87            * DocumentType.pm (text_content): Implemented.
88    
89            * ElementTypeDefinition.pm (text_content): Implemented.
90    
91            * Node.pm (___report_error): New method.
92            (text_content): Implemented.
93            (manakai_append_text): Copied from |DOMElement.pm|.
94    
95            * Notation.pm (text_content): Implemented.
96    
97            * ProcessingInstruction.pm (text_content): Implemented.
98    
99            * Text.pm (is_element_content_whitespace): Alpha version.
100    
101    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
102    
103            * DOMException.pm (Message::IF::DOMException): Extends
104            the |Message::Util::Error| class.
105    
106            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
107            (CLEAR): Not all items were removed.
108    
109    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
110    
111            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
112            DocumentType.pm, Entity.pm,
113            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
114    
115            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
116            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
117    
118            * DOMDocument.pm (AUTOLOAD): Typo fixed.
119    
120            * Node.pm (==, !=): Implemented.
121            (manakai_read_only): Implemented.
122            (is_same_node): Implemented.
123            (is_equal_node): Alpha version.
124            (manakai_set_read_only): Alpha version.
125            (child_nodes, first_child, last_child, previous_sibling): Duplicate
126            definitions are removed.
127    
128    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
129    
130            * Node.pm: First alpha version of implementation of attributes.
131    
132    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
133    
134            * ProcessingInstruction.pm, EntityReference.pm,
135            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
136            ElementTypeDefinition.pm, AttributeDefinition.pm,
137            DocumentType.pm, DOMElement.pm, Attr.pm,
138            CharacterData.pm, Text.pm, Comment.pm (node_name,
139            node_value, node_type): Implemented.
140    
141    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
142    
143            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
144            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
145            AttributeDefinition.pm: New modules.
146    
147            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
148            (create_attribute_definition, create_element_type_definition,
149            create_document_type_definition, create_cdata_section,
150            create_processing_instruction, create_entity_reference,
151            create_general_entity, create_notation): Prototypes added.
152    
153            * DOMImplementation.pm (create_document_type): Prototype added.
154    
155            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
156            and 'Message::IF::DocumentTypeDeclaration' added.
157            (create_document_type, create_document_type_definition):
158            New methods.
159    
160    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
161    
162            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
163            DOMElement.pm, Attr.pm, DocumentType.pm,
164            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
165            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
166    
167    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
168    
169            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
170            specifies unknown value and trys to recover from the error.
171    
172    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
173    
174            * TreeCore.dis (manakaiLocalName): New attribute.
175    
176    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
177    
178            * GenericLS.dis (GLSException): New interface.
179    
180    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
181    
182            * |InputProcessor|s and |OutputProcessor|s are
183            named so that |report| statements in Perl
184            module outputs can be identified by name. |dis:dataType|s
185            of |DISCore:TFQNames| are all replaced
186            by |DISCore:QName|.
187    
188    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
189    
190            * Element.dis (createElementNS): If an array reference
191            is specified as the |qualifiedName| parameter,
192            don't set the first item as the local name
193            even if the second item is not specified (or
194            specified as |undef|).
195            (createElementNS, setAttribute, setAttributeNS,
196            removeAttribute, removeAttributeNS,
197            setAttributeNode, setAttributeNodeNS,
198            removeAttributeNode, removeAttributeNodeNS): Sets
199            or removes the |tc:contentAttributeList| value.
200    
201            * TreeCore.dis (AttrMap.item): Caches the result
202            of sorting of content attribute names.
203            (getAttrMap, getElementTypeDefNodeMap,
204            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
205            (tc:contentAttributeList): New property.
206    
207    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
208    
209            * DOMFeature.dis (ForDef): Removed.
210            (f:provides, f:through): Removed.
211            (Version): Removed.
212            (implementFeature): Removed.
213    
214    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
215    
216            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
217            GenericLS.dis, TreeCore.dis, DOMString.dis,
218            XML.dis, Element.dis, Document.dis, TreeStore,dis,
219            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
220            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
221            are removed.
222    
223    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
224    
225            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
226            GenericLS.dis, TreeCore.dis, DOMString.dis,
227            XML.dis, Element.dis, Document.dis, TreeStore,dis,
228            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
229            SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications
230            and |DefaultFor|s are removed.
231    
232    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
233    
234            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
235            GenericLS.dis, TreeCore.dis, DOMString.dis,
236            XML.dis, Element.dis, Document.dis, TreeStore,dis,
237            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
238            SimpleLS.dis, DOMMain.dis: References
239            to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|,
240            |ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3|
241            modes are removed.
242    
243    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
244    
245            * CharacterData.dis, TreeCore.dis (Require): References
246            to the |Grove.dis| module are removed.
247    
248    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
249    
250            * DOMFeature.dis (f:implementation, f:revImplementation): Removed.
251            (Require): Reference to the |Grove.dis| module is removed.
252    
253    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
254    
255            * DOMCore.dis (ManakaiDOMImplementation): The
256            class is no longer plays the role of
257            a |mg:NodeRefRole|.  Redundant |f:provides|
258            properties are removed.
259    
260    2006-12-29  Wakaba  <wakaba@suika.fam.cx>
261    
262            * TreeCore.dis, DOMCore.dis, Document.dis,
263            Element.dis, CharacterData.dis, XML.dis,
264            XDoctype.dis, DOMString.dis, TreeStore.dis,
265            XMLParser.dis: Use Perl native
266            hashs and |Scalar::Util|'s weak references in favor of |Grove.dis|
267            for DOM nodes.  See
268            also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>.
269    
270    2006-12-03  Wakaba  <wakaba@suika.fam.cx>
271    
272            * DOMFeature.dis, TreeCore.dis: Unused |role|s are removed.
273    
274    2006-12-02  Wakaba  <wakaba@suika.fam.cx>
275    
276            * DOMString.dis: New module.
277    
278            * DOMString.pm: New file.
279    
280            * DOMCore.dis (min): Moved from |DOMFeature.dis|.
281            (ImplementationRegistryVariable): Moved from |DOMFeature.dis|.
282            Now it references the |DOMImplementationRegistry| object.
283            (DOMImplementationRegistryVariable): Moved from |DOMMain.dis|.
284            (DOMImplementationRegistry): New interface and
285            class, reformed from |ImplementationRegistry| in |DOMFeature.dis|
286            and |DOMImplementationRegistry| in |DOMMain.dis|.  Note
287            that the class no longer support |get_implementation|
288            and |get_implementation_list| methods from
289            the |ImplementationRegistry| interface.
290            (DOMImplementationList): Class implemented; no
291            longer inherits from |ImplementationList|.
292            (DOMImplementationSource): Class implemented; no
293            longer inherits from |ImplementationSource|.  Note that
294            the class no longer support |get_implementation|
295            and |get_implementation_list| methods from
296            the |ImplementationSource| interface.
297            (DOMStringList): Removed.
298    
299            * DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature,
300            ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature,
301            ManakaiDOM:DOMXMLFeatureXML11, most part of
302            documentation for obsolete DOM Level 3 Minimum Implementation
303            module, obsolete property name aliases,
304            ImplemenationRegistryVar, ImplementationRegistry,
305            DEBUG, MIString, ImplementationList, ImplementationSource,
306            ManakaiDOM:implID): Removed.
307    
308            * DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed.
309            (DOMString): Removed.
310            (DOMImplementationRegistryVar, DOMImplementationRegistry): Removed.
311    
312            * Makefile: |DOMString.pm| is added.
313    
314            * TreeCore.dis (is_default_namespace): |null| was
315            returned where a false is expected (|null| is
316            a false in Perl, but real |false| is appropriate here).
317    
318    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
319    
320            * DOMCore.dis (TypeInfo, UserDataHandler): Removed.
321    
322            * Element.dis (TypeInfo): Moved from |DOMCore.dis|.
323    
324            * TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|.
325    
326    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
327    
328            * DOMFeature.dis (ImplementationList, ImplementationSource,
329            ImplementationRegistry): Parameters |features|
330            now allow |null| (equivalent to an empty string).
331    
332    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
333    
334            * CharacterData.dis (ManakaiDOMDocumentCharacterData): New
335            class.  Factory methods |createTextNode| and |createComment|
336            are moved from |ManakaiDOMDocument|.
337    
338            * DOMCore.dis: References to |ManakaiDOMObject|
339            are removed.
340            (tc:createImplForTest): Moved from |TreeCore.dis|.
341            (DOMImplementation.___create_node_ref): Support
342            for the |mg:nodeRefClass| option is removed.
343            (ManakaiDOMConfiguration.___report_error): Moved
344            from |ManakaiDOMObject| class.
345    
346            * DOMFeature.dis (domidl:extends): New property.
347            (f:getFeatureImpl): Support for |+| classes is removed.
348    
349            * DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed.
350            (ManakaiDOM:ManakaiDOMObject): Removed.
351            (DOMDataType): Removed.
352    
353            * Document.dis (ManakaiDOMImplementationDocument):
354            The |createDocument| method is moved from
355            the |ManakaiDOMImplementationTC| in |TreeCore.dis|.
356            (ManakaiDOMDocument.___create_node_ref): Removed.
357            (createElement, createElementNS, createAttribute,
358            createAttributeNS, createTextNode, createComment,
359            createCDATASection, createEntityReference,
360            createProcessingInstruction): Class implementations
361            are moved to each module.
362    
363            * Element.dis (ManakaiDOMImplementationElement): Factory
364            methods are moved from |Document.dis|.
365            (ManakaiDOMElement.___create_node_ref): Support
366            for old class registry is removed.
367            (ManakaiDOMAttr.___create_node_ref): Removed.
368            (Attr.baseURI): Implementation
369            for |xml:base| attribute is merged.
370            (Attr.nodeValue, Attr.value): Implementation
371            for |xml:id| attribute is merged.
372    
373            * TreeCore.dis (ManakaiDOMImplementationTC): Removed.
374    
375            * XDoctype.dis (ManakaiDOMImplementationXDoctype): The
376            definition for |createDocumentType| method
377            is moved from |TreeCore.dis|.
378    
379            * XML.dis (ManakaiDOMXMLDocument): Factory
380            methods are moved from |Document.dis|.
381            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged
382            into |ManakaiDOMAttr| in |Element.dis|).
383    
384    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
385    
386            * Element.dis (___get_node_ref): |eval|ed |require|
387            statement was broken.
388    
389            * DOMFeature.dis (getImplementationList): Argument
390            is not passed to the |getImplementation| method.
391    
392            * TreeStore.dis (DOMImplementationTreeStore): It
393            did not |f:implements| the |TSFeature30| feature.
394    
395            * XMLParser.dis: Use |create_uri_reference|
396            method instead of internal |_new| method
397            to create a URI reference object.
398    
399    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
400    
401            * DOMCore.dis (ManakaiDOMImplementation): No longer
402            explicitly inherits |urigen:ManakaiURIImplementation| (and
403            the |f:ManakaiMinimumImplementation| class inherited
404            by it).  The |f:Minimum| feature is ever implemented
405            for compatibility (but is expected to be removed).
406            Internal methods such as |___report_error| are copied from
407            obsolete |f:MinimumImplementation| class.  DOM3
408            methods |hasFeature| and |getFeature| are also
409            moved from that class, but they now support no
410            foreign classes.
411    
412            * DOMFeature.dis (ManakaiImplementationSource): It
413            now |p:require|s |Message::Util::AutoLoad::Registry|.
414            The class no longer support classes
415            other than |ManakaiDOMImplementation|.  Note
416            that the |ImplementationRegistry| object does continue
417            to support foreign classes via foreign classes
418            implementing |ImplementationSource|
419            or |DOMImplementationSource| interface.
420            (MinimumImplementation): Removed.
421    
422            * DOMLS.dis (ManakaiDOMImplementationLS): It no
423            longer inherit the |ManakaiDOMImplementation|; it
424            is now expected to be implemented by |DOMImplementation|
425            objects.
426    
427            * DOMMain.dis (null): Removed.
428    
429            * Document.dis (___create_node_ref): It no
430            longer support foreign classes other
431            than |Message::DOM::Document::ManakaiDOMDocument|.
432            Note that document format specific DOM
433            interfaces, if supported, should be
434            all instances of the |Document| interface
435            in the implementation, as defined
436            in the Web Applications 1.0 specification (where
437            the |HTMLDocument| interface must be implemented
438            by all |Document| objects, even if the |Document|
439            contains no HTML element).
440    
441            * GenericLS.dis (GLSImplementation): It no
442            longer inherit the |MinimumImplementation|; it
443            is now expected to be implemented by |DOMImplementation|
444            objects.
445            (createGLSParser, createGLSSerializer): Load
446            module implementing parser or serializer
447            if necessary.
448    
449            * Traversal.dis (ManakaiDOMDocumentTraversal): It no
450            longer inherits the |ManakaiDOMDocument|; it
451            is now expected to be implemented by |Document|
452            objects.
453    
454            * XDP.dis (XDPDocument): It no longer
455            inherits the |Document|; it is now expected
456            to be implemented by all |Document| objects.
457    
458            * XDoctype.dis (ManakaiDOMDocumentXDoctype): It no
459            longer inherits the |ManakaiDOMDocument|; it
460            is now expected to be implemented by |Document|
461            objects.
462    
463    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
464    
465            * DOMCore.dis (ManakaiDOMImplementation): No longer
466            explicitly inherits |tc:ManakaiDOMImplementationTC|.
467            (ManakaiDOMImplementation.AUTOLOAD): New method definition.
468    
469            * TreeCore.dis (ManakaiDOMImplementationTC): Extends
470            the |ManakaiDOMImplementation| class.
471    
472    2006-11-03  Wakaba  <wakaba@suika.fam.cx>
473    
474            * DOMFeature.dis: Definitions for various concepts
475            are added.
476    
477            * GenericLS.dis (GLSImplementation): It no
478            longer inherits the |MinimumImplementation|; rather,
479            any |ManakaiMinimumImplementation| object also
480            implements |GLSImplementation| methods.
481    
482            * TreeStore.dis (DOMImplementationTreeStore): It no
483            longer inherits the |DOMImplementation|; rather,
484            any |ManakaiDOMImplementation| object also
485            implements |DOMImplementationTreeStore| methods.
486    
487    2006-08-15  Wakaba  <wakaba@suika.fam.cx>
488    
489            * TreeStore.pm: Added to the CVS repository
490            to enable for the dis database to contain XML
491            fragments.
492    
493            * Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added.
494    
495            * TreeStore.dis (Namespace): Namespace URI was incorrect.
496    
497    2006-06-18  Wakaba  <wakaba@suika.fam.cx>
498    
499            * Traversal.dis (expandEntityReferences): Syntax was incorrect.
500    
501            * TreeCore.dis (manakaiReadOnly): Test assertion was incorrect.
502    
503            * XDP.dis (dtdText): Test assertion was incorrect.
504    
505    2006-05-21  Wakaba  <wakaba@suika.fam.cx>
506    
507            * XDP.dis (XDPEntityValue.stringify): Don't escape
508            any |%|s in |xdp:attr-definition| children.
509    
510    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
511    
512            * XDP.dis (createXDPRNIKeyword): The Perl method
513            name property is added.
514    
515    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
516    
517            * XDP.dis (createXDPIf): New method.
518            (XDPIfElement): New interface.
519    
520    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
521    
522            * XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition):
523            New methods.
524    
525    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
526    
527            * XDP.dis (XDPDocument): A number of constructor methods
528            are added.
529            (XDPTextDecl.dtdText): The |xml| target was missing.
530    
531    2006-05-14  Wakaba  <wakaba@suika.fam.cx>
532    
533            * Traversal.dis (SerialWalker): New interface.
534            (manakaiCreateSerialWalker): New method.
535    
536    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
537    
538            * Traversal.dis (testNode): Calls |acceptNode| method
539            rather than |&{}| dereferencing.
540            (acceptNode): Implemented.
541    
542    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
543    
544            * XDP.dis: New module.
545    
546            * Makefile: |XDP.dis| is added.
547    
548            * Traversal.dis (NodeFilter): |InputProcessor|
549            and |OutputProcessor| are added.
550    
551    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
552    
553            * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.
554            (TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support
555            is added.  The |FILTER_REJECT| value is treated
556            as |FILTER_ACCEPT| if the |currentNode| is in the
557            rejected subtree as specified in the spec.
558    
559    2006-05-05  Wakaba  <wakaba@suika.fam.cx>
560    
561            * SimpleLS.dis: An |xmlns:| prefix was missing.
562    
563    2006-05-04  Wakaba  <wakaba@suika.fam.cx>
564    
565            * SimpleLS.dis: Namespace bugs are fixed.
566    
567    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
568    
569            * .cvsignore: Updated.
570    
571            * Traversal.dis: Unused declarations are removed.
572    
573    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
574    
575            * CharacterData.dis (Require): A reference to
576            the |MDOM:Traversal| module is added.
577            (wholeText): Implemented.
578    
579    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
580    
581            * Makefile: |Traversal.dis| is added.
582    
583            * Traversal.dis: New module.
584    
585            * TreeCore.dis (___report_error): Return value was
586            not propagated.
587    
588    2006-04-29  Wakaba  <wakaba@suika.fam.cx>
589    
590            * Element.dis (removeAttributeNS): A runtime error
591            was occurred if there was no specified attribute node.
592    
593            * TreeCore.dis (manakaiLanguage): New attribute.
594    
595    2006-04-28  Wakaba  <wakaba@suika.fam.cx>
596    
597            * TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly):
598            New attributes.
599    
600            (StaticNodeList): New interface.
601    
602    2006-04-24  Wakaba  <wakaba@suika.fam.cx>
603    
604            * DOMCore.dis (c:SET_TO_NULL_ERR): New error code.
605    
606    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
607    
608            * SimpleLS.dis: Reimplemented.
609    
610    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
611    
612            * DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now
613            a qualified name.
614            (tc:EXTERNAL_NODE_COMPARISON_ERR): New error type.
615    
616            * TreeCore.dis (compareDocumentPosition): Implemented.
617            (normalize): Implemented.
618            (STORESIZE, CLEAR): Were not implemented for |EmptyNodeList|
619            class.
620    
621    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
622    
623            * DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed.
624    
625    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
626    
627            * CharacterData.dis (length, insertData, substringData,
628            appendData, deleteData, replaceData, splitText): Reimplemented.
629    
630            * DOMCore.dis (NEGATIVE_LENGTH_ERR): New error.
631            (c:index): The definition was missing.
632            (c:length): New property.
633    
634    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
635    
636            * XMLParser.dis (close): Invoke |close| method
637            rather than |close| function.
638    
639    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
640    
641            * CharacterData.dis: New module split from |TreeCore.dis|.
642    
643            * CharacterData.pm: Added to the CVS repository.
644    
645            * TreeCore.dis: The |CharacterData|, |Text|, and |Comment|
646            interfaces are removed.
647            (Require): A reference to the |MDOM:CharacterData| module
648            is added.
649    
650            * DOMMain.dis (StringExtended, StringOutOfBoundsException): Removed.
651    
652            * DOMCore.dis (StringOutOfBoundsException): New error.
653    
654            * Makefile: |CharacterData.pm| is added.
655    
656    2006-04-09  Wakaba  <wakaba@suika.fam.cx>
657    
658            * XMLParser.dis (Require): Requires the |MCharset:Encode|
659            module.
660            (parse): Set the |inputEncoding| attribute of the generated document
661            object.
662            (resolveLSInput default implementation): The |byteStream|
663            and |encoding| attributes of the |LSInput| interface
664            are now supported.
665            (resolveLSInput): Parameters |impl| and |parser| are added.
666            (InputFile.inputEncoding): New attribute.
667    
668    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
669    
670            * Document.dis (adoptNode test): Documents were
671            made by different documents.
672    
673    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
674    
675            * XMLParser.dis: The |cfg:dtd-default-attributes| configuration
676            parameter is changed to |cfg:dtd-default-attribute|.
677    
678    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
679    
680            * TreeCore.dis: The |DOMMain:raiseException| elements
681            are replaced by |disPerl:EXCEPTION|s.
682    
683    2006-04-03  Wakaba  <wakaba@suika.fam.cx>
684    
685            * DOMMain.dis (GetPropNode, CheckReadOnly): Removed.
686    
687            * Node.dis (cfg:dtd-default-attribute): The configuration
688            parameter |cfg:dtd-default-attributes| is renamed
689            as |cfg:dtd-default-attribute|.
690            (Roles): Definitions are changed so that classes
691            that implement those classes MUST implement the |Node|
692            and its subinterfaces.
693            (cfg:dtd-attribute-type): New configuration parameter.
694    
695            * Document.dis (adoptNode): Don't throw exception
696            if |strictErrorChecking| is |false|.
697    
698            * Element.dis (setAttribute, setAttributeNS): Don't
699            set [attribute type] if the |cfg:dtd-attribute-type|
700            configuration parameter is set to |false|.
701            (removeAttribute, removeAttributeNS, removeAttributeNode): Don't
702            regenerate default attribute nodes if the |cfg:dtd-default-attribute|
703            configuration parameter is set to |false|.
704    
705    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
706    
707            * TreeStore.dis: New module.
708    
709            * Makefile: |TreeStore.dis| is added.
710    
711    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
712    
713            * XMLParser.dis: Updated so that it can be used
714            with |TreeCore.pm|, |Document.pm|, |Element.pm|,
715            and |XML.pm|.  Set the read-only flag to
716            the |DocumentType|, |Entity|, and |EntityReference| noes.
717    
718            * Node.dis (textContent): It did not handle descendant
719            element and entity reference nodes.
720    
721            * Element.dis, XML.dis (manakaiBaseURI.get): Its
722            definition has been changed to return only explicit
723            base URI specification.
724    
725            * DOMLS.dis (LSInput, LSOutput): They no longer
726            inherits the |ManakaiDOM:ManakaiDOMObject| class.
727    
728            * Tree.dis, DOMXML.dis, ManakaiDOMLS2003.dis: Removed.
729    
730            * Tree.pm, DOMXML.pm: Removed.
731    
732            * TreeCore.pm, Document.pm, Element.pm: Added
733            to the CVS repository since they are necessary to
734            build the dis library.
735    
736            * Makefile: Sync'ed to new modules disposition.
737    
738    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
739    
740            * Makefile: Rules for |Tree.pm| and |DOMXML.pm| are
741            removed.  For |Element.pm| and |Document.pm| are added.
742    
743            * Document.dis, Element.dis: New module split from |TreeCore.dis|.
744    
745            * TreeCore.dis (Document, DocumentFragment, Element, Attr): Removed.
746    
747    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
748    
749            * DOMFeature.dis (getImplementation, getImplementationList): Support
750            for new class information variables.
751            (DOMLS:Generic): This old feature name is removed.
752    
753            * GenericLS.dis (createGLSParser, createGLSSerializer): Support
754            for new class information variables.
755    
756            * TreeCore.dis (manakaiExpandedURI): New attribute.
757            (Document, Element.___create_node_ref): New method
758            implementations.
759    
760    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
761    
762            * TreeCore.dis (setIdAttribute, setIdAttributeNS, setIdAttributeNode):
763            Reimplemented.
764            (isId): Setter is added.
765            (Element.normalize): Definition copied from the |MDOM:Tree|
766            module.
767    
768    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
769    
770            * Makefile (clean-db): New rule.
771    
772            * TreeCore.dis (setUserData): Schedule to invoke
773            the user data handler when the node is removed
774            from the memory.
775            (setAttribute, setAttributeNS): Set the [attribute type]
776            if DTD attribute definition is available.
777            (CharacterData members): Definitions copied from
778            the |MDOM:Tree| module.
779    
780    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
781    
782            * DOMCore.dis (DOMStringList.==): New overloaded operator.
783    
784            * DOMFeature.dis (ManakaiHasFeatureByGetFeature): The
785            class did not implement the |GetFeature| interface.
786            (hasFeature): The |+| prefix was not taken into account.
787    
788            * TreeCore.dis (Node): The class now inherits
789            the |ManakaiHasFeatureByGetFeature| class.  It now
790            implements the |f:GetFeature| and |ecore:MUErrorTarget|
791            interfaces.
792            (CreateNodeRefMethod): The |mg:nodeRefInterfaces| option
793            is supported.
794            (lookupNamespaceURI, lookupPrefix, isDefaultNamespace): Reimplemented.
795            (manakaiParentElement): New attribute.
796    
797            * XDoctype.dis (d:Feature): Old feature name |ManakaiDOM:XDoctype|
798            is removed.
799            (lookupPrefix): Old method implementation is removed.
800    
801            * XML.dis (CDATASection): The |mg:NodeRefRole| was
802            missing because of the |DISCore:stopISARecursive| property.
803    
804            * TreeCore.dis, XML.dis, XDoctype.dis, DOMCore.dis, DOMFeature.dis:
805            They now pass all tests included in those modules!
806    
807    2006-03-30  Wakaba  <wakaba@suika.fam.cx>
808    
809            * DOMCore.dis (Require): A reference to the |MURI:Generic|
810            module is added.
811            (ManakaiDOMStringList.DESTROY): Removed (no longer necessary).
812            (ManakaiDOMImplementation): It now inherits
813            the |urigen:ManakaiURIImplementation| class and
814            implements the |ecore:MUErrorTarget| interface.  It no
815            longer inherits the |ManakaiDOM:ManakaiDOMObject| class.
816            (ManakaiDOMImplementation.___report_error): New method.
817    
818            * DOMFeature.dis (Require): It now references the |Util:Grove|
819            module instead of |Util:ManakaiNode| module.
820            (DOMMetaImpl:ManakaiDOMImplementationRole): Removed.
821            (f:ManakaiMinimumImplementationCompatible): New role.
822            (ManakaiMinimumImplementation): Now it is built
823            on the new |Util:Grove| module rather than the |Util:ManakaiNode|
824            module.
825            (f:getFeatureImpl): Moved from the |MDOM:TreeCore| module.
826            (c:implementation): Removed.
827            (f:implementation, f:revImplementation): New properties.
828    
829            * DOMMain.dis (checkNamespacePrefix): DOM2 codes are removed.
830    
831            * Tree.dis (cfg:clone-entity-reference-subtree,
832            cfg:dtd-default-attributes, cfg:xml-id,
833            cfg:strict-document-children): Removed (moved
834            to the |MDOM:TreeCore| module).
835    
836            * TreeCore.dis (Require): The reference to the |MURI:Generic|
837            module is removed.
838            (ManakaiDOMImplementationTC): Some members are removed
839            since they are incorporated to the |c:ManakaiDOMImplementation|
840            or the |f:ManakaiMinimumImplementation|.
841            (tc:nodeRefClass): Removed (moved to the |Util:Grove| module).
842            (replaceChildImpl1): A typo on the removing the parent node
843            of the old child node is fixed.
844            (f:getFeatureImpl): Removed (moved to the |MDOM:DOMFeature|
845            module).
846            (tc:implementation, tc:revImplementation): Removed (moved
847            to the |MDOM:DOMFeature| module).
848            (Document.appendChild, insertBefore, replaceChild): Sets
849            the |ownerDocument| attribute of the |tx:DocumentType| nodes.
850            (Attr.prefix, Element.prefix): Don't raise "uninitialized"
851            when the new value is |null|.
852            (Attr.___create_node_ref): Attribute name and
853            owner element type specific classes are supported (it
854            was partially implemented but was incorrect).
855            (ManakaiDOMGetElementsNodeList.item): Don't return
856            a node if the |index| is negative.
857            (setNamedItem): Various typos are fixed.
858            (removeNamedItem): The node was not removed orz
859            (cfg:clone-entity-reference-subtree,
860            cfg:dtd-default-attributes, cfg:xml-id,
861            cfg:strict-document-children): Definitions are moved
862            from the |MDOM:Tree| module.  Note that the tests for default
863            attributes still fail.
864            (ErrDef, IntPropDef): Moved from the |MDOM:Tree| module.
865            (Attr): Role name was incorrect.
866    
867            * XDoctype.dis (setDefinitionNode): Return value was
868            not set.
869            (AttributeDefinition): Role name was incorrect.
870    
871            * XML.dis (Require): A reference to the |DISlib:DISMarkup|
872            module is added.
873            (Notation.appendChild, insertBefore, replaceChild): New method
874            implementations.
875            (Entity.appendChild, insertBefore, replaceChild): New method
876            implementations.
877            (EntityReference.appendChild, insertBefore, replaceChild): Now
878            they are defined as copies of ones in the |Entity| class.
879            (XMLBaseAttribute, XMLIdAttribute): Now they are
880            namespace unaware attributes.
881            (XMLBaseAttributeNS, XMLIdAttributeNS): New attributes.
882            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): References
883            to namespace aware attributes are added.
884    
885    2006-03-29  Wakaba  <wakaba@suika.fam.cx>
886    
887            * DOMCore.dis: Namespace prefixes are changed to new ones.
888    
889            * TreeCore.dis (createDocument, createDocumentType): Reimplemented (but
890            untested).
891            (___report_error): Reimplemented (untested).
892            (manakaiSetReadOnly): New method.
893            (Attr.___create_node_ref): New method (untested).
894            (Document.getFeature): |require|s the |MDOM:XML| Perl module.
895            (createEntityReference, cloneNode): Support for
896            the |cfg:entity-reference-read-only| configuration
897            parameter is removed; newly created entity references
898            are always read-only and use the |manakaiSetReadOnly| method
899            if desired.
900            (Element.manakaiBaseURI): Reimplemented (untested).
901    
902            * XDoctype.dis (createGeneralEntity, createNotation): |require|s
903            the |MDOM:XML| Perl module.
904            (DocumentTypeDefinition.___create_node_stem): Sets
905            the |tc:implementation| internal property if its value
906            is provided.  The |infoset:content| internal property name
907            was incorrect.
908            (DocumentTypeDefinition, ElementTypeDefinition): |MUST|s on
909            read-only |NodeList| and |DOMStringList| are added
910            for clarification.
911    
912    2006-03-26  Wakaba  <wakaba@suika.fam.cx>
913    
914            * DOMCore.dis (Require): Reference to the |MDOM:TreeCore|
915            module is added.
916            (DOMStringList): Reimplemented for new |d:AttributeDefinition|
917            implementation (untested).
918    
919            * TreeCore.dis (baseURI): Reimplemented (untested).
920            (Roles): Definitions added.
921    
922            * XDoctype.dis (Require): References to the |MDOM:TreeCore|
923            and |MDOM:XML| modules are added.  Reference to the |MDOM:Tree|
924            module is removed.
925            (DocumentXDoctype): Reimplemented (untested).
926            (DocumentTypeDefinition, DocumentTypeDeclaration):
927            Reimlemented (untested).
928            (ElementTypeDefinition, AttributeDefinition): Reimplemented (untested).
929    
930            * XML.dis (FeatureDef): New features (definitions copied
931            from the |MDOM:DOMXML| module).
932            (DocumentType): New interface (definition copied from
933            the |MDOM:DOMXML| module).
934            (CDATASection, Notation, Entity, EntityReference, ProcessingInstruction):
935            Reimplemented (untested).
936            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Reimplemented (untested).
937    
938    2006-03-25  Wakaba  <wakaba@suika.fam.cx>
939    
940            * TreeCore.dis (Document): Most methods are reimplemented (untested).
941    
942    2006-03-25  Wakaba  <wakaba@suika.fam.cx>
943    
944            * TreeCore.dis (Document): Attributes are reimplemented (untested).
945            (Text, DocumentFragment, Comment): Most members are
946            reimplemented (untested).
947    
948    2006-03-24  Wakaba  <wakaba@suika.fam.cx>
949    
950            * DOMMain.dis (checkXMLNamesQName): Some checks are
951            removed to sync with DOM Level 3 Core specification.
952    
953            * TreeCore.dis (Element): Most methods are reimplemented (untested).
954            (GetElementsNodeList): Reimplemented (untested).
955    
956    2006-03-23  Wakaba  <wakaba@suika.fam.cx>
957    
958            * Tree.dis (cfg:strict-document-children): The configuration
959            parameter must also affect on |manakaiAppendText|
960            and |textContent| on |Document| nodes.
961    
962            * TreeCore.dis (Node.CreateNodeRefMethod): The |tc:nodeRefClass|
963            parameter changes the class to |bless|.
964            (Node): Most methods are reimplemented.  (Untested)
965            (CharacterData, Attr): Most methods and attributes are
966            reimplemented.  (Untested)
967    
968            * XML.dis, XDoctype.dis: Most |Node| methods are
969            reimplemented (untested).
970    
971    2006-03-23  Wakaba  <wakaba@suika.fam.cx>
972    
973            * TreeCore.dis, XML.dis, XDoctype.dis (Node.textContent): Reimplemented
974            (untested).
975    
976    2006-03-22  Wakaba  <wakaba@suika.fam.cx>
977    
978            * DOMCore.dis (DOMSTRING_SIZE_ERR): It now has
979            a qualified name.
980    
981            * DOMMain.dis (ensureNamespacePrefix): Undefines
982            the prefix if it is an empty string.  (Note that
983            it is defined as implementation dependent in
984            DOM Level 3 Core specification).
985    
986            * TreeCore.dis (Require): It now references the |MDOM:XDoctype|
987            module.
988            (Node): Attributes are reimplemented (untested).
989    
990            * XML.dis (Require): It now references the |MDOMX:XDoctype|
991            module.
992            (Node): Attributes are reimplemented (untested).
993            (Entity, Notation): New interfaces.
994    
995            * XDoctype.dis (Node): Attributes are reimplemented (untested).
996    
997    2006-03-19  Wakaba  <wakaba@suika.fam.cx>
998    
999            * TreeCore.dis (childNodes, firstChild, lastChild,
1000            nextSibling, previousSibling, appendChild, insertBefore,
1001            replaceChild, removeChild, createDocumentFragment,
1002            createEntityReference, createProcessingInstruction,
1003            domConfig, documentElement, implementation, manakaiAppendText): New.
1004            (NodeList, DocumentFragment): New interfaces.
1005    
1006            * XML.dis (EntityReference, ProcessingInstruction): New interface.
1007    
1008    2006-03-18  Wakaba  <wakaba@suika.fam.cx>
1009    
1010            * TreeCore.dis (Require): The |MDOM:XML| module is added.
1011            (createAttributeNS, createTextNode, createComment,
1012            createCDATASection): New methods.
1013            (Attr, Text, Comment, CharacterData): New interfaces.
1014    
1015            * Makefile: |XML.dis| is added.
1016    
1017            * XML.dis: New module.
1018    
1019    2006-03-17  Wakaba  <wakaba@suika.fam.cx>
1020    
1021            * TreeCore.dis (manakaiReadOnly): New attribute.
1022            
1023    2006-03-17  Wakaba  <wakaba@suika.fam.cx>
1024    
1025            * TreeCore.dis (NodeType, nodeType, localName, namespaceURI,
1026            prefix, isSameNode, ownerDocument, parentNode): New.
1027            (Element): New interface.
1028            (createElementNS): New method.
1029            (strictErrorChecking): New.
1030    
1031    2006-03-17  Wakaba  <wakaba@suika.fam.cx>
1032    
1033            * Makefile: |TreeCore.dis| is added.
1034    
1035            * TreeCore.dis: New module.
1036    
1037    2006-03-16  Wakaba  <wakaba@suika.fam.cx>
1038    
1039            * XMLParser.dis (cfg:entity-replacement-tree): New configuration
1040            parameter.
1041    
1042            * DOMXML.dis (manakaiExpanded): Renamed from |isExpanded|.
1043    
1044            * DOMCore.dis, Tree.dis, DOMLS.dis, XMLParser.dis: Lexical
1045            data types added to configuration parameters.
1046    
1047    2006-03-15  Wakaba  <wakaba@suika.fam.cx>
1048    
1049            * DOMCore.dis (c:DOMConfigurationParameter): Now it is
1050            a |DISSource:ResourceProperty|.
1051            (c:anyDOMConfigurationParameter): New property.
1052            (CParam, boolCParam): Now they are all |dis:subsetOf|
1053            the |c:anyDOMConfigurationParameter| property.
1054            (ForDocument, ForParser, ForSerializer): Removed.
1055    
1056            * DOMLS.dis, XMLParser.dis: Likewise.
1057    
1058    2006-03-12  Wakaba  <wakaba@suika.fam.cx>
1059    
1060            * DOMMain.dis, Tree.dis: Unused |dis:aliasChild| properties
1061            are removed.
1062    
1063            * GenericLS.pm: Added to the CVS repository since
1064            it is necessary to create the |Message::Util::DIS::DPG| module.
1065    
1066    2006-03-10  Wakaba  <wakaba@suika.fam.cx>
1067    
1068            * DOMCore.dis, DOMXML.dis, XDoctype.dis (manakaiAppendText): New
1069            method.
1070    
1071            * XMLParser.dis: Don't create adjacent text nodes.
1072    
1073    2006-03-09  Wakaba  <wakaba@suika.fam.cx>
1074    
1075            * DOMCore.dis (HIERARCHY_DOCUMENT_FRAGMENT_ITSELF_ERR): New error.
1076    
1077            * DOMXML.dis (appendChild, insertBefore, replaceChild): Method
1078            implementations are added.
1079    
1080            * XDoctype.dis (appendChild, insertBefore, replaceChild): Method
1081            implementations are added.
1082    
1083            * Tree.dis (appendChild, insertBefore, replaceChild): Method
1084            implementations are added.
1085            (IFCls1Def, NodeTypeDef): Don't define |ManakaiDOM:ForClass|
1086            resources unless for |ManakaiDOM:ManakaiDOMLatest|.
1087            (cfg:strict-document-children): New configuration parameter.
1088    
1089    2006-03-08  Wakaba  <wakaba@suika.fam.cx>
1090    
1091            * XDoctype.dis (replaceChild): Method implementations are added.
1092    
1093            * Tree.dis (replaceChild): Method implementations are added.
1094    
1095            * DOMXML.dis (replaceChild): Method implementations are added.
1096    
1097    2006-03-07  Wakaba  <wakaba@suika.fam.cx>
1098    
1099            * Tree.dis (ForAppendChild, ForInsertBefore, ForReplaceChild): New |for|
1100            definitions.
1101    
1102            * XDoctype.dis (insertBefore): New method implementation.
1103    
1104    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1105    
1106            * DOMXML.dis (insertBefore): Method implementations
1107            for |ProcessingInstruction| and |Notation| nodes are added.
1108    
1109            * Tree.dis (insertBefore): Method implementation
1110            for |CharacterData| nodes is added.
1111    
1112            * XDoctype.dis (insertBefore): Method implementation
1113            for |ElementTypeDefinition| nodes is added.
1114    
1115    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1116    
1117            * XDoctype.dis (appendChild): New method implementation.
1118    
1119    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1120    
1121            * DOMCore.dis (HIERARCHY_WRONG_DOCTYPE_ERR): New error.
1122            (REMOVE_DOCUMENT_ELEMENT_ERR): New error.
1123            (REMOVE_DOCUMENT_TYPE_ERR): New error.
1124    
1125            * DOMXML.dis (ManakaiDOMDocumentType): Removed.
1126            (ProcessingInstruction.appendChild, CDATASection.appendChild,
1127            Notation.appendChild): New method implementation.
1128    
1129            * Tree.dis (CharacterData.appendChild): New method implementation.
1130    
1131            * XDoctype.dis: Tests moved from |MDOM:DOMXML| module.
1132    
1133    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1134    
1135            * DOMXML.dis (ManakaiDOMXMLIdAttr): New class.
1136    
1137            * Tree.dis (createAttribute, createAttributeNS,
1138            setAttribute, setAttributeNS): They now supports
1139            the |cfg:xml-id| configuration parameter.
1140            (cfg:xml-id): New configuration parameter.
1141    
1142            * XDoctype.dis (createAttributeDefinition): It now
1143            supports the |cfg:xml-id| configuration parameter.
1144    
1145            * XMLParser.dis (parse): It now supports
1146            the |cfg:xml-id| configuration parameter.
1147    
1148    2006-03-05  Wakaba  <wakaba@suika.fam.cx>
1149    
1150            * XMLParser.dis (parse): Sets |Document.documentURI|
1151            and |Document.manakaiEntityBaseURI| attributes of the
1152            document created.
1153            (_ProcessingInstructionDTD): Sets the |manakaiBaseURI|
1154            property of the created node.
1155            (_SystemLiteral): Sets the |manakaiDeclarationBaseURI|
1156            of the created node.
1157            (ls-input-to-input-file.default): Sets the resolved
1158            system identifier to the |documentURI| attribute if available.
1159            Sets the |baseURI| attribute if available.
1160    
1161    2006-03-05  Wakaba  <wakaba@suika.fam.cx>
1162    
1163            * XDoctype.dis (DocumentTypeDefinition.implementation): New attribute.
1164            (Node.baseURI): New attribute implementations.
1165            (declarationBaseURI): Setter is added.
1166            (manakaiDeclarationBaseURI): New attribute.
1167    
1168            * Tree.dis (Require): A reference to the |MURI:Generic|
1169            module is added.
1170            (Node.baseURI): The implementation is revised.
1171            (getNodeReference): Attribute node classes specialized
1172            to attribute names are supported.
1173            (contentBaseURI, htmlBaseURI): Removed.
1174            (manakaiEntityBaseURI): New attribute.
1175            (ManakaiDOMImplementationDocument): It now inherits
1176            the |urigen:URIImplementation| class.
1177    
1178            * DOMMain.dis (isRelativeDOMURI): The definition
1179            of the URI scheme is synced with |Message::URI::Generic|'s
1180            one.
1181    
1182            * DOMXML.dis (Require): A reference to |DISlib:DISMarkup|
1183            module is added.
1184            (DocumentType.implementation): New attribute.
1185            (Node.baseURI): Implementations are added.
1186            (manakaiDeclarationBaseURI): New attributes.
1187            (manakaiEntityBaseURI): New attributes.
1188            (manakaiEntityURI): New attribute.
1189            (manakaiExternal): New attribute.
1190            (manakaiBaseURI): New attribute.
1191            (ManakaiDOMXMLBaseAttr): New class.
1192    
1193    2006-02-26  Wakaba  <wakaba@suika.fam.cx>
1194    
1195            * SimpleLS.dis (Require): Reference to the |MDOM:Tree|
1196            module was missing.
1197    
1198            * ManakaiDOMLS2003.dis: Some property names was incorrect.
1199    
1200            * Makefile (distclean): New rule.
1201    
1202    2006-02-26  Wakaba  <wakaba@suika.fam.cx>
1203    
1204            * DOMLS.dis: Removed from the CVS repository, since
1205            it has been no longer required to make the |daf| system
1206            itself.
1207    
1208    2006-02-26  Wakaba  <wakaba@suika.fam.cx>
1209    
1210            * Makefile: Revised for new |daf| database format.
1211    
1212    2006-02-25  Wakaba  <wakaba@suika.fam.cx>
1213    
1214            * DOMFeature.dis (Require): Missing reference to |DISlib:Test|
1215            module is added.
1216    
1217    2006-02-22  Wakaba  <wakaba@suika.fam.cx>
1218    
1219            * DOMLS.dis: Constants were typed as |dx:ErrorCode|
1220            by mistake.
1221    
1222    2006-02-18  Wakaba  <wakaba@suika.fam.cx>
1223    
1224            * XMLParser.dis (ManakaiDOMXMLParser): Implements |DOMLS:ParseString10|
1225            feature.
1226    
1227            * DOMCore.dis (c:LSPARSER_NOT_FOUND_ERR): New exception type.
1228    
1229            * DOMLS.dis (DOMLS:ParseString): New (moved from |SimpleLS.dis|).
1230            (DOMImplementationLS.createLSParser): Implemented.
1231            (DOMImplementationLS.createLSInput): Revised.
1232            (LSInput): Note on relationship with |GenericLS| is added.
1233    
1234            * SimpleLS.dis (DOMLS:ParseString): Removed (moved to |SimpleLS.dis|).
1235    
1236  2006-02-17  Wakaba  <wakaba@suika.fam.cx>  2006-02-17  Wakaba  <wakaba@suika.fam.cx>
1237    
1238          * XMLParser.dis (domConfig): New |targetType| of |xp:ManakaiDOMXMLParser|          * XMLParser.dis (domConfig): New |targetType| of |xp:ManakaiDOMXMLParser|

Legend:
Removed from v.1.130  
changed lines
  Added in v.1.222

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24