/[suikacvs]/messaging/manakai/lib/Message/DOM/ChangeLog
Suika

Contents of /messaging/manakai/lib/Message/DOM/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.110 - (show annotations) (download)
Fri Jan 27 16:24:35 2006 UTC (18 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.109: +21 -0 lines
++ manakai/lib/Message/Util/DIS/ChangeLog	27 Jan 2006 16:23:51 -0000
2006-01-27  Wakaba  <wakaba@suika.fam.cx>

	* Test.dis (assertDOMTreeEquals, TDTParser): New
	functional notation for |TypeInfo| added.

++ manakai/lib/Message/DOM/ChangeLog	27 Jan 2006 16:22:53 -0000
2006-01-27  Wakaba  <wakaba@suika.fam.cx>

	* DOMCore.dis (ManakaiDOMDTDTypeInfo): New class.

	* Tree.dis (STORESIZE): Index bound bug fixed.
	(Attr.value): Redefined to consist with |AttributeDefinition.nodeValue|.
	(schemaTypeInfo): Implemented for XML DTD.
	(isId): Returns |true| if [attribute type] is |ID|.
	(setAttribute, setAttributeNS): Sets [attribute type]
	of the newly created |Attr| node (if any) when attribute
	definition is available.
	(doctype, documentElement): Reimplemented with tests.

	* XMLParser.dis: Sets [attribute type] information
	to created |Attr| nodes.  Normalize namespace URIs
	when such information are available (unlikely but legal).
	(_HexadecimalCharacterReference): Number to character
	convertion bug fixed.
	(_DocumentTypeDeclaration): Sets |schema-type|
	configuration parameter to XML DTD URI.

++ manakai/lib/manakai/ChangeLog	27 Jan 2006 16:24:27 -0000
2006-01-27  Wakaba  <wakaba@suika.fam.cx>

	* XML.dis (infoset:attributeType): Acronym for internal
	representation added.

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>
490
491 * DOMMain.dis (MDOM:): Reintroduced for "ManakaiDOM:ManakaiDOM1"
492 and "ManakaiDOM:ManakaiDOM2".
493
494 * DOMFeature.dis, DOMMain.dis, DOMCore.dis, DOMXML.dis,
495 DOMLS.dis, SimpleLS.dis, GenericLS.dis: Use disPerl:H
496 instead of disPerl:Q for internal property hash keys.
497
498 * DOMFeature.dis, DOMCore.dis, DOMXML.dis: Missing property
499 definitions added.
500
501 * DOMCore.dis (DOMCore:TextNode, DOMCore:DocumentFragmentNode):
502 New resources.
503
504 * DOMXML.dis (DOMXML:EntityNode, DOMXML:EntityReferenceNode): New
505 resources.
506
507 2005-09-23 Wakaba <wakaba@suika.fam.cx>
508
509 * GenericLS.dis, SimpleLS.dis: New modules separated
510 from DOMLS.dis.
511
512 * DOMFeature.dis, DOMMain.dis: "MDOM:" and "for" definitions
513 moved from DOMMain to DOMFeature. Now DOMFeature
514 has no dependency on DOMMain.
515
516 * DOMFeature.dis (DEBUG): New variable.
517
518 2005-09-22 Wakaba <wakaba@suika.fam.cx>
519
520 * Makefile: DAC_SUFFIX changed to ".dad".
521
522 2005-09-21 Wakaba <wakaba@suika.fam.cx>
523
524 * DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion"
525 features if it is "for" ManakaiDOM:DOMXMLFeature.
526
527 * DOMMain.pm (StringExtend): Code portions of raising
528 StringOutOfBoundsException is temporary disabled since
529 it is not a DOM-style exception supported by
530 current implementation of ManakaiNode - it will be
531 recovered in later revision.
532
533 2005-09-20 Wakaba <wakaba@suika.fam.cx>
534
535 * DOMFeature.pm: Debug output code copied
536 from Attic/DOMMetaImpl.pm (Should these code incorporated
537 to source dis file?).
538
539 2005-09-19 Wakaba <wakaba@suika.fam.cx>
540
541 * DOMMain.dis (ManakaiDOM:DOMMethod, ManakaiDOM:DOMMethodReturn,
542 ManakaiDOM:DOMAttribute, ManakaiDOM:DOMAttrGet,
543 ManakaiDOM:DOMAttrSet, ManakaiDOM:DOMMethodParam): Removed.
544 (ManakaiDOMTimeStamp): Removed.
545
546 * DOMBoot.dis, DOMMetaImpl.dis, DOMMetaImpl.pm: Removed (they are no
547 longer in use).
548
549 2005-09-18 Wakaba <wakaba@suika.fam.cx>
550
551 * DOMMain.dis (StringOutOfBoundsException): New exception.
552
553 2005-09-15 Wakaba <wakaba@suika.fam.cx>
554
555 * DOMFeature.dis: dis:dataType and dis:multipleProperties
556 properties added to properties.
557
558 2005-09-08 Wakaba <wakaba@suika.fam.cx>
559
560 * Makefile: Rules renewaled.
561
562 2005-09-07 Wakaba <wakaba@suika.fam.cx>
563
564 * DOMCore.dis, DOMXML.dis, DOMLS.dis: Inheritance information fixed.
565
566 2005-09-05 Wakaba <wakaba@suika.fam.cx>
567
568 * DOMMain.dis (DOMImplementationRegistry,
569 DOMImplementationRegistryVar): New.
570
571 * DOMFeature.dis (DOMImplementationRegistry,
572 DOMImplementationRegistryVar): Removed.
573 (ImplementationRegistry): New class.
574
575 2005-09-04 Wakaba <wakaba@suika.fam.cx>
576
577 * DOMFeature.dis: New module.
578
579 * DOMMetaImpl.dis (ManakaiDOM:ManakaiDOMObject): Removed.
580
581 * DOMMain.dis (ManakaiDOM:ManakaiDOMObject): New.
582 (DOMString, DOMTimeStamp): Now they are not interfaces
583 but datatypes.
584 (DOMUserData, DOMObject, DOMUserData): Now they
585 are subtypes rather than aliases of their "real" type in IDL.
586
587 * DOMCore.dis (DOMImplementationList, DOMImplementationSource):
588 New interfaces and classes.
589
590 2005-09-01 Wakaba <wakaba@suika.fam.cx>
591
592 * DOMCore.dis (setTextNodeContent): Sets the infoset:parent
593 property of the new Text node.
594
595 2005-08-29 Wakaba <wakaba@suika.fam.cx>
596
597 * Makefile: Loads "NaturalLanguage.dis".
598
599 2005-08-26 Wakaba <wakaba@suika.fam.cx>
600
601 * DOMCore.dis (createDocument): Set "ownerDocument" attribute
602 to the root element created by the method. (It was forgotten!!)
603
604 2005-08-15 Wakaba <wakaba@suika.fam.cx>
605
606 * DOMCore.dis (appendChild, insertBefore, replaceChild): Typo
607 in the code of removing the newChild from the previous
608 parent of that node is fixed.
609
610 2005-05-29 Wakaba <wakaba@suika.fam.cx>
611
612 * DOMLS.dis (SimpleSerializer): End tag was sometimes missing. Use
613 namespace prefix of element type if it is not declared
614 but not used else. A shift is replaced by pop:).
615
616 * DOMCore.dis (getFeature): The getFeature method
617 for Node-derived classes implemented.
618 * DOMXML.dis (getFeature): Ditto.
619
620 2005-05-21 Wakaba <wakaba@suika.fam.cx>
621
622 * DOMCore.dis (getNodeReference): Use HTMLDocument class
623 if a document node has no document element node but
624 has support for the "HTML" feature.
625
626 2005-03-03 Wakaba <wakaba@suika.fam.cx>
627
628 * DOMMetaImpl.dis (features input normalizer): Variable name
629 typo fixed.
630 (ManakaiDOMImplementationSource.getDOMImplementation): Fixed bug
631 so that version specification for "+"'ed feature name does work now.
632
633 2005-03-02 Wakaba <wakaba@suika.fam.cx>
634
635 * DOMBoot.dis (ResourceDef): Definitions for DOMFeature are
636 removed (now defined in DOMMetaImpl).
637
638 2005-02-21 Wakaba <wakaba@suika.fam.cx>
639
640 * DOMMetaImpl.dis (IFClsDef[ManakaiDOMMinimumImplementation]): New.
641
642 * Makefile: Rules for DOMMetaImpl module added.
643
644 2005-02-20 Wakaba <wakaba@suika.fam.cx>
645
646 * DOMMetaImpl.dis: New module (split from DOMCore and DOMMain).
647
648 2005-02-18 Wakaba <wakaba@suika.fam.cx>
649
650 * DOMCore.dis (getFeature): ManakaiDOM:ManakaiDOMNodeObject.newReference
651 is an instance method, not a class method.
652
653 * DOMMain.dis (ResourceTypeDef[ManakaiDOM:Const,
654 ManakaiDOM:ConstGroup]): Removed (moved to "lib/manakai/DISLang.dis").
655 (Exception-related definitions): Removed (moved to
656 "lib/Message/Util/Error/DOMException.dis").
657 (ForDef[ManakaiDOM:ForIF, ManakaiDOM:ForClass]): Removed (moved
658 to DISLang).
659
660 2005-02-17 Wakaba <wakaba@suika.fam.cx>
661
662 * DOMMain.dis: Definitions for "ManakaiDOM:ManakaiDOMNodeObject" and
663 "ManakaiDOM:ManakaiDOMNodeReference" are removed (moved to
664 "lib/Message/Util/ManakaiNode.dis").
665 (ResourceDef[ManakaiDOM:DataType]): Removed (moved to
666 "lib/manakai/DISCore.dis").
667 (ResourceTypeDef[ManakaiDOM:IF, ManakaiDOM:Class,
668 ManakaiDOM:PrimitiveTypeClass]): Removed (moved to
669 "lib/manakai/DISLang.dis").
670
671 2005-02-16 Wakaba <wakaba@suika.fam.cx>
672
673 * DOMMain.dis (ForDef[ManakaiDOM:Perl]): Removed (moved to
674 DISPerl module).
675
676 2005-01-07 Wakaba <wakaba@suika.fam.cx>
677
678 * DOMCore.dis: Each "delete array-item" replaced to a "splice".
679
680 2005-01-06 Wakaba <wakaba@suika.fam.cx>
681
682 * DOMMain.dis (ensureXMLName): Test as if XML 1.0 if it is not an
683 XML document.
684
685 2005-01-05 Wakaba <wakaba@suika.fam.cx>
686
687 * DOMMain.dis (ManakaiDOMExceptionOrWarning.stringify): New method.
688 (IntMethod[isExternallyReferred]): Rewritten.
689 (IntMethod[isExternallyReferredDownward]): Removed.
690 (Checking XML name legallity): Fix true or false mistakes.
691 (destroy, importTree, orphanate): Rewritten.
692 (destroyDownward, changeTreeIDDownward): Removed.
693 (TreeCore:urefnode property): Removed since not used.
694
695 * DOMCore.dis: Tying array for NodeList implemented.
696
697 2005-01-02 Wakaba <wakaba@suika.fam.cx>
698
699 * DOMHTML.dis (HTMLDOMImplementation): New interface.
700
701 * DOMViews.dis: Documentation for properties are added.
702
703 2004-12-29 Wakaba <wakaba@suika.fam.cx>
704
705 * Makefile: DOMXML, DOMEvents, DOMLS and ManakaiDOMLS2003 added.
706
707 * ManakaiDOMCore.dis: Removed (merged with DOMCore.dis).
708
709 2004-12-28 Wakaba <wakaba@suika.fam.cx>
710
711 * ManakaiDOMXML.dis: Removed (merged with DOMXML.dis).
712
713 2004-12-01 Wakaba <wakaba@suika.fam.cx>
714
715 * ManakaiDOMMain.dis: Removed (merged with DOMMain.dis).
716
717 2004-11-03 Wakaba <wakaba@suika.fam.cx>
718
719 * .cvsignore: Ignore pod files.
720
721 2004-10-31 Wakaba <wakaba@suika.fam.cx>
722
723 * DOMXML.dis (ProcessingInstruction.data): Property name error fixed.
724
725 * DOMMain.dis: Don't call DOMString->__INT{length}__ - it should
726 be DOMString->length.
727
728 * DOMCore.dis (Element.getElementsByTagName,
729 Node.getElementsByTagName, Element.getElementsByTagNameNS,
730 Node.getElementsByTagNameNS): Implemented.
731 (Element.getAttributeNode, Element.getAttributeNodeNS):
732 Check whether defined.
733
734 2004-10-18 Wakaba <wakaba@suika.fam.cx>
735
736 * DOMWebForms.dis: New module.
737
738 2004-10-17 Wakaba <wakaba@suika.fam.cx>
739
740 * DOMBasicEvents.dis, DOMHTMLEvents.dis, DOMViews.dis,
741 DOMHTML.dis: New modules.
742
743 2004-10-16 Wakaba <wakaba@suika.fam.cx>
744
745 * DOMMouseEvents.dis, DOMTextEvents.dis: New module.
746
747 2004-10-11 Wakaba <wakaba@suika.fam.cx>
748
749 * ManakaiDOMMain.dis: 'TreeCore:anydata2' property type added.
750 (DataType[ManakaiDOMKeyIdentifier, ManakaiDOMKeyIdentifiers]): added.
751
752 2004-10-10 Wakaba <wakaba@suika.fam.cx>
753
754 * DOMEvents.dis: New module.
755
756 * ManakaiDOMCore.dis (ManakaiDOMAttributes.item): Return
757 node reference.
758
759 * ManakaiDOMLS2003.dis (error_handler): '$caller' changed
760 to '$self' for correct error reporting and not to leak memory.
761
762 * Makefile (DIS2PM_PL): Path to dis2pm.pl changed.
763 * dis2pm.pl, idl2dis.pl: Removed (moved to ../../bin/).
764
765 2004-10-09 Wakaba <wakaba@suika.fam.cx>
766
767 * DOMCore.dis (ConfigParam): Moved from ManakaiDOMCore.
768 * ManakaiDOMCore.dis (ConfigParam): Removed.
769
770 * dis2pm.pl: Functions to create perl/pod structures
771 are moved to ../../bin/genlib.pl.
772 (disdoc2pod, disdoc2text): Allow LESS-THAN SIGN as the first
773 character of a paragraph.
774
775 * ManakaiDOMLS2003.dis (ManakaiXMLParser2003/parse:#comment):
776 Set ownerDocument as parent if parent.ownerDocument is null.
777
778 * dis2pm.pl (dis2perl): Report if DIS code has value.
779
780 2004-10-06 Wakaba <wakaba@suika.fam.cx>
781
782 * ManakaiDOMCore.dis (IFs): Inherit non-conditional version
783 of ManakaiDOMMain interfaces.
784
785 * DOMCore.dis (Node.childNodes): Typo fixed.
786
787 * ManakaiDOMLS2003.dis (parse): Check whether the namespace
788 prefix is null.
789
790 * dis2pm.pl (perl_builtin_code): Allow hash reference as 'features'.
791 (Condition): Don't generate condition inheritance for DOM1, DOM2
792 and DOM3.
793
794 2004-09-30 Wakaba <wakaba@suika.fam.cx>
795
796 * dis2pm.pl (disdoc_inline2pod, disdoc_inline2text): New
797 element type 'FILE' added.
798
799 * ManakaiDOMMain.dis (ManakaiDOMExceptionOrWarning,
800 ManakaiDOMException, ManakaiDOMWarning): New classes.
801 (ManakaiDOMObject/___report_error): Implemented.
802
803 * dis2pm.pl (perl_builtin_code:ParseFeature): Recognize leading '+'.
804
805 2004-09-29 Wakaba <wakaba@suika.fam.cx>
806
807 * dis2pm.pl (get_redef_description, attr2perl, method2perl, if2perl):
808 New attribute 'IsAbstract', 'IsFinal' and 'ImplByApp' added.
809
810 2004-09-27 Wakaba <wakaba@suika.fam.cx>
811
812 * .cvsignore: New file.
813
814 2004-09-27 Wakaba <wakaba@suika.fam.cx>
815
816 * DOMLS.dis, ManakaiDOMLS2003: New file.
817
818 * dis2pm.pl (MAIN): Output "AUTHOR" pod section; support Perl+MPL
819 license.
820 (disdoc2pod, disdoc2text): New 'DFN', 'SA', 'SE', 'HA', 'HE',
821 'XA', 'XE', 'Prefix', 'ERR', 'EV' and 'CP' element types supported.
822 (perl_name): Die if uninitialized value.
823 (constgroup2perl): Support constant group without machine-name.
824 (pod_item): Die if uninitialized value.
825 (qname_label): Don't output default prefix.
826
827 * idl2dis.pl: Output module name and prefix as 'BindingName'
828 and 'FileName'.
829
830 2004-09-26 Wakaba <wakaba@suika.fam.cx>
831
832 * dis2pm.pl (constgroup2perl): Capitalize name.
833
834 * idl2dis.pl (type, raise): Prepend namespace prefix if
835 type is 'DOMString' or 'DOMException' and it is not defined.
836 (MAIN): Make empty 'Return' element even if return
837 value is void.
838 (supply_incase): New.
839 (const): Use 'FullName' in favor of 'Description' if the name of
840 the const group is not a machine-friendly name.
841
842 2004-09-26 Wakaba <wakaba@suika.fam.cx>
843
844 * dis2pm.pl (get_incase_label): Error if label is undef.
845
846 2004-09-25 Wakaba <wakaba@suika.fam.cx>
847
848 * dis2pm.pl: Generate TODO list.
849 (method2perl): Use "dis".
850 (disdoc2pod, disdoc2text): 'HTML', 'InfosetP' element types added.
851 (perl_builtin_code): New code 'isRelativeDOMURI' added.
852
853 * ManakaiDOMMain.dis (MDOM_REPLACE_BY_ITSELF_NO_EFFECT): New
854 warning code.
855
856 * dis2pm.pl (attr2perl, method2perl): Output 'undef;' if the
857 method or attribute(set) does not return a value.
858 (perl_code): New macro 'WHEN' added. Macro 'INT{}' now allow
859 parameter.
860
861 2004-09-24 Wakaba <wakaba@suika.fam.cx>
862
863 * dis2pm.pl (perl_exception): New 'subtype' parameter added.
864 (param2poditem): New.
865 (MAIN): Write 'NAMESPACE BINDINGS' pod section if necessary.
866 (perl_builtin_code): More developer-friendly error report.
867 (perl_code): New 'REQUIRE' statement added.
868 (disdoc2text, disdoc2pod): New 'QUOTE' element type added.
869 (get_value_literal): Default for unknown type is now 'undef'.
870
871 2004-09-22 Wakaba <wakaba@suika.fam.cx>
872
873 * dis2pm.pl (perl_builtin_code): New 'CheckName' and
874 'XMLVersion' added.
875
876 2004-09-20 Wakaba <wakaba@suika.fam.cx>
877
878 * dis2pm.pl (get_redef_description): See 'RedefinedBy' elements
879 even if it is 'ReMethod' and 'ReAttr' element.
880
881 2004-09-20 Wakaba <wakaba@suika.fam.cx>
882
883 * dis2pm.pl (type_label): New option 'is_pod' implemented.
884 (get_redef_description): New function.
885 (get_isa_description): New function.
886 (disdoc2pod, disdoc2text): New.
887 (get_description): DISDOC support.
888 (valid_err, valid_err): New option 'node' implemented.
889
890 * ManakaiDOMCore.dis (IF[ManakaiDOMNodeObjectNode]): New.
891
892 2004-09-19 Wakaba <wakaba@suika.fam.cx>
893
894 * dis2pm.pl (condition_match): Report error if the condition
895 not defined.
896
897 * ManakaiDOMMain.dis (MDOM_IMPL_BY_APP): New exception code.
898
899 * dis2pm.pl (datatype2perl, datatypealias2perl): "FullName" attribute
900 introduced.
901 (constgroup2perl): Define is-a relationship between group
902 Name and its Type.
903 (constgroup2perl): "IsBitMask" attribute introduced.
904
905 * ManakaiDOMMain.dis: Renamed from "ManakaiDOM.dis".
906
907 * dis2pm.pl (type_label): Type label for unsigned-long and
908 unsigned-short added.
909 (perl_code): Die if uninitialized value is given.
910 (is_all_implemented): New function.
911
912 * ManakaiDOMXML.dis: New module.
913
914 * ManakaiDOMCore.dis: New module.
915
916 * dis2pm.pl (dis2perl): 'Overridden' added.
917
918 2004-09-18 Wakaba <wakaba@suika.fam.cx>
919
920 * ManakaiDOM.dis (MDOM_NEWCHILD_IS_REFCHILD): New warning.
921 (ManakaiDOMNodeObject->orphanate): New internal method.
922 (Interface[ManakaiDOMNodeObject, ManakaiDOMNodeReference]): All calls
923 of internal methods are now qualified by the package name.
924
925 2004-09-17 Wakaba <wakaba@suika.fam.cx>
926
927 * DOMMain.dis: 'SpecLevel' attribute added.
928
929 * idl2dis.pl (level): Set 'SpecLevel' attribute as well as 'Level'.
930
931 * dis2pm.pl (get_level_description): Attribute name to see is
932 changed from 'Level' to 'SpecLevel'
933 (const2perl): Don't hardlink constant not to be warned
934 by perl -w.
935 (ops2perl): Declare subroutine 'DESTROY' not to be warned by
936 perl -w.
937 (get_internal_code): Support of lang:dis.
938
939 * ManakaiDOM.dis (newReference): New parameter 'class' introduced.
940
941 * dis2pm.pl (perl_builtin_code:<ManakaiDOM:ManakaiDOMNamespaceURI>):
942 Separeted from "DOMString".
943 (if2perl, attr2perl): Don't cast to DOMString.
944
945 2004-09-15 Wakaba <wakaba@suika.fam.cx>
946
947 * dis2pm.pl (perl_builtin_code): __CODE{CheckNCName}__ implemented.
948 (perl_if): Don't indent if preprocessing direction found.
949 (perl_code_source): Add \n before the #line directive.
950
951 2004-09-14 Wakaba <wakaba@suika.fam.cx>
952
953 * dis2pm.pl (get_internal_code): __INT{{name}}__ syntax now support
954 attribute.
955 (perl_code): __SUPER{name}__ syntax implemented.
956
957 2004-09-13 Wakaba <wakaba@suika.fam.cx>
958
959 * dis2pm.pl (dis2perl): New.
960
961 2004-09-12 Wakaba <wakaba@suika.fam.cx>
962
963 * dis2pm.pl (get_warning_perl_code): New.
964
965 2004-09-10 Wakaba <wakaba@suika.fam.cx>
966
967 * ManakaiDOM.dis (MDOM_NS_EMPTY_URI): New Exception type.
968 (ManakaiDOMNamespaceURI): New DataType.
969
970 * DOMCore.dis: Most part of DOMImplementation interface is
971 implemented.
972
973 * dis2pm.pl (method2perl): Description for returned value
974 is changed to be grouped.
975 (get_value_literal): Don't quote "null" even if it is a DOMString.
976 (perl_exception): Don't output terminating semicolon.
977 (perl_builtin_code): ManakaiDOM:ManakaiDOMNamespaceURI is
978 supported.
979
980 2004-09-09 Wakaba <wakaba@suika.fam.cx>
981
982 * dis2pm.pl (method2perl, attr2perl): '(Return | Get | Set)/Exception'
983 implemented.
984
985 * idl2dis.pl (type): Don't output Require element for
986 DOMMain module (now it is implicitly required by default).
987
988 2004-09-01 Wakaba <wakaba@suika.fam.cx>
989
990 * idl2dis.pl (level): Use 'Level' instead of 'ModifiedLevel'.
991
992 2004-08-31 Wakaba <wakaba@suika.fam.cx>
993
994 * dis2pm.pl (const2perl, constgroup2perl): New.
995
996 * idl2dis.pl (idlna): New.
997
998 2004-08-30 Wakaba <wakaba@suika.fam.cx>
999
1000 * dis2pm.pl: Versioned implementation of "IF" supported (see
1001 also Manakai Development Memo : 2004-08-29
1002 <http://suika.fam.cx/~wakaba/-temp/wiki/wiki?manakai%2F%2F%A5%E1%A5%E2%2F%2F2004-08-29>).
1003
1004 * idl2dis.pl (register_required_module): ISA is now
1005 converted to elements, not a list attribute.
1006
1007 2004-08-22 Wakaba <wakaba@suika.fam.cx>
1008
1009 * idl2dis.pl (register_required_module): Top-level element type
1010 name "Type" and "TypeAlias" changed to "DataType" and
1011 "DataTypeAlias".
1012
1013 * dis2pm.pl (perl_code_source): New function.
1014
1015 2004-08-21 Wakaba <wakaba@suika.fam.cx>
1016
1017 * ChangeLog: New file.
1018
1019 * Makefile, DOMMain.dis, DOMCore.dis, DOMXML.dis, dis2pm.pl, idl2dis.pl:
1020 New files (Moved from ../Markup/XML/DOM/).
1021
1022

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24