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

Legend:
Removed from v.1.158  
changed lines
  Added in v.1.229

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24