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

Legend:
Removed from v.1.220  
changed lines
  Added in v.1.229

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24