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

Legend:
Removed from v.1.192  
changed lines
  Added in v.1.232

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24