/[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.171 by wakaba, Sun Apr 9 14:29:41 2006 UTC revision 1.246 by wakaba, Sat Jul 14 10:28:52 2007 UTC
# Line 1  Line 1 
1    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CDATASection.pm: Removed (merged with |Text.pm|).
4    
5            * Text.pm (Message::DOM::Text::CDATASection): New.
6    
7            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
8    
9            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
10    
11    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
12    
13            * DOMConfiguration.pm: Support for |schema-type|
14            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
15    
16            * NamedNodeMap (TIEHASH): Were missing.
17    
18    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
19    
20            * AttributeDefinition.pm (node_value): Implemented.
21            (create_attribute_definition): Implemented.
22    
23            * DOMConfiguration.pm (%{}, TIEHASH,
24            get_parameter, set_parameter, can_set_parameter,
25            EXISTS, DELETE, parameter_names, FETCH, STORE,
26            FIRSTKEY, LASTKEY): Implemented.
27    
28            * DOMDocument.pm (____new): Set |error-handler| default.
29            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
30    
31            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
32            Implemented.
33    
34            * DOMException.pm: Error types for |DOMConfiguration|
35            are added.
36    
37            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
38            class.
39    
40            * DocumentType.pm (get_element_type_definition_node,
41            get_general_entity_node, get_notation_node,
42            set_element_type_definition_node, set_general_entity_node,
43            set_notation_node, create_document_type_definition): Implemented.
44    
45            * ElementTypeDefinition.pm (get_attribute_definition_node,
46            set_attribute_definition_node, create_element_type_definition):
47            Implemented.
48    
49            * Entity.pm (create_general_entity): Implemented.
50    
51            * Node.pm: Constants in |OperationType| definition
52            group are added.
53            (manakai_language): Implemented.
54    
55            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
56            class.
57    
58            * Notation.pm (create_notation): Implemented.
59    
60    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
61    
62            * TypeInfo.pm: New Perl module.
63    
64            * Attr.pm: Use |manakai_local_name| rather than |local_name|
65            to avoid HTML5 case normalization.
66            (is_id): Implemented.
67            (manakai_name): New attribute.
68            (schema_type_info): Implemented.
69            (create_attribute_ns): Empty string as namespace URI
70            was not supported.
71    
72            * DOMElement.pm (clone_node): Removed since now it is
73            defined in |Node.pm|.
74            (schema_type_info): Implemented.
75            (manakai_tag_name): New attribute.
76            (get_attribute, get_attribute_node, get_attribute_ns,
77            get_attribute_node_ns, has_attribute, has_attribute_ns,
78            remove_attribute, remove_attribute_ns,
79            remove_attribute_node, set_attribute, set_attribute_ns,
80            set_id_attribute, set_id_attribute_node,
81            set_id_attribute_ns): Implemented.
82            (create_element_ns): Empty string as namespace URI
83            was not supported.
84    
85    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
86    
87            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
88    
89            * DocumentType.pm (create_document_type_definition): Initialize
90            |public_id|, |system_id|, and |internal_subset| attributes
91            by empty strings for compatibility with Web browsers.
92            (create_document_type): Initialize |internal_subset|
93            attribute by an empty string for compatibility with
94            Web browsers.
95    
96            * ElementTypeDefinition.pm, Entity.pm,
97            Notation.pm (owner_document_type_definition): Implemented.
98    
99    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
100    
101            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
102            feature is added for compatibility with |XMLParserTemp.pm|.
103    
104    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
105    
106            * Attr.pm (value, node_value): Now it is defined
107            as |text_content| itself.
108    
109            * AttributeDefinition.pm, ElementTypeDefinition.pm,
110            Node.pm (AUTOLOAD): Unused block is removed.
111    
112            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
113    
114            * DocumentType.pm (internal_subset): Implemented.
115    
116            * Entity.pm (is_externally_declared, input_encoding,
117            xml_version): Implemented.
118    
119            * ProcessingInstruction.pm (target, data): Implemented.
120    
121    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
122    
123            * DOMCharacterData.pm (AUTOLOAD): Removed.
124            (data): Reimplemented.
125            (delete_data, insert_data, replace_data, substring_data): There were
126            a number of bugs.
127    
128            * Text.pm (AUTOLOAD): Removed.  Unused.
129    
130    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
131    
132            * StringExtended.pm: New Perl module.
133    
134            * DOMCharacterData.pm (length, append_data, delete_data,
135            insert_data, replace_data, substring_data): Implemented.
136    
137            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
138    
139            * Text.pm (is_element_content_whitespace, whole_text,
140            split_text): Implemented.
141    
142    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
143    
144            * DOMElement.pm (attributes): Implemented.
145    
146            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
147    
148            * DocumentType.pm (entities, general_entities,
149            notations, element_types): Implemented.
150    
151            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
152    
153            * NamedNodeMap.pm: New Perl module.
154    
155    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
156    
157            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
158            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
159            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
160            insert_before, replace_child): Implemented.
161    
162            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
163    
164            * Node.pm (remove_child): Implemented.
165    
166    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
167    
168            * Node.pm (==, is_equal_node): Implemented.
169            (is_same_node): Implemented.
170            (get_feature, get_user_data, set_user_data): Implemented.
171            (is_supported): Implemented.
172            
173    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
174    
175            * DOMDocument.pm (get_element_by_id): Implemented.
176            (create_document): Implemented.
177    
178            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
179            errors.
180            (QNAME_NULLNS_ERR): New errors.
181    
182            * DocumenType.pm (create_document_type): Implemented.
183    
184    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
185    
186            * CDATASection.pm (is_element_content_whitespace): New.
187    
188            * DOMElement.pm (has_attribute): Alpha version.
189            (create_element, create_element_ns): Implemented.
190    
191            * DocumentType.pm (get_general_entity_node): Alpha version.
192    
193            * EntityReference.pm (create_entity_reference): Implemented.
194    
195            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
196    
197    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
198    
199            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
200    
201            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
202            (compat_mode): Check |defined| not to be warned as "uninitialized"
203            when |{manakai_compat_mode}| is |undef|.
204    
205            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
206    
207            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
208            Statements to set |$Error::Depth| are removed since they
209            are result in "uninitialized" warnings unless
210            the |Message::DOM::DOMException| module is loaded earlier.
211            Usually methods invoked in these methods does not
212            raise any exception so that it makes no difference.
213    
214    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
215    
216            * DOMDocument.pm (adopt_node): Implemented.
217            (doctype): Implemented.
218    
219            * DOMElement.pm (remove_attribute_node): Alpha version.
220    
221            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
222            error type.
223    
224            * Node.pm (set_user_data): Implemented.
225    
226    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
227    
228            * DOMImplementation.pm (new): New method name for |____new|.
229            It will be defined in the DOM Perl Binding specification
230            as part of |DOMImplementation| interface.
231            ($HasFeature): Defined for features support.
232            (has_feature, get_feature): Implemented.
233    
234            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
235            module unless necessary.
236            (___report_error): Removed since it is not used in fact.
237    
238            * DOMImplementationList.pm, DOMImplementationSource.pm,
239            DOMImplementationRegistry.pm: New modules.
240    
241    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
242    
243            * AttributeDefinition.pm (allowed_tokens): Implemented.
244    
245            * DOMStringList.pm: New Perl module.
246    
247    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
248    
249            * DOMElement.pm (clone_node): Alpha version.  It did not work
250            at all.
251    
252    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
253    
254            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
255    
256    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
257    
258            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
259            (manakai_is_html): Revised.
260            (Document): Now it implements the |HTMLDocument| interface.
261            (adopt_node): Alpha version.
262    
263            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
264            not |allowed_token|!
265    
266            * ElementTypeDefinition.pm (attribute_definitions): Don't
267            return an |undef| even if its |attribute_definitions|
268            list is not created.
269    
270    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
271    
272            * Comment.pm (node_type): Node type was incorrect!
273    
274            * DOMConfiguration.pm (get_parameter): Alpha.
275    
276            * DOMImplementation.pm (create_mc_decode_handler,
277            create_charset_name_from_uri, create_uri_from_charset_name):
278            New autoload configuration.  Note that the Message::Charset::Encode
279            module is subject to change.
280    
281            * XMLParserTemp.pm: Now it can be used with new version
282            of DOM implementation.  Current plan is to replace it by
283            an XML5 parser someday.
284    
285    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
286    
287            * DOMLocator.pm: New module.
288    
289            * DOMError.pm: New module.
290    
291    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
292    
293            * Node.pm (manakai_expanded_uri, manakai_parent_element,
294            clone_node, compare_document_position, has_attributes,
295            has_child_nodes, is_default_namespace, lookup_namespace_uri,
296            lookup_prefix, normalize): Implemented.
297    
298            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
299    
300            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
301    
302    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
303    
304            * AttributeDefinition.pm (____new): Set an empty list
305            to the |allowed_tokens| attribute.
306            (allowed_token): Alpha version.
307    
308            * DocumentType.pm (get_element_type_definition_node,
309            get_notation_node): ALpha version.
310    
311            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
312            version.
313    
314            * Entity.pm (notation_name): Implemented.
315    
316    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
317    
318            * Attr.pm (____new): Initialize |specified| as 1.
319            (base_uri, manakai_attribute_type, specified): Implemented.
320            (prefix): Don't check read-only flag unless |strict_error_checking|.
321            (value): Call |text_content| for now.
322    
323            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
324            (declared_type, default_type): Implemented.
325    
326            * CharacterData.pm (____new): Allow a scalar reference
327            as an input for the |data| attribute.
328            (base_uri, manakai_append_text): Implemented.
329    
330            * DOMConfiguration.pm (set_parameter): Resetting implemented.
331    
332            * DOMDocument.pm (____new): Set default values to
333            configuration parameter whose default is true.
334            (document_uri, input_encoding): Implemented.
335            (all_declarations_processed, manakai_is_html): Implemented.
336            (base_uri, manakai_append_text,
337            manakai_entity_base_uri, strict_error_checking,
338            xml_encoding, xml_version, xml_standalone): Implemented.
339    
340            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
341            (get_attribute, get_attribute_node): Alpha version.
342            (set_attribute_node, set_attribute_node_ns): Implemented.
343            (set_attribute_ns): Accept non-ARRAY qualified name.
344    
345            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
346            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
347    
348            * DocumentType.pm (public_id, system_id): Implemented.
349            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
350            manakai_append_text): Implemented.
351            (element_types, general_entities, notations,
352            set_element_type_definition_node, set_general_entity_node,
353            set_notation_node): Alpha version.
354    
355            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
356            (attribute_definitions, set_attribute_definition_node): Alpha version.
357    
358            * Entity.pm (has_replacement_tree, public_id, system_id,
359            manakai_declaration_base_uri, manakai_entity_base_uri,
360            manakai_entity_uri): Implemented.
361    
362            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
363            (base_uri, manakai_entity_base_uri): Implemented.
364    
365            * Node.pm (base_uri): Implemented.
366            (text_content): Don't check read-only or not
367            unless |strict_error_checking|.
368            (manakai_append_text): Implemented.
369            (get_feature): Alpha.
370            (manakai_set_read_only): Implemented.
371    
372            * Notation.pm (public_id, system_id, manakai_append_text,
373            manakai_declaration_base_uri): Implemented.
374    
375            * ProcessingInstruction.pm (manakai_base_uri,
376            base_uri, manakai_append_text): Implemented.
377    
378    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
379    
380            * DOMConfiguration.pm: New module.
381    
382            * Attr.pm (trivial accessor for read-write attributes): Throw
383            an exception if the node is read-only.  Delete the property
384            if undef is specified.
385            (prefix): Implemented.
386    
387            * DOMElement.pm (trivial accessor for read-write attributes): Throw
388            an exception if the node is read-only.  Delete the property
389            if undef is specified.
390            (prefix): Implemented.
391            (text_content, manakai_append_text): Old implementations are removed.
392    
393            * DOMCharacterData.pm (text_content): Implemented.
394    
395            * DOMDocument.pm (____new): Initialize the strict-document-children
396            parameter by true.
397            (text_content): Reimplemented.
398            (dom_config): New.
399    
400            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
401    
402            * DocumentType.pm (text_content): Implemented.
403    
404            * ElementTypeDefinition.pm (text_content): Implemented.
405    
406            * Node.pm (___report_error): New method.
407            (text_content): Implemented.
408            (manakai_append_text): Copied from |DOMElement.pm|.
409    
410            * Notation.pm (text_content): Implemented.
411    
412            * ProcessingInstruction.pm (text_content): Implemented.
413    
414            * Text.pm (is_element_content_whitespace): Alpha version.
415    
416    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
417    
418            * DOMException.pm (Message::IF::DOMException): Extends
419            the |Message::Util::Error| class.
420    
421            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
422            (CLEAR): Not all items were removed.
423    
424    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
425    
426            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
427            DocumentType.pm, Entity.pm,
428            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
429    
430            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
431            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
432    
433            * DOMDocument.pm (AUTOLOAD): Typo fixed.
434    
435            * Node.pm (==, !=): Implemented.
436            (manakai_read_only): Implemented.
437            (is_same_node): Implemented.
438            (is_equal_node): Alpha version.
439            (manakai_set_read_only): Alpha version.
440            (child_nodes, first_child, last_child, previous_sibling): Duplicate
441            definitions are removed.
442    
443    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
444    
445            * Node.pm: First alpha version of implementation of attributes.
446    
447    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
448    
449            * ProcessingInstruction.pm, EntityReference.pm,
450            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
451            ElementTypeDefinition.pm, AttributeDefinition.pm,
452            DocumentType.pm, DOMElement.pm, Attr.pm,
453            CharacterData.pm, Text.pm, Comment.pm (node_name,
454            node_value, node_type): Implemented.
455    
456    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
457    
458            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
459            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
460            AttributeDefinition.pm: New modules.
461    
462            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
463            (create_attribute_definition, create_element_type_definition,
464            create_document_type_definition, create_cdata_section,
465            create_processing_instruction, create_entity_reference,
466            create_general_entity, create_notation): Prototypes added.
467    
468            * DOMImplementation.pm (create_document_type): Prototype added.
469    
470            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
471            and 'Message::IF::DocumentTypeDeclaration' added.
472            (create_document_type, create_document_type_definition):
473            New methods.
474    
475    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
476    
477            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
478            DOMElement.pm, Attr.pm, DocumentType.pm,
479            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
480            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
481    
482    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
483    
484            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
485            specifies unknown value and trys to recover from the error.
486    
487    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
488    
489            * TreeCore.dis (manakaiLocalName): New attribute.
490    
491    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
492    
493            * GenericLS.dis (GLSException): New interface.
494    
495    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
496    
497            * |InputProcessor|s and |OutputProcessor|s are
498            named so that |report| statements in Perl
499            module outputs can be identified by name. |dis:dataType|s
500            of |DISCore:TFQNames| are all replaced
501            by |DISCore:QName|.
502    
503    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
504    
505            * Element.dis (createElementNS): If an array reference
506            is specified as the |qualifiedName| parameter,
507            don't set the first item as the local name
508            even if the second item is not specified (or
509            specified as |undef|).
510            (createElementNS, setAttribute, setAttributeNS,
511            removeAttribute, removeAttributeNS,
512            setAttributeNode, setAttributeNodeNS,
513            removeAttributeNode, removeAttributeNodeNS): Sets
514            or removes the |tc:contentAttributeList| value.
515    
516            * TreeCore.dis (AttrMap.item): Caches the result
517            of sorting of content attribute names.
518            (getAttrMap, getElementTypeDefNodeMap,
519            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
520            (tc:contentAttributeList): New property.
521    
522    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
523    
524            * DOMFeature.dis (ForDef): Removed.
525            (f:provides, f:through): Removed.
526            (Version): Removed.
527            (implementFeature): Removed.
528    
529    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
530    
531            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
532            GenericLS.dis, TreeCore.dis, DOMString.dis,
533            XML.dis, Element.dis, Document.dis, TreeStore,dis,
534            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
535            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
536            are removed.
537    
538    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
539    
540            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
541            GenericLS.dis, TreeCore.dis, DOMString.dis,
542            XML.dis, Element.dis, Document.dis, TreeStore,dis,
543            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
544            SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications
545            and |DefaultFor|s are removed.
546    
547    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
548    
549            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
550            GenericLS.dis, TreeCore.dis, DOMString.dis,
551            XML.dis, Element.dis, Document.dis, TreeStore,dis,
552            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
553            SimpleLS.dis, DOMMain.dis: References
554            to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|,
555            |ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3|
556            modes are removed.
557    
558    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
559    
560            * CharacterData.dis, TreeCore.dis (Require): References
561            to the |Grove.dis| module are removed.
562    
563    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
564    
565            * DOMFeature.dis (f:implementation, f:revImplementation): Removed.
566            (Require): Reference to the |Grove.dis| module is removed.
567    
568    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
569    
570            * DOMCore.dis (ManakaiDOMImplementation): The
571            class is no longer plays the role of
572            a |mg:NodeRefRole|.  Redundant |f:provides|
573            properties are removed.
574    
575    2006-12-29  Wakaba  <wakaba@suika.fam.cx>
576    
577            * TreeCore.dis, DOMCore.dis, Document.dis,
578            Element.dis, CharacterData.dis, XML.dis,
579            XDoctype.dis, DOMString.dis, TreeStore.dis,
580            XMLParser.dis: Use Perl native
581            hashs and |Scalar::Util|'s weak references in favor of |Grove.dis|
582            for DOM nodes.  See
583            also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>.
584    
585    2006-12-03  Wakaba  <wakaba@suika.fam.cx>
586    
587            * DOMFeature.dis, TreeCore.dis: Unused |role|s are removed.
588    
589    2006-12-02  Wakaba  <wakaba@suika.fam.cx>
590    
591            * DOMString.dis: New module.
592    
593            * DOMString.pm: New file.
594    
595            * DOMCore.dis (min): Moved from |DOMFeature.dis|.
596            (ImplementationRegistryVariable): Moved from |DOMFeature.dis|.
597            Now it references the |DOMImplementationRegistry| object.
598            (DOMImplementationRegistryVariable): Moved from |DOMMain.dis|.
599            (DOMImplementationRegistry): New interface and
600            class, reformed from |ImplementationRegistry| in |DOMFeature.dis|
601            and |DOMImplementationRegistry| in |DOMMain.dis|.  Note
602            that the class no longer support |get_implementation|
603            and |get_implementation_list| methods from
604            the |ImplementationRegistry| interface.
605            (DOMImplementationList): Class implemented; no
606            longer inherits from |ImplementationList|.
607            (DOMImplementationSource): Class implemented; no
608            longer inherits from |ImplementationSource|.  Note that
609            the class no longer support |get_implementation|
610            and |get_implementation_list| methods from
611            the |ImplementationSource| interface.
612            (DOMStringList): Removed.
613    
614            * DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature,
615            ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature,
616            ManakaiDOM:DOMXMLFeatureXML11, most part of
617            documentation for obsolete DOM Level 3 Minimum Implementation
618            module, obsolete property name aliases,
619            ImplemenationRegistryVar, ImplementationRegistry,
620            DEBUG, MIString, ImplementationList, ImplementationSource,
621            ManakaiDOM:implID): Removed.
622    
623            * DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed.
624            (DOMString): Removed.
625            (DOMImplementationRegistryVar, DOMImplementationRegistry): Removed.
626    
627            * Makefile: |DOMString.pm| is added.
628    
629            * TreeCore.dis (is_default_namespace): |null| was
630            returned where a false is expected (|null| is
631            a false in Perl, but real |false| is appropriate here).
632    
633    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
634    
635            * DOMCore.dis (TypeInfo, UserDataHandler): Removed.
636    
637            * Element.dis (TypeInfo): Moved from |DOMCore.dis|.
638    
639            * TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|.
640    
641    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
642    
643            * DOMFeature.dis (ImplementationList, ImplementationSource,
644            ImplementationRegistry): Parameters |features|
645            now allow |null| (equivalent to an empty string).
646    
647    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
648    
649            * CharacterData.dis (ManakaiDOMDocumentCharacterData): New
650            class.  Factory methods |createTextNode| and |createComment|
651            are moved from |ManakaiDOMDocument|.
652    
653            * DOMCore.dis: References to |ManakaiDOMObject|
654            are removed.
655            (tc:createImplForTest): Moved from |TreeCore.dis|.
656            (DOMImplementation.___create_node_ref): Support
657            for the |mg:nodeRefClass| option is removed.
658            (ManakaiDOMConfiguration.___report_error): Moved
659            from |ManakaiDOMObject| class.
660    
661            * DOMFeature.dis (domidl:extends): New property.
662            (f:getFeatureImpl): Support for |+| classes is removed.
663    
664            * DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed.
665            (ManakaiDOM:ManakaiDOMObject): Removed.
666            (DOMDataType): Removed.
667    
668            * Document.dis (ManakaiDOMImplementationDocument):
669            The |createDocument| method is moved from
670            the |ManakaiDOMImplementationTC| in |TreeCore.dis|.
671            (ManakaiDOMDocument.___create_node_ref): Removed.
672            (createElement, createElementNS, createAttribute,
673            createAttributeNS, createTextNode, createComment,
674            createCDATASection, createEntityReference,
675            createProcessingInstruction): Class implementations
676            are moved to each module.
677    
678            * Element.dis (ManakaiDOMImplementationElement): Factory
679            methods are moved from |Document.dis|.
680            (ManakaiDOMElement.___create_node_ref): Support
681            for old class registry is removed.
682            (ManakaiDOMAttr.___create_node_ref): Removed.
683            (Attr.baseURI): Implementation
684            for |xml:base| attribute is merged.
685            (Attr.nodeValue, Attr.value): Implementation
686            for |xml:id| attribute is merged.
687    
688            * TreeCore.dis (ManakaiDOMImplementationTC): Removed.
689    
690            * XDoctype.dis (ManakaiDOMImplementationXDoctype): The
691            definition for |createDocumentType| method
692            is moved from |TreeCore.dis|.
693    
694            * XML.dis (ManakaiDOMXMLDocument): Factory
695            methods are moved from |Document.dis|.
696            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged
697            into |ManakaiDOMAttr| in |Element.dis|).
698    
699    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
700    
701            * Element.dis (___get_node_ref): |eval|ed |require|
702            statement was broken.
703    
704            * DOMFeature.dis (getImplementationList): Argument
705            is not passed to the |getImplementation| method.
706    
707            * TreeStore.dis (DOMImplementationTreeStore): It
708            did not |f:implements| the |TSFeature30| feature.
709    
710            * XMLParser.dis: Use |create_uri_reference|
711            method instead of internal |_new| method
712            to create a URI reference object.
713    
714    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
715    
716            * DOMCore.dis (ManakaiDOMImplementation): No longer
717            explicitly inherits |urigen:ManakaiURIImplementation| (and
718            the |f:ManakaiMinimumImplementation| class inherited
719            by it).  The |f:Minimum| feature is ever implemented
720            for compatibility (but is expected to be removed).
721            Internal methods such as |___report_error| are copied from
722            obsolete |f:MinimumImplementation| class.  DOM3
723            methods |hasFeature| and |getFeature| are also
724            moved from that class, but they now support no
725            foreign classes.
726    
727            * DOMFeature.dis (ManakaiImplementationSource): It
728            now |p:require|s |Message::Util::AutoLoad::Registry|.
729            The class no longer support classes
730            other than |ManakaiDOMImplementation|.  Note
731            that the |ImplementationRegistry| object does continue
732            to support foreign classes via foreign classes
733            implementing |ImplementationSource|
734            or |DOMImplementationSource| interface.
735            (MinimumImplementation): Removed.
736    
737            * DOMLS.dis (ManakaiDOMImplementationLS): It no
738            longer inherit the |ManakaiDOMImplementation|; it
739            is now expected to be implemented by |DOMImplementation|
740            objects.
741    
742            * DOMMain.dis (null): Removed.
743    
744            * Document.dis (___create_node_ref): It no
745            longer support foreign classes other
746            than |Message::DOM::Document::ManakaiDOMDocument|.
747            Note that document format specific DOM
748            interfaces, if supported, should be
749            all instances of the |Document| interface
750            in the implementation, as defined
751            in the Web Applications 1.0 specification (where
752            the |HTMLDocument| interface must be implemented
753            by all |Document| objects, even if the |Document|
754            contains no HTML element).
755    
756            * GenericLS.dis (GLSImplementation): It no
757            longer inherit the |MinimumImplementation|; it
758            is now expected to be implemented by |DOMImplementation|
759            objects.
760            (createGLSParser, createGLSSerializer): Load
761            module implementing parser or serializer
762            if necessary.
763    
764            * Traversal.dis (ManakaiDOMDocumentTraversal): It no
765            longer inherits the |ManakaiDOMDocument|; it
766            is now expected to be implemented by |Document|
767            objects.
768    
769            * XDP.dis (XDPDocument): It no longer
770            inherits the |Document|; it is now expected
771            to be implemented by all |Document| objects.
772    
773            * XDoctype.dis (ManakaiDOMDocumentXDoctype): It no
774            longer inherits the |ManakaiDOMDocument|; it
775            is now expected to be implemented by |Document|
776            objects.
777    
778    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
779    
780            * DOMCore.dis (ManakaiDOMImplementation): No longer
781            explicitly inherits |tc:ManakaiDOMImplementationTC|.
782            (ManakaiDOMImplementation.AUTOLOAD): New method definition.
783    
784            * TreeCore.dis (ManakaiDOMImplementationTC): Extends
785            the |ManakaiDOMImplementation| class.
786    
787    2006-11-03  Wakaba  <wakaba@suika.fam.cx>
788    
789            * DOMFeature.dis: Definitions for various concepts
790            are added.
791    
792            * GenericLS.dis (GLSImplementation): It no
793            longer inherits the |MinimumImplementation|; rather,
794            any |ManakaiMinimumImplementation| object also
795            implements |GLSImplementation| methods.
796    
797            * TreeStore.dis (DOMImplementationTreeStore): It no
798            longer inherits the |DOMImplementation|; rather,
799            any |ManakaiDOMImplementation| object also
800            implements |DOMImplementationTreeStore| methods.
801    
802    2006-08-15  Wakaba  <wakaba@suika.fam.cx>
803    
804            * TreeStore.pm: Added to the CVS repository
805            to enable for the dis database to contain XML
806            fragments.
807    
808            * Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added.
809    
810            * TreeStore.dis (Namespace): Namespace URI was incorrect.
811    
812    2006-06-18  Wakaba  <wakaba@suika.fam.cx>
813    
814            * Traversal.dis (expandEntityReferences): Syntax was incorrect.
815    
816            * TreeCore.dis (manakaiReadOnly): Test assertion was incorrect.
817    
818            * XDP.dis (dtdText): Test assertion was incorrect.
819    
820    2006-05-21  Wakaba  <wakaba@suika.fam.cx>
821    
822            * XDP.dis (XDPEntityValue.stringify): Don't escape
823            any |%|s in |xdp:attr-definition| children.
824    
825    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
826    
827            * XDP.dis (createXDPRNIKeyword): The Perl method
828            name property is added.
829    
830    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
831    
832            * XDP.dis (createXDPIf): New method.
833            (XDPIfElement): New interface.
834    
835    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
836    
837            * XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition):
838            New methods.
839    
840    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
841    
842            * XDP.dis (XDPDocument): A number of constructor methods
843            are added.
844            (XDPTextDecl.dtdText): The |xml| target was missing.
845    
846    2006-05-14  Wakaba  <wakaba@suika.fam.cx>
847    
848            * Traversal.dis (SerialWalker): New interface.
849            (manakaiCreateSerialWalker): New method.
850    
851    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
852    
853            * Traversal.dis (testNode): Calls |acceptNode| method
854            rather than |&{}| dereferencing.
855            (acceptNode): Implemented.
856    
857    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
858    
859            * XDP.dis: New module.
860    
861            * Makefile: |XDP.dis| is added.
862    
863            * Traversal.dis (NodeFilter): |InputProcessor|
864            and |OutputProcessor| are added.
865    
866    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
867    
868            * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.
869            (TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support
870            is added.  The |FILTER_REJECT| value is treated
871            as |FILTER_ACCEPT| if the |currentNode| is in the
872            rejected subtree as specified in the spec.
873    
874    2006-05-05  Wakaba  <wakaba@suika.fam.cx>
875    
876            * SimpleLS.dis: An |xmlns:| prefix was missing.
877    
878    2006-05-04  Wakaba  <wakaba@suika.fam.cx>
879    
880            * SimpleLS.dis: Namespace bugs are fixed.
881    
882    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
883    
884            * .cvsignore: Updated.
885    
886            * Traversal.dis: Unused declarations are removed.
887    
888    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
889    
890            * CharacterData.dis (Require): A reference to
891            the |MDOM:Traversal| module is added.
892            (wholeText): Implemented.
893    
894    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
895    
896            * Makefile: |Traversal.dis| is added.
897    
898            * Traversal.dis: New module.
899    
900            * TreeCore.dis (___report_error): Return value was
901            not propagated.
902    
903    2006-04-29  Wakaba  <wakaba@suika.fam.cx>
904    
905            * Element.dis (removeAttributeNS): A runtime error
906            was occurred if there was no specified attribute node.
907    
908            * TreeCore.dis (manakaiLanguage): New attribute.
909    
910    2006-04-28  Wakaba  <wakaba@suika.fam.cx>
911    
912            * TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly):
913            New attributes.
914    
915            (StaticNodeList): New interface.
916    
917    2006-04-24  Wakaba  <wakaba@suika.fam.cx>
918    
919            * DOMCore.dis (c:SET_TO_NULL_ERR): New error code.
920    
921    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
922    
923            * SimpleLS.dis: Reimplemented.
924    
925    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
926    
927            * DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now
928            a qualified name.
929            (tc:EXTERNAL_NODE_COMPARISON_ERR): New error type.
930    
931            * TreeCore.dis (compareDocumentPosition): Implemented.
932            (normalize): Implemented.
933            (STORESIZE, CLEAR): Were not implemented for |EmptyNodeList|
934            class.
935    
936    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
937    
938            * DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed.
939    
940    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
941    
942            * CharacterData.dis (length, insertData, substringData,
943            appendData, deleteData, replaceData, splitText): Reimplemented.
944    
945            * DOMCore.dis (NEGATIVE_LENGTH_ERR): New error.
946            (c:index): The definition was missing.
947            (c:length): New property.
948    
949    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
950    
951            * XMLParser.dis (close): Invoke |close| method
952            rather than |close| function.
953    
954    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
955    
956            * CharacterData.dis: New module split from |TreeCore.dis|.
957    
958            * CharacterData.pm: Added to the CVS repository.
959    
960            * TreeCore.dis: The |CharacterData|, |Text|, and |Comment|
961            interfaces are removed.
962            (Require): A reference to the |MDOM:CharacterData| module
963            is added.
964    
965            * DOMMain.dis (StringExtended, StringOutOfBoundsException): Removed.
966    
967            * DOMCore.dis (StringOutOfBoundsException): New error.
968    
969            * Makefile: |CharacterData.pm| is added.
970    
971  2006-04-09  Wakaba  <wakaba@suika.fam.cx>  2006-04-09  Wakaba  <wakaba@suika.fam.cx>
972    
973          * XMLParser.dis (Require): Requires the |MCharset:Encode|          * XMLParser.dis (Require): Requires the |MCharset:Encode|

Legend:
Removed from v.1.171  
changed lines
  Added in v.1.246

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24