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

Legend:
Removed from v.1.176  
changed lines
  Added in v.1.225

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24