1 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* DOMDocument.pm (adopt_node): Implemented. |
4 |
|
(doctype): Implemented. |
5 |
|
|
6 |
|
* DOMElement.pm (remove_attribute_node): Alpha version. |
7 |
|
|
8 |
|
* DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New |
9 |
|
error type. |
10 |
|
|
11 |
|
* Node.pm (set_user_data): Implemented. |
12 |
|
|
13 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
14 |
|
|
15 |
|
* DOMImplementation.pm (new): New method name for |____new|. |
16 |
|
It will be defined in the DOM Perl Binding specification |
17 |
|
as part of |DOMImplementation| interface. |
18 |
|
($HasFeature): Defined for features support. |
19 |
|
(has_feature, get_feature): Implemented. |
20 |
|
|
21 |
|
* DOMStringList.pm: Don't load the |Message::DOM::DOMException| |
22 |
|
module unless necessary. |
23 |
|
(___report_error): Removed since it is not used in fact. |
24 |
|
|
25 |
|
* DOMImplementationList.pm, DOMImplementationSource.pm, |
26 |
|
DOMImplementationRegistry.pm: New modules. |
27 |
|
|
28 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
29 |
|
|
30 |
|
* AttributeDefinition.pm (allowed_tokens): Implemented. |
31 |
|
|
32 |
|
* DOMStringList.pm: New Perl module. |
33 |
|
|
34 |
|
2007-06-26 Wakaba <wakaba@suika.fam.cx> |
35 |
|
|
36 |
|
* DOMElement.pm (clone_node): Alpha version. It did not work |
37 |
|
at all. |
38 |
|
|
39 |
|
2007-06-24 Wakaba <wakaba@suika.fam.cx> |
40 |
|
|
41 |
|
* ProcessingInstruction.pm (data): Now it is a read-write attribute. |
42 |
|
|
43 |
|
2007-06-23 Wakaba <wakaba@suika.fam.cx> |
44 |
|
|
45 |
|
* DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented. |
46 |
|
(manakai_is_html): Revised. |
47 |
|
(Document): Now it implements the |HTMLDocument| interface. |
48 |
|
(adopt_node): Alpha version. |
49 |
|
|
50 |
|
* AttributeDefinition.pm (allowed_tokens): |allowed_tokens|, |
51 |
|
not |allowed_token|! |
52 |
|
|
53 |
|
* ElementTypeDefinition.pm (attribute_definitions): Don't |
54 |
|
return an |undef| even if its |attribute_definitions| |
55 |
|
list is not created. |
56 |
|
|
57 |
|
2007-06-21 Wakaba <wakaba@suika.fam.cx> |
58 |
|
|
59 |
|
* Comment.pm (node_type): Node type was incorrect! |
60 |
|
|
61 |
|
* DOMConfiguration.pm (get_parameter): Alpha. |
62 |
|
|
63 |
|
* DOMImplementation.pm (create_mc_decode_handler, |
64 |
|
create_charset_name_from_uri, create_uri_from_charset_name): |
65 |
|
New autoload configuration. Note that the Message::Charset::Encode |
66 |
|
module is subject to change. |
67 |
|
|
68 |
|
* XMLParserTemp.pm: Now it can be used with new version |
69 |
|
of DOM implementation. Current plan is to replace it by |
70 |
|
an XML5 parser someday. |
71 |
|
|
72 |
|
2007-06-21 Wakaba <wakaba@suika.fam.cx> |
73 |
|
|
74 |
|
* DOMLocator.pm: New module. |
75 |
|
|
76 |
|
* DOMError.pm: New module. |
77 |
|
|
78 |
|
2007-06-20 Wakaba <wakaba@suika.fam.cx> |
79 |
|
|
80 |
|
* Node.pm (manakai_expanded_uri, manakai_parent_element, |
81 |
|
clone_node, compare_document_position, has_attributes, |
82 |
|
has_child_nodes, is_default_namespace, lookup_namespace_uri, |
83 |
|
lookup_prefix, normalize): Implemented. |
84 |
|
|
85 |
|
* DOMElement.pm (remove_attribute, set_attribute): Alpha version. |
86 |
|
|
87 |
|
* DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error. |
88 |
|
|
89 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
90 |
|
|
91 |
|
* AttributeDefinition.pm (____new): Set an empty list |
92 |
|
to the |allowed_tokens| attribute. |
93 |
|
(allowed_token): Alpha version. |
94 |
|
|
95 |
|
* DocumentType.pm (get_element_type_definition_node, |
96 |
|
get_notation_node): ALpha version. |
97 |
|
|
98 |
|
* ElementTypeDefinition.pm (attribute_definitions): Alpha 2 |
99 |
|
version. |
100 |
|
|
101 |
|
* Entity.pm (notation_name): Implemented. |
102 |
|
|
103 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
104 |
|
|
105 |
|
* Attr.pm (____new): Initialize |specified| as 1. |
106 |
|
(base_uri, manakai_attribute_type, specified): Implemented. |
107 |
|
(prefix): Don't check read-only flag unless |strict_error_checking|. |
108 |
|
(value): Call |text_content| for now. |
109 |
|
|
110 |
|
* AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added. |
111 |
|
(declared_type, default_type): Implemented. |
112 |
|
|
113 |
|
* CharacterData.pm (____new): Allow a scalar reference |
114 |
|
as an input for the |data| attribute. |
115 |
|
(base_uri, manakai_append_text): Implemented. |
116 |
|
|
117 |
|
* DOMConfiguration.pm (set_parameter): Resetting implemented. |
118 |
|
|
119 |
|
* DOMDocument.pm (____new): Set default values to |
120 |
|
configuration parameter whose default is true. |
121 |
|
(document_uri, input_encoding): Implemented. |
122 |
|
(all_declarations_processed, manakai_is_html): Implemented. |
123 |
|
(base_uri, manakai_append_text, |
124 |
|
manakai_entity_base_uri, strict_error_checking, |
125 |
|
xml_encoding, xml_version, xml_standalone): Implemented. |
126 |
|
|
127 |
|
* DOMElement.pm (manakai_base_uri, base_uri): Implemented. |
128 |
|
(get_attribute, get_attribute_node): Alpha version. |
129 |
|
(set_attribute_node, set_attribute_node_ns): Implemented. |
130 |
|
(set_attribute_ns): Accept non-ARRAY qualified name. |
131 |
|
|
132 |
|
* DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|, |
133 |
|
|NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added. |
134 |
|
|
135 |
|
* DocumentType.pm (public_id, system_id): Implemented. |
136 |
|
(base_uri, declaration_base_uri, manakai_declaration_base_uri, |
137 |
|
manakai_append_text): Implemented. |
138 |
|
(element_types, general_entities, notations, |
139 |
|
set_element_type_definition_node, set_general_entity_node, |
140 |
|
set_notation_node): Alpha version. |
141 |
|
|
142 |
|
* ElementTypeDefinition.pm (manakai_append_text): Implemented. |
143 |
|
(attribute_definitions, set_attribute_definition_node): Alpha version. |
144 |
|
|
145 |
|
* Entity.pm (has_replacement_tree, public_id, system_id, |
146 |
|
manakai_declaration_base_uri, manakai_entity_base_uri, |
147 |
|
manakai_entity_uri): Implemented. |
148 |
|
|
149 |
|
* EntityReference.pm (manakai_expanded, manakai_external): Implemented. |
150 |
|
(base_uri, manakai_entity_base_uri): Implemented. |
151 |
|
|
152 |
|
* Node.pm (base_uri): Implemented. |
153 |
|
(text_content): Don't check read-only or not |
154 |
|
unless |strict_error_checking|. |
155 |
|
(manakai_append_text): Implemented. |
156 |
|
(get_feature): Alpha. |
157 |
|
(manakai_set_read_only): Implemented. |
158 |
|
|
159 |
|
* Notation.pm (public_id, system_id, manakai_append_text, |
160 |
|
manakai_declaration_base_uri): Implemented. |
161 |
|
|
162 |
|
* ProcessingInstruction.pm (manakai_base_uri, |
163 |
|
base_uri, manakai_append_text): Implemented. |
164 |
|
|
165 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
166 |
|
|
167 |
|
* DOMConfiguration.pm: New module. |
168 |
|
|
169 |
|
* Attr.pm (trivial accessor for read-write attributes): Throw |
170 |
|
an exception if the node is read-only. Delete the property |
171 |
|
if undef is specified. |
172 |
|
(prefix): Implemented. |
173 |
|
|
174 |
|
* DOMElement.pm (trivial accessor for read-write attributes): Throw |
175 |
|
an exception if the node is read-only. Delete the property |
176 |
|
if undef is specified. |
177 |
|
(prefix): Implemented. |
178 |
|
(text_content, manakai_append_text): Old implementations are removed. |
179 |
|
|
180 |
|
* DOMCharacterData.pm (text_content): Implemented. |
181 |
|
|
182 |
|
* DOMDocument.pm (____new): Initialize the strict-document-children |
183 |
|
parameter by true. |
184 |
|
(text_content): Reimplemented. |
185 |
|
(dom_config): New. |
186 |
|
|
187 |
|
* DOMException.pm (READ_ONLY_NODE_ERR): New subtype. |
188 |
|
|
189 |
|
* DocumentType.pm (text_content): Implemented. |
190 |
|
|
191 |
|
* ElementTypeDefinition.pm (text_content): Implemented. |
192 |
|
|
193 |
|
* Node.pm (___report_error): New method. |
194 |
|
(text_content): Implemented. |
195 |
|
(manakai_append_text): Copied from |DOMElement.pm|. |
196 |
|
|
197 |
|
* Notation.pm (text_content): Implemented. |
198 |
|
|
199 |
|
* ProcessingInstruction.pm (text_content): Implemented. |
200 |
|
|
201 |
|
* Text.pm (is_element_content_whitespace): Alpha version. |
202 |
|
|
203 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
204 |
|
|
205 |
|
* DOMException.pm (Message::IF::DOMException): Extends |
206 |
|
the |Message::Util::Error| class. |
207 |
|
|
208 |
|
* NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class. |
209 |
|
(CLEAR): Not all items were removed. |
210 |
|
|
211 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
212 |
|
|
213 |
|
* Attr.pm, AttributeDefinition.pm, DocumentFragment.pm, |
214 |
|
DocumentType.pm, Entity.pm, |
215 |
|
EntityReference.pm (____new): Initialize |child_nodes| by an empty list. |
216 |
|
|
217 |
|
* Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm, |
218 |
|
Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned. |
219 |
|
|
220 |
|
* DOMDocument.pm (AUTOLOAD): Typo fixed. |
221 |
|
|
222 |
|
* Node.pm (==, !=): Implemented. |
223 |
|
(manakai_read_only): Implemented. |
224 |
|
(is_same_node): Implemented. |
225 |
|
(is_equal_node): Alpha version. |
226 |
|
(manakai_set_read_only): Alpha version. |
227 |
|
(child_nodes, first_child, last_child, previous_sibling): Duplicate |
228 |
|
definitions are removed. |
229 |
|
|
230 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
231 |
|
|
232 |
|
* Node.pm: First alpha version of implementation of attributes. |
233 |
|
|
234 |
|
2007-06-15 Wakaba <wakaba@suika.fam.cx> |
235 |
|
|
236 |
|
* ProcessingInstruction.pm, EntityReference.pm, |
237 |
|
CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm, |
238 |
|
ElementTypeDefinition.pm, AttributeDefinition.pm, |
239 |
|
DocumentType.pm, DOMElement.pm, Attr.pm, |
240 |
|
CharacterData.pm, Text.pm, Comment.pm (node_name, |
241 |
|
node_value, node_type): Implemented. |
242 |
|
|
243 |
|
2007-06-14 Wakaba <wakaba@suika.fam.cx> |
244 |
|
|
245 |
|
* Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm, |
246 |
|
CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm, |
247 |
|
AttributeDefinition.pm: New modules. |
248 |
|
|
249 |
|
* DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added. |
250 |
|
(create_attribute_definition, create_element_type_definition, |
251 |
|
create_document_type_definition, create_cdata_section, |
252 |
|
create_processing_instruction, create_entity_reference, |
253 |
|
create_general_entity, create_notation): Prototypes added. |
254 |
|
|
255 |
|
* DOMImplementation.pm (create_document_type): Prototype added. |
256 |
|
|
257 |
|
* DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition' |
258 |
|
and 'Message::IF::DocumentTypeDeclaration' added. |
259 |
|
(create_document_type, create_document_type_definition): |
260 |
|
New methods. |
261 |
|
|
262 |
|
2007-06-13 Wakaba <wakaba@suika.fam.cx> |
263 |
|
|
264 |
|
* DOMImplementation.pm, Node.pm, DOMDocument.pm, |
265 |
|
DOMElement.pm, Attr.pm, DocumentType.pm, |
266 |
|
DOMCharacterData.pm, Text.pm, Comment.pm: Copied |
267 |
|
from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>. |
268 |
|
|
269 |
|
2007-06-10 Wakaba <wakaba@suika.fam.cx> |
270 |
|
|
271 |
|
* XMLParser.dis: Default to "1.0" if <?xml version=""?> |
272 |
|
specifies unknown value and trys to recover from the error. |
273 |
|
|
274 |
|
2007-05-13 Wakaba <wakaba@suika.fam.cx> |
275 |
|
|
276 |
|
* TreeCore.dis (manakaiLocalName): New attribute. |
277 |
|
|
278 |
|
2007-01-02 Wakaba <wakaba@suika.fam.cx> |
279 |
|
|
280 |
|
* GenericLS.dis (GLSException): New interface. |
281 |
|
|
282 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
283 |
|
|
284 |
|
* |InputProcessor|s and |OutputProcessor|s are |
285 |
|
named so that |report| statements in Perl |
286 |
|
module outputs can be identified by name. |dis:dataType|s |
287 |
|
of |DISCore:TFQNames| are all replaced |
288 |
|
by |DISCore:QName|. |
289 |
|
|
290 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
291 |
|
|
292 |
|
* Element.dis (createElementNS): If an array reference |
293 |
|
is specified as the |qualifiedName| parameter, |
294 |
|
don't set the first item as the local name |
295 |
|
even if the second item is not specified (or |
296 |
|
specified as |undef|). |
297 |
|
(createElementNS, setAttribute, setAttributeNS, |
298 |
|
removeAttribute, removeAttributeNS, |
299 |
|
setAttributeNode, setAttributeNodeNS, |
300 |
|
removeAttributeNode, removeAttributeNodeNS): Sets |
301 |
|
or removes the |tc:contentAttributeList| value. |
302 |
|
|
303 |
|
* TreeCore.dis (AttrMap.item): Caches the result |
304 |
|
of sorting of content attribute names. |
305 |
|
(getAttrMap, getElementTypeDefNodeMap, |
306 |
|
getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed. |
307 |
|
(tc:contentAttributeList): New property. |
308 |
|
|
309 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
310 |
|
|
311 |
|
* DOMFeature.dis (ForDef): Removed. |
312 |
|
(f:provides, f:through): Removed. |
313 |
|
(Version): Removed. |
314 |
|
(implementFeature): Removed. |
315 |
|
|
316 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
317 |
|
|
318 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
319 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
320 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
321 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
322 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications |
323 |
|
are removed. |
324 |
|
|
325 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
326 |
|
|
327 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
328 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
329 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
330 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
331 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications |
332 |
|
and |DefaultFor|s are removed. |
333 |
|
|
334 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
335 |
|
|
336 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
337 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
338 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
339 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
340 |
|
SimpleLS.dis, DOMMain.dis: References |
341 |
|
to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|, |
342 |
|
|ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3| |
343 |
|
modes are removed. |
344 |
|
|
345 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
346 |
|
|
347 |
|
* CharacterData.dis, TreeCore.dis (Require): References |
348 |
|
to the |Grove.dis| module are removed. |
349 |
|
|
350 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
351 |
|
|
352 |
|
* DOMFeature.dis (f:implementation, f:revImplementation): Removed. |
353 |
|
(Require): Reference to the |Grove.dis| module is removed. |
354 |
|
|
355 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
356 |
|
|
357 |
|
* DOMCore.dis (ManakaiDOMImplementation): The |
358 |
|
class is no longer plays the role of |
359 |
|
a |mg:NodeRefRole|. Redundant |f:provides| |
360 |
|
properties are removed. |
361 |
|
|
362 |
|
2006-12-29 Wakaba <wakaba@suika.fam.cx> |
363 |
|
|
364 |
|
* TreeCore.dis, DOMCore.dis, Document.dis, |
365 |
|
Element.dis, CharacterData.dis, XML.dis, |
366 |
|
XDoctype.dis, DOMString.dis, TreeStore.dis, |
367 |
|
XMLParser.dis: Use Perl native |
368 |
|
hashs and |Scalar::Util|'s weak references in favor of |Grove.dis| |
369 |
|
for DOM nodes. See |
370 |
|
also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>. |
371 |
|
|
372 |
|
2006-12-03 Wakaba <wakaba@suika.fam.cx> |
373 |
|
|
374 |
|
* DOMFeature.dis, TreeCore.dis: Unused |role|s are removed. |
375 |
|
|
376 |
|
2006-12-02 Wakaba <wakaba@suika.fam.cx> |
377 |
|
|
378 |
|
* DOMString.dis: New module. |
379 |
|
|
380 |
|
* DOMString.pm: New file. |
381 |
|
|
382 |
|
* DOMCore.dis (min): Moved from |DOMFeature.dis|. |
383 |
|
(ImplementationRegistryVariable): Moved from |DOMFeature.dis|. |
384 |
|
Now it references the |DOMImplementationRegistry| object. |
385 |
|
(DOMImplementationRegistryVariable): Moved from |DOMMain.dis|. |
386 |
|
(DOMImplementationRegistry): New interface and |
387 |
|
class, reformed from |ImplementationRegistry| in |DOMFeature.dis| |
388 |
|
and |DOMImplementationRegistry| in |DOMMain.dis|. Note |
389 |
|
that the class no longer support |get_implementation| |
390 |
|
and |get_implementation_list| methods from |
391 |
|
the |ImplementationRegistry| interface. |
392 |
|
(DOMImplementationList): Class implemented; no |
393 |
|
longer inherits from |ImplementationList|. |
394 |
|
(DOMImplementationSource): Class implemented; no |
395 |
|
longer inherits from |ImplementationSource|. Note that |
396 |
|
the class no longer support |get_implementation| |
397 |
|
and |get_implementation_list| methods from |
398 |
|
the |ImplementationSource| interface. |
399 |
|
(DOMStringList): Removed. |
400 |
|
|
401 |
|
* DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature, |
402 |
|
ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature, |
403 |
|
ManakaiDOM:DOMXMLFeatureXML11, most part of |
404 |
|
documentation for obsolete DOM Level 3 Minimum Implementation |
405 |
|
module, obsolete property name aliases, |
406 |
|
ImplemenationRegistryVar, ImplementationRegistry, |
407 |
|
DEBUG, MIString, ImplementationList, ImplementationSource, |
408 |
|
ManakaiDOM:implID): Removed. |
409 |
|
|
410 |
|
* DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed. |
411 |
|
(DOMString): Removed. |
412 |
|
(DOMImplementationRegistryVar, DOMImplementationRegistry): Removed. |
413 |
|
|
414 |
|
* Makefile: |DOMString.pm| is added. |
415 |
|
|
416 |
|
* TreeCore.dis (is_default_namespace): |null| was |
417 |
|
returned where a false is expected (|null| is |
418 |
|
a false in Perl, but real |false| is appropriate here). |
419 |
|
|
420 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
421 |
|
|
422 |
|
* DOMCore.dis (TypeInfo, UserDataHandler): Removed. |
423 |
|
|
424 |
|
* Element.dis (TypeInfo): Moved from |DOMCore.dis|. |
425 |
|
|
426 |
|
* TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|. |
427 |
|
|
428 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
429 |
|
|
430 |
|
* DOMFeature.dis (ImplementationList, ImplementationSource, |
431 |
|
ImplementationRegistry): Parameters |features| |
432 |
|
now allow |null| (equivalent to an empty string). |
433 |
|
|
434 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
435 |
|
|
436 |
|
* CharacterData.dis (ManakaiDOMDocumentCharacterData): New |
437 |
|
class. Factory methods |createTextNode| and |createComment| |
438 |
|
are moved from |ManakaiDOMDocument|. |
439 |
|
|
440 |
|
* DOMCore.dis: References to |ManakaiDOMObject| |
441 |
|
are removed. |
442 |
|
(tc:createImplForTest): Moved from |TreeCore.dis|. |
443 |
|
(DOMImplementation.___create_node_ref): Support |
444 |
|
for the |mg:nodeRefClass| option is removed. |
445 |
|
(ManakaiDOMConfiguration.___report_error): Moved |
446 |
|
from |ManakaiDOMObject| class. |
447 |
|
|
448 |
|
* DOMFeature.dis (domidl:extends): New property. |
449 |
|
(f:getFeatureImpl): Support for |+| classes is removed. |
450 |
|
|
451 |
|
* DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed. |
452 |
|
(ManakaiDOM:ManakaiDOMObject): Removed. |
453 |
|
(DOMDataType): Removed. |
454 |
|
|
455 |
|
* Document.dis (ManakaiDOMImplementationDocument): |
456 |
|
The |createDocument| method is moved from |
457 |
|
the |ManakaiDOMImplementationTC| in |TreeCore.dis|. |
458 |
|
(ManakaiDOMDocument.___create_node_ref): Removed. |
459 |
|
(createElement, createElementNS, createAttribute, |
460 |
|
createAttributeNS, createTextNode, createComment, |
461 |
|
createCDATASection, createEntityReference, |
462 |
|
createProcessingInstruction): Class implementations |
463 |
|
are moved to each module. |
464 |
|
|
465 |
|
* Element.dis (ManakaiDOMImplementationElement): Factory |
466 |
|
methods are moved from |Document.dis|. |
467 |
|
(ManakaiDOMElement.___create_node_ref): Support |
468 |
|
for old class registry is removed. |
469 |
|
(ManakaiDOMAttr.___create_node_ref): Removed. |
470 |
|
(Attr.baseURI): Implementation |
471 |
|
for |xml:base| attribute is merged. |
472 |
|
(Attr.nodeValue, Attr.value): Implementation |
473 |
|
for |xml:id| attribute is merged. |
474 |
|
|
475 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Removed. |
476 |
|
|
477 |
|
* XDoctype.dis (ManakaiDOMImplementationXDoctype): The |
478 |
|
definition for |createDocumentType| method |
479 |
|
is moved from |TreeCore.dis|. |
480 |
|
|
481 |
|
* XML.dis (ManakaiDOMXMLDocument): Factory |
482 |
|
methods are moved from |Document.dis|. |
483 |
|
(ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged |
484 |
|
into |ManakaiDOMAttr| in |Element.dis|). |
485 |
|
|
486 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
487 |
|
|
488 |
|
* Element.dis (___get_node_ref): |eval|ed |require| |
489 |
|
statement was broken. |
490 |
|
|
491 |
|
* DOMFeature.dis (getImplementationList): Argument |
492 |
|
is not passed to the |getImplementation| method. |
493 |
|
|
494 |
|
* TreeStore.dis (DOMImplementationTreeStore): It |
495 |
|
did not |f:implements| the |TSFeature30| feature. |
496 |
|
|
497 |
|
* XMLParser.dis: Use |create_uri_reference| |
498 |
|
method instead of internal |_new| method |
499 |
|
to create a URI reference object. |
500 |
|
|
501 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
502 |
|
|
503 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
504 |
|
explicitly inherits |urigen:ManakaiURIImplementation| (and |
505 |
|
the |f:ManakaiMinimumImplementation| class inherited |
506 |
|
by it). The |f:Minimum| feature is ever implemented |
507 |
|
for compatibility (but is expected to be removed). |
508 |
|
Internal methods such as |___report_error| are copied from |
509 |
|
obsolete |f:MinimumImplementation| class. DOM3 |
510 |
|
methods |hasFeature| and |getFeature| are also |
511 |
|
moved from that class, but they now support no |
512 |
|
foreign classes. |
513 |
|
|
514 |
|
* DOMFeature.dis (ManakaiImplementationSource): It |
515 |
|
now |p:require|s |Message::Util::AutoLoad::Registry|. |
516 |
|
The class no longer support classes |
517 |
|
other than |ManakaiDOMImplementation|. Note |
518 |
|
that the |ImplementationRegistry| object does continue |
519 |
|
to support foreign classes via foreign classes |
520 |
|
implementing |ImplementationSource| |
521 |
|
or |DOMImplementationSource| interface. |
522 |
|
(MinimumImplementation): Removed. |
523 |
|
|
524 |
|
* DOMLS.dis (ManakaiDOMImplementationLS): It no |
525 |
|
longer inherit the |ManakaiDOMImplementation|; it |
526 |
|
is now expected to be implemented by |DOMImplementation| |
527 |
|
objects. |
528 |
|
|
529 |
|
* DOMMain.dis (null): Removed. |
530 |
|
|
531 |
|
* Document.dis (___create_node_ref): It no |
532 |
|
longer support foreign classes other |
533 |
|
than |Message::DOM::Document::ManakaiDOMDocument|. |
534 |
|
Note that document format specific DOM |
535 |
|
interfaces, if supported, should be |
536 |
|
all instances of the |Document| interface |
537 |
|
in the implementation, as defined |
538 |
|
in the Web Applications 1.0 specification (where |
539 |
|
the |HTMLDocument| interface must be implemented |
540 |
|
by all |Document| objects, even if the |Document| |
541 |
|
contains no HTML element). |
542 |
|
|
543 |
|
* GenericLS.dis (GLSImplementation): It no |
544 |
|
longer inherit the |MinimumImplementation|; it |
545 |
|
is now expected to be implemented by |DOMImplementation| |
546 |
|
objects. |
547 |
|
(createGLSParser, createGLSSerializer): Load |
548 |
|
module implementing parser or serializer |
549 |
|
if necessary. |
550 |
|
|
551 |
|
* Traversal.dis (ManakaiDOMDocumentTraversal): It no |
552 |
|
longer inherits the |ManakaiDOMDocument|; it |
553 |
|
is now expected to be implemented by |Document| |
554 |
|
objects. |
555 |
|
|
556 |
|
* XDP.dis (XDPDocument): It no longer |
557 |
|
inherits the |Document|; it is now expected |
558 |
|
to be implemented by all |Document| objects. |
559 |
|
|
560 |
|
* XDoctype.dis (ManakaiDOMDocumentXDoctype): It no |
561 |
|
longer inherits the |ManakaiDOMDocument|; it |
562 |
|
is now expected to be implemented by |Document| |
563 |
|
objects. |
564 |
|
|
565 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
566 |
|
|
567 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
568 |
|
explicitly inherits |tc:ManakaiDOMImplementationTC|. |
569 |
|
(ManakaiDOMImplementation.AUTOLOAD): New method definition. |
570 |
|
|
571 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Extends |
572 |
|
the |ManakaiDOMImplementation| class. |
573 |
|
|
574 |
|
2006-11-03 Wakaba <wakaba@suika.fam.cx> |
575 |
|
|
576 |
|
* DOMFeature.dis: Definitions for various concepts |
577 |
|
are added. |
578 |
|
|
579 |
|
* GenericLS.dis (GLSImplementation): It no |
580 |
|
longer inherits the |MinimumImplementation|; rather, |
581 |
|
any |ManakaiMinimumImplementation| object also |
582 |
|
implements |GLSImplementation| methods. |
583 |
|
|
584 |
|
* TreeStore.dis (DOMImplementationTreeStore): It no |
585 |
|
longer inherits the |DOMImplementation|; rather, |
586 |
|
any |ManakaiDOMImplementation| object also |
587 |
|
implements |DOMImplementationTreeStore| methods. |
588 |
|
|
589 |
|
2006-08-15 Wakaba <wakaba@suika.fam.cx> |
590 |
|
|
591 |
|
* TreeStore.pm: Added to the CVS repository |
592 |
|
to enable for the dis database to contain XML |
593 |
|
fragments. |
594 |
|
|
595 |
|
* Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added. |
596 |
|
|
597 |
|
* TreeStore.dis (Namespace): Namespace URI was incorrect. |
598 |
|
|
599 |
|
2006-06-18 Wakaba <wakaba@suika.fam.cx> |
600 |
|
|
601 |
|
* Traversal.dis (expandEntityReferences): Syntax was incorrect. |
602 |
|
|
603 |
|
* TreeCore.dis (manakaiReadOnly): Test assertion was incorrect. |
604 |
|
|
605 |
|
* XDP.dis (dtdText): Test assertion was incorrect. |
606 |
|
|
607 |
|
2006-05-21 Wakaba <wakaba@suika.fam.cx> |
608 |
|
|
609 |
|
* XDP.dis (XDPEntityValue.stringify): Don't escape |
610 |
|
any |%|s in |xdp:attr-definition| children. |
611 |
|
|
612 |
|
2006-05-20 Wakaba <wakaba@suika.fam.cx> |
613 |
|
|
614 |
|
* XDP.dis (createXDPRNIKeyword): The Perl method |
615 |
|
name property is added. |
616 |
|
|
617 |
|
2006-05-20 Wakaba <wakaba@suika.fam.cx> |
618 |
|
|
619 |
|
* XDP.dis (createXDPIf): New method. |
620 |
|
(XDPIfElement): New interface. |
621 |
|
|
622 |
|
2006-05-15 Wakaba <wakaba@suika.fam.cx> |
623 |
|
|
624 |
|
* XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition): |
625 |
|
New methods. |
626 |
|
|
627 |
|
2006-05-15 Wakaba <wakaba@suika.fam.cx> |
628 |
|
|
629 |
|
* XDP.dis (XDPDocument): A number of constructor methods |
630 |
|
are added. |
631 |
|
(XDPTextDecl.dtdText): The |xml| target was missing. |
632 |
|
|
633 |
|
2006-05-14 Wakaba <wakaba@suika.fam.cx> |
634 |
|
|
635 |
|
* Traversal.dis (SerialWalker): New interface. |
636 |
|
(manakaiCreateSerialWalker): New method. |
637 |
|
|
638 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
639 |
|
|
640 |
|
* Traversal.dis (testNode): Calls |acceptNode| method |
641 |
|
rather than |&{}| dereferencing. |
642 |
|
(acceptNode): Implemented. |
643 |
|
|
644 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
645 |
|
|
646 |
|
* XDP.dis: New module. |
647 |
|
|
648 |
|
* Makefile: |XDP.dis| is added. |
649 |
|
|
650 |
|
* Traversal.dis (NodeFilter): |InputProcessor| |
651 |
|
and |OutputProcessor| are added. |
652 |
|
|
653 |
|
2006-05-13 Wakaba <wakaba@suika.fam.cx> |
654 |
|
|
655 |
|
* Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value. |
656 |
|
(TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support |
657 |
|
is added. The |FILTER_REJECT| value is treated |
658 |
|
as |FILTER_ACCEPT| if the |currentNode| is in the |
659 |
|
rejected subtree as specified in the spec. |
660 |
|
|
661 |
|
2006-05-05 Wakaba <wakaba@suika.fam.cx> |
662 |
|
|
663 |
|
* SimpleLS.dis: An |xmlns:| prefix was missing. |
664 |
|
|
665 |
|
2006-05-04 Wakaba <wakaba@suika.fam.cx> |
666 |
|
|
667 |
|
* SimpleLS.dis: Namespace bugs are fixed. |
668 |
|
|
669 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
670 |
|
|
671 |
|
* .cvsignore: Updated. |
672 |
|
|
673 |
|
* Traversal.dis: Unused declarations are removed. |
674 |
|
|
675 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
676 |
|
|
677 |
|
* CharacterData.dis (Require): A reference to |
678 |
|
the |MDOM:Traversal| module is added. |
679 |
|
(wholeText): Implemented. |
680 |
|
|
681 |
|
2006-04-30 Wakaba <wakaba@suika.fam.cx> |
682 |
|
|
683 |
|
* Makefile: |Traversal.dis| is added. |
684 |
|
|
685 |
|
* Traversal.dis: New module. |
686 |
|
|
687 |
|
* TreeCore.dis (___report_error): Return value was |
688 |
|
not propagated. |
689 |
|
|
690 |
|
2006-04-29 Wakaba <wakaba@suika.fam.cx> |
691 |
|
|
692 |
|
* Element.dis (removeAttributeNS): A runtime error |
693 |
|
was occurred if there was no specified attribute node. |
694 |
|
|
695 |
|
* TreeCore.dis (manakaiLanguage): New attribute. |
696 |
|
|
697 |
|
2006-04-28 Wakaba <wakaba@suika.fam.cx> |
698 |
|
|
699 |
|
* TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly): |
700 |
|
New attributes. |
701 |
|
|
702 |
|
(StaticNodeList): New interface. |
703 |
|
|
704 |
|
2006-04-24 Wakaba <wakaba@suika.fam.cx> |
705 |
|
|
706 |
|
* DOMCore.dis (c:SET_TO_NULL_ERR): New error code. |
707 |
|
|
708 |
|
2006-04-22 Wakaba <wakaba@suika.fam.cx> |
709 |
|
|
710 |
|
* SimpleLS.dis: Reimplemented. |
711 |
|
|
712 |
|
2006-04-22 Wakaba <wakaba@suika.fam.cx> |
713 |
|
|
714 |
|
* DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now |
715 |
|
a qualified name. |
716 |
|
(tc:EXTERNAL_NODE_COMPARISON_ERR): New error type. |
717 |
|
|
718 |
|
* TreeCore.dis (compareDocumentPosition): Implemented. |
719 |
|
(normalize): Implemented. |
720 |
|
(STORESIZE, CLEAR): Were not implemented for |EmptyNodeList| |
721 |
|
class. |
722 |
|
|
723 |
|
2006-04-16 Wakaba <wakaba@suika.fam.cx> |
724 |
|
|
725 |
|
* DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed. |
726 |
|
|
727 |
|
2006-04-16 Wakaba <wakaba@suika.fam.cx> |
728 |
|
|
729 |
|
* CharacterData.dis (length, insertData, substringData, |
730 |
|
appendData, deleteData, replaceData, splitText): Reimplemented. |
731 |
|
|
732 |
|
* DOMCore.dis (NEGATIVE_LENGTH_ERR): New error. |
733 |
|
(c:index): The definition was missing. |
734 |
|
(c:length): New property. |
735 |
|
|
736 |
|
2006-04-16 Wakaba <wakaba@suika.fam.cx> |
737 |
|
|
738 |
|
* XMLParser.dis (close): Invoke |close| method |
739 |
|
rather than |close| function. |
740 |
|
|
741 |
|
2006-04-16 Wakaba <wakaba@suika.fam.cx> |
742 |
|
|
743 |
|
* CharacterData.dis: New module split from |TreeCore.dis|. |
744 |
|
|
745 |
|
* CharacterData.pm: Added to the CVS repository. |
746 |
|
|
747 |
|
* TreeCore.dis: The |CharacterData|, |Text|, and |Comment| |
748 |
|
interfaces are removed. |
749 |
|
(Require): A reference to the |MDOM:CharacterData| module |
750 |
|
is added. |
751 |
|
|
752 |
|
* DOMMain.dis (StringExtended, StringOutOfBoundsException): Removed. |
753 |
|
|
754 |
|
* DOMCore.dis (StringOutOfBoundsException): New error. |
755 |
|
|
756 |
|
* Makefile: |CharacterData.pm| is added. |
757 |
|
|
758 |
|
2006-04-09 Wakaba <wakaba@suika.fam.cx> |
759 |
|
|
760 |
|
* XMLParser.dis (Require): Requires the |MCharset:Encode| |
761 |
|
module. |
762 |
|
(parse): Set the |inputEncoding| attribute of the generated document |
763 |
|
object. |
764 |
|
(resolveLSInput default implementation): The |byteStream| |
765 |
|
and |encoding| attributes of the |LSInput| interface |
766 |
|
are now supported. |
767 |
|
(resolveLSInput): Parameters |impl| and |parser| are added. |
768 |
|
(InputFile.inputEncoding): New attribute. |
769 |
|
|
770 |
|
2006-04-04 Wakaba <wakaba@suika.fam.cx> |
771 |
|
|
772 |
|
* Document.dis (adoptNode test): Documents were |
773 |
|
made by different documents. |
774 |
|
|
775 |
|
2006-04-04 Wakaba <wakaba@suika.fam.cx> |
776 |
|
|
777 |
|
* XMLParser.dis: The |cfg:dtd-default-attributes| configuration |
778 |
|
parameter is changed to |cfg:dtd-default-attribute|. |
779 |
|
|
780 |
|
2006-04-04 Wakaba <wakaba@suika.fam.cx> |
781 |
|
|
782 |
|
* TreeCore.dis: The |DOMMain:raiseException| elements |
783 |
|
are replaced by |disPerl:EXCEPTION|s. |
784 |
|
|
785 |
|
2006-04-03 Wakaba <wakaba@suika.fam.cx> |
786 |
|
|
787 |
|
* DOMMain.dis (GetPropNode, CheckReadOnly): Removed. |
788 |
|
|
789 |
|
* Node.dis (cfg:dtd-default-attribute): The configuration |
790 |
|
parameter |cfg:dtd-default-attributes| is renamed |
791 |
|
as |cfg:dtd-default-attribute|. |
792 |
|
(Roles): Definitions are changed so that classes |
793 |
|
that implement those classes MUST implement the |Node| |
794 |
|
and its subinterfaces. |
795 |
|
(cfg:dtd-attribute-type): New configuration parameter. |
796 |
|
|
797 |
|
* Document.dis (adoptNode): Don't throw exception |
798 |
|
if |strictErrorChecking| is |false|. |
799 |
|
|
800 |
|
* Element.dis (setAttribute, setAttributeNS): Don't |
801 |
|
set [attribute type] if the |cfg:dtd-attribute-type| |
802 |
|
configuration parameter is set to |false|. |
803 |
|
(removeAttribute, removeAttributeNS, removeAttributeNode): Don't |
804 |
|
regenerate default attribute nodes if the |cfg:dtd-default-attribute| |
805 |
|
configuration parameter is set to |false|. |
806 |
|
|
807 |
|
2006-04-02 Wakaba <wakaba@suika.fam.cx> |
808 |
|
|
809 |
|
* TreeStore.dis: New module. |
810 |
|
|
811 |
|
* Makefile: |TreeStore.dis| is added. |
812 |
|
|
813 |
|
2006-04-02 Wakaba <wakaba@suika.fam.cx> |
814 |
|
|
815 |
|
* XMLParser.dis: Updated so that it can be used |
816 |
|
with |TreeCore.pm|, |Document.pm|, |Element.pm|, |
817 |
|
and |XML.pm|. Set the read-only flag to |
818 |
|
the |DocumentType|, |Entity|, and |EntityReference| noes. |
819 |
|
|
820 |
|
* Node.dis (textContent): It did not handle descendant |
821 |
|
element and entity reference nodes. |
822 |
|
|
823 |
|
* Element.dis, XML.dis (manakaiBaseURI.get): Its |
824 |
|
definition has been changed to return only explicit |
825 |
|
base URI specification. |
826 |
|
|
827 |
|
* DOMLS.dis (LSInput, LSOutput): They no longer |
828 |
|
inherits the |ManakaiDOM:ManakaiDOMObject| class. |
829 |
|
|
830 |
|
* Tree.dis, DOMXML.dis, ManakaiDOMLS2003.dis: Removed. |
831 |
|
|
832 |
|
* Tree.pm, DOMXML.pm: Removed. |
833 |
|
|
834 |
|
* TreeCore.pm, Document.pm, Element.pm: Added |
835 |
|
to the CVS repository since they are necessary to |
836 |
|
build the dis library. |
837 |
|
|
838 |
|
* Makefile: Sync'ed to new modules disposition. |
839 |
|
|
840 |
|
2006-04-02 Wakaba <wakaba@suika.fam.cx> |
841 |
|
|
842 |
|
* Makefile: Rules for |Tree.pm| and |DOMXML.pm| are |
843 |
|
removed. For |Element.pm| and |Document.pm| are added. |
844 |
|
|
845 |
|
* Document.dis, Element.dis: New module split from |TreeCore.dis|. |
846 |
|
|
847 |
|
* TreeCore.dis (Document, DocumentFragment, Element, Attr): Removed. |
848 |
|
|
849 |
|
2006-04-01 Wakaba <wakaba@suika.fam.cx> |
850 |
|
|
851 |
|
* DOMFeature.dis (getImplementation, getImplementationList): Support |
852 |
|
for new class information variables. |
853 |
|
(DOMLS:Generic): This old feature name is removed. |
854 |
|
|
855 |
|
* GenericLS.dis (createGLSParser, createGLSSerializer): Support |
856 |
|
for new class information variables. |
857 |
|
|
858 |
|
* TreeCore.dis (manakaiExpandedURI): New attribute. |
859 |
|
(Document, Element.___create_node_ref): New method |
860 |
|
implementations. |
861 |
|
|
862 |
|
2006-04-01 Wakaba <wakaba@suika.fam.cx> |
863 |
|
|
864 |
|
* TreeCore.dis (setIdAttribute, setIdAttributeNS, setIdAttributeNode): |
865 |
|
Reimplemented. |
866 |
|
(isId): Setter is added. |
867 |
|
(Element.normalize): Definition copied from the |MDOM:Tree| |
868 |
|
module. |
869 |
|
|
870 |
|
2006-03-31 Wakaba <wakaba@suika.fam.cx> |
871 |
|
|
872 |
|
* Makefile (clean-db): New rule. |
873 |
|
|
874 |
|
* TreeCore.dis (setUserData): Schedule to invoke |
875 |
|
the user data handler when the node is removed |
876 |
|
from the memory. |
877 |
|
(setAttribute, setAttributeNS): Set the [attribute type] |
878 |
|
if DTD attribute definition is available. |
879 |
|
(CharacterData members): Definitions copied from |
880 |
|
the |MDOM:Tree| module. |
881 |
|
|
882 |
|
2006-03-31 Wakaba <wakaba@suika.fam.cx> |
883 |
|
|
884 |
|
* DOMCore.dis (DOMStringList.==): New overloaded operator. |
885 |
|
|
886 |
|
* DOMFeature.dis (ManakaiHasFeatureByGetFeature): The |
887 |
|
class did not implement the |GetFeature| interface. |
888 |
|
(hasFeature): The |+| prefix was not taken into account. |
889 |
|
|
890 |
|
* TreeCore.dis (Node): The class now inherits |
891 |
|
the |ManakaiHasFeatureByGetFeature| class. It now |
892 |
|
implements the |f:GetFeature| and |ecore:MUErrorTarget| |
893 |
|
interfaces. |
894 |
|
(CreateNodeRefMethod): The |mg:nodeRefInterfaces| option |
895 |
|
is supported. |
896 |
|
(lookupNamespaceURI, lookupPrefix, isDefaultNamespace): Reimplemented. |
897 |
|
(manakaiParentElement): New attribute. |
898 |
|
|
899 |
|
* XDoctype.dis (d:Feature): Old feature name |ManakaiDOM:XDoctype| |
900 |
|
is removed. |
901 |
|
(lookupPrefix): Old method implementation is removed. |
902 |
|
|
903 |
|
* XML.dis (CDATASection): The |mg:NodeRefRole| was |
904 |
|
missing because of the |DISCore:stopISARecursive| property. |
905 |
|
|
906 |
|
* TreeCore.dis, XML.dis, XDoctype.dis, DOMCore.dis, DOMFeature.dis: |
907 |
|
They now pass all tests included in those modules! |
908 |
|
|
909 |
|
2006-03-30 Wakaba <wakaba@suika.fam.cx> |
910 |
|
|
911 |
|
* DOMCore.dis (Require): A reference to the |MURI:Generic| |
912 |
|
module is added. |
913 |
|
(ManakaiDOMStringList.DESTROY): Removed (no longer necessary). |
914 |
|
(ManakaiDOMImplementation): It now inherits |
915 |
|
the |urigen:ManakaiURIImplementation| class and |
916 |
|
implements the |ecore:MUErrorTarget| interface. It no |
917 |
|
longer inherits the |ManakaiDOM:ManakaiDOMObject| class. |
918 |
|
(ManakaiDOMImplementation.___report_error): New method. |
919 |
|
|
920 |
|
* DOMFeature.dis (Require): It now references the |Util:Grove| |
921 |
|
module instead of |Util:ManakaiNode| module. |
922 |
|
(DOMMetaImpl:ManakaiDOMImplementationRole): Removed. |
923 |
|
(f:ManakaiMinimumImplementationCompatible): New role. |
924 |
|
(ManakaiMinimumImplementation): Now it is built |
925 |
|
on the new |Util:Grove| module rather than the |Util:ManakaiNode| |
926 |
|
module. |
927 |
|
(f:getFeatureImpl): Moved from the |MDOM:TreeCore| module. |
928 |
|
(c:implementation): Removed. |
929 |
|
(f:implementation, f:revImplementation): New properties. |
930 |
|
|
931 |
|
* DOMMain.dis (checkNamespacePrefix): DOM2 codes are removed. |
932 |
|
|
933 |
|
* Tree.dis (cfg:clone-entity-reference-subtree, |
934 |
|
cfg:dtd-default-attributes, cfg:xml-id, |
935 |
|
cfg:strict-document-children): Removed (moved |
936 |
|
to the |MDOM:TreeCore| module). |
937 |
|
|
938 |
|
* TreeCore.dis (Require): The reference to the |MURI:Generic| |
939 |
|
module is removed. |
940 |
|
(ManakaiDOMImplementationTC): Some members are removed |
941 |
|
since they are incorporated to the |c:ManakaiDOMImplementation| |
942 |
|
or the |f:ManakaiMinimumImplementation|. |
943 |
|
(tc:nodeRefClass): Removed (moved to the |Util:Grove| module). |
944 |
|
(replaceChildImpl1): A typo on the removing the parent node |
945 |
|
of the old child node is fixed. |
946 |
|
(f:getFeatureImpl): Removed (moved to the |MDOM:DOMFeature| |
947 |
|
module). |
948 |
|
(tc:implementation, tc:revImplementation): Removed (moved |
949 |
|
to the |MDOM:DOMFeature| module). |
950 |
|
(Document.appendChild, insertBefore, replaceChild): Sets |
951 |
|
the |ownerDocument| attribute of the |tx:DocumentType| nodes. |
952 |
|
(Attr.prefix, Element.prefix): Don't raise "uninitialized" |
953 |
|
when the new value is |null|. |
954 |
|
(Attr.___create_node_ref): Attribute name and |
955 |
|
owner element type specific classes are supported (it |
956 |
|
was partially implemented but was incorrect). |
957 |
|
(ManakaiDOMGetElementsNodeList.item): Don't return |
958 |
|
a node if the |index| is negative. |
959 |
|
(setNamedItem): Various typos are fixed. |
960 |
|
(removeNamedItem): The node was not removed orz |
961 |
|
(cfg:clone-entity-reference-subtree, |
962 |
|
cfg:dtd-default-attributes, cfg:xml-id, |
963 |
|
cfg:strict-document-children): Definitions are moved |
964 |
|
from the |MDOM:Tree| module. Note that the tests for default |
965 |
|
attributes still fail. |
966 |
|
(ErrDef, IntPropDef): Moved from the |MDOM:Tree| module. |
967 |
|
(Attr): Role name was incorrect. |
968 |
|
|
969 |
|
* XDoctype.dis (setDefinitionNode): Return value was |
970 |
|
not set. |
971 |
|
(AttributeDefinition): Role name was incorrect. |
972 |
|
|
973 |
|
* XML.dis (Require): A reference to the |DISlib:DISMarkup| |
974 |
|
module is added. |
975 |
|
(Notation.appendChild, insertBefore, replaceChild): New method |
976 |
|
implementations. |
977 |
|
(Entity.appendChild, insertBefore, replaceChild): New method |
978 |
|
implementations. |
979 |
|
(EntityReference.appendChild, insertBefore, replaceChild): Now |
980 |
|
they are defined as copies of ones in the |Entity| class. |
981 |
|
(XMLBaseAttribute, XMLIdAttribute): Now they are |
982 |
|
namespace unaware attributes. |
983 |
|
(XMLBaseAttributeNS, XMLIdAttributeNS): New attributes. |
984 |
|
(ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): References |
985 |
|
to namespace aware attributes are added. |
986 |
|
|
987 |
|
2006-03-29 Wakaba <wakaba@suika.fam.cx> |
988 |
|
|
989 |
|
* DOMCore.dis: Namespace prefixes are changed to new ones. |
990 |
|
|
991 |
|
* TreeCore.dis (createDocument, createDocumentType): Reimplemented (but |
992 |
|
untested). |
993 |
|
(___report_error): Reimplemented (untested). |
994 |
|
(manakaiSetReadOnly): New method. |
995 |
|
(Attr.___create_node_ref): New method (untested). |
996 |
|
(Document.getFeature): |require|s the |MDOM:XML| Perl module. |
997 |
|
(createEntityReference, cloneNode): Support for |
998 |
|
the |cfg:entity-reference-read-only| configuration |
999 |
|
parameter is removed; newly created entity references |
1000 |
|
are always read-only and use the |manakaiSetReadOnly| method |
1001 |
|
if desired. |
1002 |
|
(Element.manakaiBaseURI): Reimplemented (untested). |
1003 |
|
|
1004 |
|
* XDoctype.dis (createGeneralEntity, createNotation): |require|s |
1005 |
|
the |MDOM:XML| Perl module. |
1006 |
|
(DocumentTypeDefinition.___create_node_stem): Sets |
1007 |
|
the |tc:implementation| internal property if its value |
1008 |
|
is provided. The |infoset:content| internal property name |
1009 |
|
was incorrect. |
1010 |
|
(DocumentTypeDefinition, ElementTypeDefinition): |MUST|s on |
1011 |
|
read-only |NodeList| and |DOMStringList| are added |
1012 |
|
for clarification. |
1013 |
|
|
1014 |
|
2006-03-26 Wakaba <wakaba@suika.fam.cx> |
1015 |
|
|
1016 |
|
* DOMCore.dis (Require): Reference to the |MDOM:TreeCore| |
1017 |
|
module is added. |
1018 |
|
(DOMStringList): Reimplemented for new |d:AttributeDefinition| |
1019 |
|
implementation (untested). |
1020 |
|
|
1021 |
|
* TreeCore.dis (baseURI): Reimplemented (untested). |
1022 |
|
(Roles): Definitions added. |
1023 |
|
|
1024 |
|
* XDoctype.dis (Require): References to the |MDOM:TreeCore| |
1025 |
|
and |MDOM:XML| modules are added. Reference to the |MDOM:Tree| |
1026 |
|
module is removed. |
1027 |
|
(DocumentXDoctype): Reimplemented (untested). |
1028 |
|
(DocumentTypeDefinition, DocumentTypeDeclaration): |
1029 |
|
Reimlemented (untested). |
1030 |
|
(ElementTypeDefinition, AttributeDefinition): Reimplemented (untested). |
1031 |
|
|
1032 |
|
* XML.dis (FeatureDef): New features (definitions copied |
1033 |
|
from the |MDOM:DOMXML| module). |
1034 |
|
(DocumentType): New interface (definition copied from |
1035 |
|
the |MDOM:DOMXML| module). |
1036 |
|
(CDATASection, Notation, Entity, EntityReference, ProcessingInstruction): |
1037 |
|
Reimplemented (untested). |
1038 |
|
(ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Reimplemented (untested). |
1039 |
|
|
1040 |
|
2006-03-25 Wakaba <wakaba@suika.fam.cx> |
1041 |
|
|
1042 |
|
* TreeCore.dis (Document): Most methods are reimplemented (untested). |
1043 |
|
|
1044 |
|
2006-03-25 Wakaba <wakaba@suika.fam.cx> |
1045 |
|
|
1046 |
|
* TreeCore.dis (Document): Attributes are reimplemented (untested). |
1047 |
|
(Text, DocumentFragment, Comment): Most members are |
1048 |
|
reimplemented (untested). |
1049 |
|
|
1050 |
|
2006-03-24 Wakaba <wakaba@suika.fam.cx> |
1051 |
|
|
1052 |
|
* DOMMain.dis (checkXMLNamesQName): Some checks are |
1053 |
|
removed to sync with DOM Level 3 Core specification. |
1054 |
|
|
1055 |
|
* TreeCore.dis (Element): Most methods are reimplemented (untested). |
1056 |
|
(GetElementsNodeList): Reimplemented (untested). |
1057 |
|
|
1058 |
|
2006-03-23 Wakaba <wakaba@suika.fam.cx> |
1059 |
|
|
1060 |
|
* Tree.dis (cfg:strict-document-children): The configuration |
1061 |
|
parameter must also affect on |manakaiAppendText| |
1062 |
|
and |textContent| on |Document| nodes. |
1063 |
|
|
1064 |
|
* TreeCore.dis (Node.CreateNodeRefMethod): The |tc:nodeRefClass| |
1065 |
|
parameter changes the class to |bless|. |
1066 |
|
(Node): Most methods are reimplemented. (Untested) |
1067 |
|
(CharacterData, Attr): Most methods and attributes are |
1068 |
|
reimplemented. (Untested) |
1069 |
|
|
1070 |
|
* XML.dis, XDoctype.dis: Most |Node| methods are |
1071 |
|
reimplemented (untested). |
1072 |
|
|
1073 |
2006-03-23 Wakaba <wakaba@suika.fam.cx> |
2006-03-23 Wakaba <wakaba@suika.fam.cx> |
1074 |
|
|
1075 |
* TreeCore.dis, XML.dis, XDoctype.dis (Node.textContent): Reimplemented |
* TreeCore.dis, XML.dis, XDoctype.dis (Node.textContent): Reimplemented |