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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24