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