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

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24