/[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.178 by wakaba, Sat Apr 29 11:05:08 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>  2006-04-29  Wakaba  <wakaba@suika.fam.cx>
955    
956          * Element.dis (removeAttributeNS): A runtime error          * Element.dis (removeAttributeNS): A runtime error

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24