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

Legend:
Removed from v.1.176  
changed lines
  Added in v.1.237

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24