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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24