/[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.210 by wakaba, Sat Dec 30 13:25:33 2006 UTC revision 1.228 by wakaba, Tue Jun 26 14:12:55 2007 UTC
# Line 1  Line 1 
1    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMElement.pm (clone_node): Alpha version.  It did not work
4            at all.
5    
6    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
7    
8            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
9    
10    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
11    
12            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
13            (manakai_is_html): Revised.
14            (Document): Now it implements the |HTMLDocument| interface.
15            (adopt_node): Alpha version.
16    
17            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
18            not |allowed_token|!
19    
20            * ElementTypeDefinition.pm (attribute_definitions): Don't
21            return an |undef| even if its |attribute_definitions|
22            list is not created.
23    
24    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
25    
26            * Comment.pm (node_type): Node type was incorrect!
27    
28            * DOMConfiguration.pm (get_parameter): Alpha.
29    
30            * DOMImplementation.pm (create_mc_decode_handler,
31            create_charset_name_from_uri, create_uri_from_charset_name):
32            New autoload configuration.  Note that the Message::Charset::Encode
33            module is subject to change.
34    
35            * XMLParserTemp.pm: Now it can be used with new version
36            of DOM implementation.  Current plan is to replace it by
37            an XML5 parser someday.
38    
39    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
40    
41            * DOMLocator.pm: New module.
42    
43            * DOMError.pm: New module.
44    
45    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
46    
47            * Node.pm (manakai_expanded_uri, manakai_parent_element,
48            clone_node, compare_document_position, has_attributes,
49            has_child_nodes, is_default_namespace, lookup_namespace_uri,
50            lookup_prefix, normalize): Implemented.
51    
52            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
53    
54            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
55    
56    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
57    
58            * AttributeDefinition.pm (____new): Set an empty list
59            to the |allowed_tokens| attribute.
60            (allowed_token): Alpha version.
61    
62            * DocumentType.pm (get_element_type_definition_node,
63            get_notation_node): ALpha version.
64    
65            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
66            version.
67    
68            * Entity.pm (notation_name): Implemented.
69    
70    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
71    
72            * Attr.pm (____new): Initialize |specified| as 1.
73            (base_uri, manakai_attribute_type, specified): Implemented.
74            (prefix): Don't check read-only flag unless |strict_error_checking|.
75            (value): Call |text_content| for now.
76    
77            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
78            (declared_type, default_type): Implemented.
79    
80            * CharacterData.pm (____new): Allow a scalar reference
81            as an input for the |data| attribute.
82            (base_uri, manakai_append_text): Implemented.
83    
84            * DOMConfiguration.pm (set_parameter): Resetting implemented.
85    
86            * DOMDocument.pm (____new): Set default values to
87            configuration parameter whose default is true.
88            (document_uri, input_encoding): Implemented.
89            (all_declarations_processed, manakai_is_html): Implemented.
90            (base_uri, manakai_append_text,
91            manakai_entity_base_uri, strict_error_checking,
92            xml_encoding, xml_version, xml_standalone): Implemented.
93    
94            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
95            (get_attribute, get_attribute_node): Alpha version.
96            (set_attribute_node, set_attribute_node_ns): Implemented.
97            (set_attribute_ns): Accept non-ARRAY qualified name.
98    
99            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
100            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
101    
102            * DocumentType.pm (public_id, system_id): Implemented.
103            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
104            manakai_append_text): Implemented.
105            (element_types, general_entities, notations,
106            set_element_type_definition_node, set_general_entity_node,
107            set_notation_node): Alpha version.
108    
109            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
110            (attribute_definitions, set_attribute_definition_node): Alpha version.
111    
112            * Entity.pm (has_replacement_tree, public_id, system_id,
113            manakai_declaration_base_uri, manakai_entity_base_uri,
114            manakai_entity_uri): Implemented.
115    
116            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
117            (base_uri, manakai_entity_base_uri): Implemented.
118    
119            * Node.pm (base_uri): Implemented.
120            (text_content): Don't check read-only or not
121            unless |strict_error_checking|.
122            (manakai_append_text): Implemented.
123            (get_feature): Alpha.
124            (manakai_set_read_only): Implemented.
125    
126            * Notation.pm (public_id, system_id, manakai_append_text,
127            manakai_declaration_base_uri): Implemented.
128    
129            * ProcessingInstruction.pm (manakai_base_uri,
130            base_uri, manakai_append_text): Implemented.
131    
132    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
133    
134            * DOMConfiguration.pm: New module.
135    
136            * Attr.pm (trivial accessor for read-write attributes): Throw
137            an exception if the node is read-only.  Delete the property
138            if undef is specified.
139            (prefix): Implemented.
140    
141            * DOMElement.pm (trivial accessor for read-write attributes): Throw
142            an exception if the node is read-only.  Delete the property
143            if undef is specified.
144            (prefix): Implemented.
145            (text_content, manakai_append_text): Old implementations are removed.
146    
147            * DOMCharacterData.pm (text_content): Implemented.
148    
149            * DOMDocument.pm (____new): Initialize the strict-document-children
150            parameter by true.
151            (text_content): Reimplemented.
152            (dom_config): New.
153    
154            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
155    
156            * DocumentType.pm (text_content): Implemented.
157    
158            * ElementTypeDefinition.pm (text_content): Implemented.
159    
160            * Node.pm (___report_error): New method.
161            (text_content): Implemented.
162            (manakai_append_text): Copied from |DOMElement.pm|.
163    
164            * Notation.pm (text_content): Implemented.
165    
166            * ProcessingInstruction.pm (text_content): Implemented.
167    
168            * Text.pm (is_element_content_whitespace): Alpha version.
169    
170    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
171    
172            * DOMException.pm (Message::IF::DOMException): Extends
173            the |Message::Util::Error| class.
174    
175            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
176            (CLEAR): Not all items were removed.
177    
178    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
179    
180            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
181            DocumentType.pm, Entity.pm,
182            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
183    
184            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
185            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
186    
187            * DOMDocument.pm (AUTOLOAD): Typo fixed.
188    
189            * Node.pm (==, !=): Implemented.
190            (manakai_read_only): Implemented.
191            (is_same_node): Implemented.
192            (is_equal_node): Alpha version.
193            (manakai_set_read_only): Alpha version.
194            (child_nodes, first_child, last_child, previous_sibling): Duplicate
195            definitions are removed.
196    
197    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
198    
199            * Node.pm: First alpha version of implementation of attributes.
200    
201    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
202    
203            * ProcessingInstruction.pm, EntityReference.pm,
204            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
205            ElementTypeDefinition.pm, AttributeDefinition.pm,
206            DocumentType.pm, DOMElement.pm, Attr.pm,
207            CharacterData.pm, Text.pm, Comment.pm (node_name,
208            node_value, node_type): Implemented.
209    
210    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
211    
212            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
213            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
214            AttributeDefinition.pm: New modules.
215    
216            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
217            (create_attribute_definition, create_element_type_definition,
218            create_document_type_definition, create_cdata_section,
219            create_processing_instruction, create_entity_reference,
220            create_general_entity, create_notation): Prototypes added.
221    
222            * DOMImplementation.pm (create_document_type): Prototype added.
223    
224            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
225            and 'Message::IF::DocumentTypeDeclaration' added.
226            (create_document_type, create_document_type_definition):
227            New methods.
228    
229    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
230    
231            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
232            DOMElement.pm, Attr.pm, DocumentType.pm,
233            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
234            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
235    
236    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
237    
238            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
239            specifies unknown value and trys to recover from the error.
240    
241    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
242    
243            * TreeCore.dis (manakaiLocalName): New attribute.
244    
245    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
246    
247            * GenericLS.dis (GLSException): New interface.
248    
249    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
250    
251            * |InputProcessor|s and |OutputProcessor|s are
252            named so that |report| statements in Perl
253            module outputs can be identified by name. |dis:dataType|s
254            of |DISCore:TFQNames| are all replaced
255            by |DISCore:QName|.
256    
257    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
258    
259            * Element.dis (createElementNS): If an array reference
260            is specified as the |qualifiedName| parameter,
261            don't set the first item as the local name
262            even if the second item is not specified (or
263            specified as |undef|).
264            (createElementNS, setAttribute, setAttributeNS,
265            removeAttribute, removeAttributeNS,
266            setAttributeNode, setAttributeNodeNS,
267            removeAttributeNode, removeAttributeNodeNS): Sets
268            or removes the |tc:contentAttributeList| value.
269    
270            * TreeCore.dis (AttrMap.item): Caches the result
271            of sorting of content attribute names.
272            (getAttrMap, getElementTypeDefNodeMap,
273            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
274            (tc:contentAttributeList): New property.
275    
276  2006-12-30  Wakaba  <wakaba@suika.fam.cx>  2006-12-30  Wakaba  <wakaba@suika.fam.cx>
277    
278          * DOMFeature.dis (ForDef): Removed.          * DOMFeature.dis (ForDef): Removed.

Legend:
Removed from v.1.210  
changed lines
  Added in v.1.228

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24