/[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.211 by wakaba, Sun Dec 31 02:39:37 2006 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>
177    
178            * DOMException.pm (Message::IF::DOMException): Extends
179            the |Message::Util::Error| class.
180    
181            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
182            (CLEAR): Not all items were removed.
183    
184    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
185    
186            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
187            DocumentType.pm, Entity.pm,
188            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
189    
190            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
191            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
192    
193            * DOMDocument.pm (AUTOLOAD): Typo fixed.
194    
195            * Node.pm (==, !=): Implemented.
196            (manakai_read_only): Implemented.
197            (is_same_node): Implemented.
198            (is_equal_node): Alpha version.
199            (manakai_set_read_only): Alpha version.
200            (child_nodes, first_child, last_child, previous_sibling): Duplicate
201            definitions are removed.
202    
203    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
204    
205            * Node.pm: First alpha version of implementation of attributes.
206    
207    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
208    
209            * ProcessingInstruction.pm, EntityReference.pm,
210            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
211            ElementTypeDefinition.pm, AttributeDefinition.pm,
212            DocumentType.pm, DOMElement.pm, Attr.pm,
213            CharacterData.pm, Text.pm, Comment.pm (node_name,
214            node_value, node_type): Implemented.
215    
216    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
217    
218            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
219            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
220            AttributeDefinition.pm: New modules.
221    
222            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
223            (create_attribute_definition, create_element_type_definition,
224            create_document_type_definition, create_cdata_section,
225            create_processing_instruction, create_entity_reference,
226            create_general_entity, create_notation): Prototypes added.
227    
228            * DOMImplementation.pm (create_document_type): Prototype added.
229    
230            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
231            and 'Message::IF::DocumentTypeDeclaration' added.
232            (create_document_type, create_document_type_definition):
233            New methods.
234    
235    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
236    
237            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
238            DOMElement.pm, Attr.pm, DocumentType.pm,
239            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
240            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
241    
242    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
243    
244            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
245            specifies unknown value and trys to recover from the error.
246    
247    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
248    
249            * TreeCore.dis (manakaiLocalName): New attribute.
250    
251    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
252    
253            * GenericLS.dis (GLSException): New interface.
254    
255    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
256    
257            * |InputProcessor|s and |OutputProcessor|s are
258            named so that |report| statements in Perl
259            module outputs can be identified by name. |dis:dataType|s
260            of |DISCore:TFQNames| are all replaced
261            by |DISCore:QName|.
262    
263  2006-12-31  Wakaba  <wakaba@suika.fam.cx>  2006-12-31  Wakaba  <wakaba@suika.fam.cx>
264    
265          * Element.dis (createElementNS): If an array reference          * Element.dis (createElementNS): If an array reference

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24