1 |
|
2007-06-20 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* Node.pm (manakai_expanded_uri, manakai_parent_element, |
4 |
|
clone_node, compare_document_position, has_attributes, |
5 |
|
has_child_nodes, is_default_namespace, lookup_namespace_uri, |
6 |
|
lookup_prefix, normalize): Implemented. |
7 |
|
|
8 |
|
* DOMElement.pm (remove_attribute, set_attribute): Alpha version. |
9 |
|
|
10 |
|
* DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error. |
11 |
|
|
12 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
13 |
|
|
14 |
|
* AttributeDefinition.pm (____new): Set an empty list |
15 |
|
to the |allowed_tokens| attribute. |
16 |
|
(allowed_token): Alpha version. |
17 |
|
|
18 |
|
* DocumentType.pm (get_element_type_definition_node, |
19 |
|
get_notation_node): ALpha version. |
20 |
|
|
21 |
|
* ElementTypeDefinition.pm (attribute_definitions): Alpha 2 |
22 |
|
version. |
23 |
|
|
24 |
|
* Entity.pm (notation_name): Implemented. |
25 |
|
|
26 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
27 |
|
|
28 |
|
* Attr.pm (____new): Initialize |specified| as 1. |
29 |
|
(base_uri, manakai_attribute_type, specified): Implemented. |
30 |
|
(prefix): Don't check read-only flag unless |strict_error_checking|. |
31 |
|
(value): Call |text_content| for now. |
32 |
|
|
33 |
|
* AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added. |
34 |
|
(declared_type, default_type): Implemented. |
35 |
|
|
36 |
|
* CharacterData.pm (____new): Allow a scalar reference |
37 |
|
as an input for the |data| attribute. |
38 |
|
(base_uri, manakai_append_text): Implemented. |
39 |
|
|
40 |
|
* DOMConfiguration.pm (set_parameter): Resetting implemented. |
41 |
|
|
42 |
|
* DOMDocument.pm (____new): Set default values to |
43 |
|
configuration parameter whose default is true. |
44 |
|
(document_uri, input_encoding): Implemented. |
45 |
|
(all_declarations_processed, manakai_is_html): Implemented. |
46 |
|
(base_uri, manakai_append_text, |
47 |
|
manakai_entity_base_uri, strict_error_checking, |
48 |
|
xml_encoding, xml_version, xml_standalone): Implemented. |
49 |
|
|
50 |
|
* DOMElement.pm (manakai_base_uri, base_uri): Implemented. |
51 |
|
(get_attribute, get_attribute_node): Alpha version. |
52 |
|
(set_attribute_node, set_attribute_node_ns): Implemented. |
53 |
|
(set_attribute_ns): Accept non-ARRAY qualified name. |
54 |
|
|
55 |
|
* DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|, |
56 |
|
|NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added. |
57 |
|
|
58 |
|
* DocumentType.pm (public_id, system_id): Implemented. |
59 |
|
(base_uri, declaration_base_uri, manakai_declaration_base_uri, |
60 |
|
manakai_append_text): Implemented. |
61 |
|
(element_types, general_entities, notations, |
62 |
|
set_element_type_definition_node, set_general_entity_node, |
63 |
|
set_notation_node): Alpha version. |
64 |
|
|
65 |
|
* ElementTypeDefinition.pm (manakai_append_text): Implemented. |
66 |
|
(attribute_definitions, set_attribute_definition_node): Alpha version. |
67 |
|
|
68 |
|
* Entity.pm (has_replacement_tree, public_id, system_id, |
69 |
|
manakai_declaration_base_uri, manakai_entity_base_uri, |
70 |
|
manakai_entity_uri): Implemented. |
71 |
|
|
72 |
|
* EntityReference.pm (manakai_expanded, manakai_external): Implemented. |
73 |
|
(base_uri, manakai_entity_base_uri): Implemented. |
74 |
|
|
75 |
|
* Node.pm (base_uri): Implemented. |
76 |
|
(text_content): Don't check read-only or not |
77 |
|
unless |strict_error_checking|. |
78 |
|
(manakai_append_text): Implemented. |
79 |
|
(get_feature): Alpha. |
80 |
|
(manakai_set_read_only): Implemented. |
81 |
|
|
82 |
|
* Notation.pm (public_id, system_id, manakai_append_text, |
83 |
|
manakai_declaration_base_uri): Implemented. |
84 |
|
|
85 |
|
* ProcessingInstruction.pm (manakai_base_uri, |
86 |
|
base_uri, manakai_append_text): Implemented. |
87 |
|
|
88 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
89 |
|
|
90 |
|
* DOMConfiguration.pm: New module. |
91 |
|
|
92 |
|
* Attr.pm (trivial accessor for read-write attributes): Throw |
93 |
|
an exception if the node is read-only. Delete the property |
94 |
|
if undef is specified. |
95 |
|
(prefix): Implemented. |
96 |
|
|
97 |
|
* DOMElement.pm (trivial accessor for read-write attributes): Throw |
98 |
|
an exception if the node is read-only. Delete the property |
99 |
|
if undef is specified. |
100 |
|
(prefix): Implemented. |
101 |
|
(text_content, manakai_append_text): Old implementations are removed. |
102 |
|
|
103 |
|
* DOMCharacterData.pm (text_content): Implemented. |
104 |
|
|
105 |
|
* DOMDocument.pm (____new): Initialize the strict-document-children |
106 |
|
parameter by true. |
107 |
|
(text_content): Reimplemented. |
108 |
|
(dom_config): New. |
109 |
|
|
110 |
|
* DOMException.pm (READ_ONLY_NODE_ERR): New subtype. |
111 |
|
|
112 |
|
* DocumentType.pm (text_content): Implemented. |
113 |
|
|
114 |
|
* ElementTypeDefinition.pm (text_content): Implemented. |
115 |
|
|
116 |
|
* Node.pm (___report_error): New method. |
117 |
|
(text_content): Implemented. |
118 |
|
(manakai_append_text): Copied from |DOMElement.pm|. |
119 |
|
|
120 |
|
* Notation.pm (text_content): Implemented. |
121 |
|
|
122 |
|
* ProcessingInstruction.pm (text_content): Implemented. |
123 |
|
|
124 |
|
* Text.pm (is_element_content_whitespace): Alpha version. |
125 |
|
|
126 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
127 |
|
|
128 |
|
* DOMException.pm (Message::IF::DOMException): Extends |
129 |
|
the |Message::Util::Error| class. |
130 |
|
|
131 |
|
* NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class. |
132 |
|
(CLEAR): Not all items were removed. |
133 |
|
|
134 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
135 |
|
|
136 |
|
* Attr.pm, AttributeDefinition.pm, DocumentFragment.pm, |
137 |
|
DocumentType.pm, Entity.pm, |
138 |
|
EntityReference.pm (____new): Initialize |child_nodes| by an empty list. |
139 |
|
|
140 |
|
* Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm, |
141 |
|
Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned. |
142 |
|
|
143 |
|
* DOMDocument.pm (AUTOLOAD): Typo fixed. |
144 |
|
|
145 |
|
* Node.pm (==, !=): Implemented. |
146 |
|
(manakai_read_only): Implemented. |
147 |
|
(is_same_node): Implemented. |
148 |
|
(is_equal_node): Alpha version. |
149 |
|
(manakai_set_read_only): Alpha version. |
150 |
|
(child_nodes, first_child, last_child, previous_sibling): Duplicate |
151 |
|
definitions are removed. |
152 |
|
|
153 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
154 |
|
|
155 |
|
* Node.pm: First alpha version of implementation of attributes. |
156 |
|
|
157 |
|
2007-06-15 Wakaba <wakaba@suika.fam.cx> |
158 |
|
|
159 |
|
* ProcessingInstruction.pm, EntityReference.pm, |
160 |
|
CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm, |
161 |
|
ElementTypeDefinition.pm, AttributeDefinition.pm, |
162 |
|
DocumentType.pm, DOMElement.pm, Attr.pm, |
163 |
|
CharacterData.pm, Text.pm, Comment.pm (node_name, |
164 |
|
node_value, node_type): Implemented. |
165 |
|
|
166 |
|
2007-06-14 Wakaba <wakaba@suika.fam.cx> |
167 |
|
|
168 |
|
* Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm, |
169 |
|
CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm, |
170 |
|
AttributeDefinition.pm: New modules. |
171 |
|
|
172 |
|
* DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added. |
173 |
|
(create_attribute_definition, create_element_type_definition, |
174 |
|
create_document_type_definition, create_cdata_section, |
175 |
|
create_processing_instruction, create_entity_reference, |
176 |
|
create_general_entity, create_notation): Prototypes added. |
177 |
|
|
178 |
|
* DOMImplementation.pm (create_document_type): Prototype added. |
179 |
|
|
180 |
|
* DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition' |
181 |
|
and 'Message::IF::DocumentTypeDeclaration' added. |
182 |
|
(create_document_type, create_document_type_definition): |
183 |
|
New methods. |
184 |
|
|
185 |
|
2007-06-13 Wakaba <wakaba@suika.fam.cx> |
186 |
|
|
187 |
|
* DOMImplementation.pm, Node.pm, DOMDocument.pm, |
188 |
|
DOMElement.pm, Attr.pm, DocumentType.pm, |
189 |
|
DOMCharacterData.pm, Text.pm, Comment.pm: Copied |
190 |
|
from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>. |
191 |
|
|
192 |
|
2007-06-10 Wakaba <wakaba@suika.fam.cx> |
193 |
|
|
194 |
|
* XMLParser.dis: Default to "1.0" if <?xml version=""?> |
195 |
|
specifies unknown value and trys to recover from the error. |
196 |
|
|
197 |
|
2007-05-13 Wakaba <wakaba@suika.fam.cx> |
198 |
|
|
199 |
|
* TreeCore.dis (manakaiLocalName): New attribute. |
200 |
|
|
201 |
|
2007-01-02 Wakaba <wakaba@suika.fam.cx> |
202 |
|
|
203 |
|
* GenericLS.dis (GLSException): New interface. |
204 |
|
|
205 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
206 |
|
|
207 |
|
* |InputProcessor|s and |OutputProcessor|s are |
208 |
|
named so that |report| statements in Perl |
209 |
|
module outputs can be identified by name. |dis:dataType|s |
210 |
|
of |DISCore:TFQNames| are all replaced |
211 |
|
by |DISCore:QName|. |
212 |
|
|
213 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
214 |
|
|
215 |
|
* Element.dis (createElementNS): If an array reference |
216 |
|
is specified as the |qualifiedName| parameter, |
217 |
|
don't set the first item as the local name |
218 |
|
even if the second item is not specified (or |
219 |
|
specified as |undef|). |
220 |
|
(createElementNS, setAttribute, setAttributeNS, |
221 |
|
removeAttribute, removeAttributeNS, |
222 |
|
setAttributeNode, setAttributeNodeNS, |
223 |
|
removeAttributeNode, removeAttributeNodeNS): Sets |
224 |
|
or removes the |tc:contentAttributeList| value. |
225 |
|
|
226 |
|
* TreeCore.dis (AttrMap.item): Caches the result |
227 |
|
of sorting of content attribute names. |
228 |
|
(getAttrMap, getElementTypeDefNodeMap, |
229 |
|
getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed. |
230 |
|
(tc:contentAttributeList): New property. |
231 |
|
|
232 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
233 |
|
|
234 |
|
* DOMFeature.dis (ForDef): Removed. |
235 |
|
(f:provides, f:through): Removed. |
236 |
|
(Version): Removed. |
237 |
|
(implementFeature): Removed. |
238 |
|
|
239 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
240 |
|
|
241 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
242 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
243 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
244 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
245 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications |
246 |
|
are removed. |
247 |
|
|
248 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
249 |
|
|
250 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
251 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
252 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
253 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
254 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications |
255 |
|
and |DefaultFor|s are removed. |
256 |
|
|
257 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
258 |
|
|
259 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
260 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
261 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
262 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
263 |
|
SimpleLS.dis, DOMMain.dis: References |
264 |
|
to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|, |
265 |
|
|ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3| |
266 |
|
modes are removed. |
267 |
|
|
268 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
269 |
|
|
270 |
|
* CharacterData.dis, TreeCore.dis (Require): References |
271 |
|
to the |Grove.dis| module are removed. |
272 |
|
|
273 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
274 |
|
|
275 |
|
* DOMFeature.dis (f:implementation, f:revImplementation): Removed. |
276 |
|
(Require): Reference to the |Grove.dis| module is removed. |
277 |
|
|
278 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
279 |
|
|
280 |
|
* DOMCore.dis (ManakaiDOMImplementation): The |
281 |
|
class is no longer plays the role of |
282 |
|
a |mg:NodeRefRole|. Redundant |f:provides| |
283 |
|
properties are removed. |
284 |
|
|
285 |
|
2006-12-29 Wakaba <wakaba@suika.fam.cx> |
286 |
|
|
287 |
|
* TreeCore.dis, DOMCore.dis, Document.dis, |
288 |
|
Element.dis, CharacterData.dis, XML.dis, |
289 |
|
XDoctype.dis, DOMString.dis, TreeStore.dis, |
290 |
|
XMLParser.dis: Use Perl native |
291 |
|
hashs and |Scalar::Util|'s weak references in favor of |Grove.dis| |
292 |
|
for DOM nodes. See |
293 |
|
also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>. |
294 |
|
|
295 |
|
2006-12-03 Wakaba <wakaba@suika.fam.cx> |
296 |
|
|
297 |
|
* DOMFeature.dis, TreeCore.dis: Unused |role|s are removed. |
298 |
|
|
299 |
|
2006-12-02 Wakaba <wakaba@suika.fam.cx> |
300 |
|
|
301 |
|
* DOMString.dis: New module. |
302 |
|
|
303 |
|
* DOMString.pm: New file. |
304 |
|
|
305 |
|
* DOMCore.dis (min): Moved from |DOMFeature.dis|. |
306 |
|
(ImplementationRegistryVariable): Moved from |DOMFeature.dis|. |
307 |
|
Now it references the |DOMImplementationRegistry| object. |
308 |
|
(DOMImplementationRegistryVariable): Moved from |DOMMain.dis|. |
309 |
|
(DOMImplementationRegistry): New interface and |
310 |
|
class, reformed from |ImplementationRegistry| in |DOMFeature.dis| |
311 |
|
and |DOMImplementationRegistry| in |DOMMain.dis|. Note |
312 |
|
that the class no longer support |get_implementation| |
313 |
|
and |get_implementation_list| methods from |
314 |
|
the |ImplementationRegistry| interface. |
315 |
|
(DOMImplementationList): Class implemented; no |
316 |
|
longer inherits from |ImplementationList|. |
317 |
|
(DOMImplementationSource): Class implemented; no |
318 |
|
longer inherits from |ImplementationSource|. Note that |
319 |
|
the class no longer support |get_implementation| |
320 |
|
and |get_implementation_list| methods from |
321 |
|
the |ImplementationSource| interface. |
322 |
|
(DOMStringList): Removed. |
323 |
|
|
324 |
|
* DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature, |
325 |
|
ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature, |
326 |
|
ManakaiDOM:DOMXMLFeatureXML11, most part of |
327 |
|
documentation for obsolete DOM Level 3 Minimum Implementation |
328 |
|
module, obsolete property name aliases, |
329 |
|
ImplemenationRegistryVar, ImplementationRegistry, |
330 |
|
DEBUG, MIString, ImplementationList, ImplementationSource, |
331 |
|
ManakaiDOM:implID): Removed. |
332 |
|
|
333 |
|
* DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed. |
334 |
|
(DOMString): Removed. |
335 |
|
(DOMImplementationRegistryVar, DOMImplementationRegistry): Removed. |
336 |
|
|
337 |
|
* Makefile: |DOMString.pm| is added. |
338 |
|
|
339 |
|
* TreeCore.dis (is_default_namespace): |null| was |
340 |
|
returned where a false is expected (|null| is |
341 |
|
a false in Perl, but real |false| is appropriate here). |
342 |
|
|
343 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
344 |
|
|
345 |
|
* DOMCore.dis (TypeInfo, UserDataHandler): Removed. |
346 |
|
|
347 |
|
* Element.dis (TypeInfo): Moved from |DOMCore.dis|. |
348 |
|
|
349 |
|
* TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|. |
350 |
|
|
351 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
352 |
|
|
353 |
|
* DOMFeature.dis (ImplementationList, ImplementationSource, |
354 |
|
ImplementationRegistry): Parameters |features| |
355 |
|
now allow |null| (equivalent to an empty string). |
356 |
|
|
357 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
358 |
|
|
359 |
|
* CharacterData.dis (ManakaiDOMDocumentCharacterData): New |
360 |
|
class. Factory methods |createTextNode| and |createComment| |
361 |
|
are moved from |ManakaiDOMDocument|. |
362 |
|
|
363 |
|
* DOMCore.dis: References to |ManakaiDOMObject| |
364 |
|
are removed. |
365 |
|
(tc:createImplForTest): Moved from |TreeCore.dis|. |
366 |
|
(DOMImplementation.___create_node_ref): Support |
367 |
|
for the |mg:nodeRefClass| option is removed. |
368 |
|
(ManakaiDOMConfiguration.___report_error): Moved |
369 |
|
from |ManakaiDOMObject| class. |
370 |
|
|
371 |
|
* DOMFeature.dis (domidl:extends): New property. |
372 |
|
(f:getFeatureImpl): Support for |+| classes is removed. |
373 |
|
|
374 |
|
* DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed. |
375 |
|
(ManakaiDOM:ManakaiDOMObject): Removed. |
376 |
|
(DOMDataType): Removed. |
377 |
|
|
378 |
|
* Document.dis (ManakaiDOMImplementationDocument): |
379 |
|
The |createDocument| method is moved from |
380 |
|
the |ManakaiDOMImplementationTC| in |TreeCore.dis|. |
381 |
|
(ManakaiDOMDocument.___create_node_ref): Removed. |
382 |
|
(createElement, createElementNS, createAttribute, |
383 |
|
createAttributeNS, createTextNode, createComment, |
384 |
|
createCDATASection, createEntityReference, |
385 |
|
createProcessingInstruction): Class implementations |
386 |
|
are moved to each module. |
387 |
|
|
388 |
|
* Element.dis (ManakaiDOMImplementationElement): Factory |
389 |
|
methods are moved from |Document.dis|. |
390 |
|
(ManakaiDOMElement.___create_node_ref): Support |
391 |
|
for old class registry is removed. |
392 |
|
(ManakaiDOMAttr.___create_node_ref): Removed. |
393 |
|
(Attr.baseURI): Implementation |
394 |
|
for |xml:base| attribute is merged. |
395 |
|
(Attr.nodeValue, Attr.value): Implementation |
396 |
|
for |xml:id| attribute is merged. |
397 |
|
|
398 |
|
* TreeCore.dis (ManakaiDOMImplementationTC): Removed. |
399 |
|
|
400 |
|
* XDoctype.dis (ManakaiDOMImplementationXDoctype): The |
401 |
|
definition for |createDocumentType| method |
402 |
|
is moved from |TreeCore.dis|. |
403 |
|
|
404 |
|
* XML.dis (ManakaiDOMXMLDocument): Factory |
405 |
|
methods are moved from |Document.dis|. |
406 |
|
(ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged |
407 |
|
into |ManakaiDOMAttr| in |Element.dis|). |
408 |
|
|
409 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
410 |
|
|
411 |
|
* Element.dis (___get_node_ref): |eval|ed |require| |
412 |
|
statement was broken. |
413 |
|
|
414 |
|
* DOMFeature.dis (getImplementationList): Argument |
415 |
|
is not passed to the |getImplementation| method. |
416 |
|
|
417 |
|
* TreeStore.dis (DOMImplementationTreeStore): It |
418 |
|
did not |f:implements| the |TSFeature30| feature. |
419 |
|
|
420 |
|
* XMLParser.dis: Use |create_uri_reference| |
421 |
|
method instead of internal |_new| method |
422 |
|
to create a URI reference object. |
423 |
|
|
424 |
|
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
425 |
|
|
426 |
|
* DOMCore.dis (ManakaiDOMImplementation): No longer |
427 |
|
explicitly inherits |urigen:ManakaiURIImplementation| (and |
428 |
|
the |f:ManakaiMinimumImplementation| class inherited |
429 |
|
by it). The |f:Minimum| feature is ever implemented |
430 |
|
for compatibility (but is expected to be removed). |
431 |
|
Internal methods such as |___report_error| are copied from |
432 |
|
obsolete |f:MinimumImplementation| class. DOM3 |
433 |
|
methods |hasFeature| and |getFeature| are also |
434 |
|
moved from that class, but they now support no |
435 |
|
foreign classes. |
436 |
|
|
437 |
|
* DOMFeature.dis (ManakaiImplementationSource): It |
438 |
|
now |p:require|s |Message::Util::AutoLoad::Registry|. |
439 |
|
The class no longer support classes |
440 |
|
other than |ManakaiDOMImplementation|. Note |
441 |
|
that the |ImplementationRegistry| object does continue |
442 |
|
to support foreign classes via foreign classes |
443 |
|
implementing |ImplementationSource| |
444 |
|
or |DOMImplementationSource| interface. |
445 |
|
(MinimumImplementation): Removed. |
446 |
|
|
447 |
|
* DOMLS.dis (ManakaiDOMImplementationLS): It no |
448 |
|
longer inherit the |ManakaiDOMImplementation|; it |
449 |
|
is now expected to be implemented by |DOMImplementation| |
450 |
|
objects. |
451 |
|
|
452 |
|
* DOMMain.dis (null): Removed. |
453 |
|
|
454 |
|
* Document.dis (___create_node_ref): It no |
455 |
|
longer support foreign classes other |
456 |
|
than |Message::DOM::Document::ManakaiDOMDocument|. |
457 |
|
Note that document format specific DOM |
458 |
|
interfaces, if supported, should be |
459 |
|
all instances of the |Document| interface |
460 |
|
in the implementation, as defined |
461 |
|
in the Web Applications 1.0 specification (where |
462 |
|
the |HTMLDocument| interface must be implemented |
463 |
|
by all |Document| objects, even if the |Document| |
464 |
|
contains no HTML element). |
465 |
|
|
466 |
|
* GenericLS.dis (GLSImplementation): It no |
467 |
|
longer inherit the |MinimumImplementation|; it |
468 |
|
is now expected to be implemented by |DOMImplementation| |
469 |
|
objects. |
470 |
|
(createGLSParser, createGLSSerializer): Load |
471 |
|
module implementing parser or serializer |
472 |
|
if necessary. |
473 |
|
|
474 |
|
* Traversal.dis (ManakaiDOMDocumentTraversal): It no |
475 |
|
longer inherits the |ManakaiDOMDocument|; it |
476 |
|
is now expected to be implemented by |Document| |
477 |
|
objects. |
478 |
|
|
479 |
|
* XDP.dis (XDPDocument): It no longer |
480 |
|
inherits the |Document|; it is now expected |
481 |
|
to be implemented by all |Document| objects. |
482 |
|
|
483 |
|
* XDoctype.dis (ManakaiDOMDocumentXDoctype): It no |
484 |
|
longer inherits the |ManakaiDOMDocument|; it |
485 |
|
is now expected to be implemented by |Document| |
486 |
|
objects. |
487 |
|
|
488 |
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
2006-11-04 Wakaba <wakaba@suika.fam.cx> |
489 |
|
|
490 |
* DOMCore.dis (ManakaiDOMImplementation): No longer |
* DOMCore.dis (ManakaiDOMImplementation): No longer |