/[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.224 by wakaba, Wed Jun 20 13:41:16 2007 UTC revision 1.243 by wakaba, Sat Jul 14 06:12:56 2007 UTC
# Line 1  Line 1 
1    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * TypeInfo.pm: New Perl module.
4    
5            * Attr.pm: Use |manakai_local_name| rather than |local_name|
6            to avoid HTML5 case normalization.
7            (is_id): Implemented.
8            (manakai_name): New attribute.
9            (schema_type_info): Implemented.
10            (create_attribute_ns): Empty string as namespace URI
11            was not supported.
12    
13            * DOMElement.pm (clone_node): Removed since now it is
14            defined in |Node.pm|.
15            (schema_type_info): Implemented.
16            (manakai_tag_name): New attribute.
17            (get_attribute, get_attribute_node, get_attribute_ns,
18            get_attribute_node_ns, has_attribute, has_attribute_ns,
19            remove_attribute, remove_attribute_ns,
20            remove_attribute_node, set_attribute, set_attribute_ns,
21            set_id_attribute, set_id_attribute_node,
22            set_id_attribute_ns): Implemented.
23            (create_element_ns): Empty string as namespace URI
24            was not supported.
25    
26    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
27    
28            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
29    
30            * DocumentType.pm (create_document_type_definition): Initialize
31            |public_id|, |system_id|, and |internal_subset| attributes
32            by empty strings for compatibility with Web browsers.
33            (create_document_type): Initialize |internal_subset|
34            attribute by an empty string for compatibility with
35            Web browsers.
36    
37            * ElementTypeDefinition.pm, Entity.pm,
38            Notation.pm (owner_document_type_definition): Implemented.
39    
40    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
41    
42            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
43            feature is added for compatibility with |XMLParserTemp.pm|.
44    
45    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
46    
47            * Attr.pm (value, node_value): Now it is defined
48            as |text_content| itself.
49    
50            * AttributeDefinition.pm, ElementTypeDefinition.pm,
51            Node.pm (AUTOLOAD): Unused block is removed.
52    
53            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
54    
55            * DocumentType.pm (internal_subset): Implemented.
56    
57            * Entity.pm (is_externally_declared, input_encoding,
58            xml_version): Implemented.
59    
60            * ProcessingInstruction.pm (target, data): Implemented.
61    
62    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
63    
64            * DOMCharacterData.pm (AUTOLOAD): Removed.
65            (data): Reimplemented.
66            (delete_data, insert_data, replace_data, substring_data): There were
67            a number of bugs.
68    
69            * Text.pm (AUTOLOAD): Removed.  Unused.
70    
71    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
72    
73            * StringExtended.pm: New Perl module.
74    
75            * DOMCharacterData.pm (length, append_data, delete_data,
76            insert_data, replace_data, substring_data): Implemented.
77    
78            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
79    
80            * Text.pm (is_element_content_whitespace, whole_text,
81            split_text): Implemented.
82    
83    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
84    
85            * DOMElement.pm (attributes): Implemented.
86    
87            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
88    
89            * DocumentType.pm (entities, general_entities,
90            notations, element_types): Implemented.
91    
92            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
93    
94            * NamedNodeMap.pm: New Perl module.
95    
96    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
97    
98            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
99            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
100            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
101            insert_before, replace_child): Implemented.
102    
103            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
104    
105            * Node.pm (remove_child): Implemented.
106    
107    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
108    
109            * Node.pm (==, is_equal_node): Implemented.
110            (is_same_node): Implemented.
111            (get_feature, get_user_data, set_user_data): Implemented.
112            (is_supported): Implemented.
113            
114    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
115    
116            * DOMDocument.pm (get_element_by_id): Implemented.
117            (create_document): Implemented.
118    
119            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
120            errors.
121            (QNAME_NULLNS_ERR): New errors.
122    
123            * DocumenType.pm (create_document_type): Implemented.
124    
125    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
126    
127            * CDATASection.pm (is_element_content_whitespace): New.
128    
129            * DOMElement.pm (has_attribute): Alpha version.
130            (create_element, create_element_ns): Implemented.
131    
132            * DocumentType.pm (get_general_entity_node): Alpha version.
133    
134            * EntityReference.pm (create_entity_reference): Implemented.
135    
136            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
137    
138    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
139    
140            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
141    
142            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
143            (compat_mode): Check |defined| not to be warned as "uninitialized"
144            when |{manakai_compat_mode}| is |undef|.
145    
146            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
147    
148            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
149            Statements to set |$Error::Depth| are removed since they
150            are result in "uninitialized" warnings unless
151            the |Message::DOM::DOMException| module is loaded earlier.
152            Usually methods invoked in these methods does not
153            raise any exception so that it makes no difference.
154    
155    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
156    
157            * DOMDocument.pm (adopt_node): Implemented.
158            (doctype): Implemented.
159    
160            * DOMElement.pm (remove_attribute_node): Alpha version.
161    
162            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
163            error type.
164    
165            * Node.pm (set_user_data): Implemented.
166    
167    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
168    
169            * DOMImplementation.pm (new): New method name for |____new|.
170            It will be defined in the DOM Perl Binding specification
171            as part of |DOMImplementation| interface.
172            ($HasFeature): Defined for features support.
173            (has_feature, get_feature): Implemented.
174    
175            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
176            module unless necessary.
177            (___report_error): Removed since it is not used in fact.
178    
179            * DOMImplementationList.pm, DOMImplementationSource.pm,
180            DOMImplementationRegistry.pm: New modules.
181    
182    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
183    
184            * AttributeDefinition.pm (allowed_tokens): Implemented.
185    
186            * DOMStringList.pm: New Perl module.
187    
188    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
189    
190            * DOMElement.pm (clone_node): Alpha version.  It did not work
191            at all.
192    
193    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
194    
195            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
196    
197    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
198    
199            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
200            (manakai_is_html): Revised.
201            (Document): Now it implements the |HTMLDocument| interface.
202            (adopt_node): Alpha version.
203    
204            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
205            not |allowed_token|!
206    
207            * ElementTypeDefinition.pm (attribute_definitions): Don't
208            return an |undef| even if its |attribute_definitions|
209            list is not created.
210    
211    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
212    
213            * Comment.pm (node_type): Node type was incorrect!
214    
215            * DOMConfiguration.pm (get_parameter): Alpha.
216    
217            * DOMImplementation.pm (create_mc_decode_handler,
218            create_charset_name_from_uri, create_uri_from_charset_name):
219            New autoload configuration.  Note that the Message::Charset::Encode
220            module is subject to change.
221    
222            * XMLParserTemp.pm: Now it can be used with new version
223            of DOM implementation.  Current plan is to replace it by
224            an XML5 parser someday.
225    
226    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
227    
228            * DOMLocator.pm: New module.
229    
230            * DOMError.pm: New module.
231    
232  2007-06-20  Wakaba  <wakaba@suika.fam.cx>  2007-06-20  Wakaba  <wakaba@suika.fam.cx>
233    
234          * Node.pm (manakai_expanded_uri, manakai_parent_element,          * Node.pm (manakai_expanded_uri, manakai_parent_element,

Legend:
Removed from v.1.224  
changed lines
  Added in v.1.243

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24