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

Legend:
Removed from v.1.213  
changed lines
  Added in v.1.290

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24