/[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.129 by wakaba, Thu Feb 16 20:03:18 2006 UTC revision 1.292 by wakaba, Mon Jan 14 13:56:35 2008 UTC
# Line 1  Line 1 
1    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CSSStyleDeclaration.pm (AUTOLOAD): DOM attributes reflecting
4            shorthand properties did croak (fixed but still they does not
5            return correct result - they need to be fixed later).
6    
7            * Element.pm (query_selector, query_selector_all): Prototypes
8            were missing.
9    
10    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
11    
12            * Window.pm (___reset_css): Typo fixed.
13    
14    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
15    
16            * CSSStyleDeclaration.pm: The classes now explicitly implement
17            the |CSS2Properties| interface.
18            (@{}, TIEARRAY, FETCH, FETCHSIZE, EXISTS, item, length): Implemented.
19    
20    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
21    
22            * CSSStyleDeclaration.pm (attributes reflecting CSS properties):
23            Return an empty string if no value is assigned to the property.  Insert
24            a SPACE before '!' for compatibility with Firefox.
25    
26    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
27    
28            * CSSRule.pm (css_text): Trailing newline character is removed
29            to avoid double empty lines in CSSStyleSheet->css_text.
30            (selector_text): Namespace support is fixed.
31    
32            * CSSStyleSheet.pm (___new): Now it accepts |_nsmap| option.
33    
34    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
35    
36            * CSSRule.pm (selector_text): Use |serialize_selector_text|
37            to get better result.
38    
39    2008-01-13  Wakaba  <wakaba@suika.fam.cx>
40    
41            * Window.pm: New Perl module.
42    
43            * Document.pm (default_view): Implemented.
44    
45            * Element.pm (current_style): Implemented.
46    
47    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
48    
49            * CSSStyleDeclaration.pm (css_text): Allow to shorten a complete
50            set of longhand properties.
51            (get_property_priority): Implemented.
52            (CSSComputedStyleDeclaration AUTOLOAD): Implemented for reflecting
53            attributes.
54    
55    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
56    
57            * CSSStyleDeclaration.pm (css_text): Allow |{compute_multiple}|
58            as well as |{compute}| as a way to filter out longhand
59            properties.  Sort properties by names for readability.
60    
61    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
62    
63            * CSSStyleDeclaration.pm (css_text): Output |undef| property
64            information for debugging.
65    
66            * CSSStyleSheet.pm (manakai_base_uri): New attribute.
67    
68    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
69    
70            * CSSStyleDeclaration.pm (CSSComputedStyleDeclaration): New class.
71    
72    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
73    
74            * SelectorsAPI.pm, Document.pm (___query_selector_all): New internal
75            method.
76    
77    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
78    
79            * SelectorsAPI.pm: Make simple-selector-sequence-matching
80            an independent function.
81    
82    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
83    
84            * CSSStyleDeclaration.pm (AUTOLOAD): Getter for attributes
85            reflecting CSS property is implemented.
86            (css_text): Getter is implemented.
87    
88    2007-12-24  Wakaba  <wakaba@suika.fam.cx>
89    
90            * CSSRule.pm (selector_text): Ad hoc support for namespace prefixes.
91            (CSSNamespaceRule.css_text): Getter implemented.
92    
93            * CSSStyleSheet.pm (manakai_is_default_namespace,
94            manakai_lookup_namespace_prefix): New methods.
95    
96    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
97    
98            * CSSRule.pm (@charset.css_text): Implemented.
99    
100    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
101    
102            * CSSRule.pm (type, css_text): Typo fixed.
103            (____new): s/_selector/_selectors/g;
104            (CSSStyleRule.css_text, selectors_text): Ad hoc implementation.
105    
106            * CSSStyleDeclaration.pm (css_text): Ad hoc implementation.
107    
108            * CSSStyleSheet.pm (new): s/new/____new/.
109            (css_text): New attribute.
110    
111    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
112    
113            * MediaList.pm: New placeholder for a CSSOM interface.
114    
115            * CSSRule.pm, CSSStyleSheet.pm: Implementing the initial
116            setting of owner* and parent* attributes; support
117            for the |delete_rule| method.
118    
119    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
120    
121            * CSSStyleSheet.pm, CSSRule.pm, CSSRuleList.pm, CSSStyleDeclaration.pm:
122            First version of CSSOM implementation.
123    
124    2007-11-18  Wakaba  <wakaba@suika.fam.cx>
125    
126            * Document.pm, Entity.pm (manakai_has_bom,
127            manakai_charset): New attributes.
128    
129    2007-11-11  Wakaba  <wakaba@suika.fam.cx>
130    
131            * Document.pm, Element.pm (inner_html): Use |Whatpm::HTML::Serializer|
132            for getter.
133    
134    2007-10-27  Wakaba  <wakaba@suika.fam.cx>
135    
136            * Event.pm (init_event, init_event_ns, init_custom_event_ns):
137            The |namespaceURI| attribute was not set correctly.
138    
139            * DOMEvents.dis: Removed.
140    
141    2007-10-08  Wakaba  <wakaba@suika.fam.cx>
142    
143            * Event.pm, EventTarget.pm, EventTargetNode.pm,
144            EventException.pm: Implemented (but not tested!).
145    
146            * DOMException.pm (MALFORMED_EVENT_TYPE_ERR,
147            EVENT_INTERFACE_NOT_SUPPORTED_ERR, EXTERNAL_EVENT_ERR): New
148            error subtypes.
149    
150            * DOMImplementation.pm ($HasFeature): The |Event| feature,
151            version |3.0|, is added.
152    
153            * Document.pm, Node.pm: Event attributes and
154            methods are implemented.
155    
156    2007-10-07  Wakaba  <wakaba@suika.fam.cx>
157    
158            * SelectorsAPI.pm ($get_elements_by_selectors): Receive
159            an additional argument for "current element".
160            Support for |-manakai-current| and |-manakai-current(/s/)|
161            pseudo-classes.
162    
163    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
164    
165            * SelectorsAPI.pm: Attribute selectors are implemented.
166    
167    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
168    
169            * SelectorsAPI.pm (ElementSelector): Implemented.
170    
171    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
172    
173            * SelectorsAPI.pm (query_selector): Implemented.
174    
175    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
176    
177            * SelectorsAPI.pm ($get_elements_by_selectors): Created
178            from most part of |query_selector_all|.
179    
180    2007-09-24  Wakaba  <wakaba@suika.fam.cx>
181    
182            * DOMException.pm (SYNTAX_ERR): New subtype is defined.
183            (UNDECLARED_PREFIX_ERR): New subtype is defined.
184    
185            * Document.pm (Document): Implements the |DocumentSelector|
186            interface.
187    
188            * Element.pm (Element): Implements the |ElementSelector|
189            interface.
190    
191            * Node.pm (Node): Implements the |NSResolver| interface.
192    
193            * SelectorsAPI.pm: Now (hopefully) conform to the Selectors
194            API Editor's Draft (only |query_selector_all| on |Document|,
195            with limited selectors syntax support, though).
196    
197    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
198    
199            * SelectorsAPI.pm: Namespaced type/universal selectors
200            are supported.
201    
202    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
203    
204            * SelectorsAPI.pm: New Perl module.
205    
206    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
207    
208            * Node.pm (manakai_language): Return the |manakai_language|
209            of the |owner_document|, if any, as defined in the spec.
210    
211    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
212    
213            * Makefile: Relative path was wrong.
214    
215    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
216    
217            * HTML/: New directory.
218    
219            * Element.pm (create_element_ns): Return object implementing
220            the |HTMLElement| interface for HTML elements.
221    
222    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
223    
224            * DOMImplementation.pod: New documentation.
225    
226            * Makefile: Make HTML document.
227    
228    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
229    
230            * XDoctype.dis, XDoctype.pm: Removed.
231    
232            * CharacterData.pm: Renamed from DOMCharacterData.pm.
233    
234            * Document.pm: Renamed from DOMDocument.pm.
235    
236            * Element.pm: Renamed from DOMElement.pm
237    
238    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
239    
240            * DOMString.dis, DOMString.pm, Document.dis, Document.pm,
241            Element.dis, Element.pm, CharacterData.dis, CharacterData.pm,
242            TreeCore.dis, TreeCore.pm, DOMCore.dis, DOMCore.pm,
243            DOMFeature.dis, DOMFeature.pm, XML.dis, XML.pm,
244            DOMMain.dis, DOMMain.pm, DOMLS.dis,
245            GenericLS.dis, GenericLS.pm, SimpleLS.dis: Removed.
246    
247            * Makefile: Rules for DIS are removed.
248    
249    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
250    
251            * Text.pm: |Message::DOM::Traversal, an obsolete module,
252            was referenced.
253    
254    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
255    
256            * DOMDocument.pm (inner_html): Setter in HTML document
257            is implemented.
258    
259    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
260    
261            * DOMDocument.pm (inner_html): Setter in XML document
262            is implemented.
263    
264    2007-07-19  Wakaba  <wakaba@suika.fam.cx>
265    
266            * Attr.pm (DeclaredValueType): Added.
267    
268            * ProcessingInstruction.pm (data): Accept |undef|
269            as a valid input, for |text_content| (maybe) allows it.
270    
271            * TypeInfo.pm (type_namespace): The implementation was wrong.
272    
273    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
274    
275            * DOMElement.pm: Incorrect module was referenced.
276    
277            * DOMImplementation.pm: References to
278            the |Message::Charset::Encode| module has been removed.
279    
280    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
281    
282            * XMLParserTemp.pm: Use |Whatpm::Charset::DecodeHandle|
283            instead of |Message::Charset::Encode|.
284    
285    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
286    
287            * DOMDocument.pm (inner_html): New attribute (beta).
288    
289            * DOMElement.pm (inner_html): New attribute (beta).
290    
291    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
292    
293            * DOMConfiguration.pm: Configuration parameter |create-child-element|
294            implemented.
295    
296            * DOMElement.pm (create_element_ns): Support for Atom
297            subclasses.
298    
299            * DOMImplementation.pm (DOMImplementation): Now
300            implements the |AtomDOMImplementation| interface.
301            ($HasFeature): Features |atom| and |atomthreading| are added.
302    
303            * NodeList.pm (StaticNodeList): Implemented.
304    
305    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
306    
307            * Atom/: New directory.
308    
309    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
310    
311            * TreeWalker.pm, SerialWalker.pm: New Perl modules.
312    
313            * Text.pm (whole_text): Parameter index number has
314            been changed to support new |NodeFilter| Perl binding
315            definition.
316    
317    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
318    
319            * AttributeDefinition.pm, DOMElement.pm, DocumentType.pm,
320            ElementTypeDefinition.pm, Entity.pm, EntityReference.pm,
321            Notation.pm, ProcessingInstruction.pm (AUTOLOAD): Don't croak even if an attempt is made to modify a read-only attribute.
322    
323            * DOMConfiguration.pm (can_set_parameter,
324            set_parameter): Don't allow to set the value
325            to a string other than <http://www.w3.org/TR/REC-xml> (XML 1.0 DTD).
326    
327            * DOMDocument.pm (Message::IF::DocumentTraversal): New interface.
328            (create_tree_walker, manakai_create_serial_walker): References
329            and prototypes are added.
330    
331            * DOMException.pm (NULLPO_ERR): New error type:-).
332    
333            * DOMImplementation.pm ($HasFeature): Feature |Traversal|,
334            version |2.0|, is added.
335    
336    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
337    
338            * CDATASection.pm: Removed (merged with |Text.pm|).
339    
340            * Text.pm (Message::DOM::Text::CDATASection): New.
341    
342            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
343    
344            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
345    
346    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
347    
348            * DOMConfiguration.pm: Support for |schema-type|
349            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
350    
351            * NamedNodeMap (TIEHASH): Were missing.
352    
353    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
354    
355            * AttributeDefinition.pm (node_value): Implemented.
356            (create_attribute_definition): Implemented.
357    
358            * DOMConfiguration.pm (%{}, TIEHASH,
359            get_parameter, set_parameter, can_set_parameter,
360            EXISTS, DELETE, parameter_names, FETCH, STORE,
361            FIRSTKEY, LASTKEY): Implemented.
362    
363            * DOMDocument.pm (____new): Set |error-handler| default.
364            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
365    
366            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
367            Implemented.
368    
369            * DOMException.pm: Error types for |DOMConfiguration|
370            are added.
371    
372            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
373            class.
374    
375            * DocumentType.pm (get_element_type_definition_node,
376            get_general_entity_node, get_notation_node,
377            set_element_type_definition_node, set_general_entity_node,
378            set_notation_node, create_document_type_definition): Implemented.
379    
380            * ElementTypeDefinition.pm (get_attribute_definition_node,
381            set_attribute_definition_node, create_element_type_definition):
382            Implemented.
383    
384            * Entity.pm (create_general_entity): Implemented.
385    
386            * Node.pm: Constants in |OperationType| definition
387            group are added.
388            (manakai_language): Implemented.
389    
390            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
391            class.
392    
393            * Notation.pm (create_notation): Implemented.
394    
395    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
396    
397            * TypeInfo.pm: New Perl module.
398    
399            * Attr.pm: Use |manakai_local_name| rather than |local_name|
400            to avoid HTML5 case normalization.
401            (is_id): Implemented.
402            (manakai_name): New attribute.
403            (schema_type_info): Implemented.
404            (create_attribute_ns): Empty string as namespace URI
405            was not supported.
406    
407            * DOMElement.pm (clone_node): Removed since now it is
408            defined in |Node.pm|.
409            (schema_type_info): Implemented.
410            (manakai_tag_name): New attribute.
411            (get_attribute, get_attribute_node, get_attribute_ns,
412            get_attribute_node_ns, has_attribute, has_attribute_ns,
413            remove_attribute, remove_attribute_ns,
414            remove_attribute_node, set_attribute, set_attribute_ns,
415            set_id_attribute, set_id_attribute_node,
416            set_id_attribute_ns): Implemented.
417            (create_element_ns): Empty string as namespace URI
418            was not supported.
419    
420    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
421    
422            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
423    
424            * DocumentType.pm (create_document_type_definition): Initialize
425            |public_id|, |system_id|, and |internal_subset| attributes
426            by empty strings for compatibility with Web browsers.
427            (create_document_type): Initialize |internal_subset|
428            attribute by an empty string for compatibility with
429            Web browsers.
430    
431            * ElementTypeDefinition.pm, Entity.pm,
432            Notation.pm (owner_document_type_definition): Implemented.
433    
434    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
435    
436            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
437            feature is added for compatibility with |XMLParserTemp.pm|.
438    
439    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
440    
441            * Attr.pm (value, node_value): Now it is defined
442            as |text_content| itself.
443    
444            * AttributeDefinition.pm, ElementTypeDefinition.pm,
445            Node.pm (AUTOLOAD): Unused block is removed.
446    
447            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
448    
449            * DocumentType.pm (internal_subset): Implemented.
450    
451            * Entity.pm (is_externally_declared, input_encoding,
452            xml_version): Implemented.
453    
454            * ProcessingInstruction.pm (target, data): Implemented.
455    
456    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
457    
458            * DOMCharacterData.pm (AUTOLOAD): Removed.
459            (data): Reimplemented.
460            (delete_data, insert_data, replace_data, substring_data): There were
461            a number of bugs.
462    
463            * Text.pm (AUTOLOAD): Removed.  Unused.
464    
465    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
466    
467            * StringExtended.pm: New Perl module.
468    
469            * DOMCharacterData.pm (length, append_data, delete_data,
470            insert_data, replace_data, substring_data): Implemented.
471    
472            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
473    
474            * Text.pm (is_element_content_whitespace, whole_text,
475            split_text): Implemented.
476    
477    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
478    
479            * DOMElement.pm (attributes): Implemented.
480    
481            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
482    
483            * DocumentType.pm (entities, general_entities,
484            notations, element_types): Implemented.
485    
486            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
487    
488            * NamedNodeMap.pm: New Perl module.
489    
490    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
491    
492            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
493            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
494            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
495            insert_before, replace_child): Implemented.
496    
497            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
498    
499            * Node.pm (remove_child): Implemented.
500    
501    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
502    
503            * Node.pm (==, is_equal_node): Implemented.
504            (is_same_node): Implemented.
505            (get_feature, get_user_data, set_user_data): Implemented.
506            (is_supported): Implemented.
507            
508    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
509    
510            * DOMDocument.pm (get_element_by_id): Implemented.
511            (create_document): Implemented.
512    
513            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
514            errors.
515            (QNAME_NULLNS_ERR): New errors.
516    
517            * DocumenType.pm (create_document_type): Implemented.
518    
519    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
520    
521            * CDATASection.pm (is_element_content_whitespace): New.
522    
523            * DOMElement.pm (has_attribute): Alpha version.
524            (create_element, create_element_ns): Implemented.
525    
526            * DocumentType.pm (get_general_entity_node): Alpha version.
527    
528            * EntityReference.pm (create_entity_reference): Implemented.
529    
530            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
531    
532    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
533    
534            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
535    
536            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
537            (compat_mode): Check |defined| not to be warned as "uninitialized"
538            when |{manakai_compat_mode}| is |undef|.
539    
540            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
541    
542            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
543            Statements to set |$Error::Depth| are removed since they
544            are result in "uninitialized" warnings unless
545            the |Message::DOM::DOMException| module is loaded earlier.
546            Usually methods invoked in these methods does not
547            raise any exception so that it makes no difference.
548    
549    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
550    
551            * DOMDocument.pm (adopt_node): Implemented.
552            (doctype): Implemented.
553    
554            * DOMElement.pm (remove_attribute_node): Alpha version.
555    
556            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
557            error type.
558    
559            * Node.pm (set_user_data): Implemented.
560    
561    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
562    
563            * DOMImplementation.pm (new): New method name for |____new|.
564            It will be defined in the DOM Perl Binding specification
565            as part of |DOMImplementation| interface.
566            ($HasFeature): Defined for features support.
567            (has_feature, get_feature): Implemented.
568    
569            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
570            module unless necessary.
571            (___report_error): Removed since it is not used in fact.
572    
573            * DOMImplementationList.pm, DOMImplementationSource.pm,
574            DOMImplementationRegistry.pm: New modules.
575    
576    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
577    
578            * AttributeDefinition.pm (allowed_tokens): Implemented.
579    
580            * DOMStringList.pm: New Perl module.
581    
582    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
583    
584            * DOMElement.pm (clone_node): Alpha version.  It did not work
585            at all.
586    
587    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
588    
589            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
590    
591    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
592    
593            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
594            (manakai_is_html): Revised.
595            (Document): Now it implements the |HTMLDocument| interface.
596            (adopt_node): Alpha version.
597    
598            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
599            not |allowed_token|!
600    
601            * ElementTypeDefinition.pm (attribute_definitions): Don't
602            return an |undef| even if its |attribute_definitions|
603            list is not created.
604    
605    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
606    
607            * Comment.pm (node_type): Node type was incorrect!
608    
609            * DOMConfiguration.pm (get_parameter): Alpha.
610    
611            * DOMImplementation.pm (create_mc_decode_handler,
612            create_charset_name_from_uri, create_uri_from_charset_name):
613            New autoload configuration.  Note that the Message::Charset::Encode
614            module is subject to change.
615    
616            * XMLParserTemp.pm: Now it can be used with new version
617            of DOM implementation.  Current plan is to replace it by
618            an XML5 parser someday.
619    
620    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
621    
622            * DOMLocator.pm: New module.
623    
624            * DOMError.pm: New module.
625    
626    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
627    
628            * Node.pm (manakai_expanded_uri, manakai_parent_element,
629            clone_node, compare_document_position, has_attributes,
630            has_child_nodes, is_default_namespace, lookup_namespace_uri,
631            lookup_prefix, normalize): Implemented.
632    
633            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
634    
635            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
636    
637    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
638    
639            * AttributeDefinition.pm (____new): Set an empty list
640            to the |allowed_tokens| attribute.
641            (allowed_token): Alpha version.
642    
643            * DocumentType.pm (get_element_type_definition_node,
644            get_notation_node): ALpha version.
645    
646            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
647            version.
648    
649            * Entity.pm (notation_name): Implemented.
650    
651    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
652    
653            * Attr.pm (____new): Initialize |specified| as 1.
654            (base_uri, manakai_attribute_type, specified): Implemented.
655            (prefix): Don't check read-only flag unless |strict_error_checking|.
656            (value): Call |text_content| for now.
657    
658            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
659            (declared_type, default_type): Implemented.
660    
661            * CharacterData.pm (____new): Allow a scalar reference
662            as an input for the |data| attribute.
663            (base_uri, manakai_append_text): Implemented.
664    
665            * DOMConfiguration.pm (set_parameter): Resetting implemented.
666    
667            * DOMDocument.pm (____new): Set default values to
668            configuration parameter whose default is true.
669            (document_uri, input_encoding): Implemented.
670            (all_declarations_processed, manakai_is_html): Implemented.
671            (base_uri, manakai_append_text,
672            manakai_entity_base_uri, strict_error_checking,
673            xml_encoding, xml_version, xml_standalone): Implemented.
674    
675            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
676            (get_attribute, get_attribute_node): Alpha version.
677            (set_attribute_node, set_attribute_node_ns): Implemented.
678            (set_attribute_ns): Accept non-ARRAY qualified name.
679    
680            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
681            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
682    
683            * DocumentType.pm (public_id, system_id): Implemented.
684            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
685            manakai_append_text): Implemented.
686            (element_types, general_entities, notations,
687            set_element_type_definition_node, set_general_entity_node,
688            set_notation_node): Alpha version.
689    
690            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
691            (attribute_definitions, set_attribute_definition_node): Alpha version.
692    
693            * Entity.pm (has_replacement_tree, public_id, system_id,
694            manakai_declaration_base_uri, manakai_entity_base_uri,
695            manakai_entity_uri): Implemented.
696    
697            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
698            (base_uri, manakai_entity_base_uri): Implemented.
699    
700            * Node.pm (base_uri): Implemented.
701            (text_content): Don't check read-only or not
702            unless |strict_error_checking|.
703            (manakai_append_text): Implemented.
704            (get_feature): Alpha.
705            (manakai_set_read_only): Implemented.
706    
707            * Notation.pm (public_id, system_id, manakai_append_text,
708            manakai_declaration_base_uri): Implemented.
709    
710            * ProcessingInstruction.pm (manakai_base_uri,
711            base_uri, manakai_append_text): Implemented.
712    
713    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
714    
715            * DOMConfiguration.pm: New module.
716    
717            * Attr.pm (trivial accessor for read-write attributes): Throw
718            an exception if the node is read-only.  Delete the property
719            if undef is specified.
720            (prefix): Implemented.
721    
722            * DOMElement.pm (trivial accessor for read-write attributes): Throw
723            an exception if the node is read-only.  Delete the property
724            if undef is specified.
725            (prefix): Implemented.
726            (text_content, manakai_append_text): Old implementations are removed.
727    
728            * DOMCharacterData.pm (text_content): Implemented.
729    
730            * DOMDocument.pm (____new): Initialize the strict-document-children
731            parameter by true.
732            (text_content): Reimplemented.
733            (dom_config): New.
734    
735            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
736    
737            * DocumentType.pm (text_content): Implemented.
738    
739            * ElementTypeDefinition.pm (text_content): Implemented.
740    
741            * Node.pm (___report_error): New method.
742            (text_content): Implemented.
743            (manakai_append_text): Copied from |DOMElement.pm|.
744    
745            * Notation.pm (text_content): Implemented.
746    
747            * ProcessingInstruction.pm (text_content): Implemented.
748    
749            * Text.pm (is_element_content_whitespace): Alpha version.
750    
751    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
752    
753            * DOMException.pm (Message::IF::DOMException): Extends
754            the |Message::Util::Error| class.
755    
756            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
757            (CLEAR): Not all items were removed.
758    
759    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
760    
761            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
762            DocumentType.pm, Entity.pm,
763            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
764    
765            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
766            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
767    
768            * DOMDocument.pm (AUTOLOAD): Typo fixed.
769    
770            * Node.pm (==, !=): Implemented.
771            (manakai_read_only): Implemented.
772            (is_same_node): Implemented.
773            (is_equal_node): Alpha version.
774            (manakai_set_read_only): Alpha version.
775            (child_nodes, first_child, last_child, previous_sibling): Duplicate
776            definitions are removed.
777    
778    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
779    
780            * Node.pm: First alpha version of implementation of attributes.
781    
782    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
783    
784            * ProcessingInstruction.pm, EntityReference.pm,
785            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
786            ElementTypeDefinition.pm, AttributeDefinition.pm,
787            DocumentType.pm, DOMElement.pm, Attr.pm,
788            CharacterData.pm, Text.pm, Comment.pm (node_name,
789            node_value, node_type): Implemented.
790    
791    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
792    
793            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
794            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
795            AttributeDefinition.pm: New modules.
796    
797            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
798            (create_attribute_definition, create_element_type_definition,
799            create_document_type_definition, create_cdata_section,
800            create_processing_instruction, create_entity_reference,
801            create_general_entity, create_notation): Prototypes added.
802    
803            * DOMImplementation.pm (create_document_type): Prototype added.
804    
805            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
806            and 'Message::IF::DocumentTypeDeclaration' added.
807            (create_document_type, create_document_type_definition):
808            New methods.
809    
810    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
811    
812            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
813            DOMElement.pm, Attr.pm, DocumentType.pm,
814            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
815            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
816    
817    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
818    
819            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
820            specifies unknown value and trys to recover from the error.
821    
822    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
823    
824            * TreeCore.dis (manakaiLocalName): New attribute.
825    
826    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
827    
828            * GenericLS.dis (GLSException): New interface.
829    
830    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
831    
832            * |InputProcessor|s and |OutputProcessor|s are
833            named so that |report| statements in Perl
834            module outputs can be identified by name. |dis:dataType|s
835            of |DISCore:TFQNames| are all replaced
836            by |DISCore:QName|.
837    
838    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
839    
840            * Element.dis (createElementNS): If an array reference
841            is specified as the |qualifiedName| parameter,
842            don't set the first item as the local name
843            even if the second item is not specified (or
844            specified as |undef|).
845            (createElementNS, setAttribute, setAttributeNS,
846            removeAttribute, removeAttributeNS,
847            setAttributeNode, setAttributeNodeNS,
848            removeAttributeNode, removeAttributeNodeNS): Sets
849            or removes the |tc:contentAttributeList| value.
850    
851            * TreeCore.dis (AttrMap.item): Caches the result
852            of sorting of content attribute names.
853            (getAttrMap, getElementTypeDefNodeMap,
854            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
855            (tc:contentAttributeList): New property.
856    
857    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
858    
859            * DOMFeature.dis (ForDef): Removed.
860            (f:provides, f:through): Removed.
861            (Version): Removed.
862            (implementFeature): Removed.
863    
864    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
865    
866            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
867            GenericLS.dis, TreeCore.dis, DOMString.dis,
868            XML.dis, Element.dis, Document.dis, TreeStore,dis,
869            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
870            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
871            are removed.
872    
873    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
874    
875            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
876            GenericLS.dis, TreeCore.dis, DOMString.dis,
877            XML.dis, Element.dis, Document.dis, TreeStore,dis,
878            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
879            SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications
880            and |DefaultFor|s are removed.
881    
882    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
883    
884            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
885            GenericLS.dis, TreeCore.dis, DOMString.dis,
886            XML.dis, Element.dis, Document.dis, TreeStore,dis,
887            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
888            SimpleLS.dis, DOMMain.dis: References
889            to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|,
890            |ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3|
891            modes are removed.
892    
893    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
894    
895            * CharacterData.dis, TreeCore.dis (Require): References
896            to the |Grove.dis| module are removed.
897    
898    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
899    
900            * DOMFeature.dis (f:implementation, f:revImplementation): Removed.
901            (Require): Reference to the |Grove.dis| module is removed.
902    
903    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
904    
905            * DOMCore.dis (ManakaiDOMImplementation): The
906            class is no longer plays the role of
907            a |mg:NodeRefRole|.  Redundant |f:provides|
908            properties are removed.
909    
910    2006-12-29  Wakaba  <wakaba@suika.fam.cx>
911    
912            * TreeCore.dis, DOMCore.dis, Document.dis,
913            Element.dis, CharacterData.dis, XML.dis,
914            XDoctype.dis, DOMString.dis, TreeStore.dis,
915            XMLParser.dis: Use Perl native
916            hashs and |Scalar::Util|'s weak references in favor of |Grove.dis|
917            for DOM nodes.  See
918            also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>.
919    
920    2006-12-03  Wakaba  <wakaba@suika.fam.cx>
921    
922            * DOMFeature.dis, TreeCore.dis: Unused |role|s are removed.
923    
924    2006-12-02  Wakaba  <wakaba@suika.fam.cx>
925    
926            * DOMString.dis: New module.
927    
928            * DOMString.pm: New file.
929    
930            * DOMCore.dis (min): Moved from |DOMFeature.dis|.
931            (ImplementationRegistryVariable): Moved from |DOMFeature.dis|.
932            Now it references the |DOMImplementationRegistry| object.
933            (DOMImplementationRegistryVariable): Moved from |DOMMain.dis|.
934            (DOMImplementationRegistry): New interface and
935            class, reformed from |ImplementationRegistry| in |DOMFeature.dis|
936            and |DOMImplementationRegistry| in |DOMMain.dis|.  Note
937            that the class no longer support |get_implementation|
938            and |get_implementation_list| methods from
939            the |ImplementationRegistry| interface.
940            (DOMImplementationList): Class implemented; no
941            longer inherits from |ImplementationList|.
942            (DOMImplementationSource): Class implemented; no
943            longer inherits from |ImplementationSource|.  Note that
944            the class no longer support |get_implementation|
945            and |get_implementation_list| methods from
946            the |ImplementationSource| interface.
947            (DOMStringList): Removed.
948    
949            * DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature,
950            ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature,
951            ManakaiDOM:DOMXMLFeatureXML11, most part of
952            documentation for obsolete DOM Level 3 Minimum Implementation
953            module, obsolete property name aliases,
954            ImplemenationRegistryVar, ImplementationRegistry,
955            DEBUG, MIString, ImplementationList, ImplementationSource,
956            ManakaiDOM:implID): Removed.
957    
958            * DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed.
959            (DOMString): Removed.
960            (DOMImplementationRegistryVar, DOMImplementationRegistry): Removed.
961    
962            * Makefile: |DOMString.pm| is added.
963    
964            * TreeCore.dis (is_default_namespace): |null| was
965            returned where a false is expected (|null| is
966            a false in Perl, but real |false| is appropriate here).
967    
968    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
969    
970            * DOMCore.dis (TypeInfo, UserDataHandler): Removed.
971    
972            * Element.dis (TypeInfo): Moved from |DOMCore.dis|.
973    
974            * TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|.
975    
976    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
977    
978            * DOMFeature.dis (ImplementationList, ImplementationSource,
979            ImplementationRegistry): Parameters |features|
980            now allow |null| (equivalent to an empty string).
981    
982    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
983    
984            * CharacterData.dis (ManakaiDOMDocumentCharacterData): New
985            class.  Factory methods |createTextNode| and |createComment|
986            are moved from |ManakaiDOMDocument|.
987    
988            * DOMCore.dis: References to |ManakaiDOMObject|
989            are removed.
990            (tc:createImplForTest): Moved from |TreeCore.dis|.
991            (DOMImplementation.___create_node_ref): Support
992            for the |mg:nodeRefClass| option is removed.
993            (ManakaiDOMConfiguration.___report_error): Moved
994            from |ManakaiDOMObject| class.
995    
996            * DOMFeature.dis (domidl:extends): New property.
997            (f:getFeatureImpl): Support for |+| classes is removed.
998    
999            * DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed.
1000            (ManakaiDOM:ManakaiDOMObject): Removed.
1001            (DOMDataType): Removed.
1002    
1003            * Document.dis (ManakaiDOMImplementationDocument):
1004            The |createDocument| method is moved from
1005            the |ManakaiDOMImplementationTC| in |TreeCore.dis|.
1006            (ManakaiDOMDocument.___create_node_ref): Removed.
1007            (createElement, createElementNS, createAttribute,
1008            createAttributeNS, createTextNode, createComment,
1009            createCDATASection, createEntityReference,
1010            createProcessingInstruction): Class implementations
1011            are moved to each module.
1012    
1013            * Element.dis (ManakaiDOMImplementationElement): Factory
1014            methods are moved from |Document.dis|.
1015            (ManakaiDOMElement.___create_node_ref): Support
1016            for old class registry is removed.
1017            (ManakaiDOMAttr.___create_node_ref): Removed.
1018            (Attr.baseURI): Implementation
1019            for |xml:base| attribute is merged.
1020            (Attr.nodeValue, Attr.value): Implementation
1021            for |xml:id| attribute is merged.
1022    
1023            * TreeCore.dis (ManakaiDOMImplementationTC): Removed.
1024    
1025            * XDoctype.dis (ManakaiDOMImplementationXDoctype): The
1026            definition for |createDocumentType| method
1027            is moved from |TreeCore.dis|.
1028    
1029            * XML.dis (ManakaiDOMXMLDocument): Factory
1030            methods are moved from |Document.dis|.
1031            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged
1032            into |ManakaiDOMAttr| in |Element.dis|).
1033    
1034    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
1035    
1036            * Element.dis (___get_node_ref): |eval|ed |require|
1037            statement was broken.
1038    
1039            * DOMFeature.dis (getImplementationList): Argument
1040            is not passed to the |getImplementation| method.
1041    
1042            * TreeStore.dis (DOMImplementationTreeStore): It
1043            did not |f:implements| the |TSFeature30| feature.
1044    
1045            * XMLParser.dis: Use |create_uri_reference|
1046            method instead of internal |_new| method
1047            to create a URI reference object.
1048    
1049    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
1050    
1051            * DOMCore.dis (ManakaiDOMImplementation): No longer
1052            explicitly inherits |urigen:ManakaiURIImplementation| (and
1053            the |f:ManakaiMinimumImplementation| class inherited
1054            by it).  The |f:Minimum| feature is ever implemented
1055            for compatibility (but is expected to be removed).
1056            Internal methods such as |___report_error| are copied from
1057            obsolete |f:MinimumImplementation| class.  DOM3
1058            methods |hasFeature| and |getFeature| are also
1059            moved from that class, but they now support no
1060            foreign classes.
1061    
1062            * DOMFeature.dis (ManakaiImplementationSource): It
1063            now |p:require|s |Message::Util::AutoLoad::Registry|.
1064            The class no longer support classes
1065            other than |ManakaiDOMImplementation|.  Note
1066            that the |ImplementationRegistry| object does continue
1067            to support foreign classes via foreign classes
1068            implementing |ImplementationSource|
1069            or |DOMImplementationSource| interface.
1070            (MinimumImplementation): Removed.
1071    
1072            * DOMLS.dis (ManakaiDOMImplementationLS): It no
1073            longer inherit the |ManakaiDOMImplementation|; it
1074            is now expected to be implemented by |DOMImplementation|
1075            objects.
1076    
1077            * DOMMain.dis (null): Removed.
1078    
1079            * Document.dis (___create_node_ref): It no
1080            longer support foreign classes other
1081            than |Message::DOM::Document::ManakaiDOMDocument|.
1082            Note that document format specific DOM
1083            interfaces, if supported, should be
1084            all instances of the |Document| interface
1085            in the implementation, as defined
1086            in the Web Applications 1.0 specification (where
1087            the |HTMLDocument| interface must be implemented
1088            by all |Document| objects, even if the |Document|
1089            contains no HTML element).
1090    
1091            * GenericLS.dis (GLSImplementation): It no
1092            longer inherit the |MinimumImplementation|; it
1093            is now expected to be implemented by |DOMImplementation|
1094            objects.
1095            (createGLSParser, createGLSSerializer): Load
1096            module implementing parser or serializer
1097            if necessary.
1098    
1099            * Traversal.dis (ManakaiDOMDocumentTraversal): It no
1100            longer inherits the |ManakaiDOMDocument|; it
1101            is now expected to be implemented by |Document|
1102            objects.
1103    
1104            * XDP.dis (XDPDocument): It no longer
1105            inherits the |Document|; it is now expected
1106            to be implemented by all |Document| objects.
1107    
1108            * XDoctype.dis (ManakaiDOMDocumentXDoctype): It no
1109            longer inherits the |ManakaiDOMDocument|; it
1110            is now expected to be implemented by |Document|
1111            objects.
1112    
1113    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
1114    
1115            * DOMCore.dis (ManakaiDOMImplementation): No longer
1116            explicitly inherits |tc:ManakaiDOMImplementationTC|.
1117            (ManakaiDOMImplementation.AUTOLOAD): New method definition.
1118    
1119            * TreeCore.dis (ManakaiDOMImplementationTC): Extends
1120            the |ManakaiDOMImplementation| class.
1121    
1122    2006-11-03  Wakaba  <wakaba@suika.fam.cx>
1123    
1124            * DOMFeature.dis: Definitions for various concepts
1125            are added.
1126    
1127            * GenericLS.dis (GLSImplementation): It no
1128            longer inherits the |MinimumImplementation|; rather,
1129            any |ManakaiMinimumImplementation| object also
1130            implements |GLSImplementation| methods.
1131    
1132            * TreeStore.dis (DOMImplementationTreeStore): It no
1133            longer inherits the |DOMImplementation|; rather,
1134            any |ManakaiDOMImplementation| object also
1135            implements |DOMImplementationTreeStore| methods.
1136    
1137    2006-08-15  Wakaba  <wakaba@suika.fam.cx>
1138    
1139            * TreeStore.pm: Added to the CVS repository
1140            to enable for the dis database to contain XML
1141            fragments.
1142    
1143            * Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added.
1144    
1145            * TreeStore.dis (Namespace): Namespace URI was incorrect.
1146    
1147    2006-06-18  Wakaba  <wakaba@suika.fam.cx>
1148    
1149            * Traversal.dis (expandEntityReferences): Syntax was incorrect.
1150    
1151            * TreeCore.dis (manakaiReadOnly): Test assertion was incorrect.
1152    
1153            * XDP.dis (dtdText): Test assertion was incorrect.
1154    
1155    2006-05-21  Wakaba  <wakaba@suika.fam.cx>
1156    
1157            * XDP.dis (XDPEntityValue.stringify): Don't escape
1158            any |%|s in |xdp:attr-definition| children.
1159    
1160    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
1161    
1162            * XDP.dis (createXDPRNIKeyword): The Perl method
1163            name property is added.
1164    
1165    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
1166    
1167            * XDP.dis (createXDPIf): New method.
1168            (XDPIfElement): New interface.
1169    
1170    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
1171    
1172            * XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition):
1173            New methods.
1174    
1175    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
1176    
1177            * XDP.dis (XDPDocument): A number of constructor methods
1178            are added.
1179            (XDPTextDecl.dtdText): The |xml| target was missing.
1180    
1181    2006-05-14  Wakaba  <wakaba@suika.fam.cx>
1182    
1183            * Traversal.dis (SerialWalker): New interface.
1184            (manakaiCreateSerialWalker): New method.
1185    
1186    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
1187    
1188            * Traversal.dis (testNode): Calls |acceptNode| method
1189            rather than |&{}| dereferencing.
1190            (acceptNode): Implemented.
1191    
1192    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
1193    
1194            * XDP.dis: New module.
1195    
1196            * Makefile: |XDP.dis| is added.
1197    
1198            * Traversal.dis (NodeFilter): |InputProcessor|
1199            and |OutputProcessor| are added.
1200    
1201    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
1202    
1203            * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.
1204            (TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support
1205            is added.  The |FILTER_REJECT| value is treated
1206            as |FILTER_ACCEPT| if the |currentNode| is in the
1207            rejected subtree as specified in the spec.
1208    
1209    2006-05-05  Wakaba  <wakaba@suika.fam.cx>
1210    
1211            * SimpleLS.dis: An |xmlns:| prefix was missing.
1212    
1213    2006-05-04  Wakaba  <wakaba@suika.fam.cx>
1214    
1215            * SimpleLS.dis: Namespace bugs are fixed.
1216    
1217    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
1218    
1219            * .cvsignore: Updated.
1220    
1221            * Traversal.dis: Unused declarations are removed.
1222    
1223    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
1224    
1225            * CharacterData.dis (Require): A reference to
1226            the |MDOM:Traversal| module is added.
1227            (wholeText): Implemented.
1228    
1229    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
1230    
1231            * Makefile: |Traversal.dis| is added.
1232    
1233            * Traversal.dis: New module.
1234    
1235            * TreeCore.dis (___report_error): Return value was
1236            not propagated.
1237    
1238    2006-04-29  Wakaba  <wakaba@suika.fam.cx>
1239    
1240            * Element.dis (removeAttributeNS): A runtime error
1241            was occurred if there was no specified attribute node.
1242    
1243            * TreeCore.dis (manakaiLanguage): New attribute.
1244    
1245    2006-04-28  Wakaba  <wakaba@suika.fam.cx>
1246    
1247            * TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly):
1248            New attributes.
1249    
1250            (StaticNodeList): New interface.
1251    
1252    2006-04-24  Wakaba  <wakaba@suika.fam.cx>
1253    
1254            * DOMCore.dis (c:SET_TO_NULL_ERR): New error code.
1255    
1256    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
1257    
1258            * SimpleLS.dis: Reimplemented.
1259    
1260    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
1261    
1262            * DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now
1263            a qualified name.
1264            (tc:EXTERNAL_NODE_COMPARISON_ERR): New error type.
1265    
1266            * TreeCore.dis (compareDocumentPosition): Implemented.
1267            (normalize): Implemented.
1268            (STORESIZE, CLEAR): Were not implemented for |EmptyNodeList|
1269            class.
1270    
1271    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
1272    
1273            * DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed.
1274    
1275    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
1276    
1277            * CharacterData.dis (length, insertData, substringData,
1278            appendData, deleteData, replaceData, splitText): Reimplemented.
1279    
1280            * DOMCore.dis (NEGATIVE_LENGTH_ERR): New error.
1281            (c:index): The definition was missing.
1282            (c:length): New property.
1283    
1284    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
1285    
1286            * XMLParser.dis (close): Invoke |close| method
1287            rather than |close| function.
1288    
1289    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
1290    
1291            * CharacterData.dis: New module split from |TreeCore.dis|.
1292    
1293            * CharacterData.pm: Added to the CVS repository.
1294    
1295            * TreeCore.dis: The |CharacterData|, |Text|, and |Comment|
1296            interfaces are removed.
1297            (Require): A reference to the |MDOM:CharacterData| module
1298            is added.
1299    
1300            * DOMMain.dis (StringExtended, StringOutOfBoundsException): Removed.
1301    
1302            * DOMCore.dis (StringOutOfBoundsException): New error.
1303    
1304            * Makefile: |CharacterData.pm| is added.
1305    
1306    2006-04-09  Wakaba  <wakaba@suika.fam.cx>
1307    
1308            * XMLParser.dis (Require): Requires the |MCharset:Encode|
1309            module.
1310            (parse): Set the |inputEncoding| attribute of the generated document
1311            object.
1312            (resolveLSInput default implementation): The |byteStream|
1313            and |encoding| attributes of the |LSInput| interface
1314            are now supported.
1315            (resolveLSInput): Parameters |impl| and |parser| are added.
1316            (InputFile.inputEncoding): New attribute.
1317    
1318    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
1319    
1320            * Document.dis (adoptNode test): Documents were
1321            made by different documents.
1322    
1323    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
1324    
1325            * XMLParser.dis: The |cfg:dtd-default-attributes| configuration
1326            parameter is changed to |cfg:dtd-default-attribute|.
1327    
1328    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
1329    
1330            * TreeCore.dis: The |DOMMain:raiseException| elements
1331            are replaced by |disPerl:EXCEPTION|s.
1332    
1333    2006-04-03  Wakaba  <wakaba@suika.fam.cx>
1334    
1335            * DOMMain.dis (GetPropNode, CheckReadOnly): Removed.
1336    
1337            * Node.dis (cfg:dtd-default-attribute): The configuration
1338            parameter |cfg:dtd-default-attributes| is renamed
1339            as |cfg:dtd-default-attribute|.
1340            (Roles): Definitions are changed so that classes
1341            that implement those classes MUST implement the |Node|
1342            and its subinterfaces.
1343            (cfg:dtd-attribute-type): New configuration parameter.
1344    
1345            * Document.dis (adoptNode): Don't throw exception
1346            if |strictErrorChecking| is |false|.
1347    
1348            * Element.dis (setAttribute, setAttributeNS): Don't
1349            set [attribute type] if the |cfg:dtd-attribute-type|
1350            configuration parameter is set to |false|.
1351            (removeAttribute, removeAttributeNS, removeAttributeNode): Don't
1352            regenerate default attribute nodes if the |cfg:dtd-default-attribute|
1353            configuration parameter is set to |false|.
1354    
1355    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
1356    
1357            * TreeStore.dis: New module.
1358    
1359            * Makefile: |TreeStore.dis| is added.
1360    
1361    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
1362    
1363            * XMLParser.dis: Updated so that it can be used
1364            with |TreeCore.pm|, |Document.pm|, |Element.pm|,
1365            and |XML.pm|.  Set the read-only flag to
1366            the |DocumentType|, |Entity|, and |EntityReference| noes.
1367    
1368            * Node.dis (textContent): It did not handle descendant
1369            element and entity reference nodes.
1370    
1371            * Element.dis, XML.dis (manakaiBaseURI.get): Its
1372            definition has been changed to return only explicit
1373            base URI specification.
1374    
1375            * DOMLS.dis (LSInput, LSOutput): They no longer
1376            inherits the |ManakaiDOM:ManakaiDOMObject| class.
1377    
1378            * Tree.dis, DOMXML.dis, ManakaiDOMLS2003.dis: Removed.
1379    
1380            * Tree.pm, DOMXML.pm: Removed.
1381    
1382            * TreeCore.pm, Document.pm, Element.pm: Added
1383            to the CVS repository since they are necessary to
1384            build the dis library.
1385    
1386            * Makefile: Sync'ed to new modules disposition.
1387    
1388    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
1389    
1390            * Makefile: Rules for |Tree.pm| and |DOMXML.pm| are
1391            removed.  For |Element.pm| and |Document.pm| are added.
1392    
1393            * Document.dis, Element.dis: New module split from |TreeCore.dis|.
1394    
1395            * TreeCore.dis (Document, DocumentFragment, Element, Attr): Removed.
1396    
1397    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
1398    
1399            * DOMFeature.dis (getImplementation, getImplementationList): Support
1400            for new class information variables.
1401            (DOMLS:Generic): This old feature name is removed.
1402    
1403            * GenericLS.dis (createGLSParser, createGLSSerializer): Support
1404            for new class information variables.
1405    
1406            * TreeCore.dis (manakaiExpandedURI): New attribute.
1407            (Document, Element.___create_node_ref): New method
1408            implementations.
1409    
1410    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
1411    
1412            * TreeCore.dis (setIdAttribute, setIdAttributeNS, setIdAttributeNode):
1413            Reimplemented.
1414            (isId): Setter is added.
1415            (Element.normalize): Definition copied from the |MDOM:Tree|
1416            module.
1417    
1418    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
1419    
1420            * Makefile (clean-db): New rule.
1421    
1422            * TreeCore.dis (setUserData): Schedule to invoke
1423            the user data handler when the node is removed
1424            from the memory.
1425            (setAttribute, setAttributeNS): Set the [attribute type]
1426            if DTD attribute definition is available.
1427            (CharacterData members): Definitions copied from
1428            the |MDOM:Tree| module.
1429    
1430    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
1431    
1432            * DOMCore.dis (DOMStringList.==): New overloaded operator.
1433    
1434            * DOMFeature.dis (ManakaiHasFeatureByGetFeature): The
1435            class did not implement the |GetFeature| interface.
1436            (hasFeature): The |+| prefix was not taken into account.
1437    
1438            * TreeCore.dis (Node): The class now inherits
1439            the |ManakaiHasFeatureByGetFeature| class.  It now
1440            implements the |f:GetFeature| and |ecore:MUErrorTarget|
1441            interfaces.
1442            (CreateNodeRefMethod): The |mg:nodeRefInterfaces| option
1443            is supported.
1444            (lookupNamespaceURI, lookupPrefix, isDefaultNamespace): Reimplemented.
1445            (manakaiParentElement): New attribute.
1446    
1447            * XDoctype.dis (d:Feature): Old feature name |ManakaiDOM:XDoctype|
1448            is removed.
1449            (lookupPrefix): Old method implementation is removed.
1450    
1451            * XML.dis (CDATASection): The |mg:NodeRefRole| was
1452            missing because of the |DISCore:stopISARecursive| property.
1453    
1454            * TreeCore.dis, XML.dis, XDoctype.dis, DOMCore.dis, DOMFeature.dis:
1455            They now pass all tests included in those modules!
1456    
1457    2006-03-30  Wakaba  <wakaba@suika.fam.cx>
1458    
1459            * DOMCore.dis (Require): A reference to the |MURI:Generic|
1460            module is added.
1461            (ManakaiDOMStringList.DESTROY): Removed (no longer necessary).
1462            (ManakaiDOMImplementation): It now inherits
1463            the |urigen:ManakaiURIImplementation| class and
1464            implements the |ecore:MUErrorTarget| interface.  It no
1465            longer inherits the |ManakaiDOM:ManakaiDOMObject| class.
1466            (ManakaiDOMImplementation.___report_error): New method.
1467    
1468            * DOMFeature.dis (Require): It now references the |Util:Grove|
1469            module instead of |Util:ManakaiNode| module.
1470            (DOMMetaImpl:ManakaiDOMImplementationRole): Removed.
1471            (f:ManakaiMinimumImplementationCompatible): New role.
1472            (ManakaiMinimumImplementation): Now it is built
1473            on the new |Util:Grove| module rather than the |Util:ManakaiNode|
1474            module.
1475            (f:getFeatureImpl): Moved from the |MDOM:TreeCore| module.
1476            (c:implementation): Removed.
1477            (f:implementation, f:revImplementation): New properties.
1478    
1479            * DOMMain.dis (checkNamespacePrefix): DOM2 codes are removed.
1480    
1481            * Tree.dis (cfg:clone-entity-reference-subtree,
1482            cfg:dtd-default-attributes, cfg:xml-id,
1483            cfg:strict-document-children): Removed (moved
1484            to the |MDOM:TreeCore| module).
1485    
1486            * TreeCore.dis (Require): The reference to the |MURI:Generic|
1487            module is removed.
1488            (ManakaiDOMImplementationTC): Some members are removed
1489            since they are incorporated to the |c:ManakaiDOMImplementation|
1490            or the |f:ManakaiMinimumImplementation|.
1491            (tc:nodeRefClass): Removed (moved to the |Util:Grove| module).
1492            (replaceChildImpl1): A typo on the removing the parent node
1493            of the old child node is fixed.
1494            (f:getFeatureImpl): Removed (moved to the |MDOM:DOMFeature|
1495            module).
1496            (tc:implementation, tc:revImplementation): Removed (moved
1497            to the |MDOM:DOMFeature| module).
1498            (Document.appendChild, insertBefore, replaceChild): Sets
1499            the |ownerDocument| attribute of the |tx:DocumentType| nodes.
1500            (Attr.prefix, Element.prefix): Don't raise "uninitialized"
1501            when the new value is |null|.
1502            (Attr.___create_node_ref): Attribute name and
1503            owner element type specific classes are supported (it
1504            was partially implemented but was incorrect).
1505            (ManakaiDOMGetElementsNodeList.item): Don't return
1506            a node if the |index| is negative.
1507            (setNamedItem): Various typos are fixed.
1508            (removeNamedItem): The node was not removed orz
1509            (cfg:clone-entity-reference-subtree,
1510            cfg:dtd-default-attributes, cfg:xml-id,
1511            cfg:strict-document-children): Definitions are moved
1512            from the |MDOM:Tree| module.  Note that the tests for default
1513            attributes still fail.
1514            (ErrDef, IntPropDef): Moved from the |MDOM:Tree| module.
1515            (Attr): Role name was incorrect.
1516    
1517            * XDoctype.dis (setDefinitionNode): Return value was
1518            not set.
1519            (AttributeDefinition): Role name was incorrect.
1520    
1521            * XML.dis (Require): A reference to the |DISlib:DISMarkup|
1522            module is added.
1523            (Notation.appendChild, insertBefore, replaceChild): New method
1524            implementations.
1525            (Entity.appendChild, insertBefore, replaceChild): New method
1526            implementations.
1527            (EntityReference.appendChild, insertBefore, replaceChild): Now
1528            they are defined as copies of ones in the |Entity| class.
1529            (XMLBaseAttribute, XMLIdAttribute): Now they are
1530            namespace unaware attributes.
1531            (XMLBaseAttributeNS, XMLIdAttributeNS): New attributes.
1532            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): References
1533            to namespace aware attributes are added.
1534    
1535    2006-03-29  Wakaba  <wakaba@suika.fam.cx>
1536    
1537            * DOMCore.dis: Namespace prefixes are changed to new ones.
1538    
1539            * TreeCore.dis (createDocument, createDocumentType): Reimplemented (but
1540            untested).
1541            (___report_error): Reimplemented (untested).
1542            (manakaiSetReadOnly): New method.
1543            (Attr.___create_node_ref): New method (untested).
1544            (Document.getFeature): |require|s the |MDOM:XML| Perl module.
1545            (createEntityReference, cloneNode): Support for
1546            the |cfg:entity-reference-read-only| configuration
1547            parameter is removed; newly created entity references
1548            are always read-only and use the |manakaiSetReadOnly| method
1549            if desired.
1550            (Element.manakaiBaseURI): Reimplemented (untested).
1551    
1552            * XDoctype.dis (createGeneralEntity, createNotation): |require|s
1553            the |MDOM:XML| Perl module.
1554            (DocumentTypeDefinition.___create_node_stem): Sets
1555            the |tc:implementation| internal property if its value
1556            is provided.  The |infoset:content| internal property name
1557            was incorrect.
1558            (DocumentTypeDefinition, ElementTypeDefinition): |MUST|s on
1559            read-only |NodeList| and |DOMStringList| are added
1560            for clarification.
1561    
1562    2006-03-26  Wakaba  <wakaba@suika.fam.cx>
1563    
1564            * DOMCore.dis (Require): Reference to the |MDOM:TreeCore|
1565            module is added.
1566            (DOMStringList): Reimplemented for new |d:AttributeDefinition|
1567            implementation (untested).
1568    
1569            * TreeCore.dis (baseURI): Reimplemented (untested).
1570            (Roles): Definitions added.
1571    
1572            * XDoctype.dis (Require): References to the |MDOM:TreeCore|
1573            and |MDOM:XML| modules are added.  Reference to the |MDOM:Tree|
1574            module is removed.
1575            (DocumentXDoctype): Reimplemented (untested).
1576            (DocumentTypeDefinition, DocumentTypeDeclaration):
1577            Reimlemented (untested).
1578            (ElementTypeDefinition, AttributeDefinition): Reimplemented (untested).
1579    
1580            * XML.dis (FeatureDef): New features (definitions copied
1581            from the |MDOM:DOMXML| module).
1582            (DocumentType): New interface (definition copied from
1583            the |MDOM:DOMXML| module).
1584            (CDATASection, Notation, Entity, EntityReference, ProcessingInstruction):
1585            Reimplemented (untested).
1586            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Reimplemented (untested).
1587    
1588    2006-03-25  Wakaba  <wakaba@suika.fam.cx>
1589    
1590            * TreeCore.dis (Document): Most methods are reimplemented (untested).
1591    
1592    2006-03-25  Wakaba  <wakaba@suika.fam.cx>
1593    
1594            * TreeCore.dis (Document): Attributes are reimplemented (untested).
1595            (Text, DocumentFragment, Comment): Most members are
1596            reimplemented (untested).
1597    
1598    2006-03-24  Wakaba  <wakaba@suika.fam.cx>
1599    
1600            * DOMMain.dis (checkXMLNamesQName): Some checks are
1601            removed to sync with DOM Level 3 Core specification.
1602    
1603            * TreeCore.dis (Element): Most methods are reimplemented (untested).
1604            (GetElementsNodeList): Reimplemented (untested).
1605    
1606    2006-03-23  Wakaba  <wakaba@suika.fam.cx>
1607    
1608            * Tree.dis (cfg:strict-document-children): The configuration
1609            parameter must also affect on |manakaiAppendText|
1610            and |textContent| on |Document| nodes.
1611    
1612            * TreeCore.dis (Node.CreateNodeRefMethod): The |tc:nodeRefClass|
1613            parameter changes the class to |bless|.
1614            (Node): Most methods are reimplemented.  (Untested)
1615            (CharacterData, Attr): Most methods and attributes are
1616            reimplemented.  (Untested)
1617    
1618            * XML.dis, XDoctype.dis: Most |Node| methods are
1619            reimplemented (untested).
1620    
1621    2006-03-23  Wakaba  <wakaba@suika.fam.cx>
1622    
1623            * TreeCore.dis, XML.dis, XDoctype.dis (Node.textContent): Reimplemented
1624            (untested).
1625    
1626    2006-03-22  Wakaba  <wakaba@suika.fam.cx>
1627    
1628            * DOMCore.dis (DOMSTRING_SIZE_ERR): It now has
1629            a qualified name.
1630    
1631            * DOMMain.dis (ensureNamespacePrefix): Undefines
1632            the prefix if it is an empty string.  (Note that
1633            it is defined as implementation dependent in
1634            DOM Level 3 Core specification).
1635    
1636            * TreeCore.dis (Require): It now references the |MDOM:XDoctype|
1637            module.
1638            (Node): Attributes are reimplemented (untested).
1639    
1640            * XML.dis (Require): It now references the |MDOMX:XDoctype|
1641            module.
1642            (Node): Attributes are reimplemented (untested).
1643            (Entity, Notation): New interfaces.
1644    
1645            * XDoctype.dis (Node): Attributes are reimplemented (untested).
1646    
1647    2006-03-19  Wakaba  <wakaba@suika.fam.cx>
1648    
1649            * TreeCore.dis (childNodes, firstChild, lastChild,
1650            nextSibling, previousSibling, appendChild, insertBefore,
1651            replaceChild, removeChild, createDocumentFragment,
1652            createEntityReference, createProcessingInstruction,
1653            domConfig, documentElement, implementation, manakaiAppendText): New.
1654            (NodeList, DocumentFragment): New interfaces.
1655    
1656            * XML.dis (EntityReference, ProcessingInstruction): New interface.
1657    
1658    2006-03-18  Wakaba  <wakaba@suika.fam.cx>
1659    
1660            * TreeCore.dis (Require): The |MDOM:XML| module is added.
1661            (createAttributeNS, createTextNode, createComment,
1662            createCDATASection): New methods.
1663            (Attr, Text, Comment, CharacterData): New interfaces.
1664    
1665            * Makefile: |XML.dis| is added.
1666    
1667            * XML.dis: New module.
1668    
1669    2006-03-17  Wakaba  <wakaba@suika.fam.cx>
1670    
1671            * TreeCore.dis (manakaiReadOnly): New attribute.
1672            
1673    2006-03-17  Wakaba  <wakaba@suika.fam.cx>
1674    
1675            * TreeCore.dis (NodeType, nodeType, localName, namespaceURI,
1676            prefix, isSameNode, ownerDocument, parentNode): New.
1677            (Element): New interface.
1678            (createElementNS): New method.
1679            (strictErrorChecking): New.
1680    
1681    2006-03-17  Wakaba  <wakaba@suika.fam.cx>
1682    
1683            * Makefile: |TreeCore.dis| is added.
1684    
1685            * TreeCore.dis: New module.
1686    
1687    2006-03-16  Wakaba  <wakaba@suika.fam.cx>
1688    
1689            * XMLParser.dis (cfg:entity-replacement-tree): New configuration
1690            parameter.
1691    
1692            * DOMXML.dis (manakaiExpanded): Renamed from |isExpanded|.
1693    
1694            * DOMCore.dis, Tree.dis, DOMLS.dis, XMLParser.dis: Lexical
1695            data types added to configuration parameters.
1696    
1697    2006-03-15  Wakaba  <wakaba@suika.fam.cx>
1698    
1699            * DOMCore.dis (c:DOMConfigurationParameter): Now it is
1700            a |DISSource:ResourceProperty|.
1701            (c:anyDOMConfigurationParameter): New property.
1702            (CParam, boolCParam): Now they are all |dis:subsetOf|
1703            the |c:anyDOMConfigurationParameter| property.
1704            (ForDocument, ForParser, ForSerializer): Removed.
1705    
1706            * DOMLS.dis, XMLParser.dis: Likewise.
1707    
1708    2006-03-12  Wakaba  <wakaba@suika.fam.cx>
1709    
1710            * DOMMain.dis, Tree.dis: Unused |dis:aliasChild| properties
1711            are removed.
1712    
1713            * GenericLS.pm: Added to the CVS repository since
1714            it is necessary to create the |Message::Util::DIS::DPG| module.
1715    
1716    2006-03-10  Wakaba  <wakaba@suika.fam.cx>
1717    
1718            * DOMCore.dis, DOMXML.dis, XDoctype.dis (manakaiAppendText): New
1719            method.
1720    
1721            * XMLParser.dis: Don't create adjacent text nodes.
1722    
1723    2006-03-09  Wakaba  <wakaba@suika.fam.cx>
1724    
1725            * DOMCore.dis (HIERARCHY_DOCUMENT_FRAGMENT_ITSELF_ERR): New error.
1726    
1727            * DOMXML.dis (appendChild, insertBefore, replaceChild): Method
1728            implementations are added.
1729    
1730            * XDoctype.dis (appendChild, insertBefore, replaceChild): Method
1731            implementations are added.
1732    
1733            * Tree.dis (appendChild, insertBefore, replaceChild): Method
1734            implementations are added.
1735            (IFCls1Def, NodeTypeDef): Don't define |ManakaiDOM:ForClass|
1736            resources unless for |ManakaiDOM:ManakaiDOMLatest|.
1737            (cfg:strict-document-children): New configuration parameter.
1738    
1739    2006-03-08  Wakaba  <wakaba@suika.fam.cx>
1740    
1741            * XDoctype.dis (replaceChild): Method implementations are added.
1742    
1743            * Tree.dis (replaceChild): Method implementations are added.
1744    
1745            * DOMXML.dis (replaceChild): Method implementations are added.
1746    
1747    2006-03-07  Wakaba  <wakaba@suika.fam.cx>
1748    
1749            * Tree.dis (ForAppendChild, ForInsertBefore, ForReplaceChild): New |for|
1750            definitions.
1751    
1752            * XDoctype.dis (insertBefore): New method implementation.
1753    
1754    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1755    
1756            * DOMXML.dis (insertBefore): Method implementations
1757            for |ProcessingInstruction| and |Notation| nodes are added.
1758    
1759            * Tree.dis (insertBefore): Method implementation
1760            for |CharacterData| nodes is added.
1761    
1762            * XDoctype.dis (insertBefore): Method implementation
1763            for |ElementTypeDefinition| nodes is added.
1764    
1765    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1766    
1767            * XDoctype.dis (appendChild): New method implementation.
1768    
1769    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1770    
1771            * DOMCore.dis (HIERARCHY_WRONG_DOCTYPE_ERR): New error.
1772            (REMOVE_DOCUMENT_ELEMENT_ERR): New error.
1773            (REMOVE_DOCUMENT_TYPE_ERR): New error.
1774    
1775            * DOMXML.dis (ManakaiDOMDocumentType): Removed.
1776            (ProcessingInstruction.appendChild, CDATASection.appendChild,
1777            Notation.appendChild): New method implementation.
1778    
1779            * Tree.dis (CharacterData.appendChild): New method implementation.
1780    
1781            * XDoctype.dis: Tests moved from |MDOM:DOMXML| module.
1782    
1783    2006-03-06  Wakaba  <wakaba@suika.fam.cx>
1784    
1785            * DOMXML.dis (ManakaiDOMXMLIdAttr): New class.
1786    
1787            * Tree.dis (createAttribute, createAttributeNS,
1788            setAttribute, setAttributeNS): They now supports
1789            the |cfg:xml-id| configuration parameter.
1790            (cfg:xml-id): New configuration parameter.
1791    
1792            * XDoctype.dis (createAttributeDefinition): It now
1793            supports the |cfg:xml-id| configuration parameter.
1794    
1795            * XMLParser.dis (parse): It now supports
1796            the |cfg:xml-id| configuration parameter.
1797    
1798    2006-03-05  Wakaba  <wakaba@suika.fam.cx>
1799    
1800            * XMLParser.dis (parse): Sets |Document.documentURI|
1801            and |Document.manakaiEntityBaseURI| attributes of the
1802            document created.
1803            (_ProcessingInstructionDTD): Sets the |manakaiBaseURI|
1804            property of the created node.
1805            (_SystemLiteral): Sets the |manakaiDeclarationBaseURI|
1806            of the created node.
1807            (ls-input-to-input-file.default): Sets the resolved
1808            system identifier to the |documentURI| attribute if available.
1809            Sets the |baseURI| attribute if available.
1810    
1811    2006-03-05  Wakaba  <wakaba@suika.fam.cx>
1812    
1813            * XDoctype.dis (DocumentTypeDefinition.implementation): New attribute.
1814            (Node.baseURI): New attribute implementations.
1815            (declarationBaseURI): Setter is added.
1816            (manakaiDeclarationBaseURI): New attribute.
1817    
1818            * Tree.dis (Require): A reference to the |MURI:Generic|
1819            module is added.
1820            (Node.baseURI): The implementation is revised.
1821            (getNodeReference): Attribute node classes specialized
1822            to attribute names are supported.
1823            (contentBaseURI, htmlBaseURI): Removed.
1824            (manakaiEntityBaseURI): New attribute.
1825            (ManakaiDOMImplementationDocument): It now inherits
1826            the |urigen:URIImplementation| class.
1827    
1828            * DOMMain.dis (isRelativeDOMURI): The definition
1829            of the URI scheme is synced with |Message::URI::Generic|'s
1830            one.
1831    
1832            * DOMXML.dis (Require): A reference to |DISlib:DISMarkup|
1833            module is added.
1834            (DocumentType.implementation): New attribute.
1835            (Node.baseURI): Implementations are added.
1836            (manakaiDeclarationBaseURI): New attributes.
1837            (manakaiEntityBaseURI): New attributes.
1838            (manakaiEntityURI): New attribute.
1839            (manakaiExternal): New attribute.
1840            (manakaiBaseURI): New attribute.
1841            (ManakaiDOMXMLBaseAttr): New class.
1842    
1843    2006-02-26  Wakaba  <wakaba@suika.fam.cx>
1844    
1845            * SimpleLS.dis (Require): Reference to the |MDOM:Tree|
1846            module was missing.
1847    
1848            * ManakaiDOMLS2003.dis: Some property names was incorrect.
1849    
1850            * Makefile (distclean): New rule.
1851    
1852    2006-02-26  Wakaba  <wakaba@suika.fam.cx>
1853    
1854            * DOMLS.dis: Removed from the CVS repository, since
1855            it has been no longer required to make the |daf| system
1856            itself.
1857    
1858    2006-02-26  Wakaba  <wakaba@suika.fam.cx>
1859    
1860            * Makefile: Revised for new |daf| database format.
1861    
1862    2006-02-25  Wakaba  <wakaba@suika.fam.cx>
1863    
1864            * DOMFeature.dis (Require): Missing reference to |DISlib:Test|
1865            module is added.
1866    
1867    2006-02-22  Wakaba  <wakaba@suika.fam.cx>
1868    
1869            * DOMLS.dis: Constants were typed as |dx:ErrorCode|
1870            by mistake.
1871    
1872    2006-02-18  Wakaba  <wakaba@suika.fam.cx>
1873    
1874            * XMLParser.dis (ManakaiDOMXMLParser): Implements |DOMLS:ParseString10|
1875            feature.
1876    
1877            * DOMCore.dis (c:LSPARSER_NOT_FOUND_ERR): New exception type.
1878    
1879            * DOMLS.dis (DOMLS:ParseString): New (moved from |SimpleLS.dis|).
1880            (DOMImplementationLS.createLSParser): Implemented.
1881            (DOMImplementationLS.createLSInput): Revised.
1882            (LSInput): Note on relationship with |GenericLS| is added.
1883    
1884            * SimpleLS.dis (DOMLS:ParseString): Removed (moved to |SimpleLS.dis|).
1885    
1886    2006-02-17  Wakaba  <wakaba@suika.fam.cx>
1887    
1888            * XMLParser.dis (domConfig): New |targetType| of |xp:ManakaiDOMXMLParser|
1889            is introduced.
1890            (async, busy): Implemented.
1891            (parseString): Removed.
1892            (parse, parseURI): Implemented.
1893            (xp:ls-input-to-input-file): New configuration parameter.
1894            (shiftChar): Gets character from current file handle
1895            rather than replacement text.  Don't normalize
1896            line break characters for internal entities.  Don't
1897            throw |xp:wf-legal-literal-character| error
1898            for |RestrictedChar| appearing in internal entities.
1899            (DISPerl:dpgDef): Call |close| for each entity filehandler.
1900            (_EntityDeclaration): Copy document URI and base URI
1901            to the entity's |$decl| object.
1902            (ParseError): New code fragment.
1903            (getCopyOfEntityState): Creates filehandle from replacement
1904            text.
1905            (xp-error-lines): Don't appends text if no replacement
1906            text is available.
1907            (error-handler): New configuration parameter application resource.
1908            (ManakaiDOMLSInputToInputFile): New class.
1909            (ManakaiDOMInputFile): New class.
1910    
1911            * Tree.dis (getNodeReference): A dereferencing was missing.
1912    
1913            * DOMLS.dis (DOMLS:busy, DOMLS:lsKey): New properties.
1914    
1915  2006-02-17  Wakaba  <wakaba@suika.fam.cx>  2006-02-17  Wakaba  <wakaba@suika.fam.cx>
1916    
1917          * XMLParser.dis: Default attribute are now namespace aware.          * XMLParser.dis: Default attribute are now namespace aware.

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.292

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24