1 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* DOMCharacterData.pm (AUTOLOAD): Removed. |
4 |
|
(data): Reimplemented. |
5 |
|
(delete_data, insert_data, replace_data, substring_data): There were |
6 |
|
a number of bugs. |
7 |
|
|
8 |
|
* Text.pm (AUTOLOAD): Removed. Unused. |
9 |
|
|
10 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
11 |
|
|
12 |
|
* StringExtended.pm: New Perl module. |
13 |
|
|
14 |
|
* DOMCharacterData.pm (length, append_data, delete_data, |
15 |
|
insert_data, replace_data, substring_data): Implemented. |
16 |
|
|
17 |
|
* DOMException.pm (INDEX_SIZE_ERR): Implemented. |
18 |
|
|
19 |
|
* Text.pm (is_element_content_whitespace, whole_text, |
20 |
|
split_text): Implemented. |
21 |
|
|
22 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
23 |
|
|
24 |
|
* DOMElement.pm (attributes): Implemented. |
25 |
|
|
26 |
|
* DOMException.pm (INUSE_DEFINITION_ERR): New error type. |
27 |
|
|
28 |
|
* DocumentType.pm (entities, general_entities, |
29 |
|
notations, element_types): Implemented. |
30 |
|
|
31 |
|
* ElementTypeDefinition.pm (attribute_definitions): Implemented. |
32 |
|
|
33 |
|
* NamedNodeMap.pm: New Perl module. |
34 |
|
|
35 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
36 |
|
|
37 |
|
* Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm, |
38 |
|
DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm, |
39 |
|
Node.pm, Notation.pm, ProcessingInstruction.pm (append_child, |
40 |
|
insert_before, replace_child): Implemented. |
41 |
|
|
42 |
|
* DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented. |
43 |
|
|
44 |
|
* Node.pm (remove_child): Implemented. |
45 |
|
|
46 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
47 |
|
|
48 |
|
* Node.pm (==, is_equal_node): Implemented. |
49 |
|
(is_same_node): Implemented. |
50 |
|
(get_feature, get_user_data, set_user_data): Implemented. |
51 |
|
(is_supported): Implemented. |
52 |
|
|
53 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
54 |
|
|
55 |
|
* DOMDocument.pm (get_element_by_id): Implemented. |
56 |
|
(create_document): Implemented. |
57 |
|
|
58 |
|
* DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New |
59 |
|
errors. |
60 |
|
(QNAME_NULLNS_ERR): New errors. |
61 |
|
|
62 |
|
* DocumenType.pm (create_document_type): Implemented. |
63 |
|
|
64 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
65 |
|
|
66 |
|
* CDATASection.pm (is_element_content_whitespace): New. |
67 |
|
|
68 |
|
* DOMElement.pm (has_attribute): Alpha version. |
69 |
|
(create_element, create_element_ns): Implemented. |
70 |
|
|
71 |
|
* DocumentType.pm (get_general_entity_node): Alpha version. |
72 |
|
|
73 |
|
* EntityReference.pm (create_entity_reference): Implemented. |
74 |
|
|
75 |
|
* ProcessingInstruction.pm (create_processing_instruction): Implemented. |
76 |
|
|
77 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
78 |
|
|
79 |
|
* Attr.pm (create_attribute, create_attribute_ns): Implemented. |
80 |
|
|
81 |
|
* DOMDocument.pm: Load character classes from |Char::Class::XML|. |
82 |
|
(compat_mode): Check |defined| not to be warned as "uninitialized" |
83 |
|
when |{manakai_compat_mode}| is |undef|. |
84 |
|
|
85 |
|
* DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added. |
86 |
|
|
87 |
|
* DOMImplementationRegistry.pm, DOMImplementationSource.pm: |
88 |
|
Statements to set |$Error::Depth| are removed since they |
89 |
|
are result in "uninitialized" warnings unless |
90 |
|
the |Message::DOM::DOMException| module is loaded earlier. |
91 |
|
Usually methods invoked in these methods does not |
92 |
|
raise any exception so that it makes no difference. |
93 |
|
|
94 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
95 |
|
|
96 |
|
* DOMDocument.pm (adopt_node): Implemented. |
97 |
|
(doctype): Implemented. |
98 |
|
|
99 |
|
* DOMElement.pm (remove_attribute_node): Alpha version. |
100 |
|
|
101 |
|
* DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New |
102 |
|
error type. |
103 |
|
|
104 |
|
* Node.pm (set_user_data): Implemented. |
105 |
|
|
106 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
107 |
|
|
108 |
|
* DOMImplementation.pm (new): New method name for |____new|. |
109 |
|
It will be defined in the DOM Perl Binding specification |
110 |
|
as part of |DOMImplementation| interface. |
111 |
|
($HasFeature): Defined for features support. |
112 |
|
(has_feature, get_feature): Implemented. |
113 |
|
|
114 |
|
* DOMStringList.pm: Don't load the |Message::DOM::DOMException| |
115 |
|
module unless necessary. |
116 |
|
(___report_error): Removed since it is not used in fact. |
117 |
|
|
118 |
|
* DOMImplementationList.pm, DOMImplementationSource.pm, |
119 |
|
DOMImplementationRegistry.pm: New modules. |
120 |
|
|
121 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
122 |
|
|
123 |
|
* AttributeDefinition.pm (allowed_tokens): Implemented. |
124 |
|
|
125 |
|
* DOMStringList.pm: New Perl module. |
126 |
|
|
127 |
|
2007-06-26 Wakaba <wakaba@suika.fam.cx> |
128 |
|
|
129 |
|
* DOMElement.pm (clone_node): Alpha version. It did not work |
130 |
|
at all. |
131 |
|
|
132 |
|
2007-06-24 Wakaba <wakaba@suika.fam.cx> |
133 |
|
|
134 |
|
* ProcessingInstruction.pm (data): Now it is a read-write attribute. |
135 |
|
|
136 |
|
2007-06-23 Wakaba <wakaba@suika.fam.cx> |
137 |
|
|
138 |
|
* DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented. |
139 |
|
(manakai_is_html): Revised. |
140 |
|
(Document): Now it implements the |HTMLDocument| interface. |
141 |
|
(adopt_node): Alpha version. |
142 |
|
|
143 |
|
* AttributeDefinition.pm (allowed_tokens): |allowed_tokens|, |
144 |
|
not |allowed_token|! |
145 |
|
|
146 |
|
* ElementTypeDefinition.pm (attribute_definitions): Don't |
147 |
|
return an |undef| even if its |attribute_definitions| |
148 |
|
list is not created. |
149 |
|
|
150 |
|
2007-06-21 Wakaba <wakaba@suika.fam.cx> |
151 |
|
|
152 |
|
* Comment.pm (node_type): Node type was incorrect! |
153 |
|
|
154 |
|
* DOMConfiguration.pm (get_parameter): Alpha. |
155 |
|
|
156 |
|
* DOMImplementation.pm (create_mc_decode_handler, |
157 |
|
create_charset_name_from_uri, create_uri_from_charset_name): |
158 |
|
New autoload configuration. Note that the Message::Charset::Encode |
159 |
|
module is subject to change. |
160 |
|
|
161 |
|
* XMLParserTemp.pm: Now it can be used with new version |
162 |
|
of DOM implementation. Current plan is to replace it by |
163 |
|
an XML5 parser someday. |
164 |
|
|
165 |
|
2007-06-21 Wakaba <wakaba@suika.fam.cx> |
166 |
|
|
167 |
|
* DOMLocator.pm: New module. |
168 |
|
|
169 |
|
* DOMError.pm: New module. |
170 |
|
|
171 |
|
2007-06-20 Wakaba <wakaba@suika.fam.cx> |
172 |
|
|
173 |
|
* Node.pm (manakai_expanded_uri, manakai_parent_element, |
174 |
|
clone_node, compare_document_position, has_attributes, |
175 |
|
has_child_nodes, is_default_namespace, lookup_namespace_uri, |
176 |
|
lookup_prefix, normalize): Implemented. |
177 |
|
|
178 |
|
* DOMElement.pm (remove_attribute, set_attribute): Alpha version. |
179 |
|
|
180 |
|
* DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error. |
181 |
|
|
182 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
183 |
|
|
184 |
|
* AttributeDefinition.pm (____new): Set an empty list |
185 |
|
to the |allowed_tokens| attribute. |
186 |
|
(allowed_token): Alpha version. |
187 |
|
|
188 |
|
* DocumentType.pm (get_element_type_definition_node, |
189 |
|
get_notation_node): ALpha version. |
190 |
|
|
191 |
|
* ElementTypeDefinition.pm (attribute_definitions): Alpha 2 |
192 |
|
version. |
193 |
|
|
194 |
|
* Entity.pm (notation_name): Implemented. |
195 |
|
|
196 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
197 |
|
|
198 |
|
* Attr.pm (____new): Initialize |specified| as 1. |
199 |
|
(base_uri, manakai_attribute_type, specified): Implemented. |
200 |
|
(prefix): Don't check read-only flag unless |strict_error_checking|. |
201 |
|
(value): Call |text_content| for now. |
202 |
|
|
203 |
|
* AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added. |
204 |
|
(declared_type, default_type): Implemented. |
205 |
|
|
206 |
|
* CharacterData.pm (____new): Allow a scalar reference |
207 |
|
as an input for the |data| attribute. |
208 |
|
(base_uri, manakai_append_text): Implemented. |
209 |
|
|
210 |
|
* DOMConfiguration.pm (set_parameter): Resetting implemented. |
211 |
|
|
212 |
|
* DOMDocument.pm (____new): Set default values to |
213 |
|
configuration parameter whose default is true. |
214 |
|
(document_uri, input_encoding): Implemented. |
215 |
|
(all_declarations_processed, manakai_is_html): Implemented. |
216 |
|
(base_uri, manakai_append_text, |
217 |
|
manakai_entity_base_uri, strict_error_checking, |
218 |
|
xml_encoding, xml_version, xml_standalone): Implemented. |
219 |
|
|
220 |
|
* DOMElement.pm (manakai_base_uri, base_uri): Implemented. |
221 |
|
(get_attribute, get_attribute_node): Alpha version. |
222 |
|
(set_attribute_node, set_attribute_node_ns): Implemented. |
223 |
|
(set_attribute_ns): Accept non-ARRAY qualified name. |
224 |
|
|
225 |
|
* DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|, |
226 |
|
|NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added. |
227 |
|
|
228 |
|
* DocumentType.pm (public_id, system_id): Implemented. |
229 |
|
(base_uri, declaration_base_uri, manakai_declaration_base_uri, |
230 |
|
manakai_append_text): Implemented. |
231 |
|
(element_types, general_entities, notations, |
232 |
|
set_element_type_definition_node, set_general_entity_node, |
233 |
|
set_notation_node): Alpha version. |
234 |
|
|
235 |
|
* ElementTypeDefinition.pm (manakai_append_text): Implemented. |
236 |
|
(attribute_definitions, set_attribute_definition_node): Alpha version. |
237 |
|
|
238 |
|
* Entity.pm (has_replacement_tree, public_id, system_id, |
239 |
|
manakai_declaration_base_uri, manakai_entity_base_uri, |
240 |
|
manakai_entity_uri): Implemented. |
241 |
|
|
242 |
|
* EntityReference.pm (manakai_expanded, manakai_external): Implemented. |
243 |
|
(base_uri, manakai_entity_base_uri): Implemented. |
244 |
|
|
245 |
|
* Node.pm (base_uri): Implemented. |
246 |
|
(text_content): Don't check read-only or not |
247 |
|
unless |strict_error_checking|. |
248 |
|
(manakai_append_text): Implemented. |
249 |
|
(get_feature): Alpha. |
250 |
|
(manakai_set_read_only): Implemented. |
251 |
|
|
252 |
|
* Notation.pm (public_id, system_id, manakai_append_text, |
253 |
|
manakai_declaration_base_uri): Implemented. |
254 |
|
|
255 |
|
* ProcessingInstruction.pm (manakai_base_uri, |
256 |
|
base_uri, manakai_append_text): Implemented. |
257 |
|
|
258 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
259 |
|
|
260 |
|
* DOMConfiguration.pm: New module. |
261 |
|
|
262 |
|
* Attr.pm (trivial accessor for read-write attributes): Throw |
263 |
|
an exception if the node is read-only. Delete the property |
264 |
|
if undef is specified. |
265 |
|
(prefix): Implemented. |
266 |
|
|
267 |
|
* DOMElement.pm (trivial accessor for read-write attributes): Throw |
268 |
|
an exception if the node is read-only. Delete the property |
269 |
|
if undef is specified. |
270 |
|
(prefix): Implemented. |
271 |
|
(text_content, manakai_append_text): Old implementations are removed. |
272 |
|
|
273 |
|
* DOMCharacterData.pm (text_content): Implemented. |
274 |
|
|
275 |
|
* DOMDocument.pm (____new): Initialize the strict-document-children |
276 |
|
parameter by true. |
277 |
|
(text_content): Reimplemented. |
278 |
|
(dom_config): New. |
279 |
|
|
280 |
|
* DOMException.pm (READ_ONLY_NODE_ERR): New subtype. |
281 |
|
|
282 |
|
* DocumentType.pm (text_content): Implemented. |
283 |
|
|
284 |
|
* ElementTypeDefinition.pm (text_content): Implemented. |
285 |
|
|
286 |
|
* Node.pm (___report_error): New method. |
287 |
|
(text_content): Implemented. |
288 |
|
(manakai_append_text): Copied from |DOMElement.pm|. |
289 |
|
|
290 |
|
* Notation.pm (text_content): Implemented. |
291 |
|
|
292 |
|
* ProcessingInstruction.pm (text_content): Implemented. |
293 |
|
|
294 |
|
* Text.pm (is_element_content_whitespace): Alpha version. |
295 |
|
|
296 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
297 |
|
|
298 |
|
* DOMException.pm (Message::IF::DOMException): Extends |
299 |
|
the |Message::Util::Error| class. |
300 |
|
|
301 |
|
* NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class. |
302 |
|
(CLEAR): Not all items were removed. |
303 |
|
|
304 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
305 |
|
|
306 |
|
* Attr.pm, AttributeDefinition.pm, DocumentFragment.pm, |
307 |
|
DocumentType.pm, Entity.pm, |
308 |
|
EntityReference.pm (____new): Initialize |child_nodes| by an empty list. |
309 |
|
|
310 |
|
* Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm, |
311 |
|
Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned. |
312 |
|
|
313 |
|
* DOMDocument.pm (AUTOLOAD): Typo fixed. |
314 |
|
|
315 |
|
* Node.pm (==, !=): Implemented. |
316 |
|
(manakai_read_only): Implemented. |
317 |
|
(is_same_node): Implemented. |
318 |
|
(is_equal_node): Alpha version. |
319 |
|
(manakai_set_read_only): Alpha version. |
320 |
|
(child_nodes, first_child, last_child, previous_sibling): Duplicate |
321 |
|
definitions are removed. |
322 |
|
|
323 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
324 |
|
|
325 |
|
* Node.pm: First alpha version of implementation of attributes. |
326 |
|
|
327 |
|
2007-06-15 Wakaba <wakaba@suika.fam.cx> |
328 |
|
|
329 |
|
* ProcessingInstruction.pm, EntityReference.pm, |
330 |
|
CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm, |
331 |
|
ElementTypeDefinition.pm, AttributeDefinition.pm, |
332 |
|
DocumentType.pm, DOMElement.pm, Attr.pm, |
333 |
|
CharacterData.pm, Text.pm, Comment.pm (node_name, |
334 |
|
node_value, node_type): Implemented. |
335 |
|
|
336 |
|
2007-06-14 Wakaba <wakaba@suika.fam.cx> |
337 |
|
|
338 |
|
* Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm, |
339 |
|
CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm, |
340 |
|
AttributeDefinition.pm: New modules. |
341 |
|
|
342 |
|
* DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added. |
343 |
|
(create_attribute_definition, create_element_type_definition, |
344 |
|
create_document_type_definition, create_cdata_section, |
345 |
|
create_processing_instruction, create_entity_reference, |
346 |
|
create_general_entity, create_notation): Prototypes added. |
347 |
|
|
348 |
|
* DOMImplementation.pm (create_document_type): Prototype added. |
349 |
|
|
350 |
|
* DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition' |
351 |
|
and 'Message::IF::DocumentTypeDeclaration' added. |
352 |
|
(create_document_type, create_document_type_definition): |
353 |
|
New methods. |
354 |
|
|
355 |
|
2007-06-13 Wakaba <wakaba@suika.fam.cx> |
356 |
|
|
357 |
|
* DOMImplementation.pm, Node.pm, DOMDocument.pm, |
358 |
|
DOMElement.pm, Attr.pm, DocumentType.pm, |
359 |
|
DOMCharacterData.pm, Text.pm, Comment.pm: Copied |
360 |
|
from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>. |
361 |
|
|
362 |
|
2007-06-10 Wakaba <wakaba@suika.fam.cx> |
363 |
|
|
364 |
|
* XMLParser.dis: Default to "1.0" if <?xml version=""?> |
365 |
|
specifies unknown value and trys to recover from the error. |
366 |
|
|
367 |
|
2007-05-13 Wakaba <wakaba@suika.fam.cx> |
368 |
|
|
369 |
|
* TreeCore.dis (manakaiLocalName): New attribute. |
370 |
|
|
371 |
|
2007-01-02 Wakaba <wakaba@suika.fam.cx> |
372 |
|
|
373 |
|
* GenericLS.dis (GLSException): New interface. |
374 |
|
|
375 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
376 |
|
|
377 |
|
* |InputProcessor|s and |OutputProcessor|s are |
378 |
|
named so that |report| statements in Perl |
379 |
|
module outputs can be identified by name. |dis:dataType|s |
380 |
|
of |DISCore:TFQNames| are all replaced |
381 |
|
by |DISCore:QName|. |
382 |
|
|
383 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
384 |
|
|
385 |
|
* Element.dis (createElementNS): If an array reference |
386 |
|
is specified as the |qualifiedName| parameter, |
387 |
|
don't set the first item as the local name |
388 |
|
even if the second item is not specified (or |
389 |
|
specified as |undef|). |
390 |
|
(createElementNS, setAttribute, setAttributeNS, |
391 |
|
removeAttribute, removeAttributeNS, |
392 |
|
setAttributeNode, setAttributeNodeNS, |
393 |
|
removeAttributeNode, removeAttributeNodeNS): Sets |
394 |
|
or removes the |tc:contentAttributeList| value. |
395 |
|
|
396 |
|
* TreeCore.dis (AttrMap.item): Caches the result |
397 |
|
of sorting of content attribute names. |
398 |
|
(getAttrMap, getElementTypeDefNodeMap, |
399 |
|
getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed. |
400 |
|
(tc:contentAttributeList): New property. |
401 |
|
|
402 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
403 |
|
|
404 |
|
* DOMFeature.dis (ForDef): Removed. |
405 |
|
(f:provides, f:through): Removed. |
406 |
|
(Version): Removed. |
407 |
|
(implementFeature): Removed. |
408 |
|
|
409 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
410 |
|
|
411 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
412 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
413 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
414 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
415 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications |
416 |
|
are removed. |
417 |
|
|
418 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
419 |
|
|
420 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
421 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
422 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
423 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
424 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications |
425 |
|
and |DefaultFor|s are removed. |
426 |
|
|
427 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
428 |
|
|
429 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
430 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
431 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
432 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
433 |
|
SimpleLS.dis, DOMMain.dis: References |
434 |
|
to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|, |
435 |
|
|ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3| |
436 |
|
modes are removed. |
437 |
|
|
438 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
439 |
|
|
440 |
|
* CharacterData.dis, TreeCore.dis (Require): References |
441 |
|
to the |Grove.dis| module are removed. |
442 |
|
|
443 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
444 |
|
|
445 |
|
* DOMFeature.dis (f:implementation, f:revImplementation): Removed. |
446 |
|
(Require): Reference to the |Grove.dis| module is removed. |
447 |
|
|
448 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
449 |
|
|
450 |
|
* DOMCore.dis (ManakaiDOMImplementation): The |
451 |
|
class is no longer plays the role of |
452 |
|
a |mg:NodeRefRole|. Redundant |f:provides| |
453 |
|
properties are removed. |
454 |
|
|
455 |
|
2006-12-29 Wakaba <wakaba@suika.fam.cx> |
456 |
|
|
457 |
|
* TreeCore.dis, DOMCore.dis, Document.dis, |
458 |
|
Element.dis, CharacterData.dis, XML.dis, |
459 |
|
XDoctype.dis, DOMString.dis, TreeStore.dis, |
460 |
|
XMLParser.dis: Use Perl native |
461 |
|
hashs and |Scalar::Util|'s weak references in favor of |Grove.dis| |
462 |
|
for DOM nodes. See |
463 |
|
also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>. |
464 |
|
|
465 |
|
2006-12-03 Wakaba <wakaba@suika.fam.cx> |
466 |
|
|
467 |
|
* DOMFeature.dis, TreeCore.dis: Unused |role|s are removed. |
468 |
|
|
469 |
|
2006-12-02 Wakaba <wakaba@suika.fam.cx> |
470 |
|
|
471 |
|
* DOMString.dis: New module. |
472 |
|
|
473 |
|
* DOMString.pm: New file. |
474 |
|
|
475 |
|
* DOMCore.dis (min): Moved from |DOMFeature.dis|. |
476 |
|
(ImplementationRegistryVariable): Moved from |DOMFeature.dis|. |
477 |
|
Now it references the |DOMImplementationRegistry| object. |
478 |
|
(DOMImplementationRegistryVariable): Moved from |DOMMain.dis|. |
479 |
|
(DOMImplementationRegistry): New interface and |
480 |
|
class, reformed from |ImplementationRegistry| in |DOMFeature.dis| |
481 |
|
and |DOMImplementationRegistry| in |DOMMain.dis|. Note |
482 |
|
that the class no longer support |get_implementation| |
483 |
|
and |get_implementation_list| methods from |
484 |
|
the |ImplementationRegistry| interface. |
485 |
|
(DOMImplementationList): Class implemented; no |
486 |
|
longer inherits from |ImplementationList|. |
487 |
|
(DOMImplementationSource): Class implemented; no |
488 |
|
longer inherits from |ImplementationSource|. Note that |
489 |
|
the class no longer support |get_implementation| |
490 |
|
and |get_implementation_list| methods from |
491 |
|
the |ImplementationSource| interface. |
492 |
|
(DOMStringList): Removed. |
493 |
|
|
494 |
|
* DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature, |
495 |
|
ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature, |
496 |
|
ManakaiDOM:DOMXMLFeatureXML11, most part of |
497 |
|
documentation for obsolete DOM Level 3 Minimum Implementation |
498 |
|
module, obsolete property name aliases, |
499 |
|
ImplemenationRegistryVar, ImplementationRegistry, |
500 |
|
DEBUG, MIString, ImplementationList, ImplementationSource, |
501 |
|
ManakaiDOM:implID): Removed. |
502 |
|
|
503 |
|
* DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed. |
504 |
|
(DOMString): Removed. |
505 |
|
(DOMImplementationRegistryVar, DOMImplementationRegistry): Removed. |
506 |
|
|
507 |
|
* Makefile: |DOMString.pm| is added. |
508 |
|
|
509 |
|
* TreeCore.dis (is_default_namespace): |null| was |
510 |
|
returned where a false is expected (|null| is |
511 |
|
a false in Perl, but real |false| is appropriate here). |
512 |
|
|
513 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
514 |
|
|
515 |
|
* DOMCore.dis (TypeInfo, UserDataHandler): Removed. |
516 |
|
|
517 |
|
* Element.dis (TypeInfo): Moved from |DOMCore.dis|. |
518 |
|
|
519 |
|
* TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|. |
520 |
|
|
521 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
522 |
|
|
523 |
|
* DOMFeature.dis (ImplementationList, ImplementationSource, |
524 |
|
ImplementationRegistry): Parameters |features| |
525 |
|
now allow |null| (equivalent to an empty string). |
526 |
|
|
527 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
528 |
|
|
529 |
|
* CharacterData.dis (ManakaiDOMDocumentCharacterData): New |
530 |
|
class. Factory methods |createTextNode| and |createComment| |
531 |
|
are moved from |ManakaiDOMDocument|. |
532 |
|
|
533 |
|
* DOMCore.dis: References to |ManakaiDOMObject| |
534 |
|
are removed. |
535 |
|
(tc:createImplForTest): Moved from |TreeCore.dis|. |
536 |
|
(DOMImplementation.___create_node_ref): Support |
537 |
|
for the |mg:nodeRefClass| option is removed. |
538 |
|
(ManakaiDOMConfiguration.___report_error): Moved |
539 |
|
from |ManakaiDOMObject| class. |
540 |
|
|
541 |
|
* DOMFeature.dis (domidl:extends): New property. |
542 |
|
(f:getFeatureImpl): Support for |+| classes is removed. |
543 |
|
|
544 |
|
* DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed. |
545 |
|
(ManakaiDOM:ManakaiDOMObject): Removed. |
546 |
|
(DOMDataType): Removed. |
547 |
|
|
548 |
|
* Document.dis (ManakaiDOMImplementationDocument): |
549 |
|
The |createDocument| method is moved from |
550 |
|
the |ManakaiDOMImplementationTC| in |TreeCore.dis|. |
551 |
|
(ManakaiDOMDocument.___create_node_ref): Removed. |
552 |
|
(createElement, createElementNS, createAttribute, |
553 |
|
createAttributeNS, createTextNode, createComment, |
554 |
|
createCDATASection, createEntityReference, |
555 |
|
createProcessingInstruction): Class implementations |
556 |
|
are moved to each module. |
557 |
|
|
558 |
|
* Element.dis (ManakaiDOMImplementationElement): Factory |
559 |
|
methods are moved from |Document.dis|. |
560 |
|
(ManakaiDOMElement.___create_node_ref): Support |
561 |
|
for old class registry is removed. |
562 |
|
(ManakaiDOMAttr.___create_node_ref): Removed. |
563 |
|
(Attr.baseURI): Implementation |
564 |
|
for |xml:base| attribute is merged. |
565 |
|
(Attr.nodeValue, Attr.value): Implementation |
566 |
|
for |xml:id| attribute is merged. |
567 |
|
|
568 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Removed. |
569 |
|
|
570 |
|
* XDoctype.dis (ManakaiDOMImplementationXDoctype): The |
571 |
|
definition for |createDocumentType| method |
572 |
|
is moved from |TreeCore.dis|. |
573 |
|
|
574 |
|
* XML.dis (ManakaiDOMXMLDocument): Factory |
575 |
|
methods are moved from |Document.dis|. |
576 |
|
(ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged |
577 |
|
into |ManakaiDOMAttr| in |Element.dis|). |
578 |
|
|
579 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
580 |
|
|
581 |
|
* Element.dis (___get_node_ref): |eval|ed |require| |
582 |
|
statement was broken. |
583 |
|
|
584 |
|
* DOMFeature.dis (getImplementationList): Argument |
585 |
|
is not passed to the |getImplementation| method. |
586 |
|
|
587 |
|
* TreeStore.dis (DOMImplementationTreeStore): It |
588 |
|
did not |f:implements| the |TSFeature30| feature. |
589 |
|
|
590 |
|
* XMLParser.dis: Use |create_uri_reference| |
591 |
|
method instead of internal |_new| method |
592 |
|
to create a URI reference object. |
593 |
|
|
594 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
595 |
|
|
596 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
597 |
|
explicitly inherits |urigen:ManakaiURIImplementation| (and |
598 |
|
the |f:ManakaiMinimumImplementation| class inherited |
599 |
|
by it). The |f:Minimum| feature is ever implemented |
600 |
|
for compatibility (but is expected to be removed). |
601 |
|
Internal methods such as |___report_error| are copied from |
602 |
|
obsolete |f:MinimumImplementation| class. DOM3 |
603 |
|
methods |hasFeature| and |getFeature| are also |
604 |
|
moved from that class, but they now support no |
605 |
|
foreign classes. |
606 |
|
|
607 |
|
* DOMFeature.dis (ManakaiImplementationSource): It |
608 |
|
now |p:require|s |Message::Util::AutoLoad::Registry|. |
609 |
|
The class no longer support classes |
610 |
|
other than |ManakaiDOMImplementation|. Note |
611 |
|
that the |ImplementationRegistry| object does continue |
612 |
|
to support foreign classes via foreign classes |
613 |
|
implementing |ImplementationSource| |
614 |
|
or |DOMImplementationSource| interface. |
615 |
|
(MinimumImplementation): Removed. |
616 |
|
|
617 |
|
* DOMLS.dis (ManakaiDOMImplementationLS): It no |
618 |
|
longer inherit the |ManakaiDOMImplementation|; it |
619 |
|
is now expected to be implemented by |DOMImplementation| |
620 |
|
objects. |
621 |
|
|
622 |
|
* DOMMain.dis (null): Removed. |
623 |
|
|
624 |
|
* Document.dis (___create_node_ref): It no |
625 |
|
longer support foreign classes other |
626 |
|
than |Message::DOM::Document::ManakaiDOMDocument|. |
627 |
|
Note that document format specific DOM |
628 |
|
interfaces, if supported, should be |
629 |
|
all instances of the |Document| interface |
630 |
|
in the implementation, as defined |
631 |
|
in the Web Applications 1.0 specification (where |
632 |
|
the |HTMLDocument| interface must be implemented |
633 |
|
by all |Document| objects, even if the |Document| |
634 |
|
contains no HTML element). |
635 |
|
|
636 |
|
* GenericLS.dis (GLSImplementation): It no |
637 |
|
longer inherit the |MinimumImplementation|; it |
638 |
|
is now expected to be implemented by |DOMImplementation| |
639 |
|
objects. |
640 |
|
(createGLSParser, createGLSSerializer): Load |
641 |
|
module implementing parser or serializer |
642 |
|
if necessary. |
643 |
|
|
644 |
|
* Traversal.dis (ManakaiDOMDocumentTraversal): It no |
645 |
|
longer inherits the |ManakaiDOMDocument|; it |
646 |
|
is now expected to be implemented by |Document| |
647 |
|
objects. |
648 |
|
|
649 |
|
* XDP.dis (XDPDocument): It no longer |
650 |
|
inherits the |Document|; it is now expected |
651 |
|
to be implemented by all |Document| objects. |
652 |
|
|
653 |
|
* XDoctype.dis (ManakaiDOMDocumentXDoctype): It no |
654 |
|
longer inherits the |ManakaiDOMDocument|; it |
655 |
|
is now expected to be implemented by |Document| |
656 |
|
objects. |
657 |
|
|
658 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
659 |
|
|
660 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
661 |
|
explicitly inherits |tc:ManakaiDOMImplementationTC|. |
662 |
|
(ManakaiDOMImplementation.AUTOLOAD): New method definition. |
663 |
|
|
664 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Extends |
665 |
|
the |ManakaiDOMImplementation| class. |
666 |
|
|
667 |
|
2006-11-03 Wakaba <wakaba@suika.fam.cx> |
668 |
|
|
669 |
|
* DOMFeature.dis: Definitions for various concepts |
670 |
|
are added. |
671 |
|
|
672 |
|
* GenericLS.dis (GLSImplementation): It no |
673 |
|
longer inherits the |MinimumImplementation|; rather, |
674 |
|
any |ManakaiMinimumImplementation| object also |
675 |
|
implements |GLSImplementation| methods. |
676 |
|
|
677 |
|
* TreeStore.dis (DOMImplementationTreeStore): It no |
678 |
|
longer inherits the |DOMImplementation|; rather, |
679 |
|
any |ManakaiDOMImplementation| object also |
680 |
|
implements |DOMImplementationTreeStore| methods. |
681 |
|
|
682 |
|
2006-08-15 Wakaba <wakaba@suika.fam.cx> |
683 |
|
|
684 |
|
* TreeStore.pm: Added to the CVS repository |
685 |
|
to enable for the dis database to contain XML |
686 |
|
fragments. |
687 |
|
|
688 |
|
* Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added. |
689 |
|
|
690 |
|
* TreeStore.dis (Namespace): Namespace URI was incorrect. |
691 |
|
|
692 |
|
2006-06-18 Wakaba <wakaba@suika.fam.cx> |
693 |
|
|
694 |
|
* Traversal.dis (expandEntityReferences): Syntax was incorrect. |
695 |
|
|
696 |
|
* TreeCore.dis (manakaiReadOnly): Test assertion was incorrect. |
697 |
|
|
698 |
|
* XDP.dis (dtdText): Test assertion was incorrect. |
699 |
|
|
700 |
|
2006-05-21 Wakaba <wakaba@suika.fam.cx> |
701 |
|
|
702 |
|
* XDP.dis (XDPEntityValue.stringify): Don't escape |
703 |
|
any |%|s in |xdp:attr-definition| children. |
704 |
|
|
705 |
|
2006-05-20 Wakaba <wakaba@suika.fam.cx> |
706 |
|
|
707 |
|
* XDP.dis (createXDPRNIKeyword): The Perl method |
708 |
|
name property is added. |
709 |
|
|
710 |
|
2006-05-20 Wakaba <wakaba@suika.fam.cx> |
711 |
|
|
712 |
|
* XDP.dis (createXDPIf): New method. |
713 |
|
(XDPIfElement): New interface. |
714 |
|
|
715 |
|
2006-05-15 Wakaba <wakaba@suika.fam.cx> |
716 |
|
|
717 |
|
* XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition): |
718 |
|
New methods. |
719 |
|
|
720 |
|
2006-05-15 Wakaba <wakaba@suika.fam.cx> |
721 |
|
|
722 |
|
* XDP.dis (XDPDocument): A number of constructor methods |
723 |
|
are added. |
724 |
|
(XDPTextDecl.dtdText): The |xml| target was missing. |
725 |
|
|
726 |
|
2006-05-14 Wakaba <wakaba@suika.fam.cx> |
727 |
|
|
728 |
|
* Traversal.dis (SerialWalker): New interface. |
729 |
|
(manakaiCreateSerialWalker): New method. |
730 |
|
|
731 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
732 |
|
|
733 |
|
* Traversal.dis (testNode): Calls |acceptNode| method |
734 |
|
rather than |&{}| dereferencing. |
735 |
|
(acceptNode): Implemented. |
736 |
|
|
737 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
738 |
|
|
739 |
|
* XDP.dis: New module. |
740 |
|
|
741 |
|
* Makefile: |XDP.dis| is added. |
742 |
|
|
743 |
|
* Traversal.dis (NodeFilter): |InputProcessor| |
744 |
|
and |OutputProcessor| are added. |
745 |
|
|
746 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
747 |
|
|
748 |
|
* Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value. |
749 |
|
(TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support |
750 |
|
is added. The |FILTER_REJECT| value is treated |
751 |
|
as |FILTER_ACCEPT| if the |currentNode| is in the |
752 |
|
rejected subtree as specified in the spec. |
753 |
|
|
754 |
|
2006-05-05 Wakaba <wakaba@suika.fam.cx> |
755 |
|
|
756 |
|
* SimpleLS.dis: An |xmlns:| prefix was missing. |
757 |
|
|
758 |
|
2006-05-04 Wakaba <wakaba@suika.fam.cx> |
759 |
|
|
760 |
|
* SimpleLS.dis: Namespace bugs are fixed. |
761 |
|
|
762 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
763 |
|
|
764 |
|
* .cvsignore: Updated. |
765 |
|
|
766 |
|
* Traversal.dis: Unused declarations are removed. |
767 |
|
|
768 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
769 |
|
|
770 |
|
* CharacterData.dis (Require): A reference to |
771 |
|
the |MDOM:Traversal| module is added. |
772 |
|
(wholeText): Implemented. |
773 |
|
|
774 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
775 |
|
|
776 |
|
* Makefile: |Traversal.dis| is added. |
777 |
|
|
778 |
|
* Traversal.dis: New module. |
779 |
|
|
780 |
|
* TreeCore.dis (___report_error): Return value was |
781 |
|
not propagated. |
782 |
|
|
783 |
2006-04-29 Wakaba <wakaba@suika.fam.cx> |
2006-04-29 Wakaba <wakaba@suika.fam.cx> |
784 |
|
|
785 |
* Element.dis (removeAttributeNS): A runtime error |
* Element.dis (removeAttributeNS): A runtime error |