1 |
|
2006-01-22 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* DOMCore.dis (NO_NAMED_NODE_ERR, NO_NAMED_NODE_NS_ERR, |
4 |
|
INUSE_DEFINITION_ERR, NO_NS_NAMEDNODEMAP_ERR): New error subtypes. |
5 |
|
|
6 |
|
* DOMMain.dis (ensureXMLName): Checks definesness of |$XMLVERSION| |
7 |
|
to avoid uninitialized value warning. |
8 |
|
|
9 |
|
* Tree.dis (ManakaiDOMElementTypeDefMap, ManakaiDOMAttrDefMap): New |
10 |
|
classes (work in progress). |
11 |
|
|
12 |
|
* XDoctype.dis (elementTypes, attributeDefinitions): New attributes. |
13 |
|
|
14 |
|
2006-01-22 Wakaba <wakaba@suika.fam.cx> |
15 |
|
|
16 |
|
* Tree.dis (getAttribute): Returns |null| if there |
17 |
|
is no attribute in |ManakaiDOM:DOMLatest| for compatibility |
18 |
|
with Web browser implementations. |
19 |
|
(getAttributeNS): It returned |null| if there |
20 |
|
is no attribute in any |For| unintentionally. It now |
21 |
|
returns an empty string in DOM levels less than or equals |
22 |
|
to three. |
23 |
|
|
24 |
|
* XMLParser.dis (shiftChar): Fixed not to be warned as |
25 |
|
uninitialized value or substring out of range. |
26 |
|
|
27 |
|
2006-01-21 Wakaba <wakaba@suika.fam.cx> |
28 |
|
|
29 |
|
* DOMXML.dis (DocumentType.childNodes): Removed |
30 |
|
from |ManakaiDOM:ManakaiDOMLatest| variant. |
31 |
|
|
32 |
|
* XMLParser.dis: Parsing of general internal entities implemented. |
33 |
|
(_DocumentTypeDeclaration): Appends a document type definition |
34 |
|
node to the document. |
35 |
|
(_ProcessingInstructionDTD): Appends a processing |
36 |
|
instruction node to the document type definition. |
37 |
|
(Element_): Document element could not be an |EmptyElemTag|. |
38 |
|
|
39 |
|
2006-01-21 Wakaba <wakaba@suika.fam.cx> |
40 |
|
|
41 |
|
* DOMFeature.dis (featuresParamToFeaturesHash): New block |
42 |
|
code (seprated from |InputProcessor|). Now |
43 |
|
a |features| parameter's version can be specified by |
44 |
|
an array reference that contains a set of version |
45 |
|
numbers. A test added. |
46 |
|
|
47 |
|
* XMLParser.dis: A test added. |
48 |
|
|
49 |
|
2006-01-07 Wakaba <wakaba@suika.fam.cx> |
50 |
|
|
51 |
|
* DOMCore.dis (Test): Don't invoke |DESTROY| method |
52 |
|
because it does not work with dummy object used in the test code. |
53 |
|
|
54 |
|
2006-01-07 Wakaba <wakaba@suika.fam.cx> |
55 |
|
|
56 |
|
* DOMMain.dis (checkXMLNamesQName): Checks whether |
57 |
|
namespace URI is defined for not being warned. |
58 |
|
|
59 |
|
* XDoctype.dis: New module. |
60 |
|
|
61 |
|
* DOMCore.dis (DOMStringList): Test added. |
62 |
|
|
63 |
|
* Makefile: |XDoctype.pm| added. |
64 |
|
|
65 |
|
* Tree.dis (Require): Requires |XDoctype.dis|. |
66 |
|
(ManakaiDOMNodeObjectNode.eq): Added. |
67 |
|
(Test): |DOMError.location| must return a |DOMLocator| |
68 |
|
object (it was incorrectly tested to return |null|). |
69 |
|
(EmptyNodeList.DESTROY): Removed. |
70 |
|
|
71 |
|
2006-01-04 Wakaba <wakaba@suika.fam.cx> |
72 |
|
|
73 |
|
* Tree.dis (NodeType): |ELEMENT_TYPE_DEFINITION_NODE| and |
74 |
|
|ATTRIBUTE_DEFINITION_NODE| node types added. |
75 |
|
(appendChild, insertBefore, replaceChild): New |
76 |
|
two node types added and processing instruction nodes |
77 |
|
as document type definition node child is allowed |
78 |
|
in |ManakaiDOM:ManakaiDOMLatest| mode. |
79 |
|
(getNodeReference): New |interface| parameter |
80 |
|
to filter classes by interface is added. |
81 |
|
(ElementTypeDefinitionRole): New role. |
82 |
|
(AttributeDefinitionRole): New role. |
83 |
|
|
84 |
|
2006-01-02 Wakaba <wakaba@suika.fam.cx> |
85 |
|
|
86 |
|
* DOMCore.dis (DOMStringList): Reimplemented as tied array. |
87 |
|
|
88 |
|
2005-12-31 Wakaba <wakaba@suika.fam.cx> |
89 |
|
|
90 |
|
* DOMCore.dis (DOMError.location): Returns an empty |DOMLocator| |
91 |
|
if it is not provided. |
92 |
|
|
93 |
|
* XMLParser.dis: Parsing methods to skip document |
94 |
|
type declaration is added. |
95 |
|
|
96 |
|
2005-12-29 Wakaba <wakaba@suika.fam.cx> |
97 |
|
|
98 |
|
* XMLParser.dis (shiftChar): Checks characters are legal |
99 |
|
or not. Normalize end-of-lines. |
100 |
|
(rule _XMLDeclaration_): Implemented. |
101 |
|
(WFErrDef): Well-formedness error |wf-syntax-error|, |
102 |
|
|wf-pi-target-is-xml|, |wf-no-end-tag|, |
103 |
|
|wf-unsupported-xml-version|, |wf-malformed-enc-name|, |
104 |
|
|wf-malformed-xml-standalone|, |wf-legal-literal-character|, |
105 |
|
|wf-element-type-match|, |wf-unique-att-spec|, |
106 |
|
|wf-legal-character| added. |
107 |
|
(%character-code-point): New formatter rule. |
108 |
|
|
109 |
|
* Tree.dis (Document.xmlEncoding): It is now read-write attribute. |
110 |
|
|
111 |
|
* DOMCore.dis (DOMError.stringify): Added. |
112 |
|
(error-handler.default): Returns |false| (don't continue) |
113 |
|
when the error severity is |SEVERITY_FATAL_ERROR|. |
114 |
|
|
115 |
|
2005-12-28 Wakaba <wakaba@suika.fam.cx> |
116 |
|
|
117 |
|
* XMLParser.dis (DocumentEntity): Typos fixed. |
118 |
|
(|lexmode|s): New |?default-token| statements are used |
119 |
|
so that tokenizer description has been simplified |
120 |
|
and CDATA sections now can be parsed. |
121 |
|
|
122 |
|
2005-12-28 Wakaba <wakaba@suika.fam.cx> |
123 |
|
|
124 |
|
* XMLParser.dis: Some modifications made. |
125 |
|
|
126 |
|
2005-12-27 Wakaba <wakaba@suika.fam.cx> |
127 |
|
|
128 |
|
* DOMLS.dis (PARSE_ERR, SERIALIZE_ERR): They are now a |
129 |
|
global named resource. |
130 |
|
|
131 |
|
* Makefile: Rules to make |XMLParser.pm| is added. |
132 |
|
|
133 |
|
* XMLParser.dis: New file. |
134 |
|
|
135 |
|
2005-12-24 Wakaba <wakaba@suika.fam.cx> |
136 |
|
|
137 |
|
* DOMCore.dis (ManakaiDOMError._FORMATTER_PACKAGE_): Error |
138 |
|
message formatter can now vary by error types. |
139 |
|
(DOMLocator.utf32Offset): New (manakai extended) attribute. |
140 |
|
|
141 |
|
2005-12-23 Wakaba <wakaba@suika.fam.cx> |
142 |
|
|
143 |
|
* DOMCore.dis (DOMLocator): Implemented. |
144 |
|
|
145 |
|
2005-12-21 Wakaba <wakaba@suika.fam.cx> |
146 |
|
|
147 |
|
* DOMCore.dis (DOMConfigurationParameterApplication, |
148 |
|
domConfigurationParameter): New resources. |
149 |
|
|
150 |
|
2005-11-25 Wakaba <wakaba@suika.fam.cx> |
151 |
|
|
152 |
|
* Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error): |
153 |
|
New methods. |
154 |
|
|
155 |
|
2005-11-24 Wakaba <wakaba@suika.fam.cx> |
156 |
|
|
157 |
|
* DOMMain.dis, DOMLS.dis, DOMXML.dis, Tree.dis: Old |__WARNING__| |
158 |
|
blocks are replaced by |DOMError|-based |__DOMCore:ERROR__| blocks. |
159 |
|
|
160 |
|
* DOMMain.dis (___report_error): Throws the error unkess |
161 |
|
it is a |DOMCore:DOMError| object. |
162 |
|
|
163 |
|
2005-11-24 Wakaba <wakaba@suika.fam.cx> |
164 |
|
|
165 |
|
* DOMCore.dis (severity, type): Getters return value from |
166 |
|
the definition of the current error (i.e. |-def| hash). |
167 |
|
(___error_def): New method. |
168 |
|
(errorType): |dis:dataType| changed to |DISCore:TFQNames| |
169 |
|
to ease natural reference to constant value. |
170 |
|
(error-handler.default): Prints the error message by |warn|. |
171 |
|
|
172 |
|
* Tree.dis (nodeValue.set): Reimplemented so that it |
173 |
|
warns as setting has no effect. |
174 |
|
(___report_error): New method. (It had been only implemented |
175 |
|
in superclass.) |
176 |
|
(setting-node-value-no-effect): New error type. |
177 |
|
|
178 |
|
2005-11-23 Wakaba <wakaba@suika.fam.cx> |
179 |
|
|
180 |
|
* DOMCore.dis: Error codes added. |
181 |
|
|
182 |
|
* Tree.dis (destroyNodeStem): New method implementation. |
183 |
|
|
184 |
|
2005-11-22 Wakaba <wakaba@suika.fam.cx> |
185 |
|
|
186 |
|
* Tree.dis (cloneNode): User data handlers implemented. |
187 |
|
(adoptNode): User data handlers implemented. |
188 |
|
|
189 |
|
2005-11-21 Wakaba <wakaba@suika.fam.cx> |
190 |
|
|
191 |
|
* DOMCore.dis (UserDataHandler): A constraint for Perl binding |
192 |
|
added. |
193 |
|
|
194 |
|
* Tree.dis (cloneNode): Invoking of |UserDataHandler|s are implemented. |
195 |
|
(getUserData, setUserData): Implemented. |
196 |
|
|
197 |
|
2005-11-20 Wakaba <wakaba@suika.fam.cx> |
198 |
|
|
199 |
|
* DOMCore.dis (UserDataHandler): Implemented. |
200 |
|
(DOMErrorHandler): Blessed package name bug fixed. |
201 |
|
|
202 |
|
* ManakaiDOMLS2003.dis: Reference to |Node| subclasses |
203 |
|
changed to |Tree.dis|. |
204 |
|
|
205 |
|
2005-11-20 Wakaba <wakaba@suika.fam.cx> |
206 |
|
|
207 |
|
* DOMMain.dis: Unused declarations and definitions removed. |
208 |
|
|
209 |
|
* DOMCore.dis: DOM document tree related interfaces removed. |
210 |
|
|
211 |
|
* Tree.dis: New module separated from |DOMCore.dis|. |
212 |
|
|
213 |
|
* DOMXML.dis: Some referent changed to |Tree.dis|. |
214 |
|
|
215 |
|
* Makefile: |Tree.dis| added. |
216 |
|
|
217 |
|
2005-11-16 Wakaba <wakaba@suika.fam.cx> |
218 |
|
|
219 |
|
* .cvsignore: Revised. |
220 |
|
|
221 |
|
2005-11-16 Wakaba <wakaba@suika.fam.cx> |
222 |
|
|
223 |
|
* ManakaiDOMLS2003.dis: Tests added. |
224 |
|
(domConfig): Method name in the code fixed to |flag|. |
225 |
|
|
226 |
|
* DOMMain.dis (findOffset32): Missing |^| in regular expressions |
227 |
|
added. |
228 |
|
|
229 |
|
* DOMCore.dis (hasChildNodes): Returns |false| if the node type |
230 |
|
is defined not to have any children. |
231 |
|
(CharacterData): Typos in element type names and function names fixed. |
232 |
|
|
233 |
|
2005-11-15 Wakaba <wakaba@suika.fam.cx> |
234 |
|
|
235 |
|
* DOMFeature.dis (MinimumImplementation.eq): Added. |
236 |
|
|
237 |
|
* DOMMain.dis: |DISPerl:ISA| reference fixed. |
238 |
|
|
239 |
|
* Generic.dis: Implements new |DOMLS:Generic| feature. |
240 |
|
|
241 |
|
2005-11-15 Wakaba <wakaba@suika.fam.cx> |
242 |
|
|
243 |
|
* DOMFeature.dis (stringifyFeatures): Don't double |SPACE| |
244 |
|
characters between feature names and versions. |
245 |
|
|
246 |
|
2005-11-13 Wakaba <wakaba@suika.fam.cx> |
247 |
|
|
248 |
|
* DOMFeature.dis (stringifyFeatures): A test code added. |
249 |
|
|
250 |
|
2005-10-26 Wakaba <wakaba@suika.fam.cx> |
251 |
|
|
252 |
|
* SimpleLS.dis (writeToString): Don't stop serializing |
253 |
|
when an |false| value appears in |@src|. |
254 |
|
|
255 |
|
2005-10-16 Wakaba <wakaba@suika.fam.cx> |
256 |
|
|
257 |
|
* DOMCore.dis (DOMError, DOMErrorHandler): Reimplemented. |
258 |
|
(ErrDef): Redefined. |
259 |
|
|
260 |
|
* DOMLS.dis (ErrDef): Redefined. |
261 |
|
|
262 |
|
2005-10-16 Wakaba <wakaba@suika.fam.cx> |
263 |
|
|
264 |
|
* DOMCore.dis (DOMConfiguration): Extends "ManakaiDOM:ManakaiDOMObject". |
265 |
|
|
266 |
|
2005-10-15 Wakaba <wakaba@suika.fam.cx> |
267 |
|
|
268 |
|
* DOMCore.dis (Require): References "DOMLS.dis" module. |
269 |
|
(CParam): Definitions for LS module added. |
270 |
|
|
271 |
|
* DOMLS.dis (ManakaiDOMLSInput): The input processor |
272 |
|
is also an output processor now. |
273 |
|
(ManakaiDOMLSResourceResolver): Implemented. |
274 |
|
(CParam): Definitions updated. |
275 |
|
|
276 |
|
2005-10-14 Wakaba <wakaba@suika.fam.cx> |
277 |
|
|
278 |
|
* DOMCore.dis (NOT_RECOGNIZED_CONFIG_PARAM_ERR, |
279 |
|
NOT_SUPPORTED_CONFIG_VALUE_ERR, |
280 |
|
INCOMPATIBLE_CONFIG_VALUE_ERR): New error subcodes. |
281 |
|
(DOMConfiguration): Implemented. |
282 |
|
(CParam): Definitions updated. |
283 |
|
|
284 |
|
* DOMMain.dis (DOMURIs): New data type. |
285 |
|
|
286 |
|
2005-10-13 Wakaba <wakaba@suika.fam.cx> |
287 |
|
|
288 |
|
* DOMCore.dis (setAttrValueNS): New code. |
289 |
|
|
290 |
|
2005-10-12 Wakaba <wakaba@suika.fam.cx> |
291 |
|
|
292 |
|
* DOMCore.dis: Don't set "infoset:prefix" internal |
293 |
|
property unless it has non-null value. |
294 |
|
(newObject): "refNode" parameter introduced. |
295 |
|
(ManakaiDOMNode.newObject): Calls "NodeStem.newNode" |
296 |
|
method if "refNode" parameter is specified. |
297 |
|
(cloneNode): Don't set "read-only" flag. |
298 |
|
(getNodeReference): Caches the result. |
299 |
|
(selectAttributeNodeForRemove): Don't removes any other |
300 |
|
non-namespace-aware attribute nodes. |
301 |
|
|
302 |
|
2005-10-11 Wakaba <wakaba@suika.fam.cx> |
303 |
|
|
304 |
|
* DOMCore.dis (appendChild, createElementNS, createAttributeNS, |
305 |
|
setAttribute, setAttributeNS): "strictErrorChecking" attribute supported. |
306 |
|
(doStrictErrorChecking): New code. |
307 |
|
|
308 |
|
* DOMMain.dis (XML10Name, XML11Name): "strictErrorChecking" attribute |
309 |
|
supported. |
310 |
|
|
311 |
|
* Makefile: Rule to make "DOMFeature.pm" restored. |
312 |
|
|
313 |
|
2005-10-10 Wakaba <wakaba@suika.fam.cx> |
314 |
|
|
315 |
|
* DOMCore.dis (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode. |
316 |
|
(adoptNode): Implemented. |
317 |
|
|
318 |
|
2005-10-09 Wakaba <wakaba@suika.fam.cx> |
319 |
|
|
320 |
|
* DOMHTML.dis, DOMWebForms.dis: Typos in element type prefix fixed. |
321 |
|
|
322 |
|
* DOMFeature.dis (DOMCore:implementation): Short name added. |
323 |
|
|
324 |
|
* DOMCore.dis (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode. |
325 |
|
(DOMCore:node): New error parameter. |
326 |
|
(DOMCore:ownerDocument): Changed from "mn:irefnode0" |
327 |
|
to "mn:xrefnode0". For this reason, all assignments |
328 |
|
to this property have been rewritten to references |
329 |
|
to code "mn:setXRefNode". |
330 |
|
(cloneNode): Implemented. |
331 |
|
(setAttributeNode): A missing "importTree" method call added. |
332 |
|
(setAttributeNodeNS): Perl code removed and changed |
333 |
|
to a reference to "setAttributeNode" method code. |
334 |
|
|
335 |
|
* DOMXML.dis (DOMCore:ownerDocument): Changed from "mn:irefnode0" |
336 |
|
property to "mn:xrefnode0" property. |
337 |
|
|
338 |
|
2005-10-08 Wakaba <wakaba@suika.fam.cx> |
339 |
|
|
340 |
|
* DOMCore.dis, DOMLS.dis: Now constant values are defined only |
341 |
|
in interfaces. |
342 |
|
|
343 |
|
2005-10-06 Wakaba <wakaba@suika.fam.cx> |
344 |
|
|
345 |
|
* DOMCore.dis (ManakaiDOMEmptyNodeList): New class. |
346 |
|
(ManakaiDOMCharacterData): Methods reimplemented. |
347 |
|
(splitText): Reimplemented. |
348 |
|
(childNodes): Returns a "ManakaiDOMEmptyNodeList" |
349 |
|
for non-parent node types. |
350 |
|
|
351 |
|
* DOMXML.dis (childNodes): Returns a "ManakaiDOMEmptyNodeList" |
352 |
|
for non-parent node types. |
353 |
|
|
354 |
|
2005-10-05 Wakaba <wakaba@suika.fam.cx> |
355 |
|
|
356 |
|
* ManakaiDOMLS2003.dis: Revised to new format. |
357 |
|
|
358 |
|
* GenericLS.dis (DOMLS:ParseString): New feature. |
359 |
|
|
360 |
|
2005-10-05 Wakaba <wakaba@suika.fam.cx> |
361 |
|
|
362 |
|
* DOMFeature.dis: Description added and revised. (Still more |
363 |
|
work required.) |
364 |
|
|
365 |
|
2005-10-04 Wakaba <wakaba@suika.fam.cx> |
366 |
|
|
367 |
|
* DOMMain.dis (DOMString): The "idl:perl" attribute |
368 |
|
value has been changed from "DISPerl:String" |
369 |
|
to "DISPerl:CharacterString" to clarify its semantics. |
370 |
|
|
371 |
|
2005-10-03 Wakaba <wakaba@suika.fam.cx> |
372 |
|
|
373 |
|
* DOMFeature.dis (MIString): Java, ECMAScript, and Perl bound |
374 |
|
type properties added. |
375 |
|
|
376 |
|
* DOMMain.dis (DataType): Java, ECMAScript, and Perl bound |
377 |
|
type properties added. |
378 |
|
|
379 |
|
2005-10-02 Wakaba <wakaba@suika.fam.cx> |
380 |
|
|
381 |
|
* DOMFeature.dis (Module): "idl:prefix" and "idl:moduleName" |
382 |
|
properties added. |
383 |
|
|
384 |
|
2005-10-01 Wakaba <wakaba@suika.fam.cx> |
385 |
|
|
386 |
|
* DOMFeature.dis: Documentation added (still work in progress). |
387 |
|
(MIString): New type. |
388 |
|
|
389 |
|
* DOMCore.dis (namespaceURI): Fixed to return the namespace |
390 |
|
URI value, not a reference to it. |
391 |
|
|
392 |
|
2005-09-30 Wakaba <wakaba@suika.fam.cx> |
393 |
|
|
394 |
|
* DOMCore.dis, SimpleLS.dis: Shares namespace URIs and local |
395 |
|
names where possible. |
396 |
|
|
397 |
|
* DOMFeature.dis: Documentation for DOM Minimum Implementation |
398 |
|
added (still work in progress). |
399 |
|
|
400 |
|
* Makefile (feature.dae, feature-spec.dae): New rules. |
401 |
|
|
402 |
|
2005-09-27 Wakaba <wakaba@suika.fam.cx> |
403 |
|
|
404 |
|
* DOMCore.dis (DOMCore:nodeProp): New property. |
405 |
|
|
406 |
|
* DOMCore.dis, DOMXML.dis: Codes to set properties "TreeCore:*" |
407 |
|
is removed. |
408 |
|
|
409 |
|
2005-09-26 Wakaba <wakaba@suika.fam.cx> |
410 |
|
|
411 |
|
* DOMCore.dis, DOMXML.dis: New mn:* properties added. |
412 |
|
|
413 |
|
2005-09-25 Wakaba <wakaba@suika.fam.cx> |
414 |
|
|
415 |
|
* Makefile (DAC_SUFFIX): Changed to ".dae". |
416 |
|
(DAEM_SUFFIX): New. |
417 |
|
|
418 |
|
2005-09-24 Wakaba <wakaba@suika.fam.cx> |
419 |
|
|
420 |
|
* DOMMain.dis (MDOM:): Reintroduced for "ManakaiDOM:ManakaiDOM1" |
421 |
|
and "ManakaiDOM:ManakaiDOM2". |
422 |
|
|
423 |
|
* DOMFeature.dis, DOMMain.dis, DOMCore.dis, DOMXML.dis, |
424 |
|
DOMLS.dis, SimpleLS.dis, GenericLS.dis: Use disPerl:H |
425 |
|
instead of disPerl:Q for internal property hash keys. |
426 |
|
|
427 |
|
* DOMFeature.dis, DOMCore.dis, DOMXML.dis: Missing property |
428 |
|
definitions added. |
429 |
|
|
430 |
|
* DOMCore.dis (DOMCore:TextNode, DOMCore:DocumentFragmentNode): |
431 |
|
New resources. |
432 |
|
|
433 |
|
* DOMXML.dis (DOMXML:EntityNode, DOMXML:EntityReferenceNode): New |
434 |
|
resources. |
435 |
|
|
436 |
|
2005-09-23 Wakaba <wakaba@suika.fam.cx> |
437 |
|
|
438 |
|
* GenericLS.dis, SimpleLS.dis: New modules separated |
439 |
|
from DOMLS.dis. |
440 |
|
|
441 |
|
* DOMFeature.dis, DOMMain.dis: "MDOM:" and "for" definitions |
442 |
|
moved from DOMMain to DOMFeature. Now DOMFeature |
443 |
|
has no dependency on DOMMain. |
444 |
|
|
445 |
|
* DOMFeature.dis (DEBUG): New variable. |
446 |
|
|
447 |
|
2005-09-22 Wakaba <wakaba@suika.fam.cx> |
448 |
|
|
449 |
|
* Makefile: DAC_SUFFIX changed to ".dad". |
450 |
|
|
451 |
|
2005-09-21 Wakaba <wakaba@suika.fam.cx> |
452 |
|
|
453 |
|
* DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion" |
454 |
|
features if it is "for" ManakaiDOM:DOMXMLFeature. |
455 |
|
|
456 |
|
* DOMMain.pm (StringExtend): Code portions of raising |
457 |
|
StringOutOfBoundsException is temporary disabled since |
458 |
|
it is not a DOM-style exception supported by |
459 |
|
current implementation of ManakaiNode - it will be |
460 |
|
recovered in later revision. |
461 |
|
|
462 |
|
2005-09-20 Wakaba <wakaba@suika.fam.cx> |
463 |
|
|
464 |
|
* DOMFeature.pm: Debug output code copied |
465 |
|
from Attic/DOMMetaImpl.pm (Should these code incorporated |
466 |
|
to source dis file?). |
467 |
|
|
468 |
|
2005-09-19 Wakaba <wakaba@suika.fam.cx> |
469 |
|
|
470 |
|
* DOMMain.dis (ManakaiDOM:DOMMethod, ManakaiDOM:DOMMethodReturn, |
471 |
|
ManakaiDOM:DOMAttribute, ManakaiDOM:DOMAttrGet, |
472 |
|
ManakaiDOM:DOMAttrSet, ManakaiDOM:DOMMethodParam): Removed. |
473 |
|
(ManakaiDOMTimeStamp): Removed. |
474 |
|
|
475 |
|
* DOMBoot.dis, DOMMetaImpl.dis, DOMMetaImpl.pm: Removed (they are no |
476 |
|
longer in use). |
477 |
|
|
478 |
|
2005-09-18 Wakaba <wakaba@suika.fam.cx> |
479 |
|
|
480 |
|
* DOMMain.dis (StringOutOfBoundsException): New exception. |
481 |
|
|
482 |
2005-09-15 Wakaba <wakaba@suika.fam.cx> |
2005-09-15 Wakaba <wakaba@suika.fam.cx> |
483 |
|
|
484 |
* DOMFeature.dis: dis:dataType and dis:multipleProperties |
* DOMFeature.dis: dis:dataType and dis:multipleProperties |