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

Legend:
Removed from v.1.171  
changed lines
  Added in v.1.235

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24