/[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.202 by wakaba, Sun Dec 3 05:40:32 2006 UTC revision 1.256 by wakaba, Sun Jul 29 08:18:34 2007 UTC
# Line 1  Line 1 
1    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMString.dis, DOMString.pm, Document.dis, Document.pm,
4            Element.dis, Element.pm, CharacterData.dis, CharacterData.pm,
5            TreeCore.dis, TreeCore.pm, DOMCore.dis, DOMCore.pm,
6            DOMFeature.dis, DOMFeature.pm, XML.dis, XML.pm,
7            DOMMain.dis, DOMMain.pm, DOMLS.dis,
8            GenericLS.dis, GenericLS.pm, SimpleLS.dis: Removed.
9    
10            * Makefile: Rules for DIS are removed.
11    
12    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
13    
14            * Text.pm: |Message::DOM::Traversal, an obsolete module,
15            was referenced.
16    
17    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
18    
19            * DOMDocument.pm (inner_html): Setter in HTML document
20            is implemented.
21    
22    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
23    
24            * DOMDocument.pm (inner_html): Setter in XML document
25            is implemented.
26    
27    2007-07-19  Wakaba  <wakaba@suika.fam.cx>
28    
29            * Attr.pm (DeclaredValueType): Added.
30    
31            * ProcessingInstruction.pm (data): Accept |undef|
32            as a valid input, for |text_content| (maybe) allows it.
33    
34            * TypeInfo.pm (type_namespace): The implementation was wrong.
35    
36    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
37    
38            * DOMElement.pm: Incorrect module was referenced.
39    
40            * DOMImplementation.pm: References to
41            the |Message::Charset::Encode| module has been removed.
42    
43    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
44    
45            * XMLParserTemp.pm: Use |Whatpm::Charset::DecodeHandle|
46            instead of |Message::Charset::Encode|.
47    
48    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
49    
50            * DOMDocument.pm (inner_html): New attribute (beta).
51    
52            * DOMElement.pm (inner_html): New attribute (beta).
53    
54    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
55    
56            * DOMConfiguration.pm: Configuration parameter |create-child-element|
57            implemented.
58    
59            * DOMElement.pm (create_element_ns): Support for Atom
60            subclasses.
61    
62            * DOMImplementation.pm (DOMImplementation): Now
63            implements the |AtomDOMImplementation| interface.
64            ($HasFeature): Features |atom| and |atomthreading| are added.
65    
66            * NodeList.pm (StaticNodeList): Implemented.
67    
68    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
69    
70            * Atom/: New directory.
71    
72    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
73    
74            * TreeWalker.pm, SerialWalker.pm: New Perl modules.
75    
76            * Text.pm (whole_text): Parameter index number has
77            been changed to support new |NodeFilter| Perl binding
78            definition.
79    
80    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
81    
82            * AttributeDefinition.pm, DOMElement.pm, DocumentType.pm,
83            ElementTypeDefinition.pm, Entity.pm, EntityReference.pm,
84            Notation.pm, ProcessingInstruction.pm (AUTOLOAD): Don't croak even if an attempt is made to modify a read-only attribute.
85    
86            * DOMConfiguration.pm (can_set_parameter,
87            set_parameter): Don't allow to set the value
88            to a string other than <http://www.w3.org/TR/REC-xml> (XML 1.0 DTD).
89    
90            * DOMDocument.pm (Message::IF::DocumentTraversal): New interface.
91            (create_tree_walker, manakai_create_serial_walker): References
92            and prototypes are added.
93    
94            * DOMException.pm (NULLPO_ERR): New error type:-).
95    
96            * DOMImplementation.pm ($HasFeature): Feature |Traversal|,
97            version |2.0|, is added.
98    
99    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
100    
101            * CDATASection.pm: Removed (merged with |Text.pm|).
102    
103            * Text.pm (Message::DOM::Text::CDATASection): New.
104    
105            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
106    
107            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
108    
109    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
110    
111            * DOMConfiguration.pm: Support for |schema-type|
112            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
113    
114            * NamedNodeMap (TIEHASH): Were missing.
115    
116    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
117    
118            * AttributeDefinition.pm (node_value): Implemented.
119            (create_attribute_definition): Implemented.
120    
121            * DOMConfiguration.pm (%{}, TIEHASH,
122            get_parameter, set_parameter, can_set_parameter,
123            EXISTS, DELETE, parameter_names, FETCH, STORE,
124            FIRSTKEY, LASTKEY): Implemented.
125    
126            * DOMDocument.pm (____new): Set |error-handler| default.
127            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
128    
129            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
130            Implemented.
131    
132            * DOMException.pm: Error types for |DOMConfiguration|
133            are added.
134    
135            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
136            class.
137    
138            * DocumentType.pm (get_element_type_definition_node,
139            get_general_entity_node, get_notation_node,
140            set_element_type_definition_node, set_general_entity_node,
141            set_notation_node, create_document_type_definition): Implemented.
142    
143            * ElementTypeDefinition.pm (get_attribute_definition_node,
144            set_attribute_definition_node, create_element_type_definition):
145            Implemented.
146    
147            * Entity.pm (create_general_entity): Implemented.
148    
149            * Node.pm: Constants in |OperationType| definition
150            group are added.
151            (manakai_language): Implemented.
152    
153            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
154            class.
155    
156            * Notation.pm (create_notation): Implemented.
157    
158    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
159    
160            * TypeInfo.pm: New Perl module.
161    
162            * Attr.pm: Use |manakai_local_name| rather than |local_name|
163            to avoid HTML5 case normalization.
164            (is_id): Implemented.
165            (manakai_name): New attribute.
166            (schema_type_info): Implemented.
167            (create_attribute_ns): Empty string as namespace URI
168            was not supported.
169    
170            * DOMElement.pm (clone_node): Removed since now it is
171            defined in |Node.pm|.
172            (schema_type_info): Implemented.
173            (manakai_tag_name): New attribute.
174            (get_attribute, get_attribute_node, get_attribute_ns,
175            get_attribute_node_ns, has_attribute, has_attribute_ns,
176            remove_attribute, remove_attribute_ns,
177            remove_attribute_node, set_attribute, set_attribute_ns,
178            set_id_attribute, set_id_attribute_node,
179            set_id_attribute_ns): Implemented.
180            (create_element_ns): Empty string as namespace URI
181            was not supported.
182    
183    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
184    
185            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
186    
187            * DocumentType.pm (create_document_type_definition): Initialize
188            |public_id|, |system_id|, and |internal_subset| attributes
189            by empty strings for compatibility with Web browsers.
190            (create_document_type): Initialize |internal_subset|
191            attribute by an empty string for compatibility with
192            Web browsers.
193    
194            * ElementTypeDefinition.pm, Entity.pm,
195            Notation.pm (owner_document_type_definition): Implemented.
196    
197    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
198    
199            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
200            feature is added for compatibility with |XMLParserTemp.pm|.
201    
202    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
203    
204            * Attr.pm (value, node_value): Now it is defined
205            as |text_content| itself.
206    
207            * AttributeDefinition.pm, ElementTypeDefinition.pm,
208            Node.pm (AUTOLOAD): Unused block is removed.
209    
210            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
211    
212            * DocumentType.pm (internal_subset): Implemented.
213    
214            * Entity.pm (is_externally_declared, input_encoding,
215            xml_version): Implemented.
216    
217            * ProcessingInstruction.pm (target, data): Implemented.
218    
219    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
220    
221            * DOMCharacterData.pm (AUTOLOAD): Removed.
222            (data): Reimplemented.
223            (delete_data, insert_data, replace_data, substring_data): There were
224            a number of bugs.
225    
226            * Text.pm (AUTOLOAD): Removed.  Unused.
227    
228    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
229    
230            * StringExtended.pm: New Perl module.
231    
232            * DOMCharacterData.pm (length, append_data, delete_data,
233            insert_data, replace_data, substring_data): Implemented.
234    
235            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
236    
237            * Text.pm (is_element_content_whitespace, whole_text,
238            split_text): Implemented.
239    
240    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
241    
242            * DOMElement.pm (attributes): Implemented.
243    
244            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
245    
246            * DocumentType.pm (entities, general_entities,
247            notations, element_types): Implemented.
248    
249            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
250    
251            * NamedNodeMap.pm: New Perl module.
252    
253    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
254    
255            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
256            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
257            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
258            insert_before, replace_child): Implemented.
259    
260            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
261    
262            * Node.pm (remove_child): Implemented.
263    
264    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
265    
266            * Node.pm (==, is_equal_node): Implemented.
267            (is_same_node): Implemented.
268            (get_feature, get_user_data, set_user_data): Implemented.
269            (is_supported): Implemented.
270            
271    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
272    
273            * DOMDocument.pm (get_element_by_id): Implemented.
274            (create_document): Implemented.
275    
276            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
277            errors.
278            (QNAME_NULLNS_ERR): New errors.
279    
280            * DocumenType.pm (create_document_type): Implemented.
281    
282    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
283    
284            * CDATASection.pm (is_element_content_whitespace): New.
285    
286            * DOMElement.pm (has_attribute): Alpha version.
287            (create_element, create_element_ns): Implemented.
288    
289            * DocumentType.pm (get_general_entity_node): Alpha version.
290    
291            * EntityReference.pm (create_entity_reference): Implemented.
292    
293            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
294    
295    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
296    
297            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
298    
299            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
300            (compat_mode): Check |defined| not to be warned as "uninitialized"
301            when |{manakai_compat_mode}| is |undef|.
302    
303            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
304    
305            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
306            Statements to set |$Error::Depth| are removed since they
307            are result in "uninitialized" warnings unless
308            the |Message::DOM::DOMException| module is loaded earlier.
309            Usually methods invoked in these methods does not
310            raise any exception so that it makes no difference.
311    
312    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
313    
314            * DOMDocument.pm (adopt_node): Implemented.
315            (doctype): Implemented.
316    
317            * DOMElement.pm (remove_attribute_node): Alpha version.
318    
319            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
320            error type.
321    
322            * Node.pm (set_user_data): Implemented.
323    
324    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
325    
326            * DOMImplementation.pm (new): New method name for |____new|.
327            It will be defined in the DOM Perl Binding specification
328            as part of |DOMImplementation| interface.
329            ($HasFeature): Defined for features support.
330            (has_feature, get_feature): Implemented.
331    
332            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
333            module unless necessary.
334            (___report_error): Removed since it is not used in fact.
335    
336            * DOMImplementationList.pm, DOMImplementationSource.pm,
337            DOMImplementationRegistry.pm: New modules.
338    
339    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
340    
341            * AttributeDefinition.pm (allowed_tokens): Implemented.
342    
343            * DOMStringList.pm: New Perl module.
344    
345    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
346    
347            * DOMElement.pm (clone_node): Alpha version.  It did not work
348            at all.
349    
350    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
351    
352            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
353    
354    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
355    
356            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
357            (manakai_is_html): Revised.
358            (Document): Now it implements the |HTMLDocument| interface.
359            (adopt_node): Alpha version.
360    
361            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
362            not |allowed_token|!
363    
364            * ElementTypeDefinition.pm (attribute_definitions): Don't
365            return an |undef| even if its |attribute_definitions|
366            list is not created.
367    
368    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
369    
370            * Comment.pm (node_type): Node type was incorrect!
371    
372            * DOMConfiguration.pm (get_parameter): Alpha.
373    
374            * DOMImplementation.pm (create_mc_decode_handler,
375            create_charset_name_from_uri, create_uri_from_charset_name):
376            New autoload configuration.  Note that the Message::Charset::Encode
377            module is subject to change.
378    
379            * XMLParserTemp.pm: Now it can be used with new version
380            of DOM implementation.  Current plan is to replace it by
381            an XML5 parser someday.
382    
383    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
384    
385            * DOMLocator.pm: New module.
386    
387            * DOMError.pm: New module.
388    
389    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
390    
391            * Node.pm (manakai_expanded_uri, manakai_parent_element,
392            clone_node, compare_document_position, has_attributes,
393            has_child_nodes, is_default_namespace, lookup_namespace_uri,
394            lookup_prefix, normalize): Implemented.
395    
396            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
397    
398            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
399    
400    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
401    
402            * AttributeDefinition.pm (____new): Set an empty list
403            to the |allowed_tokens| attribute.
404            (allowed_token): Alpha version.
405    
406            * DocumentType.pm (get_element_type_definition_node,
407            get_notation_node): ALpha version.
408    
409            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
410            version.
411    
412            * Entity.pm (notation_name): Implemented.
413    
414    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
415    
416            * Attr.pm (____new): Initialize |specified| as 1.
417            (base_uri, manakai_attribute_type, specified): Implemented.
418            (prefix): Don't check read-only flag unless |strict_error_checking|.
419            (value): Call |text_content| for now.
420    
421            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
422            (declared_type, default_type): Implemented.
423    
424            * CharacterData.pm (____new): Allow a scalar reference
425            as an input for the |data| attribute.
426            (base_uri, manakai_append_text): Implemented.
427    
428            * DOMConfiguration.pm (set_parameter): Resetting implemented.
429    
430            * DOMDocument.pm (____new): Set default values to
431            configuration parameter whose default is true.
432            (document_uri, input_encoding): Implemented.
433            (all_declarations_processed, manakai_is_html): Implemented.
434            (base_uri, manakai_append_text,
435            manakai_entity_base_uri, strict_error_checking,
436            xml_encoding, xml_version, xml_standalone): Implemented.
437    
438            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
439            (get_attribute, get_attribute_node): Alpha version.
440            (set_attribute_node, set_attribute_node_ns): Implemented.
441            (set_attribute_ns): Accept non-ARRAY qualified name.
442    
443            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
444            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
445    
446            * DocumentType.pm (public_id, system_id): Implemented.
447            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
448            manakai_append_text): Implemented.
449            (element_types, general_entities, notations,
450            set_element_type_definition_node, set_general_entity_node,
451            set_notation_node): Alpha version.
452    
453            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
454            (attribute_definitions, set_attribute_definition_node): Alpha version.
455    
456            * Entity.pm (has_replacement_tree, public_id, system_id,
457            manakai_declaration_base_uri, manakai_entity_base_uri,
458            manakai_entity_uri): Implemented.
459    
460            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
461            (base_uri, manakai_entity_base_uri): Implemented.
462    
463            * Node.pm (base_uri): Implemented.
464            (text_content): Don't check read-only or not
465            unless |strict_error_checking|.
466            (manakai_append_text): Implemented.
467            (get_feature): Alpha.
468            (manakai_set_read_only): Implemented.
469    
470            * Notation.pm (public_id, system_id, manakai_append_text,
471            manakai_declaration_base_uri): Implemented.
472    
473            * ProcessingInstruction.pm (manakai_base_uri,
474            base_uri, manakai_append_text): Implemented.
475    
476    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
477    
478            * DOMConfiguration.pm: New module.
479    
480            * Attr.pm (trivial accessor for read-write attributes): Throw
481            an exception if the node is read-only.  Delete the property
482            if undef is specified.
483            (prefix): Implemented.
484    
485            * DOMElement.pm (trivial accessor for read-write attributes): Throw
486            an exception if the node is read-only.  Delete the property
487            if undef is specified.
488            (prefix): Implemented.
489            (text_content, manakai_append_text): Old implementations are removed.
490    
491            * DOMCharacterData.pm (text_content): Implemented.
492    
493            * DOMDocument.pm (____new): Initialize the strict-document-children
494            parameter by true.
495            (text_content): Reimplemented.
496            (dom_config): New.
497    
498            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
499    
500            * DocumentType.pm (text_content): Implemented.
501    
502            * ElementTypeDefinition.pm (text_content): Implemented.
503    
504            * Node.pm (___report_error): New method.
505            (text_content): Implemented.
506            (manakai_append_text): Copied from |DOMElement.pm|.
507    
508            * Notation.pm (text_content): Implemented.
509    
510            * ProcessingInstruction.pm (text_content): Implemented.
511    
512            * Text.pm (is_element_content_whitespace): Alpha version.
513    
514    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
515    
516            * DOMException.pm (Message::IF::DOMException): Extends
517            the |Message::Util::Error| class.
518    
519            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
520            (CLEAR): Not all items were removed.
521    
522    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
523    
524            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
525            DocumentType.pm, Entity.pm,
526            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
527    
528            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
529            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
530    
531            * DOMDocument.pm (AUTOLOAD): Typo fixed.
532    
533            * Node.pm (==, !=): Implemented.
534            (manakai_read_only): Implemented.
535            (is_same_node): Implemented.
536            (is_equal_node): Alpha version.
537            (manakai_set_read_only): Alpha version.
538            (child_nodes, first_child, last_child, previous_sibling): Duplicate
539            definitions are removed.
540    
541    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
542    
543            * Node.pm: First alpha version of implementation of attributes.
544    
545    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
546    
547            * ProcessingInstruction.pm, EntityReference.pm,
548            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
549            ElementTypeDefinition.pm, AttributeDefinition.pm,
550            DocumentType.pm, DOMElement.pm, Attr.pm,
551            CharacterData.pm, Text.pm, Comment.pm (node_name,
552            node_value, node_type): Implemented.
553    
554    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
555    
556            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
557            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
558            AttributeDefinition.pm: New modules.
559    
560            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
561            (create_attribute_definition, create_element_type_definition,
562            create_document_type_definition, create_cdata_section,
563            create_processing_instruction, create_entity_reference,
564            create_general_entity, create_notation): Prototypes added.
565    
566            * DOMImplementation.pm (create_document_type): Prototype added.
567    
568            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
569            and 'Message::IF::DocumentTypeDeclaration' added.
570            (create_document_type, create_document_type_definition):
571            New methods.
572    
573    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
574    
575            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
576            DOMElement.pm, Attr.pm, DocumentType.pm,
577            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
578            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
579    
580    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
581    
582            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
583            specifies unknown value and trys to recover from the error.
584    
585    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
586    
587            * TreeCore.dis (manakaiLocalName): New attribute.
588    
589    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
590    
591            * GenericLS.dis (GLSException): New interface.
592    
593    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
594    
595            * |InputProcessor|s and |OutputProcessor|s are
596            named so that |report| statements in Perl
597            module outputs can be identified by name. |dis:dataType|s
598            of |DISCore:TFQNames| are all replaced
599            by |DISCore:QName|.
600    
601    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
602    
603            * Element.dis (createElementNS): If an array reference
604            is specified as the |qualifiedName| parameter,
605            don't set the first item as the local name
606            even if the second item is not specified (or
607            specified as |undef|).
608            (createElementNS, setAttribute, setAttributeNS,
609            removeAttribute, removeAttributeNS,
610            setAttributeNode, setAttributeNodeNS,
611            removeAttributeNode, removeAttributeNodeNS): Sets
612            or removes the |tc:contentAttributeList| value.
613    
614            * TreeCore.dis (AttrMap.item): Caches the result
615            of sorting of content attribute names.
616            (getAttrMap, getElementTypeDefNodeMap,
617            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
618            (tc:contentAttributeList): New property.
619    
620    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
621    
622            * DOMFeature.dis (ForDef): Removed.
623            (f:provides, f:through): Removed.
624            (Version): Removed.
625            (implementFeature): Removed.
626    
627    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
628    
629            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
630            GenericLS.dis, TreeCore.dis, DOMString.dis,
631            XML.dis, Element.dis, Document.dis, TreeStore,dis,
632            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
633            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
634            are removed.
635    
636    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
637    
638            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
639            GenericLS.dis, TreeCore.dis, DOMString.dis,
640            XML.dis, Element.dis, Document.dis, TreeStore,dis,
641            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
642            SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications
643            and |DefaultFor|s are removed.
644    
645    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
646    
647            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
648            GenericLS.dis, TreeCore.dis, DOMString.dis,
649            XML.dis, Element.dis, Document.dis, TreeStore,dis,
650            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
651            SimpleLS.dis, DOMMain.dis: References
652            to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|,
653            |ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3|
654            modes are removed.
655    
656    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
657    
658            * CharacterData.dis, TreeCore.dis (Require): References
659            to the |Grove.dis| module are removed.
660    
661    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
662    
663            * DOMFeature.dis (f:implementation, f:revImplementation): Removed.
664            (Require): Reference to the |Grove.dis| module is removed.
665    
666    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
667    
668            * DOMCore.dis (ManakaiDOMImplementation): The
669            class is no longer plays the role of
670            a |mg:NodeRefRole|.  Redundant |f:provides|
671            properties are removed.
672    
673    2006-12-29  Wakaba  <wakaba@suika.fam.cx>
674    
675            * TreeCore.dis, DOMCore.dis, Document.dis,
676            Element.dis, CharacterData.dis, XML.dis,
677            XDoctype.dis, DOMString.dis, TreeStore.dis,
678            XMLParser.dis: Use Perl native
679            hashs and |Scalar::Util|'s weak references in favor of |Grove.dis|
680            for DOM nodes.  See
681            also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>.
682    
683  2006-12-03  Wakaba  <wakaba@suika.fam.cx>  2006-12-03  Wakaba  <wakaba@suika.fam.cx>
684    
685          * DOMFeature.dis, TreeCore.dis: Unused |role|s are removed.          * DOMFeature.dis, TreeCore.dis: Unused |role|s are removed.

Legend:
Removed from v.1.202  
changed lines
  Added in v.1.256

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24