/[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.206 by wakaba, Sat Dec 30 02:37:06 2006 UTC revision 1.297 by wakaba, Sun Feb 3 06:01:20 2008 UTC
# Line 1  Line 1 
1    2008-02-03  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CSSStyleDeclaration.pm ($serialize_value): Support
4            for new value types.
5    
6    2008-02-02  Wakaba  <wakaba@suika.fam.cx>
7    
8            * CSSStyleDeclaration.pm ($serialize_value): New (was
9            part of Whatpm::CSS::Parser as $default_serializer).
10            Use it instead of old 'serialize' parameter of CSS
11            property definition.
12    
13    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
14    
15            * CSSStyleDeclaration.pm (css_text): Prepend | ! | before
16            the priority token if any.
17            (get_property_priority): Shorthand case implemented.
18    
19    2008-01-26  Wakaba  <wakaba@suika.fam.cx>
20    
21            * CSSStyleDeclaration.pm: Use |serialize_shorthand|
22            and |serialize_multiple| to serialize shorthand properties
23            in reflecting attributes.  Return value of
24            the |serialzie_multiple| function has been changed.
25            (non-computed css_text): Sort by property names.
26    
27    2008-01-24  Wakaba  <wakaba@suika.fam.cx>
28    
29            * Window.pm (manakai_get_computed_style): Renamed
30            from |get_computed_style|.
31    
32            * Element.pm (manakai_computed_style): Renamed from |current_style|.
33    
34    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
35    
36            * CSSStyleDeclaration.pm (AUTOLOAD): DOM attributes reflecting
37            shorthand properties did croak (fixed but still they does not
38            return correct result - they need to be fixed later).
39    
40            * Element.pm (query_selector, query_selector_all): Prototypes
41            were missing.
42    
43    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
44    
45            * Window.pm (___reset_css): Typo fixed.
46    
47    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
48    
49            * CSSStyleDeclaration.pm: The classes now explicitly implement
50            the |CSS2Properties| interface.
51            (@{}, TIEARRAY, FETCH, FETCHSIZE, EXISTS, item, length): Implemented.
52    
53    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
54    
55            * CSSStyleDeclaration.pm (attributes reflecting CSS properties):
56            Return an empty string if no value is assigned to the property.  Insert
57            a SPACE before '!' for compatibility with Firefox.
58    
59    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
60    
61            * CSSRule.pm (css_text): Trailing newline character is removed
62            to avoid double empty lines in CSSStyleSheet->css_text.
63            (selector_text): Namespace support is fixed.
64    
65            * CSSStyleSheet.pm (___new): Now it accepts |_nsmap| option.
66    
67    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
68    
69            * CSSRule.pm (selector_text): Use |serialize_selector_text|
70            to get better result.
71    
72    2008-01-13  Wakaba  <wakaba@suika.fam.cx>
73    
74            * Window.pm: New Perl module.
75    
76            * Document.pm (default_view): Implemented.
77    
78            * Element.pm (current_style): Implemented.
79    
80    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
81    
82            * CSSStyleDeclaration.pm (css_text): Allow to shorten a complete
83            set of longhand properties.
84            (get_property_priority): Implemented.
85            (CSSComputedStyleDeclaration AUTOLOAD): Implemented for reflecting
86            attributes.
87    
88    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
89    
90            * CSSStyleDeclaration.pm (css_text): Allow |{compute_multiple}|
91            as well as |{compute}| as a way to filter out longhand
92            properties.  Sort properties by names for readability.
93    
94    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
95    
96            * CSSStyleDeclaration.pm (css_text): Output |undef| property
97            information for debugging.
98    
99            * CSSStyleSheet.pm (manakai_base_uri): New attribute.
100    
101    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
102    
103            * CSSStyleDeclaration.pm (CSSComputedStyleDeclaration): New class.
104    
105    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
106    
107            * SelectorsAPI.pm, Document.pm (___query_selector_all): New internal
108            method.
109    
110    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
111    
112            * SelectorsAPI.pm: Make simple-selector-sequence-matching
113            an independent function.
114    
115    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
116    
117            * CSSStyleDeclaration.pm (AUTOLOAD): Getter for attributes
118            reflecting CSS property is implemented.
119            (css_text): Getter is implemented.
120    
121    2007-12-24  Wakaba  <wakaba@suika.fam.cx>
122    
123            * CSSRule.pm (selector_text): Ad hoc support for namespace prefixes.
124            (CSSNamespaceRule.css_text): Getter implemented.
125    
126            * CSSStyleSheet.pm (manakai_is_default_namespace,
127            manakai_lookup_namespace_prefix): New methods.
128    
129    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
130    
131            * CSSRule.pm (@charset.css_text): Implemented.
132    
133    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
134    
135            * CSSRule.pm (type, css_text): Typo fixed.
136            (____new): s/_selector/_selectors/g;
137            (CSSStyleRule.css_text, selectors_text): Ad hoc implementation.
138    
139            * CSSStyleDeclaration.pm (css_text): Ad hoc implementation.
140    
141            * CSSStyleSheet.pm (new): s/new/____new/.
142            (css_text): New attribute.
143    
144    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
145    
146            * MediaList.pm: New placeholder for a CSSOM interface.
147    
148            * CSSRule.pm, CSSStyleSheet.pm: Implementing the initial
149            setting of owner* and parent* attributes; support
150            for the |delete_rule| method.
151    
152    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
153    
154            * CSSStyleSheet.pm, CSSRule.pm, CSSRuleList.pm, CSSStyleDeclaration.pm:
155            First version of CSSOM implementation.
156    
157    2007-11-18  Wakaba  <wakaba@suika.fam.cx>
158    
159            * Document.pm, Entity.pm (manakai_has_bom,
160            manakai_charset): New attributes.
161    
162    2007-11-11  Wakaba  <wakaba@suika.fam.cx>
163    
164            * Document.pm, Element.pm (inner_html): Use |Whatpm::HTML::Serializer|
165            for getter.
166    
167    2007-10-27  Wakaba  <wakaba@suika.fam.cx>
168    
169            * Event.pm (init_event, init_event_ns, init_custom_event_ns):
170            The |namespaceURI| attribute was not set correctly.
171    
172            * DOMEvents.dis: Removed.
173    
174    2007-10-08  Wakaba  <wakaba@suika.fam.cx>
175    
176            * Event.pm, EventTarget.pm, EventTargetNode.pm,
177            EventException.pm: Implemented (but not tested!).
178    
179            * DOMException.pm (MALFORMED_EVENT_TYPE_ERR,
180            EVENT_INTERFACE_NOT_SUPPORTED_ERR, EXTERNAL_EVENT_ERR): New
181            error subtypes.
182    
183            * DOMImplementation.pm ($HasFeature): The |Event| feature,
184            version |3.0|, is added.
185    
186            * Document.pm, Node.pm: Event attributes and
187            methods are implemented.
188    
189    2007-10-07  Wakaba  <wakaba@suika.fam.cx>
190    
191            * SelectorsAPI.pm ($get_elements_by_selectors): Receive
192            an additional argument for "current element".
193            Support for |-manakai-current| and |-manakai-current(/s/)|
194            pseudo-classes.
195    
196    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
197    
198            * SelectorsAPI.pm: Attribute selectors are implemented.
199    
200    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
201    
202            * SelectorsAPI.pm (ElementSelector): Implemented.
203    
204    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
205    
206            * SelectorsAPI.pm (query_selector): Implemented.
207    
208    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
209    
210            * SelectorsAPI.pm ($get_elements_by_selectors): Created
211            from most part of |query_selector_all|.
212    
213    2007-09-24  Wakaba  <wakaba@suika.fam.cx>
214    
215            * DOMException.pm (SYNTAX_ERR): New subtype is defined.
216            (UNDECLARED_PREFIX_ERR): New subtype is defined.
217    
218            * Document.pm (Document): Implements the |DocumentSelector|
219            interface.
220    
221            * Element.pm (Element): Implements the |ElementSelector|
222            interface.
223    
224            * Node.pm (Node): Implements the |NSResolver| interface.
225    
226            * SelectorsAPI.pm: Now (hopefully) conform to the Selectors
227            API Editor's Draft (only |query_selector_all| on |Document|,
228            with limited selectors syntax support, though).
229    
230    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
231    
232            * SelectorsAPI.pm: Namespaced type/universal selectors
233            are supported.
234    
235    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
236    
237            * SelectorsAPI.pm: New Perl module.
238    
239    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
240    
241            * Node.pm (manakai_language): Return the |manakai_language|
242            of the |owner_document|, if any, as defined in the spec.
243    
244    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
245    
246            * Makefile: Relative path was wrong.
247    
248    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
249    
250            * HTML/: New directory.
251    
252            * Element.pm (create_element_ns): Return object implementing
253            the |HTMLElement| interface for HTML elements.
254    
255    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
256    
257            * DOMImplementation.pod: New documentation.
258    
259            * Makefile: Make HTML document.
260    
261    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
262    
263            * XDoctype.dis, XDoctype.pm: Removed.
264    
265            * CharacterData.pm: Renamed from DOMCharacterData.pm.
266    
267            * Document.pm: Renamed from DOMDocument.pm.
268    
269            * Element.pm: Renamed from DOMElement.pm
270    
271    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
272    
273            * DOMString.dis, DOMString.pm, Document.dis, Document.pm,
274            Element.dis, Element.pm, CharacterData.dis, CharacterData.pm,
275            TreeCore.dis, TreeCore.pm, DOMCore.dis, DOMCore.pm,
276            DOMFeature.dis, DOMFeature.pm, XML.dis, XML.pm,
277            DOMMain.dis, DOMMain.pm, DOMLS.dis,
278            GenericLS.dis, GenericLS.pm, SimpleLS.dis: Removed.
279    
280            * Makefile: Rules for DIS are removed.
281    
282    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
283    
284            * Text.pm: |Message::DOM::Traversal, an obsolete module,
285            was referenced.
286    
287    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
288    
289            * DOMDocument.pm (inner_html): Setter in HTML document
290            is implemented.
291    
292    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
293    
294            * DOMDocument.pm (inner_html): Setter in XML document
295            is implemented.
296    
297    2007-07-19  Wakaba  <wakaba@suika.fam.cx>
298    
299            * Attr.pm (DeclaredValueType): Added.
300    
301            * ProcessingInstruction.pm (data): Accept |undef|
302            as a valid input, for |text_content| (maybe) allows it.
303    
304            * TypeInfo.pm (type_namespace): The implementation was wrong.
305    
306    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
307    
308            * DOMElement.pm: Incorrect module was referenced.
309    
310            * DOMImplementation.pm: References to
311            the |Message::Charset::Encode| module has been removed.
312    
313    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
314    
315            * XMLParserTemp.pm: Use |Whatpm::Charset::DecodeHandle|
316            instead of |Message::Charset::Encode|.
317    
318    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
319    
320            * DOMDocument.pm (inner_html): New attribute (beta).
321    
322            * DOMElement.pm (inner_html): New attribute (beta).
323    
324    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
325    
326            * DOMConfiguration.pm: Configuration parameter |create-child-element|
327            implemented.
328    
329            * DOMElement.pm (create_element_ns): Support for Atom
330            subclasses.
331    
332            * DOMImplementation.pm (DOMImplementation): Now
333            implements the |AtomDOMImplementation| interface.
334            ($HasFeature): Features |atom| and |atomthreading| are added.
335    
336            * NodeList.pm (StaticNodeList): Implemented.
337    
338    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
339    
340            * Atom/: New directory.
341    
342    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
343    
344            * TreeWalker.pm, SerialWalker.pm: New Perl modules.
345    
346            * Text.pm (whole_text): Parameter index number has
347            been changed to support new |NodeFilter| Perl binding
348            definition.
349    
350    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
351    
352            * AttributeDefinition.pm, DOMElement.pm, DocumentType.pm,
353            ElementTypeDefinition.pm, Entity.pm, EntityReference.pm,
354            Notation.pm, ProcessingInstruction.pm (AUTOLOAD): Don't croak even if an attempt is made to modify a read-only attribute.
355    
356            * DOMConfiguration.pm (can_set_parameter,
357            set_parameter): Don't allow to set the value
358            to a string other than <http://www.w3.org/TR/REC-xml> (XML 1.0 DTD).
359    
360            * DOMDocument.pm (Message::IF::DocumentTraversal): New interface.
361            (create_tree_walker, manakai_create_serial_walker): References
362            and prototypes are added.
363    
364            * DOMException.pm (NULLPO_ERR): New error type:-).
365    
366            * DOMImplementation.pm ($HasFeature): Feature |Traversal|,
367            version |2.0|, is added.
368    
369    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
370    
371            * CDATASection.pm: Removed (merged with |Text.pm|).
372    
373            * Text.pm (Message::DOM::Text::CDATASection): New.
374    
375            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
376    
377            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
378    
379    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
380    
381            * DOMConfiguration.pm: Support for |schema-type|
382            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
383    
384            * NamedNodeMap (TIEHASH): Were missing.
385    
386    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
387    
388            * AttributeDefinition.pm (node_value): Implemented.
389            (create_attribute_definition): Implemented.
390    
391            * DOMConfiguration.pm (%{}, TIEHASH,
392            get_parameter, set_parameter, can_set_parameter,
393            EXISTS, DELETE, parameter_names, FETCH, STORE,
394            FIRSTKEY, LASTKEY): Implemented.
395    
396            * DOMDocument.pm (____new): Set |error-handler| default.
397            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
398    
399            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
400            Implemented.
401    
402            * DOMException.pm: Error types for |DOMConfiguration|
403            are added.
404    
405            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
406            class.
407    
408            * DocumentType.pm (get_element_type_definition_node,
409            get_general_entity_node, get_notation_node,
410            set_element_type_definition_node, set_general_entity_node,
411            set_notation_node, create_document_type_definition): Implemented.
412    
413            * ElementTypeDefinition.pm (get_attribute_definition_node,
414            set_attribute_definition_node, create_element_type_definition):
415            Implemented.
416    
417            * Entity.pm (create_general_entity): Implemented.
418    
419            * Node.pm: Constants in |OperationType| definition
420            group are added.
421            (manakai_language): Implemented.
422    
423            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
424            class.
425    
426            * Notation.pm (create_notation): Implemented.
427    
428    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
429    
430            * TypeInfo.pm: New Perl module.
431    
432            * Attr.pm: Use |manakai_local_name| rather than |local_name|
433            to avoid HTML5 case normalization.
434            (is_id): Implemented.
435            (manakai_name): New attribute.
436            (schema_type_info): Implemented.
437            (create_attribute_ns): Empty string as namespace URI
438            was not supported.
439    
440            * DOMElement.pm (clone_node): Removed since now it is
441            defined in |Node.pm|.
442            (schema_type_info): Implemented.
443            (manakai_tag_name): New attribute.
444            (get_attribute, get_attribute_node, get_attribute_ns,
445            get_attribute_node_ns, has_attribute, has_attribute_ns,
446            remove_attribute, remove_attribute_ns,
447            remove_attribute_node, set_attribute, set_attribute_ns,
448            set_id_attribute, set_id_attribute_node,
449            set_id_attribute_ns): Implemented.
450            (create_element_ns): Empty string as namespace URI
451            was not supported.
452    
453    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
454    
455            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
456    
457            * DocumentType.pm (create_document_type_definition): Initialize
458            |public_id|, |system_id|, and |internal_subset| attributes
459            by empty strings for compatibility with Web browsers.
460            (create_document_type): Initialize |internal_subset|
461            attribute by an empty string for compatibility with
462            Web browsers.
463    
464            * ElementTypeDefinition.pm, Entity.pm,
465            Notation.pm (owner_document_type_definition): Implemented.
466    
467    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
468    
469            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
470            feature is added for compatibility with |XMLParserTemp.pm|.
471    
472    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
473    
474            * Attr.pm (value, node_value): Now it is defined
475            as |text_content| itself.
476    
477            * AttributeDefinition.pm, ElementTypeDefinition.pm,
478            Node.pm (AUTOLOAD): Unused block is removed.
479    
480            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
481    
482            * DocumentType.pm (internal_subset): Implemented.
483    
484            * Entity.pm (is_externally_declared, input_encoding,
485            xml_version): Implemented.
486    
487            * ProcessingInstruction.pm (target, data): Implemented.
488    
489    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
490    
491            * DOMCharacterData.pm (AUTOLOAD): Removed.
492            (data): Reimplemented.
493            (delete_data, insert_data, replace_data, substring_data): There were
494            a number of bugs.
495    
496            * Text.pm (AUTOLOAD): Removed.  Unused.
497    
498    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
499    
500            * StringExtended.pm: New Perl module.
501    
502            * DOMCharacterData.pm (length, append_data, delete_data,
503            insert_data, replace_data, substring_data): Implemented.
504    
505            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
506    
507            * Text.pm (is_element_content_whitespace, whole_text,
508            split_text): Implemented.
509    
510    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
511    
512            * DOMElement.pm (attributes): Implemented.
513    
514            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
515    
516            * DocumentType.pm (entities, general_entities,
517            notations, element_types): Implemented.
518    
519            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
520    
521            * NamedNodeMap.pm: New Perl module.
522    
523    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
524    
525            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
526            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
527            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
528            insert_before, replace_child): Implemented.
529    
530            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
531    
532            * Node.pm (remove_child): Implemented.
533    
534    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
535    
536            * Node.pm (==, is_equal_node): Implemented.
537            (is_same_node): Implemented.
538            (get_feature, get_user_data, set_user_data): Implemented.
539            (is_supported): Implemented.
540            
541    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
542    
543            * DOMDocument.pm (get_element_by_id): Implemented.
544            (create_document): Implemented.
545    
546            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
547            errors.
548            (QNAME_NULLNS_ERR): New errors.
549    
550            * DocumenType.pm (create_document_type): Implemented.
551    
552    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
553    
554            * CDATASection.pm (is_element_content_whitespace): New.
555    
556            * DOMElement.pm (has_attribute): Alpha version.
557            (create_element, create_element_ns): Implemented.
558    
559            * DocumentType.pm (get_general_entity_node): Alpha version.
560    
561            * EntityReference.pm (create_entity_reference): Implemented.
562    
563            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
564    
565    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
566    
567            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
568    
569            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
570            (compat_mode): Check |defined| not to be warned as "uninitialized"
571            when |{manakai_compat_mode}| is |undef|.
572    
573            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
574    
575            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
576            Statements to set |$Error::Depth| are removed since they
577            are result in "uninitialized" warnings unless
578            the |Message::DOM::DOMException| module is loaded earlier.
579            Usually methods invoked in these methods does not
580            raise any exception so that it makes no difference.
581    
582    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
583    
584            * DOMDocument.pm (adopt_node): Implemented.
585            (doctype): Implemented.
586    
587            * DOMElement.pm (remove_attribute_node): Alpha version.
588    
589            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
590            error type.
591    
592            * Node.pm (set_user_data): Implemented.
593    
594    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
595    
596            * DOMImplementation.pm (new): New method name for |____new|.
597            It will be defined in the DOM Perl Binding specification
598            as part of |DOMImplementation| interface.
599            ($HasFeature): Defined for features support.
600            (has_feature, get_feature): Implemented.
601    
602            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
603            module unless necessary.
604            (___report_error): Removed since it is not used in fact.
605    
606            * DOMImplementationList.pm, DOMImplementationSource.pm,
607            DOMImplementationRegistry.pm: New modules.
608    
609    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
610    
611            * AttributeDefinition.pm (allowed_tokens): Implemented.
612    
613            * DOMStringList.pm: New Perl module.
614    
615    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
616    
617            * DOMElement.pm (clone_node): Alpha version.  It did not work
618            at all.
619    
620    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
621    
622            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
623    
624    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
625    
626            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
627            (manakai_is_html): Revised.
628            (Document): Now it implements the |HTMLDocument| interface.
629            (adopt_node): Alpha version.
630    
631            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
632            not |allowed_token|!
633    
634            * ElementTypeDefinition.pm (attribute_definitions): Don't
635            return an |undef| even if its |attribute_definitions|
636            list is not created.
637    
638    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
639    
640            * Comment.pm (node_type): Node type was incorrect!
641    
642            * DOMConfiguration.pm (get_parameter): Alpha.
643    
644            * DOMImplementation.pm (create_mc_decode_handler,
645            create_charset_name_from_uri, create_uri_from_charset_name):
646            New autoload configuration.  Note that the Message::Charset::Encode
647            module is subject to change.
648    
649            * XMLParserTemp.pm: Now it can be used with new version
650            of DOM implementation.  Current plan is to replace it by
651            an XML5 parser someday.
652    
653    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
654    
655            * DOMLocator.pm: New module.
656    
657            * DOMError.pm: New module.
658    
659    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
660    
661            * Node.pm (manakai_expanded_uri, manakai_parent_element,
662            clone_node, compare_document_position, has_attributes,
663            has_child_nodes, is_default_namespace, lookup_namespace_uri,
664            lookup_prefix, normalize): Implemented.
665    
666            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
667    
668            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
669    
670    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
671    
672            * AttributeDefinition.pm (____new): Set an empty list
673            to the |allowed_tokens| attribute.
674            (allowed_token): Alpha version.
675    
676            * DocumentType.pm (get_element_type_definition_node,
677            get_notation_node): ALpha version.
678    
679            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
680            version.
681    
682            * Entity.pm (notation_name): Implemented.
683    
684    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
685    
686            * Attr.pm (____new): Initialize |specified| as 1.
687            (base_uri, manakai_attribute_type, specified): Implemented.
688            (prefix): Don't check read-only flag unless |strict_error_checking|.
689            (value): Call |text_content| for now.
690    
691            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
692            (declared_type, default_type): Implemented.
693    
694            * CharacterData.pm (____new): Allow a scalar reference
695            as an input for the |data| attribute.
696            (base_uri, manakai_append_text): Implemented.
697    
698            * DOMConfiguration.pm (set_parameter): Resetting implemented.
699    
700            * DOMDocument.pm (____new): Set default values to
701            configuration parameter whose default is true.
702            (document_uri, input_encoding): Implemented.
703            (all_declarations_processed, manakai_is_html): Implemented.
704            (base_uri, manakai_append_text,
705            manakai_entity_base_uri, strict_error_checking,
706            xml_encoding, xml_version, xml_standalone): Implemented.
707    
708            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
709            (get_attribute, get_attribute_node): Alpha version.
710            (set_attribute_node, set_attribute_node_ns): Implemented.
711            (set_attribute_ns): Accept non-ARRAY qualified name.
712    
713            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
714            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
715    
716            * DocumentType.pm (public_id, system_id): Implemented.
717            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
718            manakai_append_text): Implemented.
719            (element_types, general_entities, notations,
720            set_element_type_definition_node, set_general_entity_node,
721            set_notation_node): Alpha version.
722    
723            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
724            (attribute_definitions, set_attribute_definition_node): Alpha version.
725    
726            * Entity.pm (has_replacement_tree, public_id, system_id,
727            manakai_declaration_base_uri, manakai_entity_base_uri,
728            manakai_entity_uri): Implemented.
729    
730            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
731            (base_uri, manakai_entity_base_uri): Implemented.
732    
733            * Node.pm (base_uri): Implemented.
734            (text_content): Don't check read-only or not
735            unless |strict_error_checking|.
736            (manakai_append_text): Implemented.
737            (get_feature): Alpha.
738            (manakai_set_read_only): Implemented.
739    
740            * Notation.pm (public_id, system_id, manakai_append_text,
741            manakai_declaration_base_uri): Implemented.
742    
743            * ProcessingInstruction.pm (manakai_base_uri,
744            base_uri, manakai_append_text): Implemented.
745    
746    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
747    
748            * DOMConfiguration.pm: New module.
749    
750            * Attr.pm (trivial accessor for read-write attributes): Throw
751            an exception if the node is read-only.  Delete the property
752            if undef is specified.
753            (prefix): Implemented.
754    
755            * DOMElement.pm (trivial accessor for read-write attributes): Throw
756            an exception if the node is read-only.  Delete the property
757            if undef is specified.
758            (prefix): Implemented.
759            (text_content, manakai_append_text): Old implementations are removed.
760    
761            * DOMCharacterData.pm (text_content): Implemented.
762    
763            * DOMDocument.pm (____new): Initialize the strict-document-children
764            parameter by true.
765            (text_content): Reimplemented.
766            (dom_config): New.
767    
768            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
769    
770            * DocumentType.pm (text_content): Implemented.
771    
772            * ElementTypeDefinition.pm (text_content): Implemented.
773    
774            * Node.pm (___report_error): New method.
775            (text_content): Implemented.
776            (manakai_append_text): Copied from |DOMElement.pm|.
777    
778            * Notation.pm (text_content): Implemented.
779    
780            * ProcessingInstruction.pm (text_content): Implemented.
781    
782            * Text.pm (is_element_content_whitespace): Alpha version.
783    
784    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
785    
786            * DOMException.pm (Message::IF::DOMException): Extends
787            the |Message::Util::Error| class.
788    
789            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
790            (CLEAR): Not all items were removed.
791    
792    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
793    
794            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
795            DocumentType.pm, Entity.pm,
796            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
797    
798            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
799            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
800    
801            * DOMDocument.pm (AUTOLOAD): Typo fixed.
802    
803            * Node.pm (==, !=): Implemented.
804            (manakai_read_only): Implemented.
805            (is_same_node): Implemented.
806            (is_equal_node): Alpha version.
807            (manakai_set_read_only): Alpha version.
808            (child_nodes, first_child, last_child, previous_sibling): Duplicate
809            definitions are removed.
810    
811    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
812    
813            * Node.pm: First alpha version of implementation of attributes.
814    
815    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
816    
817            * ProcessingInstruction.pm, EntityReference.pm,
818            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
819            ElementTypeDefinition.pm, AttributeDefinition.pm,
820            DocumentType.pm, DOMElement.pm, Attr.pm,
821            CharacterData.pm, Text.pm, Comment.pm (node_name,
822            node_value, node_type): Implemented.
823    
824    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
825    
826            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
827            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
828            AttributeDefinition.pm: New modules.
829    
830            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
831            (create_attribute_definition, create_element_type_definition,
832            create_document_type_definition, create_cdata_section,
833            create_processing_instruction, create_entity_reference,
834            create_general_entity, create_notation): Prototypes added.
835    
836            * DOMImplementation.pm (create_document_type): Prototype added.
837    
838            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
839            and 'Message::IF::DocumentTypeDeclaration' added.
840            (create_document_type, create_document_type_definition):
841            New methods.
842    
843    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
844    
845            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
846            DOMElement.pm, Attr.pm, DocumentType.pm,
847            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
848            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
849    
850    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
851    
852            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
853            specifies unknown value and trys to recover from the error.
854    
855    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
856    
857            * TreeCore.dis (manakaiLocalName): New attribute.
858    
859    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
860    
861            * GenericLS.dis (GLSException): New interface.
862    
863    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
864    
865            * |InputProcessor|s and |OutputProcessor|s are
866            named so that |report| statements in Perl
867            module outputs can be identified by name. |dis:dataType|s
868            of |DISCore:TFQNames| are all replaced
869            by |DISCore:QName|.
870    
871    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
872    
873            * Element.dis (createElementNS): If an array reference
874            is specified as the |qualifiedName| parameter,
875            don't set the first item as the local name
876            even if the second item is not specified (or
877            specified as |undef|).
878            (createElementNS, setAttribute, setAttributeNS,
879            removeAttribute, removeAttributeNS,
880            setAttributeNode, setAttributeNodeNS,
881            removeAttributeNode, removeAttributeNodeNS): Sets
882            or removes the |tc:contentAttributeList| value.
883    
884            * TreeCore.dis (AttrMap.item): Caches the result
885            of sorting of content attribute names.
886            (getAttrMap, getElementTypeDefNodeMap,
887            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
888            (tc:contentAttributeList): New property.
889    
890    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
891    
892            * DOMFeature.dis (ForDef): Removed.
893            (f:provides, f:through): Removed.
894            (Version): Removed.
895            (implementFeature): Removed.
896    
897    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
898    
899            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
900            GenericLS.dis, TreeCore.dis, DOMString.dis,
901            XML.dis, Element.dis, Document.dis, TreeStore,dis,
902            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
903            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
904            are removed.
905    
906    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
907    
908            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
909            GenericLS.dis, TreeCore.dis, DOMString.dis,
910            XML.dis, Element.dis, Document.dis, TreeStore,dis,
911            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
912            SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications
913            and |DefaultFor|s are removed.
914    
915    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
916    
917            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
918            GenericLS.dis, TreeCore.dis, DOMString.dis,
919            XML.dis, Element.dis, Document.dis, TreeStore,dis,
920            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
921            SimpleLS.dis, DOMMain.dis: References
922            to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|,
923            |ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3|
924            modes are removed.
925    
926  2006-12-30  Wakaba  <wakaba@suika.fam.cx>  2006-12-30  Wakaba  <wakaba@suika.fam.cx>
927    
928          * CharacterData.dis, TreeCore.dis (Require): References          * CharacterData.dis, TreeCore.dis (Require): References

Legend:
Removed from v.1.206  
changed lines
  Added in v.1.297

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24