/[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.213 by wakaba, Wed Mar 21 11:28:18 2007 UTC revision 1.225 by wakaba, Thu Jun 21 11:59:34 2007 UTC
# Line 1  Line 1 
1    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMLocator.pm: New module.
4    
5            * DOMError.pm: New module.
6    
7    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
8    
9            * Node.pm (manakai_expanded_uri, manakai_parent_element,
10            clone_node, compare_document_position, has_attributes,
11            has_child_nodes, is_default_namespace, lookup_namespace_uri,
12            lookup_prefix, normalize): Implemented.
13    
14            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
15    
16            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
17    
18    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
19    
20            * AttributeDefinition.pm (____new): Set an empty list
21            to the |allowed_tokens| attribute.
22            (allowed_token): Alpha version.
23    
24            * DocumentType.pm (get_element_type_definition_node,
25            get_notation_node): ALpha version.
26    
27            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
28            version.
29    
30            * Entity.pm (notation_name): Implemented.
31    
32    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
33    
34            * Attr.pm (____new): Initialize |specified| as 1.
35            (base_uri, manakai_attribute_type, specified): Implemented.
36            (prefix): Don't check read-only flag unless |strict_error_checking|.
37            (value): Call |text_content| for now.
38    
39            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
40            (declared_type, default_type): Implemented.
41    
42            * CharacterData.pm (____new): Allow a scalar reference
43            as an input for the |data| attribute.
44            (base_uri, manakai_append_text): Implemented.
45    
46            * DOMConfiguration.pm (set_parameter): Resetting implemented.
47    
48            * DOMDocument.pm (____new): Set default values to
49            configuration parameter whose default is true.
50            (document_uri, input_encoding): Implemented.
51            (all_declarations_processed, manakai_is_html): Implemented.
52            (base_uri, manakai_append_text,
53            manakai_entity_base_uri, strict_error_checking,
54            xml_encoding, xml_version, xml_standalone): Implemented.
55    
56            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
57            (get_attribute, get_attribute_node): Alpha version.
58            (set_attribute_node, set_attribute_node_ns): Implemented.
59            (set_attribute_ns): Accept non-ARRAY qualified name.
60    
61            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
62            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
63    
64            * DocumentType.pm (public_id, system_id): Implemented.
65            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
66            manakai_append_text): Implemented.
67            (element_types, general_entities, notations,
68            set_element_type_definition_node, set_general_entity_node,
69            set_notation_node): Alpha version.
70    
71            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
72            (attribute_definitions, set_attribute_definition_node): Alpha version.
73    
74            * Entity.pm (has_replacement_tree, public_id, system_id,
75            manakai_declaration_base_uri, manakai_entity_base_uri,
76            manakai_entity_uri): Implemented.
77    
78            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
79            (base_uri, manakai_entity_base_uri): Implemented.
80    
81            * Node.pm (base_uri): Implemented.
82            (text_content): Don't check read-only or not
83            unless |strict_error_checking|.
84            (manakai_append_text): Implemented.
85            (get_feature): Alpha.
86            (manakai_set_read_only): Implemented.
87    
88            * Notation.pm (public_id, system_id, manakai_append_text,
89            manakai_declaration_base_uri): Implemented.
90    
91            * ProcessingInstruction.pm (manakai_base_uri,
92            base_uri, manakai_append_text): Implemented.
93    
94    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
95    
96            * DOMConfiguration.pm: New module.
97    
98            * Attr.pm (trivial accessor for read-write attributes): Throw
99            an exception if the node is read-only.  Delete the property
100            if undef is specified.
101            (prefix): Implemented.
102    
103            * DOMElement.pm (trivial accessor for read-write attributes): Throw
104            an exception if the node is read-only.  Delete the property
105            if undef is specified.
106            (prefix): Implemented.
107            (text_content, manakai_append_text): Old implementations are removed.
108    
109            * DOMCharacterData.pm (text_content): Implemented.
110    
111            * DOMDocument.pm (____new): Initialize the strict-document-children
112            parameter by true.
113            (text_content): Reimplemented.
114            (dom_config): New.
115    
116            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
117    
118            * DocumentType.pm (text_content): Implemented.
119    
120            * ElementTypeDefinition.pm (text_content): Implemented.
121    
122            * Node.pm (___report_error): New method.
123            (text_content): Implemented.
124            (manakai_append_text): Copied from |DOMElement.pm|.
125    
126            * Notation.pm (text_content): Implemented.
127    
128            * ProcessingInstruction.pm (text_content): Implemented.
129    
130            * Text.pm (is_element_content_whitespace): Alpha version.
131    
132    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
133    
134            * DOMException.pm (Message::IF::DOMException): Extends
135            the |Message::Util::Error| class.
136    
137            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
138            (CLEAR): Not all items were removed.
139    
140    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
141    
142            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
143            DocumentType.pm, Entity.pm,
144            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
145    
146            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
147            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
148    
149            * DOMDocument.pm (AUTOLOAD): Typo fixed.
150    
151            * Node.pm (==, !=): Implemented.
152            (manakai_read_only): Implemented.
153            (is_same_node): Implemented.
154            (is_equal_node): Alpha version.
155            (manakai_set_read_only): Alpha version.
156            (child_nodes, first_child, last_child, previous_sibling): Duplicate
157            definitions are removed.
158    
159    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
160    
161            * Node.pm: First alpha version of implementation of attributes.
162    
163    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
164    
165            * ProcessingInstruction.pm, EntityReference.pm,
166            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
167            ElementTypeDefinition.pm, AttributeDefinition.pm,
168            DocumentType.pm, DOMElement.pm, Attr.pm,
169            CharacterData.pm, Text.pm, Comment.pm (node_name,
170            node_value, node_type): Implemented.
171    
172    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
173    
174            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
175            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
176            AttributeDefinition.pm: New modules.
177    
178            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
179            (create_attribute_definition, create_element_type_definition,
180            create_document_type_definition, create_cdata_section,
181            create_processing_instruction, create_entity_reference,
182            create_general_entity, create_notation): Prototypes added.
183    
184            * DOMImplementation.pm (create_document_type): Prototype added.
185    
186            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
187            and 'Message::IF::DocumentTypeDeclaration' added.
188            (create_document_type, create_document_type_definition):
189            New methods.
190    
191    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
192    
193            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
194            DOMElement.pm, Attr.pm, DocumentType.pm,
195            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
196            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
197    
198    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
199    
200            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
201            specifies unknown value and trys to recover from the error.
202    
203    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
204    
205            * TreeCore.dis (manakaiLocalName): New attribute.
206    
207  2007-01-02  Wakaba  <wakaba@suika.fam.cx>  2007-01-02  Wakaba  <wakaba@suika.fam.cx>
208    
209          * GenericLS.dis (GLSException): New interface.          * GenericLS.dis (GLSException): New interface.

Legend:
Removed from v.1.213  
changed lines
  Added in v.1.225

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24