/[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.221 by wakaba, Sat Jun 16 15:27:45 2007 UTC revision 1.231 by wakaba, Sat Jul 7 07:36:58 2007 UTC
# Line 1  Line 1 
1    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMDocument.pm (adopt_node): Implemented.
4            (doctype): Implemented.
5    
6            * DOMElement.pm (remove_attribute_node): Alpha version.
7    
8            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
9            error type.
10    
11            * Node.pm (set_user_data): Implemented.
12    
13    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
14    
15            * DOMImplementation.pm (new): New method name for |____new|.
16            It will be defined in the DOM Perl Binding specification
17            as part of |DOMImplementation| interface.
18            ($HasFeature): Defined for features support.
19            (has_feature, get_feature): Implemented.
20    
21            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
22            module unless necessary.
23            (___report_error): Removed since it is not used in fact.
24    
25            * DOMImplementationList.pm, DOMImplementationSource.pm,
26            DOMImplementationRegistry.pm: New modules.
27    
28    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
29    
30            * AttributeDefinition.pm (allowed_tokens): Implemented.
31    
32            * DOMStringList.pm: New Perl module.
33    
34    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
35    
36            * DOMElement.pm (clone_node): Alpha version.  It did not work
37            at all.
38    
39    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
40    
41            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
42    
43    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
44    
45            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
46            (manakai_is_html): Revised.
47            (Document): Now it implements the |HTMLDocument| interface.
48            (adopt_node): Alpha version.
49    
50            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
51            not |allowed_token|!
52    
53            * ElementTypeDefinition.pm (attribute_definitions): Don't
54            return an |undef| even if its |attribute_definitions|
55            list is not created.
56    
57    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
58    
59            * Comment.pm (node_type): Node type was incorrect!
60    
61            * DOMConfiguration.pm (get_parameter): Alpha.
62    
63            * DOMImplementation.pm (create_mc_decode_handler,
64            create_charset_name_from_uri, create_uri_from_charset_name):
65            New autoload configuration.  Note that the Message::Charset::Encode
66            module is subject to change.
67    
68            * XMLParserTemp.pm: Now it can be used with new version
69            of DOM implementation.  Current plan is to replace it by
70            an XML5 parser someday.
71    
72    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
73    
74            * DOMLocator.pm: New module.
75    
76            * DOMError.pm: New module.
77    
78    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
79    
80            * Node.pm (manakai_expanded_uri, manakai_parent_element,
81            clone_node, compare_document_position, has_attributes,
82            has_child_nodes, is_default_namespace, lookup_namespace_uri,
83            lookup_prefix, normalize): Implemented.
84    
85            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
86    
87            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
88    
89    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
90    
91            * AttributeDefinition.pm (____new): Set an empty list
92            to the |allowed_tokens| attribute.
93            (allowed_token): Alpha version.
94    
95            * DocumentType.pm (get_element_type_definition_node,
96            get_notation_node): ALpha version.
97    
98            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
99            version.
100    
101            * Entity.pm (notation_name): Implemented.
102    
103    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
104    
105            * Attr.pm (____new): Initialize |specified| as 1.
106            (base_uri, manakai_attribute_type, specified): Implemented.
107            (prefix): Don't check read-only flag unless |strict_error_checking|.
108            (value): Call |text_content| for now.
109    
110            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
111            (declared_type, default_type): Implemented.
112    
113            * CharacterData.pm (____new): Allow a scalar reference
114            as an input for the |data| attribute.
115            (base_uri, manakai_append_text): Implemented.
116    
117            * DOMConfiguration.pm (set_parameter): Resetting implemented.
118    
119            * DOMDocument.pm (____new): Set default values to
120            configuration parameter whose default is true.
121            (document_uri, input_encoding): Implemented.
122            (all_declarations_processed, manakai_is_html): Implemented.
123            (base_uri, manakai_append_text,
124            manakai_entity_base_uri, strict_error_checking,
125            xml_encoding, xml_version, xml_standalone): Implemented.
126    
127            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
128            (get_attribute, get_attribute_node): Alpha version.
129            (set_attribute_node, set_attribute_node_ns): Implemented.
130            (set_attribute_ns): Accept non-ARRAY qualified name.
131    
132            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
133            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
134    
135            * DocumentType.pm (public_id, system_id): Implemented.
136            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
137            manakai_append_text): Implemented.
138            (element_types, general_entities, notations,
139            set_element_type_definition_node, set_general_entity_node,
140            set_notation_node): Alpha version.
141    
142            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
143            (attribute_definitions, set_attribute_definition_node): Alpha version.
144    
145            * Entity.pm (has_replacement_tree, public_id, system_id,
146            manakai_declaration_base_uri, manakai_entity_base_uri,
147            manakai_entity_uri): Implemented.
148    
149            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
150            (base_uri, manakai_entity_base_uri): Implemented.
151    
152            * Node.pm (base_uri): Implemented.
153            (text_content): Don't check read-only or not
154            unless |strict_error_checking|.
155            (manakai_append_text): Implemented.
156            (get_feature): Alpha.
157            (manakai_set_read_only): Implemented.
158    
159            * Notation.pm (public_id, system_id, manakai_append_text,
160            manakai_declaration_base_uri): Implemented.
161    
162            * ProcessingInstruction.pm (manakai_base_uri,
163            base_uri, manakai_append_text): Implemented.
164    
165  2007-06-16  Wakaba  <wakaba@suika.fam.cx>  2007-06-16  Wakaba  <wakaba@suika.fam.cx>
166    
167          * DOMConfiguration.pm: New module.          * DOMConfiguration.pm: New module.

Legend:
Removed from v.1.221  
changed lines
  Added in v.1.231

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24