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

Legend:
Removed from v.1.138  
changed lines
  Added in v.1.249

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24