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

Legend:
Removed from v.1.139  
changed lines
  Added in v.1.233

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24