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