/[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.208 by wakaba, Sat Dec 30 08:27:43 2006 UTC revision 1.237 by wakaba, Sun Jul 8 07:59:02 2007 UTC
# Line 1  Line 1 
1    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMElement.pm (attributes): Implemented.
4    
5            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
6    
7            * DocumentType.pm (entities, general_entities,
8            notations, element_types): Implemented.
9    
10            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
11    
12            * NamedNodeMap.pm: New Perl module.
13    
14    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
15    
16            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
17            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
18            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
19            insert_before, replace_child): Implemented.
20    
21            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
22    
23            * Node.pm (remove_child): Implemented.
24    
25    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
26    
27            * Node.pm (==, is_equal_node): Implemented.
28            (is_same_node): Implemented.
29            (get_feature, get_user_data, set_user_data): Implemented.
30            (is_supported): Implemented.
31            
32    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
33    
34            * DOMDocument.pm (get_element_by_id): Implemented.
35            (create_document): Implemented.
36    
37            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
38            errors.
39            (QNAME_NULLNS_ERR): New errors.
40    
41            * DocumenType.pm (create_document_type): Implemented.
42    
43    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
44    
45            * CDATASection.pm (is_element_content_whitespace): New.
46    
47            * DOMElement.pm (has_attribute): Alpha version.
48            (create_element, create_element_ns): Implemented.
49    
50            * DocumentType.pm (get_general_entity_node): Alpha version.
51    
52            * EntityReference.pm (create_entity_reference): Implemented.
53    
54            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
55    
56    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
57    
58            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
59    
60            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
61            (compat_mode): Check |defined| not to be warned as "uninitialized"
62            when |{manakai_compat_mode}| is |undef|.
63    
64            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
65    
66            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
67            Statements to set |$Error::Depth| are removed since they
68            are result in "uninitialized" warnings unless
69            the |Message::DOM::DOMException| module is loaded earlier.
70            Usually methods invoked in these methods does not
71            raise any exception so that it makes no difference.
72    
73    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
74    
75            * DOMDocument.pm (adopt_node): Implemented.
76            (doctype): Implemented.
77    
78            * DOMElement.pm (remove_attribute_node): Alpha version.
79    
80            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
81            error type.
82    
83            * Node.pm (set_user_data): Implemented.
84    
85    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
86    
87            * DOMImplementation.pm (new): New method name for |____new|.
88            It will be defined in the DOM Perl Binding specification
89            as part of |DOMImplementation| interface.
90            ($HasFeature): Defined for features support.
91            (has_feature, get_feature): Implemented.
92    
93            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
94            module unless necessary.
95            (___report_error): Removed since it is not used in fact.
96    
97            * DOMImplementationList.pm, DOMImplementationSource.pm,
98            DOMImplementationRegistry.pm: New modules.
99    
100    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
101    
102            * AttributeDefinition.pm (allowed_tokens): Implemented.
103    
104            * DOMStringList.pm: New Perl module.
105    
106    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
107    
108            * DOMElement.pm (clone_node): Alpha version.  It did not work
109            at all.
110    
111    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
112    
113            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
114    
115    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
116    
117            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
118            (manakai_is_html): Revised.
119            (Document): Now it implements the |HTMLDocument| interface.
120            (adopt_node): Alpha version.
121    
122            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
123            not |allowed_token|!
124    
125            * ElementTypeDefinition.pm (attribute_definitions): Don't
126            return an |undef| even if its |attribute_definitions|
127            list is not created.
128    
129    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
130    
131            * Comment.pm (node_type): Node type was incorrect!
132    
133            * DOMConfiguration.pm (get_parameter): Alpha.
134    
135            * DOMImplementation.pm (create_mc_decode_handler,
136            create_charset_name_from_uri, create_uri_from_charset_name):
137            New autoload configuration.  Note that the Message::Charset::Encode
138            module is subject to change.
139    
140            * XMLParserTemp.pm: Now it can be used with new version
141            of DOM implementation.  Current plan is to replace it by
142            an XML5 parser someday.
143    
144    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
145    
146            * DOMLocator.pm: New module.
147    
148            * DOMError.pm: New module.
149    
150    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
151    
152            * Node.pm (manakai_expanded_uri, manakai_parent_element,
153            clone_node, compare_document_position, has_attributes,
154            has_child_nodes, is_default_namespace, lookup_namespace_uri,
155            lookup_prefix, normalize): Implemented.
156    
157            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
158    
159            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
160    
161    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
162    
163            * AttributeDefinition.pm (____new): Set an empty list
164            to the |allowed_tokens| attribute.
165            (allowed_token): Alpha version.
166    
167            * DocumentType.pm (get_element_type_definition_node,
168            get_notation_node): ALpha version.
169    
170            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
171            version.
172    
173            * Entity.pm (notation_name): Implemented.
174    
175    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
176    
177            * Attr.pm (____new): Initialize |specified| as 1.
178            (base_uri, manakai_attribute_type, specified): Implemented.
179            (prefix): Don't check read-only flag unless |strict_error_checking|.
180            (value): Call |text_content| for now.
181    
182            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
183            (declared_type, default_type): Implemented.
184    
185            * CharacterData.pm (____new): Allow a scalar reference
186            as an input for the |data| attribute.
187            (base_uri, manakai_append_text): Implemented.
188    
189            * DOMConfiguration.pm (set_parameter): Resetting implemented.
190    
191            * DOMDocument.pm (____new): Set default values to
192            configuration parameter whose default is true.
193            (document_uri, input_encoding): Implemented.
194            (all_declarations_processed, manakai_is_html): Implemented.
195            (base_uri, manakai_append_text,
196            manakai_entity_base_uri, strict_error_checking,
197            xml_encoding, xml_version, xml_standalone): Implemented.
198    
199            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
200            (get_attribute, get_attribute_node): Alpha version.
201            (set_attribute_node, set_attribute_node_ns): Implemented.
202            (set_attribute_ns): Accept non-ARRAY qualified name.
203    
204            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
205            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
206    
207            * DocumentType.pm (public_id, system_id): Implemented.
208            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
209            manakai_append_text): Implemented.
210            (element_types, general_entities, notations,
211            set_element_type_definition_node, set_general_entity_node,
212            set_notation_node): Alpha version.
213    
214            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
215            (attribute_definitions, set_attribute_definition_node): Alpha version.
216    
217            * Entity.pm (has_replacement_tree, public_id, system_id,
218            manakai_declaration_base_uri, manakai_entity_base_uri,
219            manakai_entity_uri): Implemented.
220    
221            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
222            (base_uri, manakai_entity_base_uri): Implemented.
223    
224            * Node.pm (base_uri): Implemented.
225            (text_content): Don't check read-only or not
226            unless |strict_error_checking|.
227            (manakai_append_text): Implemented.
228            (get_feature): Alpha.
229            (manakai_set_read_only): Implemented.
230    
231            * Notation.pm (public_id, system_id, manakai_append_text,
232            manakai_declaration_base_uri): Implemented.
233    
234            * ProcessingInstruction.pm (manakai_base_uri,
235            base_uri, manakai_append_text): Implemented.
236    
237    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
238    
239            * DOMConfiguration.pm: New module.
240    
241            * Attr.pm (trivial accessor for read-write attributes): Throw
242            an exception if the node is read-only.  Delete the property
243            if undef is specified.
244            (prefix): Implemented.
245    
246            * DOMElement.pm (trivial accessor for read-write attributes): Throw
247            an exception if the node is read-only.  Delete the property
248            if undef is specified.
249            (prefix): Implemented.
250            (text_content, manakai_append_text): Old implementations are removed.
251    
252            * DOMCharacterData.pm (text_content): Implemented.
253    
254            * DOMDocument.pm (____new): Initialize the strict-document-children
255            parameter by true.
256            (text_content): Reimplemented.
257            (dom_config): New.
258    
259            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
260    
261            * DocumentType.pm (text_content): Implemented.
262    
263            * ElementTypeDefinition.pm (text_content): Implemented.
264    
265            * Node.pm (___report_error): New method.
266            (text_content): Implemented.
267            (manakai_append_text): Copied from |DOMElement.pm|.
268    
269            * Notation.pm (text_content): Implemented.
270    
271            * ProcessingInstruction.pm (text_content): Implemented.
272    
273            * Text.pm (is_element_content_whitespace): Alpha version.
274    
275    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
276    
277            * DOMException.pm (Message::IF::DOMException): Extends
278            the |Message::Util::Error| class.
279    
280            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
281            (CLEAR): Not all items were removed.
282    
283    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
284    
285            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
286            DocumentType.pm, Entity.pm,
287            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
288    
289            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
290            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
291    
292            * DOMDocument.pm (AUTOLOAD): Typo fixed.
293    
294            * Node.pm (==, !=): Implemented.
295            (manakai_read_only): Implemented.
296            (is_same_node): Implemented.
297            (is_equal_node): Alpha version.
298            (manakai_set_read_only): Alpha version.
299            (child_nodes, first_child, last_child, previous_sibling): Duplicate
300            definitions are removed.
301    
302    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
303    
304            * Node.pm: First alpha version of implementation of attributes.
305    
306    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
307    
308            * ProcessingInstruction.pm, EntityReference.pm,
309            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
310            ElementTypeDefinition.pm, AttributeDefinition.pm,
311            DocumentType.pm, DOMElement.pm, Attr.pm,
312            CharacterData.pm, Text.pm, Comment.pm (node_name,
313            node_value, node_type): Implemented.
314    
315    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
316    
317            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
318            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
319            AttributeDefinition.pm: New modules.
320    
321            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
322            (create_attribute_definition, create_element_type_definition,
323            create_document_type_definition, create_cdata_section,
324            create_processing_instruction, create_entity_reference,
325            create_general_entity, create_notation): Prototypes added.
326    
327            * DOMImplementation.pm (create_document_type): Prototype added.
328    
329            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
330            and 'Message::IF::DocumentTypeDeclaration' added.
331            (create_document_type, create_document_type_definition):
332            New methods.
333    
334    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
335    
336            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
337            DOMElement.pm, Attr.pm, DocumentType.pm,
338            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
339            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
340    
341    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
342    
343            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
344            specifies unknown value and trys to recover from the error.
345    
346    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
347    
348            * TreeCore.dis (manakaiLocalName): New attribute.
349    
350    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
351    
352            * GenericLS.dis (GLSException): New interface.
353    
354    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
355    
356            * |InputProcessor|s and |OutputProcessor|s are
357            named so that |report| statements in Perl
358            module outputs can be identified by name. |dis:dataType|s
359            of |DISCore:TFQNames| are all replaced
360            by |DISCore:QName|.
361    
362    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
363    
364            * Element.dis (createElementNS): If an array reference
365            is specified as the |qualifiedName| parameter,
366            don't set the first item as the local name
367            even if the second item is not specified (or
368            specified as |undef|).
369            (createElementNS, setAttribute, setAttributeNS,
370            removeAttribute, removeAttributeNS,
371            setAttributeNode, setAttributeNodeNS,
372            removeAttributeNode, removeAttributeNodeNS): Sets
373            or removes the |tc:contentAttributeList| value.
374    
375            * TreeCore.dis (AttrMap.item): Caches the result
376            of sorting of content attribute names.
377            (getAttrMap, getElementTypeDefNodeMap,
378            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
379            (tc:contentAttributeList): New property.
380    
381    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
382    
383            * DOMFeature.dis (ForDef): Removed.
384            (f:provides, f:through): Removed.
385            (Version): Removed.
386            (implementFeature): Removed.
387    
388    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
389    
390            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
391            GenericLS.dis, TreeCore.dis, DOMString.dis,
392            XML.dis, Element.dis, Document.dis, TreeStore,dis,
393            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
394            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
395            are removed.
396    
397  2006-12-30  Wakaba  <wakaba@suika.fam.cx>  2006-12-30  Wakaba  <wakaba@suika.fam.cx>
398    
399          * CharacterData.dis, DOMCore.dis, DOMFeature.dis,          * CharacterData.dis, DOMCore.dis, DOMFeature.dis,

Legend:
Removed from v.1.208  
changed lines
  Added in v.1.237

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24