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