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

Legend:
Removed from v.1.144  
changed lines
  Added in v.1.243

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24