/[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.244 by wakaba, Sat Jul 14 09:19:11 2007 UTC
# Line 1  Line 1 
1    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * AttributeDefinition.pm (node_value): Implemented.
4            (create_attribute_definition): Implemented.
5    
6            * DOMConfiguration.pm (%{}, TIEHASH,
7            get_parameter, set_parameter, can_set_parameter,
8            EXISTS, DELETE, parameter_names, FETCH, STORE,
9            FIRSTKEY, LASTKEY): Implemented.
10    
11            * DOMDocument.pm (____new): Set |error-handler| default.
12            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
13    
14            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
15            Implemented.
16    
17            * DOMException.pm: Error types for |DOMConfiguration|
18            are added.
19    
20            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
21            class.
22    
23            * DocumentType.pm (get_element_type_definition_node,
24            get_general_entity_node, get_notation_node,
25            set_element_type_definition_node, set_general_entity_node,
26            set_notation_node, create_document_type_definition): Implemented.
27    
28            * ElementTypeDefinition.pm (get_attribute_definition_node,
29            set_attribute_definition_node, create_element_type_definition):
30            Implemented.
31    
32            * Entity.pm (create_general_entity): Implemented.
33    
34            * Node.pm: Constants in |OperationType| definition
35            group are added.
36            (manakai_language): Implemented.
37    
38            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
39            class.
40    
41            * Notation.pm (create_notation): Implemented.
42    
43    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
44    
45            * TypeInfo.pm: New Perl module.
46    
47            * Attr.pm: Use |manakai_local_name| rather than |local_name|
48            to avoid HTML5 case normalization.
49            (is_id): Implemented.
50            (manakai_name): New attribute.
51            (schema_type_info): Implemented.
52            (create_attribute_ns): Empty string as namespace URI
53            was not supported.
54    
55            * DOMElement.pm (clone_node): Removed since now it is
56            defined in |Node.pm|.
57            (schema_type_info): Implemented.
58            (manakai_tag_name): New attribute.
59            (get_attribute, get_attribute_node, get_attribute_ns,
60            get_attribute_node_ns, has_attribute, has_attribute_ns,
61            remove_attribute, remove_attribute_ns,
62            remove_attribute_node, set_attribute, set_attribute_ns,
63            set_id_attribute, set_id_attribute_node,
64            set_id_attribute_ns): Implemented.
65            (create_element_ns): Empty string as namespace URI
66            was not supported.
67    
68    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
69    
70            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
71    
72            * DocumentType.pm (create_document_type_definition): Initialize
73            |public_id|, |system_id|, and |internal_subset| attributes
74            by empty strings for compatibility with Web browsers.
75            (create_document_type): Initialize |internal_subset|
76            attribute by an empty string for compatibility with
77            Web browsers.
78    
79            * ElementTypeDefinition.pm, Entity.pm,
80            Notation.pm (owner_document_type_definition): Implemented.
81    
82    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
83    
84            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
85            feature is added for compatibility with |XMLParserTemp.pm|.
86    
87    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
88    
89            * Attr.pm (value, node_value): Now it is defined
90            as |text_content| itself.
91    
92            * AttributeDefinition.pm, ElementTypeDefinition.pm,
93            Node.pm (AUTOLOAD): Unused block is removed.
94    
95            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
96    
97            * DocumentType.pm (internal_subset): Implemented.
98    
99            * Entity.pm (is_externally_declared, input_encoding,
100            xml_version): Implemented.
101    
102            * ProcessingInstruction.pm (target, data): Implemented.
103    
104    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
105    
106            * DOMCharacterData.pm (AUTOLOAD): Removed.
107            (data): Reimplemented.
108            (delete_data, insert_data, replace_data, substring_data): There were
109            a number of bugs.
110    
111            * Text.pm (AUTOLOAD): Removed.  Unused.
112    
113    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
114    
115            * StringExtended.pm: New Perl module.
116    
117            * DOMCharacterData.pm (length, append_data, delete_data,
118            insert_data, replace_data, substring_data): Implemented.
119    
120            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
121    
122            * Text.pm (is_element_content_whitespace, whole_text,
123            split_text): Implemented.
124    
125    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
126    
127            * DOMElement.pm (attributes): Implemented.
128    
129            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
130    
131            * DocumentType.pm (entities, general_entities,
132            notations, element_types): Implemented.
133    
134            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
135    
136            * NamedNodeMap.pm: New Perl module.
137    
138    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
139    
140            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
141            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
142            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
143            insert_before, replace_child): Implemented.
144    
145            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
146    
147            * Node.pm (remove_child): Implemented.
148    
149    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
150    
151            * Node.pm (==, is_equal_node): Implemented.
152            (is_same_node): Implemented.
153            (get_feature, get_user_data, set_user_data): Implemented.
154            (is_supported): Implemented.
155            
156    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
157    
158            * DOMDocument.pm (get_element_by_id): Implemented.
159            (create_document): Implemented.
160    
161            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
162            errors.
163            (QNAME_NULLNS_ERR): New errors.
164    
165            * DocumenType.pm (create_document_type): Implemented.
166    
167    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
168    
169            * CDATASection.pm (is_element_content_whitespace): New.
170    
171            * DOMElement.pm (has_attribute): Alpha version.
172            (create_element, create_element_ns): Implemented.
173    
174            * DocumentType.pm (get_general_entity_node): Alpha version.
175    
176            * EntityReference.pm (create_entity_reference): Implemented.
177    
178            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
179    
180    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
181    
182            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
183    
184            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
185            (compat_mode): Check |defined| not to be warned as "uninitialized"
186            when |{manakai_compat_mode}| is |undef|.
187    
188            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
189    
190            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
191            Statements to set |$Error::Depth| are removed since they
192            are result in "uninitialized" warnings unless
193            the |Message::DOM::DOMException| module is loaded earlier.
194            Usually methods invoked in these methods does not
195            raise any exception so that it makes no difference.
196    
197    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
198    
199            * DOMDocument.pm (adopt_node): Implemented.
200            (doctype): Implemented.
201    
202            * DOMElement.pm (remove_attribute_node): Alpha version.
203    
204            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
205            error type.
206    
207            * Node.pm (set_user_data): Implemented.
208    
209    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
210    
211            * DOMImplementation.pm (new): New method name for |____new|.
212            It will be defined in the DOM Perl Binding specification
213            as part of |DOMImplementation| interface.
214            ($HasFeature): Defined for features support.
215            (has_feature, get_feature): Implemented.
216    
217            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
218            module unless necessary.
219            (___report_error): Removed since it is not used in fact.
220    
221            * DOMImplementationList.pm, DOMImplementationSource.pm,
222            DOMImplementationRegistry.pm: New modules.
223    
224    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
225    
226            * AttributeDefinition.pm (allowed_tokens): Implemented.
227    
228            * DOMStringList.pm: New Perl module.
229    
230    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
231    
232            * DOMElement.pm (clone_node): Alpha version.  It did not work
233            at all.
234    
235    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
236    
237            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
238    
239    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
240    
241            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
242            (manakai_is_html): Revised.
243            (Document): Now it implements the |HTMLDocument| interface.
244            (adopt_node): Alpha version.
245    
246            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
247            not |allowed_token|!
248    
249            * ElementTypeDefinition.pm (attribute_definitions): Don't
250            return an |undef| even if its |attribute_definitions|
251            list is not created.
252    
253    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
254    
255            * Comment.pm (node_type): Node type was incorrect!
256    
257            * DOMConfiguration.pm (get_parameter): Alpha.
258    
259            * DOMImplementation.pm (create_mc_decode_handler,
260            create_charset_name_from_uri, create_uri_from_charset_name):
261            New autoload configuration.  Note that the Message::Charset::Encode
262            module is subject to change.
263    
264            * XMLParserTemp.pm: Now it can be used with new version
265            of DOM implementation.  Current plan is to replace it by
266            an XML5 parser someday.
267    
268    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
269    
270            * DOMLocator.pm: New module.
271    
272            * DOMError.pm: New module.
273    
274    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
275    
276            * Node.pm (manakai_expanded_uri, manakai_parent_element,
277            clone_node, compare_document_position, has_attributes,
278            has_child_nodes, is_default_namespace, lookup_namespace_uri,
279            lookup_prefix, normalize): Implemented.
280    
281            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
282    
283            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
284    
285    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
286    
287            * AttributeDefinition.pm (____new): Set an empty list
288            to the |allowed_tokens| attribute.
289            (allowed_token): Alpha version.
290    
291            * DocumentType.pm (get_element_type_definition_node,
292            get_notation_node): ALpha version.
293    
294            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
295            version.
296    
297            * Entity.pm (notation_name): Implemented.
298    
299    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
300    
301            * Attr.pm (____new): Initialize |specified| as 1.
302            (base_uri, manakai_attribute_type, specified): Implemented.
303            (prefix): Don't check read-only flag unless |strict_error_checking|.
304            (value): Call |text_content| for now.
305    
306            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
307            (declared_type, default_type): Implemented.
308    
309            * CharacterData.pm (____new): Allow a scalar reference
310            as an input for the |data| attribute.
311            (base_uri, manakai_append_text): Implemented.
312    
313            * DOMConfiguration.pm (set_parameter): Resetting implemented.
314    
315            * DOMDocument.pm (____new): Set default values to
316            configuration parameter whose default is true.
317            (document_uri, input_encoding): Implemented.
318            (all_declarations_processed, manakai_is_html): Implemented.
319            (base_uri, manakai_append_text,
320            manakai_entity_base_uri, strict_error_checking,
321            xml_encoding, xml_version, xml_standalone): Implemented.
322    
323            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
324            (get_attribute, get_attribute_node): Alpha version.
325            (set_attribute_node, set_attribute_node_ns): Implemented.
326            (set_attribute_ns): Accept non-ARRAY qualified name.
327    
328            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
329            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
330    
331            * DocumentType.pm (public_id, system_id): Implemented.
332            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
333            manakai_append_text): Implemented.
334            (element_types, general_entities, notations,
335            set_element_type_definition_node, set_general_entity_node,
336            set_notation_node): Alpha version.
337    
338            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
339            (attribute_definitions, set_attribute_definition_node): Alpha version.
340    
341            * Entity.pm (has_replacement_tree, public_id, system_id,
342            manakai_declaration_base_uri, manakai_entity_base_uri,
343            manakai_entity_uri): Implemented.
344    
345            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
346            (base_uri, manakai_entity_base_uri): Implemented.
347    
348            * Node.pm (base_uri): Implemented.
349            (text_content): Don't check read-only or not
350            unless |strict_error_checking|.
351            (manakai_append_text): Implemented.
352            (get_feature): Alpha.
353            (manakai_set_read_only): Implemented.
354    
355            * Notation.pm (public_id, system_id, manakai_append_text,
356            manakai_declaration_base_uri): Implemented.
357    
358            * ProcessingInstruction.pm (manakai_base_uri,
359            base_uri, manakai_append_text): Implemented.
360    
361    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
362    
363            * DOMConfiguration.pm: New module.
364    
365            * Attr.pm (trivial accessor for read-write attributes): Throw
366            an exception if the node is read-only.  Delete the property
367            if undef is specified.
368            (prefix): Implemented.
369    
370            * DOMElement.pm (trivial accessor for read-write attributes): Throw
371            an exception if the node is read-only.  Delete the property
372            if undef is specified.
373            (prefix): Implemented.
374            (text_content, manakai_append_text): Old implementations are removed.
375    
376            * DOMCharacterData.pm (text_content): Implemented.
377    
378            * DOMDocument.pm (____new): Initialize the strict-document-children
379            parameter by true.
380            (text_content): Reimplemented.
381            (dom_config): New.
382    
383            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
384    
385            * DocumentType.pm (text_content): Implemented.
386    
387            * ElementTypeDefinition.pm (text_content): Implemented.
388    
389            * Node.pm (___report_error): New method.
390            (text_content): Implemented.
391            (manakai_append_text): Copied from |DOMElement.pm|.
392    
393            * Notation.pm (text_content): Implemented.
394    
395            * ProcessingInstruction.pm (text_content): Implemented.
396    
397            * Text.pm (is_element_content_whitespace): Alpha version.
398    
399    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
400    
401            * DOMException.pm (Message::IF::DOMException): Extends
402            the |Message::Util::Error| class.
403    
404            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
405            (CLEAR): Not all items were removed.
406    
407    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
408    
409            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
410            DocumentType.pm, Entity.pm,
411            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
412    
413            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
414            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
415    
416            * DOMDocument.pm (AUTOLOAD): Typo fixed.
417    
418            * Node.pm (==, !=): Implemented.
419            (manakai_read_only): Implemented.
420            (is_same_node): Implemented.
421            (is_equal_node): Alpha version.
422            (manakai_set_read_only): Alpha version.
423            (child_nodes, first_child, last_child, previous_sibling): Duplicate
424            definitions are removed.
425    
426    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
427    
428            * Node.pm: First alpha version of implementation of attributes.
429    
430    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
431    
432            * ProcessingInstruction.pm, EntityReference.pm,
433            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
434            ElementTypeDefinition.pm, AttributeDefinition.pm,
435            DocumentType.pm, DOMElement.pm, Attr.pm,
436            CharacterData.pm, Text.pm, Comment.pm (node_name,
437            node_value, node_type): Implemented.
438    
439    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
440    
441            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
442            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
443            AttributeDefinition.pm: New modules.
444    
445            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
446            (create_attribute_definition, create_element_type_definition,
447            create_document_type_definition, create_cdata_section,
448            create_processing_instruction, create_entity_reference,
449            create_general_entity, create_notation): Prototypes added.
450    
451            * DOMImplementation.pm (create_document_type): Prototype added.
452    
453            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
454            and 'Message::IF::DocumentTypeDeclaration' added.
455            (create_document_type, create_document_type_definition):
456            New methods.
457    
458    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
459    
460            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
461            DOMElement.pm, Attr.pm, DocumentType.pm,
462            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
463            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
464    
465    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
466    
467            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
468            specifies unknown value and trys to recover from the error.
469    
470    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
471    
472            * TreeCore.dis (manakaiLocalName): New attribute.
473    
474    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
475    
476            * GenericLS.dis (GLSException): New interface.
477    
478    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
479    
480            * |InputProcessor|s and |OutputProcessor|s are
481            named so that |report| statements in Perl
482            module outputs can be identified by name. |dis:dataType|s
483            of |DISCore:TFQNames| are all replaced
484            by |DISCore:QName|.
485    
486  2006-12-31  Wakaba  <wakaba@suika.fam.cx>  2006-12-31  Wakaba  <wakaba@suika.fam.cx>
487    
488          * 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.244

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24