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> |
233 |
|
|
234 |
|
* Node.pm (manakai_expanded_uri, manakai_parent_element, |
235 |
|
clone_node, compare_document_position, has_attributes, |
236 |
|
has_child_nodes, is_default_namespace, lookup_namespace_uri, |
237 |
|
lookup_prefix, normalize): Implemented. |
238 |
|
|
239 |
|
* DOMElement.pm (remove_attribute, set_attribute): Alpha version. |
240 |
|
|
241 |
|
* DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error. |
242 |
|
|
243 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
244 |
|
|
245 |
|
* AttributeDefinition.pm (____new): Set an empty list |
246 |
|
to the |allowed_tokens| attribute. |
247 |
|
(allowed_token): Alpha version. |
248 |
|
|
249 |
|
* DocumentType.pm (get_element_type_definition_node, |
250 |
|
get_notation_node): ALpha version. |
251 |
|
|
252 |
|
* ElementTypeDefinition.pm (attribute_definitions): Alpha 2 |
253 |
|
version. |
254 |
|
|
255 |
|
* Entity.pm (notation_name): Implemented. |
256 |
|
|
257 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
258 |
|
|
259 |
|
* Attr.pm (____new): Initialize |specified| as 1. |
260 |
|
(base_uri, manakai_attribute_type, specified): Implemented. |
261 |
|
(prefix): Don't check read-only flag unless |strict_error_checking|. |
262 |
|
(value): Call |text_content| for now. |
263 |
|
|
264 |
|
* AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added. |
265 |
|
(declared_type, default_type): Implemented. |
266 |
|
|
267 |
|
* CharacterData.pm (____new): Allow a scalar reference |
268 |
|
as an input for the |data| attribute. |
269 |
|
(base_uri, manakai_append_text): Implemented. |
270 |
|
|
271 |
|
* DOMConfiguration.pm (set_parameter): Resetting implemented. |
272 |
|
|
273 |
|
* DOMDocument.pm (____new): Set default values to |
274 |
|
configuration parameter whose default is true. |
275 |
|
(document_uri, input_encoding): Implemented. |
276 |
|
(all_declarations_processed, manakai_is_html): Implemented. |
277 |
|
(base_uri, manakai_append_text, |
278 |
|
manakai_entity_base_uri, strict_error_checking, |
279 |
|
xml_encoding, xml_version, xml_standalone): Implemented. |
280 |
|
|
281 |
|
* DOMElement.pm (manakai_base_uri, base_uri): Implemented. |
282 |
|
(get_attribute, get_attribute_node): Alpha version. |
283 |
|
(set_attribute_node, set_attribute_node_ns): Implemented. |
284 |
|
(set_attribute_ns): Accept non-ARRAY qualified name. |
285 |
|
|
286 |
|
* DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|, |
287 |
|
|NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added. |
288 |
|
|
289 |
|
* DocumentType.pm (public_id, system_id): Implemented. |
290 |
|
(base_uri, declaration_base_uri, manakai_declaration_base_uri, |
291 |
|
manakai_append_text): Implemented. |
292 |
|
(element_types, general_entities, notations, |
293 |
|
set_element_type_definition_node, set_general_entity_node, |
294 |
|
set_notation_node): Alpha version. |
295 |
|
|
296 |
|
* ElementTypeDefinition.pm (manakai_append_text): Implemented. |
297 |
|
(attribute_definitions, set_attribute_definition_node): Alpha version. |
298 |
|
|
299 |
|
* Entity.pm (has_replacement_tree, public_id, system_id, |
300 |
|
manakai_declaration_base_uri, manakai_entity_base_uri, |
301 |
|
manakai_entity_uri): Implemented. |
302 |
|
|
303 |
|
* EntityReference.pm (manakai_expanded, manakai_external): Implemented. |
304 |
|
(base_uri, manakai_entity_base_uri): Implemented. |
305 |
|
|
306 |
|
* Node.pm (base_uri): Implemented. |
307 |
|
(text_content): Don't check read-only or not |
308 |
|
unless |strict_error_checking|. |
309 |
|
(manakai_append_text): Implemented. |
310 |
|
(get_feature): Alpha. |
311 |
|
(manakai_set_read_only): Implemented. |
312 |
|
|
313 |
|
* Notation.pm (public_id, system_id, manakai_append_text, |
314 |
|
manakai_declaration_base_uri): Implemented. |
315 |
|
|
316 |
|
* ProcessingInstruction.pm (manakai_base_uri, |
317 |
|
base_uri, manakai_append_text): Implemented. |
318 |
|
|
319 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
320 |
|
|
321 |
|
* DOMConfiguration.pm: New module. |
322 |
|
|
323 |
|
* Attr.pm (trivial accessor for read-write attributes): Throw |
324 |
|
an exception if the node is read-only. Delete the property |
325 |
|
if undef is specified. |
326 |
|
(prefix): Implemented. |
327 |
|
|
328 |
|
* DOMElement.pm (trivial accessor for read-write attributes): Throw |
329 |
|
an exception if the node is read-only. Delete the property |
330 |
|
if undef is specified. |
331 |
|
(prefix): Implemented. |
332 |
|
(text_content, manakai_append_text): Old implementations are removed. |
333 |
|
|
334 |
|
* DOMCharacterData.pm (text_content): Implemented. |
335 |
|
|
336 |
|
* DOMDocument.pm (____new): Initialize the strict-document-children |
337 |
|
parameter by true. |
338 |
|
(text_content): Reimplemented. |
339 |
|
(dom_config): New. |
340 |
|
|
341 |
|
* DOMException.pm (READ_ONLY_NODE_ERR): New subtype. |
342 |
|
|
343 |
|
* DocumentType.pm (text_content): Implemented. |
344 |
|
|
345 |
|
* ElementTypeDefinition.pm (text_content): Implemented. |
346 |
|
|
347 |
|
* Node.pm (___report_error): New method. |
348 |
|
(text_content): Implemented. |
349 |
|
(manakai_append_text): Copied from |DOMElement.pm|. |
350 |
|
|
351 |
|
* Notation.pm (text_content): Implemented. |
352 |
|
|
353 |
|
* ProcessingInstruction.pm (text_content): Implemented. |
354 |
|
|
355 |
|
* Text.pm (is_element_content_whitespace): Alpha version. |
356 |
|
|
357 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
358 |
|
|
359 |
|
* DOMException.pm (Message::IF::DOMException): Extends |
360 |
|
the |Message::Util::Error| class. |
361 |
|
|
362 |
|
* NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class. |
363 |
|
(CLEAR): Not all items were removed. |
364 |
|
|
365 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
366 |
|
|
367 |
|
* Attr.pm, AttributeDefinition.pm, DocumentFragment.pm, |
368 |
|
DocumentType.pm, Entity.pm, |
369 |
|
EntityReference.pm (____new): Initialize |child_nodes| by an empty list. |
370 |
|
|
371 |
|
* Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm, |
372 |
|
Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned. |
373 |
|
|
374 |
|
* DOMDocument.pm (AUTOLOAD): Typo fixed. |
375 |
|
|
376 |
|
* Node.pm (==, !=): Implemented. |
377 |
|
(manakai_read_only): Implemented. |
378 |
|
(is_same_node): Implemented. |
379 |
|
(is_equal_node): Alpha version. |
380 |
|
(manakai_set_read_only): Alpha version. |
381 |
|
(child_nodes, first_child, last_child, previous_sibling): Duplicate |
382 |
|
definitions are removed. |
383 |
|
|
384 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
385 |
|
|
386 |
|
* Node.pm: First alpha version of implementation of attributes. |
387 |
|
|
388 |
|
2007-06-15 Wakaba <wakaba@suika.fam.cx> |
389 |
|
|
390 |
|
* ProcessingInstruction.pm, EntityReference.pm, |
391 |
|
CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm, |
392 |
|
ElementTypeDefinition.pm, AttributeDefinition.pm, |
393 |
|
DocumentType.pm, DOMElement.pm, Attr.pm, |
394 |
|
CharacterData.pm, Text.pm, Comment.pm (node_name, |
395 |
|
node_value, node_type): Implemented. |
396 |
|
|
397 |
|
2007-06-14 Wakaba <wakaba@suika.fam.cx> |
398 |
|
|
399 |
|
* Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm, |
400 |
|
CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm, |
401 |
|
AttributeDefinition.pm: New modules. |
402 |
|
|
403 |
|
* DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added. |
404 |
|
(create_attribute_definition, create_element_type_definition, |
405 |
|
create_document_type_definition, create_cdata_section, |
406 |
|
create_processing_instruction, create_entity_reference, |
407 |
|
create_general_entity, create_notation): Prototypes added. |
408 |
|
|
409 |
|
* DOMImplementation.pm (create_document_type): Prototype added. |
410 |
|
|
411 |
|
* DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition' |
412 |
|
and 'Message::IF::DocumentTypeDeclaration' added. |
413 |
|
(create_document_type, create_document_type_definition): |
414 |
|
New methods. |
415 |
|
|
416 |
|
2007-06-13 Wakaba <wakaba@suika.fam.cx> |
417 |
|
|
418 |
|
* DOMImplementation.pm, Node.pm, DOMDocument.pm, |
419 |
|
DOMElement.pm, Attr.pm, DocumentType.pm, |
420 |
|
DOMCharacterData.pm, Text.pm, Comment.pm: Copied |
421 |
|
from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>. |
422 |
|
|
423 |
|
2007-06-10 Wakaba <wakaba@suika.fam.cx> |
424 |
|
|
425 |
|
* XMLParser.dis: Default to "1.0" if <?xml version=""?> |
426 |
|
specifies unknown value and trys to recover from the error. |
427 |
|
|
428 |
|
2007-05-13 Wakaba <wakaba@suika.fam.cx> |
429 |
|
|
430 |
|
* TreeCore.dis (manakaiLocalName): New attribute. |
431 |
|
|
432 |
|
2007-01-02 Wakaba <wakaba@suika.fam.cx> |
433 |
|
|
434 |
|
* GenericLS.dis (GLSException): New interface. |
435 |
|
|
436 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
437 |
|
|
438 |
|
* |InputProcessor|s and |OutputProcessor|s are |
439 |
|
named so that |report| statements in Perl |
440 |
|
module outputs can be identified by name. |dis:dataType|s |
441 |
|
of |DISCore:TFQNames| are all replaced |
442 |
|
by |DISCore:QName|. |
443 |
|
|
444 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
445 |
|
|
446 |
|
* Element.dis (createElementNS): If an array reference |
447 |
|
is specified as the |qualifiedName| parameter, |
448 |
|
don't set the first item as the local name |
449 |
|
even if the second item is not specified (or |
450 |
|
specified as |undef|). |
451 |
|
(createElementNS, setAttribute, setAttributeNS, |
452 |
|
removeAttribute, removeAttributeNS, |
453 |
|
setAttributeNode, setAttributeNodeNS, |
454 |
|
removeAttributeNode, removeAttributeNodeNS): Sets |
455 |
|
or removes the |tc:contentAttributeList| value. |
456 |
|
|
457 |
|
* TreeCore.dis (AttrMap.item): Caches the result |
458 |
|
of sorting of content attribute names. |
459 |
|
(getAttrMap, getElementTypeDefNodeMap, |
460 |
|
getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed. |
461 |
|
(tc:contentAttributeList): New property. |
462 |
|
|
463 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
464 |
|
|
465 |
|
* DOMFeature.dis (ForDef): Removed. |
466 |
|
(f:provides, f:through): Removed. |
467 |
|
(Version): Removed. |
468 |
|
(implementFeature): Removed. |
469 |
|
|
470 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
471 |
|
|
472 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
473 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
474 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
475 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
476 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications |
477 |
|
are removed. |
478 |
|
|
479 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
480 |
|
|
481 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
482 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
483 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
484 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
485 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications |
486 |
|
and |DefaultFor|s are removed. |
487 |
|
|
488 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
489 |
|
|
490 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
491 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
492 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
493 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
494 |
|
SimpleLS.dis, DOMMain.dis: References |
495 |
|
to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|, |
496 |
|
|ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3| |
497 |
|
modes are removed. |
498 |
|
|
499 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
500 |
|
|
501 |
|
* CharacterData.dis, TreeCore.dis (Require): References |
502 |
|
to the |Grove.dis| module are removed. |
503 |
|
|
504 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
505 |
|
|
506 |
|
* DOMFeature.dis (f:implementation, f:revImplementation): Removed. |
507 |
|
(Require): Reference to the |Grove.dis| module is removed. |
508 |
|
|
509 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
510 |
|
|
511 |
|
* DOMCore.dis (ManakaiDOMImplementation): The |
512 |
|
class is no longer plays the role of |
513 |
|
a |mg:NodeRefRole|. Redundant |f:provides| |
514 |
|
properties are removed. |
515 |
|
|
516 |
|
2006-12-29 Wakaba <wakaba@suika.fam.cx> |
517 |
|
|
518 |
|
* TreeCore.dis, DOMCore.dis, Document.dis, |
519 |
|
Element.dis, CharacterData.dis, XML.dis, |
520 |
|
XDoctype.dis, DOMString.dis, TreeStore.dis, |
521 |
|
XMLParser.dis: Use Perl native |
522 |
|
hashs and |Scalar::Util|'s weak references in favor of |Grove.dis| |
523 |
|
for DOM nodes. See |
524 |
|
also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>. |
525 |
|
|
526 |
|
2006-12-03 Wakaba <wakaba@suika.fam.cx> |
527 |
|
|
528 |
|
* DOMFeature.dis, TreeCore.dis: Unused |role|s are removed. |
529 |
|
|
530 |
|
2006-12-02 Wakaba <wakaba@suika.fam.cx> |
531 |
|
|
532 |
|
* DOMString.dis: New module. |
533 |
|
|
534 |
|
* DOMString.pm: New file. |
535 |
|
|
536 |
|
* DOMCore.dis (min): Moved from |DOMFeature.dis|. |
537 |
|
(ImplementationRegistryVariable): Moved from |DOMFeature.dis|. |
538 |
|
Now it references the |DOMImplementationRegistry| object. |
539 |
|
(DOMImplementationRegistryVariable): Moved from |DOMMain.dis|. |
540 |
|
(DOMImplementationRegistry): New interface and |
541 |
|
class, reformed from |ImplementationRegistry| in |DOMFeature.dis| |
542 |
|
and |DOMImplementationRegistry| in |DOMMain.dis|. Note |
543 |
|
that the class no longer support |get_implementation| |
544 |
|
and |get_implementation_list| methods from |
545 |
|
the |ImplementationRegistry| interface. |
546 |
|
(DOMImplementationList): Class implemented; no |
547 |
|
longer inherits from |ImplementationList|. |
548 |
|
(DOMImplementationSource): Class implemented; no |
549 |
|
longer inherits from |ImplementationSource|. Note that |
550 |
|
the class no longer support |get_implementation| |
551 |
|
and |get_implementation_list| methods from |
552 |
|
the |ImplementationSource| interface. |
553 |
|
(DOMStringList): Removed. |
554 |
|
|
555 |
|
* DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature, |
556 |
|
ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature, |
557 |
|
ManakaiDOM:DOMXMLFeatureXML11, most part of |
558 |
|
documentation for obsolete DOM Level 3 Minimum Implementation |
559 |
|
module, obsolete property name aliases, |
560 |
|
ImplemenationRegistryVar, ImplementationRegistry, |
561 |
|
DEBUG, MIString, ImplementationList, ImplementationSource, |
562 |
|
ManakaiDOM:implID): Removed. |
563 |
|
|
564 |
|
* DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed. |
565 |
|
(DOMString): Removed. |
566 |
|
(DOMImplementationRegistryVar, DOMImplementationRegistry): Removed. |
567 |
|
|
568 |
|
* Makefile: |DOMString.pm| is added. |
569 |
|
|
570 |
|
* TreeCore.dis (is_default_namespace): |null| was |
571 |
|
returned where a false is expected (|null| is |
572 |
|
a false in Perl, but real |false| is appropriate here). |
573 |
|
|
574 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
575 |
|
|
576 |
|
* DOMCore.dis (TypeInfo, UserDataHandler): Removed. |
577 |
|
|
578 |
|
* Element.dis (TypeInfo): Moved from |DOMCore.dis|. |
579 |
|
|
580 |
|
* TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|. |
581 |
|
|
582 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
583 |
|
|
584 |
|
* DOMFeature.dis (ImplementationList, ImplementationSource, |
585 |
|
ImplementationRegistry): Parameters |features| |
586 |
|
now allow |null| (equivalent to an empty string). |
587 |
|
|
588 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
589 |
|
|
590 |
|
* CharacterData.dis (ManakaiDOMDocumentCharacterData): New |
591 |
|
class. Factory methods |createTextNode| and |createComment| |
592 |
|
are moved from |ManakaiDOMDocument|. |
593 |
|
|
594 |
|
* DOMCore.dis: References to |ManakaiDOMObject| |
595 |
|
are removed. |
596 |
|
(tc:createImplForTest): Moved from |TreeCore.dis|. |
597 |
|
(DOMImplementation.___create_node_ref): Support |
598 |
|
for the |mg:nodeRefClass| option is removed. |
599 |
|
(ManakaiDOMConfiguration.___report_error): Moved |
600 |
|
from |ManakaiDOMObject| class. |
601 |
|
|
602 |
|
* DOMFeature.dis (domidl:extends): New property. |
603 |
|
(f:getFeatureImpl): Support for |+| classes is removed. |
604 |
|
|
605 |
|
* DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed. |
606 |
|
(ManakaiDOM:ManakaiDOMObject): Removed. |
607 |
|
(DOMDataType): Removed. |
608 |
|
|
609 |
|
* Document.dis (ManakaiDOMImplementationDocument): |
610 |
|
The |createDocument| method is moved from |
611 |
|
the |ManakaiDOMImplementationTC| in |TreeCore.dis|. |
612 |
|
(ManakaiDOMDocument.___create_node_ref): Removed. |
613 |
|
(createElement, createElementNS, createAttribute, |
614 |
|
createAttributeNS, createTextNode, createComment, |
615 |
|
createCDATASection, createEntityReference, |
616 |
|
createProcessingInstruction): Class implementations |
617 |
|
are moved to each module. |
618 |
|
|
619 |
|
* Element.dis (ManakaiDOMImplementationElement): Factory |
620 |
|
methods are moved from |Document.dis|. |
621 |
|
(ManakaiDOMElement.___create_node_ref): Support |
622 |
|
for old class registry is removed. |
623 |
|
(ManakaiDOMAttr.___create_node_ref): Removed. |
624 |
|
(Attr.baseURI): Implementation |
625 |
|
for |xml:base| attribute is merged. |
626 |
|
(Attr.nodeValue, Attr.value): Implementation |
627 |
|
for |xml:id| attribute is merged. |
628 |
|
|
629 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Removed. |
630 |
|
|
631 |
|
* XDoctype.dis (ManakaiDOMImplementationXDoctype): The |
632 |
|
definition for |createDocumentType| method |
633 |
|
is moved from |TreeCore.dis|. |
634 |
|
|
635 |
|
* XML.dis (ManakaiDOMXMLDocument): Factory |
636 |
|
methods are moved from |Document.dis|. |
637 |
|
(ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged |
638 |
|
into |ManakaiDOMAttr| in |Element.dis|). |
639 |
|
|
640 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
641 |
|
|
642 |
|
* Element.dis (___get_node_ref): |eval|ed |require| |
643 |
|
statement was broken. |
644 |
|
|
645 |
|
* DOMFeature.dis (getImplementationList): Argument |
646 |
|
is not passed to the |getImplementation| method. |
647 |
|
|
648 |
|
* TreeStore.dis (DOMImplementationTreeStore): It |
649 |
|
did not |f:implements| the |TSFeature30| feature. |
650 |
|
|
651 |
|
* XMLParser.dis: Use |create_uri_reference| |
652 |
|
method instead of internal |_new| method |
653 |
|
to create a URI reference object. |
654 |
|
|
655 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
656 |
|
|
657 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
658 |
|
explicitly inherits |urigen:ManakaiURIImplementation| (and |
659 |
|
the |f:ManakaiMinimumImplementation| class inherited |
660 |
|
by it). The |f:Minimum| feature is ever implemented |
661 |
|
for compatibility (but is expected to be removed). |
662 |
|
Internal methods such as |___report_error| are copied from |
663 |
|
obsolete |f:MinimumImplementation| class. DOM3 |
664 |
|
methods |hasFeature| and |getFeature| are also |
665 |
|
moved from that class, but they now support no |
666 |
|
foreign classes. |
667 |
|
|
668 |
|
* DOMFeature.dis (ManakaiImplementationSource): It |
669 |
|
now |p:require|s |Message::Util::AutoLoad::Registry|. |
670 |
|
The class no longer support classes |
671 |
|
other than |ManakaiDOMImplementation|. Note |
672 |
|
that the |ImplementationRegistry| object does continue |
673 |
|
to support foreign classes via foreign classes |
674 |
|
implementing |ImplementationSource| |
675 |
|
or |DOMImplementationSource| interface. |
676 |
|
(MinimumImplementation): Removed. |
677 |
|
|
678 |
|
* DOMLS.dis (ManakaiDOMImplementationLS): It no |
679 |
|
longer inherit the |ManakaiDOMImplementation|; it |
680 |
|
is now expected to be implemented by |DOMImplementation| |
681 |
|
objects. |
682 |
|
|
683 |
|
* DOMMain.dis (null): Removed. |
684 |
|
|
685 |
|
* Document.dis (___create_node_ref): It no |
686 |
|
longer support foreign classes other |
687 |
|
than |Message::DOM::Document::ManakaiDOMDocument|. |
688 |
|
Note that document format specific DOM |
689 |
|
interfaces, if supported, should be |
690 |
|
all instances of the |Document| interface |
691 |
|
in the implementation, as defined |
692 |
|
in the Web Applications 1.0 specification (where |
693 |
|
the |HTMLDocument| interface must be implemented |
694 |
|
by all |Document| objects, even if the |Document| |
695 |
|
contains no HTML element). |
696 |
|
|
697 |
|
* GenericLS.dis (GLSImplementation): It no |
698 |
|
longer inherit the |MinimumImplementation|; it |
699 |
|
is now expected to be implemented by |DOMImplementation| |
700 |
|
objects. |
701 |
|
(createGLSParser, createGLSSerializer): Load |
702 |
|
module implementing parser or serializer |
703 |
|
if necessary. |
704 |
|
|
705 |
|
* Traversal.dis (ManakaiDOMDocumentTraversal): It no |
706 |
|
longer inherits the |ManakaiDOMDocument|; it |
707 |
|
is now expected to be implemented by |Document| |
708 |
|
objects. |
709 |
|
|
710 |
|
* XDP.dis (XDPDocument): It no longer |
711 |
|
inherits the |Document|; it is now expected |
712 |
|
to be implemented by all |Document| objects. |
713 |
|
|
714 |
|
* XDoctype.dis (ManakaiDOMDocumentXDoctype): It no |
715 |
|
longer inherits the |ManakaiDOMDocument|; it |
716 |
|
is now expected to be implemented by |Document| |
717 |
|
objects. |
718 |
|
|
719 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
720 |
|
|
721 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
722 |
|
explicitly inherits |tc:ManakaiDOMImplementationTC|. |
723 |
|
(ManakaiDOMImplementation.AUTOLOAD): New method definition. |
724 |
|
|
725 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Extends |
726 |
|
the |ManakaiDOMImplementation| class. |
727 |
|
|
728 |
|
2006-11-03 Wakaba <wakaba@suika.fam.cx> |
729 |
|
|
730 |
|
* DOMFeature.dis: Definitions for various concepts |
731 |
|
are added. |
732 |
|
|
733 |
|
* GenericLS.dis (GLSImplementation): It no |
734 |
|
longer inherits the |MinimumImplementation|; rather, |
735 |
|
any |ManakaiMinimumImplementation| object also |
736 |
|
implements |GLSImplementation| methods. |
737 |
|
|
738 |
|
* TreeStore.dis (DOMImplementationTreeStore): It no |
739 |
|
longer inherits the |DOMImplementation|; rather, |
740 |
|
any |ManakaiDOMImplementation| object also |
741 |
|
implements |DOMImplementationTreeStore| methods. |
742 |
|
|
743 |
|
2006-08-15 Wakaba <wakaba@suika.fam.cx> |
744 |
|
|
745 |
|
* TreeStore.pm: Added to the CVS repository |
746 |
|
to enable for the dis database to contain XML |
747 |
|
fragments. |
748 |
|
|
749 |
|
* Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added. |
750 |
|
|
751 |
|
* TreeStore.dis (Namespace): Namespace URI was incorrect. |
752 |
|
|
753 |
|
2006-06-18 Wakaba <wakaba@suika.fam.cx> |
754 |
|
|
755 |
|
* Traversal.dis (expandEntityReferences): Syntax was incorrect. |
756 |
|
|
757 |
|
* TreeCore.dis (manakaiReadOnly): Test assertion was incorrect. |
758 |
|
|
759 |
|
* XDP.dis (dtdText): Test assertion was incorrect. |
760 |
|
|
761 |
|
2006-05-21 Wakaba <wakaba@suika.fam.cx> |
762 |
|
|
763 |
|
* XDP.dis (XDPEntityValue.stringify): Don't escape |
764 |
|
any |%|s in |xdp:attr-definition| children. |
765 |
|
|
766 |
|
2006-05-20 Wakaba <wakaba@suika.fam.cx> |
767 |
|
|
768 |
|
* XDP.dis (createXDPRNIKeyword): The Perl method |
769 |
|
name property is added. |
770 |
|
|
771 |
|
2006-05-20 Wakaba <wakaba@suika.fam.cx> |
772 |
|
|
773 |
|
* XDP.dis (createXDPIf): New method. |
774 |
|
(XDPIfElement): New interface. |
775 |
|
|
776 |
|
2006-05-15 Wakaba <wakaba@suika.fam.cx> |
777 |
|
|
778 |
|
* XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition): |
779 |
|
New methods. |
780 |
|
|
781 |
|
2006-05-15 Wakaba <wakaba@suika.fam.cx> |
782 |
|
|
783 |
|
* XDP.dis (XDPDocument): A number of constructor methods |
784 |
|
are added. |
785 |
|
(XDPTextDecl.dtdText): The |xml| target was missing. |
786 |
|
|
787 |
|
2006-05-14 Wakaba <wakaba@suika.fam.cx> |
788 |
|
|
789 |
|
* Traversal.dis (SerialWalker): New interface. |
790 |
|
(manakaiCreateSerialWalker): New method. |
791 |
|
|
792 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
793 |
|
|
794 |
|
* Traversal.dis (testNode): Calls |acceptNode| method |
795 |
|
rather than |&{}| dereferencing. |
796 |
|
(acceptNode): Implemented. |
797 |
|
|
798 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
799 |
|
|
800 |
|
* XDP.dis: New module. |
801 |
|
|
802 |
|
* Makefile: |XDP.dis| is added. |
803 |
|
|
804 |
|
* Traversal.dis (NodeFilter): |InputProcessor| |
805 |
|
and |OutputProcessor| are added. |
806 |
|
|
807 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
808 |
|
|
809 |
|
* Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value. |
810 |
|
(TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support |
811 |
|
is added. The |FILTER_REJECT| value is treated |
812 |
|
as |FILTER_ACCEPT| if the |currentNode| is in the |
813 |
|
rejected subtree as specified in the spec. |
814 |
|
|
815 |
|
2006-05-05 Wakaba <wakaba@suika.fam.cx> |
816 |
|
|
817 |
|
* SimpleLS.dis: An |xmlns:| prefix was missing. |
818 |
|
|
819 |
|
2006-05-04 Wakaba <wakaba@suika.fam.cx> |
820 |
|
|
821 |
|
* SimpleLS.dis: Namespace bugs are fixed. |
822 |
|
|
823 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
824 |
|
|
825 |
|
* .cvsignore: Updated. |
826 |
|
|
827 |
|
* Traversal.dis: Unused declarations are removed. |
828 |
|
|
829 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
830 |
|
|
831 |
|
* CharacterData.dis (Require): A reference to |
832 |
|
the |MDOM:Traversal| module is added. |
833 |
|
(wholeText): Implemented. |
834 |
|
|
835 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
836 |
|
|
837 |
|
* Makefile: |Traversal.dis| is added. |
838 |
|
|
839 |
|
* Traversal.dis: New module. |
840 |
|
|
841 |
|
* TreeCore.dis (___report_error): Return value was |
842 |
|
not propagated. |
843 |
|
|
844 |
|
2006-04-29 Wakaba <wakaba@suika.fam.cx> |
845 |
|
|
846 |
|
* Element.dis (removeAttributeNS): A runtime error |
847 |
|
was occurred if there was no specified attribute node. |
848 |
|
|
849 |
|
* TreeCore.dis (manakaiLanguage): New attribute. |
850 |
|
|
851 |
|
2006-04-28 Wakaba <wakaba@suika.fam.cx> |
852 |
|
|
853 |
|
* TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly): |
854 |
|
New attributes. |
855 |
|
|
856 |
|
(StaticNodeList): New interface. |
857 |
|
|
858 |
|
2006-04-24 Wakaba <wakaba@suika.fam.cx> |
859 |
|
|
860 |
|
* DOMCore.dis (c:SET_TO_NULL_ERR): New error code. |
861 |
|
|
862 |
|
2006-04-22 Wakaba <wakaba@suika.fam.cx> |
863 |
|
|
864 |
|
* SimpleLS.dis: Reimplemented. |
865 |
|
|
866 |
|
2006-04-22 Wakaba <wakaba@suika.fam.cx> |
867 |
|
|
868 |
|
* DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now |
869 |
|
a qualified name. |
870 |
|
(tc:EXTERNAL_NODE_COMPARISON_ERR): New error type. |
871 |
|
|
872 |
|
* TreeCore.dis (compareDocumentPosition): Implemented. |
873 |
|
(normalize): Implemented. |
874 |
|
(STORESIZE, CLEAR): Were not implemented for |EmptyNodeList| |
875 |
|
class. |
876 |
|
|
877 |
2006-04-16 Wakaba <wakaba@suika.fam.cx> |
2006-04-16 Wakaba <wakaba@suika.fam.cx> |
878 |
|
|
879 |
* DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed. |
* DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed. |