/[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.104 - (hide annotations) (download)
Sat Jan 21 17:37:51 2006 UTC (18 years, 10 months ago) by wakaba
Branch: MAIN
Changes since 1.103: +13 -0 lines
++ manakai/lib/Message/Util/ChangeLog	21 Jan 2006 17:23:17 -0000
2006-01-22  Wakaba  <wakaba@suika.fam.cx>

	* PerlCode.dis: Fixed not |getAttributeNS| to cause
	uninitialized value warnings.

++ manakai/lib/Message/Util/DIS/ChangeLog	21 Jan 2006 17:24:28 -0000
	* DPG.dis (plCodeFragment): A returning |#EOF| case
	was missing so that illegal character was appended to the sequence.
++ manakai/lib/Message/DOM/ChangeLog	21 Jan 2006 17:27:27 -0000
2006-01-22  Wakaba  <wakaba@suika.fam.cx>

	* Tree.dis (getAttribute): Returns |null| if there
	is no attribute in |ManakaiDOM:DOMLatest| for compatibility
	with Web browser implementations.
	(getAttributeNS): It returned |null| if there
	is no attribute in any |For| unintentionally.  It now
	returns an empty string in DOM levels less than or equals
	to three.

	* XMLParser.dis (shiftChar): Fixed not to be warned as
	uninitialized value or substring out of range.

1 wakaba 1.104 2006-01-22 Wakaba <wakaba@suika.fam.cx>
2    
3     * Tree.dis (getAttribute): Returns |null| if there
4     is no attribute in |ManakaiDOM:DOMLatest| for compatibility
5     with Web browser implementations.
6     (getAttributeNS): It returned |null| if there
7     is no attribute in any |For| unintentionally. It now
8     returns an empty string in DOM levels less than or equals
9     to three.
10    
11     * XMLParser.dis (shiftChar): Fixed not to be warned as
12     uninitialized value or substring out of range.
13    
14 wakaba 1.102 2006-01-21 Wakaba <wakaba@suika.fam.cx>
15    
16 wakaba 1.103 * DOMXML.dis (DocumentType.childNodes): Removed
17     from |ManakaiDOM:ManakaiDOMLatest| variant.
18    
19     * XMLParser.dis: Parsing of general internal entities implemented.
20     (_DocumentTypeDeclaration): Appends a document type definition
21     node to the document.
22     (_ProcessingInstructionDTD): Appends a processing
23     instruction node to the document type definition.
24     (Element_): Document element could not be an |EmptyElemTag|.
25    
26     2006-01-21 Wakaba <wakaba@suika.fam.cx>
27    
28 wakaba 1.102 * DOMFeature.dis (featuresParamToFeaturesHash): New block
29     code (seprated from |InputProcessor|). Now
30     a |features| parameter's version can be specified by
31     an array reference that contains a set of version
32     numbers. A test added.
33    
34     * XMLParser.dis: A test added.
35    
36 wakaba 1.100 2006-01-07 Wakaba <wakaba@suika.fam.cx>
37    
38 wakaba 1.101 * DOMCore.dis (Test): Don't invoke |DESTROY| method
39     because it does not work with dummy object used in the test code.
40    
41     2006-01-07 Wakaba <wakaba@suika.fam.cx>
42    
43 wakaba 1.100 * DOMMain.dis (checkXMLNamesQName): Checks whether
44     namespace URI is defined for not being warned.
45    
46     * XDoctype.dis: New module.
47    
48     * DOMCore.dis (DOMStringList): Test added.
49    
50     * Makefile: |XDoctype.pm| added.
51    
52     * Tree.dis (Require): Requires |XDoctype.dis|.
53     (ManakaiDOMNodeObjectNode.eq): Added.
54     (Test): |DOMError.location| must return a |DOMLocator|
55     object (it was incorrectly tested to return |null|).
56     (EmptyNodeList.DESTROY): Removed.
57    
58     2006-01-04 Wakaba <wakaba@suika.fam.cx>
59    
60     * Tree.dis (NodeType): |ELEMENT_TYPE_DEFINITION_NODE| and
61     |ATTRIBUTE_DEFINITION_NODE| node types added.
62     (appendChild, insertBefore, replaceChild): New
63     two node types added and processing instruction nodes
64     as document type definition node child is allowed
65     in |ManakaiDOM:ManakaiDOMLatest| mode.
66     (getNodeReference): New |interface| parameter
67     to filter classes by interface is added.
68     (ElementTypeDefinitionRole): New role.
69     (AttributeDefinitionRole): New role.
70    
71     2006-01-02 Wakaba <wakaba@suika.fam.cx>
72    
73     * DOMCore.dis (DOMStringList): Reimplemented as tied array.
74    
75 wakaba 1.99 2005-12-31 Wakaba <wakaba@suika.fam.cx>
76    
77     * DOMCore.dis (DOMError.location): Returns an empty |DOMLocator|
78     if it is not provided.
79    
80     * XMLParser.dis: Parsing methods to skip document
81     type declaration is added.
82    
83 wakaba 1.98 2005-12-29 Wakaba <wakaba@suika.fam.cx>
84    
85     * XMLParser.dis (shiftChar): Checks characters are legal
86     or not. Normalize end-of-lines.
87     (rule _XMLDeclaration_): Implemented.
88     (WFErrDef): Well-formedness error |wf-syntax-error|,
89     |wf-pi-target-is-xml|, |wf-no-end-tag|,
90     |wf-unsupported-xml-version|, |wf-malformed-enc-name|,
91     |wf-malformed-xml-standalone|, |wf-legal-literal-character|,
92     |wf-element-type-match|, |wf-unique-att-spec|,
93     |wf-legal-character| added.
94     (%character-code-point): New formatter rule.
95    
96     * Tree.dis (Document.xmlEncoding): It is now read-write attribute.
97    
98     * DOMCore.dis (DOMError.stringify): Added.
99     (error-handler.default): Returns |false| (don't continue)
100     when the error severity is |SEVERITY_FATAL_ERROR|.
101    
102 wakaba 1.96 2005-12-28 Wakaba <wakaba@suika.fam.cx>
103    
104 wakaba 1.97 * XMLParser.dis (DocumentEntity): Typos fixed.
105     (|lexmode|s): New |?default-token| statements are used
106     so that tokenizer description has been simplified
107     and CDATA sections now can be parsed.
108    
109     2005-12-28 Wakaba <wakaba@suika.fam.cx>
110    
111 wakaba 1.96 * XMLParser.dis: Some modifications made.
112    
113     2005-12-27 Wakaba <wakaba@suika.fam.cx>
114    
115     * DOMLS.dis (PARSE_ERR, SERIALIZE_ERR): They are now a
116     global named resource.
117    
118     * Makefile: Rules to make |XMLParser.pm| is added.
119    
120     * XMLParser.dis: New file.
121    
122     2005-12-24 Wakaba <wakaba@suika.fam.cx>
123    
124     * DOMCore.dis (ManakaiDOMError._FORMATTER_PACKAGE_): Error
125     message formatter can now vary by error types.
126     (DOMLocator.utf32Offset): New (manakai extended) attribute.
127    
128 wakaba 1.95 2005-12-23 Wakaba <wakaba@suika.fam.cx>
129    
130     * DOMCore.dis (DOMLocator): Implemented.
131    
132 wakaba 1.94 2005-12-21 Wakaba <wakaba@suika.fam.cx>
133    
134     * DOMCore.dis (DOMConfigurationParameterApplication,
135     domConfigurationParameter): New resources.
136    
137 wakaba 1.93 2005-11-25 Wakaba <wakaba@suika.fam.cx>
138    
139     * Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error):
140     New methods.
141    
142 wakaba 1.91 2005-11-24 Wakaba <wakaba@suika.fam.cx>
143    
144 wakaba 1.92 * DOMMain.dis, DOMLS.dis, DOMXML.dis, Tree.dis: Old |__WARNING__|
145     blocks are replaced by |DOMError|-based |__DOMCore:ERROR__| blocks.
146    
147     * DOMMain.dis (___report_error): Throws the error unkess
148     it is a |DOMCore:DOMError| object.
149    
150     2005-11-24 Wakaba <wakaba@suika.fam.cx>
151    
152 wakaba 1.91 * DOMCore.dis (severity, type): Getters return value from
153     the definition of the current error (i.e. |-def| hash).
154     (___error_def): New method.
155     (errorType): |dis:dataType| changed to |DISCore:TFQNames|
156     to ease natural reference to constant value.
157     (error-handler.default): Prints the error message by |warn|.
158    
159     * Tree.dis (nodeValue.set): Reimplemented so that it
160     warns as setting has no effect.
161     (___report_error): New method. (It had been only implemented
162     in superclass.)
163     (setting-node-value-no-effect): New error type.
164    
165 wakaba 1.90 2005-11-23 Wakaba <wakaba@suika.fam.cx>
166    
167     * DOMCore.dis: Error codes added.
168    
169     * Tree.dis (destroyNodeStem): New method implementation.
170    
171     2005-11-22 Wakaba <wakaba@suika.fam.cx>
172    
173     * Tree.dis (cloneNode): User data handlers implemented.
174     (adoptNode): User data handlers implemented.
175    
176     2005-11-21 Wakaba <wakaba@suika.fam.cx>
177    
178     * DOMCore.dis (UserDataHandler): A constraint for Perl binding
179     added.
180    
181     * Tree.dis (cloneNode): Invoking of |UserDataHandler|s are implemented.
182     (getUserData, setUserData): Implemented.
183    
184 wakaba 1.88 2005-11-20 Wakaba <wakaba@suika.fam.cx>
185    
186 wakaba 1.89 * DOMCore.dis (UserDataHandler): Implemented.
187     (DOMErrorHandler): Blessed package name bug fixed.
188    
189     * ManakaiDOMLS2003.dis: Reference to |Node| subclasses
190     changed to |Tree.dis|.
191    
192     2005-11-20 Wakaba <wakaba@suika.fam.cx>
193    
194 wakaba 1.88 * DOMMain.dis: Unused declarations and definitions removed.
195    
196     * DOMCore.dis: DOM document tree related interfaces removed.
197    
198     * Tree.dis: New module separated from |DOMCore.dis|.
199    
200     * DOMXML.dis: Some referent changed to |Tree.dis|.
201    
202     * Makefile: |Tree.dis| added.
203    
204 wakaba 1.86 2005-11-16 Wakaba <wakaba@suika.fam.cx>
205    
206 wakaba 1.87 * .cvsignore: Revised.
207    
208     2005-11-16 Wakaba <wakaba@suika.fam.cx>
209    
210 wakaba 1.86 * ManakaiDOMLS2003.dis: Tests added.
211     (domConfig): Method name in the code fixed to |flag|.
212    
213     * DOMMain.dis (findOffset32): Missing |^| in regular expressions
214     added.
215    
216     * DOMCore.dis (hasChildNodes): Returns |false| if the node type
217     is defined not to have any children.
218     (CharacterData): Typos in element type names and function names fixed.
219    
220 wakaba 1.84 2005-11-15 Wakaba <wakaba@suika.fam.cx>
221    
222 wakaba 1.85 * DOMFeature.dis (MinimumImplementation.eq): Added.
223    
224     * DOMMain.dis: |DISPerl:ISA| reference fixed.
225    
226     * Generic.dis: Implements new |DOMLS:Generic| feature.
227    
228     2005-11-15 Wakaba <wakaba@suika.fam.cx>
229    
230 wakaba 1.84 * DOMFeature.dis (stringifyFeatures): Don't double |SPACE|
231     characters between feature names and versions.
232    
233     2005-11-13 Wakaba <wakaba@suika.fam.cx>
234    
235     * DOMFeature.dis (stringifyFeatures): A test code added.
236    
237 wakaba 1.83 2005-10-26 Wakaba <wakaba@suika.fam.cx>
238    
239     * SimpleLS.dis (writeToString): Don't stop serializing
240     when an |false| value appears in |@src|.
241    
242 wakaba 1.81 2005-10-16 Wakaba <wakaba@suika.fam.cx>
243    
244 wakaba 1.82 * DOMCore.dis (DOMError, DOMErrorHandler): Reimplemented.
245     (ErrDef): Redefined.
246    
247     * DOMLS.dis (ErrDef): Redefined.
248    
249     2005-10-16 Wakaba <wakaba@suika.fam.cx>
250    
251 wakaba 1.81 * DOMCore.dis (DOMConfiguration): Extends "ManakaiDOM:ManakaiDOMObject".
252    
253 wakaba 1.80 2005-10-15 Wakaba <wakaba@suika.fam.cx>
254    
255     * DOMCore.dis (Require): References "DOMLS.dis" module.
256     (CParam): Definitions for LS module added.
257    
258     * DOMLS.dis (ManakaiDOMLSInput): The input processor
259     is also an output processor now.
260     (ManakaiDOMLSResourceResolver): Implemented.
261     (CParam): Definitions updated.
262    
263     2005-10-14 Wakaba <wakaba@suika.fam.cx>
264    
265     * DOMCore.dis (NOT_RECOGNIZED_CONFIG_PARAM_ERR,
266     NOT_SUPPORTED_CONFIG_VALUE_ERR,
267     INCOMPATIBLE_CONFIG_VALUE_ERR): New error subcodes.
268     (DOMConfiguration): Implemented.
269     (CParam): Definitions updated.
270    
271     * DOMMain.dis (DOMURIs): New data type.
272    
273 wakaba 1.79 2005-10-13 Wakaba <wakaba@suika.fam.cx>
274    
275     * DOMCore.dis (setAttrValueNS): New code.
276    
277 wakaba 1.78 2005-10-12 Wakaba <wakaba@suika.fam.cx>
278    
279     * DOMCore.dis: Don't set "infoset:prefix" internal
280     property unless it has non-null value.
281     (newObject): "refNode" parameter introduced.
282     (ManakaiDOMNode.newObject): Calls "NodeStem.newNode"
283     method if "refNode" parameter is specified.
284     (cloneNode): Don't set "read-only" flag.
285     (getNodeReference): Caches the result.
286     (selectAttributeNodeForRemove): Don't removes any other
287     non-namespace-aware attribute nodes.
288    
289 wakaba 1.77 2005-10-11 Wakaba <wakaba@suika.fam.cx>
290    
291     * DOMCore.dis (appendChild, createElementNS, createAttributeNS,
292     setAttribute, setAttributeNS): "strictErrorChecking" attribute supported.
293     (doStrictErrorChecking): New code.
294    
295     * DOMMain.dis (XML10Name, XML11Name): "strictErrorChecking" attribute
296     supported.
297    
298     * Makefile: Rule to make "DOMFeature.pm" restored.
299    
300     2005-10-10 Wakaba <wakaba@suika.fam.cx>
301    
302     * DOMCore.dis (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode.
303     (adoptNode): Implemented.
304    
305 wakaba 1.76 2005-10-09 Wakaba <wakaba@suika.fam.cx>
306    
307     * DOMHTML.dis, DOMWebForms.dis: Typos in element type prefix fixed.
308    
309     * DOMFeature.dis (DOMCore:implementation): Short name added.
310    
311     * DOMCore.dis (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode.
312     (DOMCore:node): New error parameter.
313     (DOMCore:ownerDocument): Changed from "mn:irefnode0"
314     to "mn:xrefnode0". For this reason, all assignments
315     to this property have been rewritten to references
316     to code "mn:setXRefNode".
317     (cloneNode): Implemented.
318     (setAttributeNode): A missing "importTree" method call added.
319     (setAttributeNodeNS): Perl code removed and changed
320     to a reference to "setAttributeNode" method code.
321    
322     * DOMXML.dis (DOMCore:ownerDocument): Changed from "mn:irefnode0"
323     property to "mn:xrefnode0" property.
324    
325 wakaba 1.75 2005-10-08 Wakaba <wakaba@suika.fam.cx>
326    
327     * DOMCore.dis, DOMLS.dis: Now constant values are defined only
328     in interfaces.
329    
330 wakaba 1.74 2005-10-06 Wakaba <wakaba@suika.fam.cx>
331    
332     * DOMCore.dis (ManakaiDOMEmptyNodeList): New class.
333     (ManakaiDOMCharacterData): Methods reimplemented.
334     (splitText): Reimplemented.
335     (childNodes): Returns a "ManakaiDOMEmptyNodeList"
336     for non-parent node types.
337    
338     * DOMXML.dis (childNodes): Returns a "ManakaiDOMEmptyNodeList"
339     for non-parent node types.
340    
341     2005-10-05 Wakaba <wakaba@suika.fam.cx>
342    
343     * ManakaiDOMLS2003.dis: Revised to new format.
344    
345     * GenericLS.dis (DOMLS:ParseString): New feature.
346    
347 wakaba 1.73 2005-10-05 Wakaba <wakaba@suika.fam.cx>
348    
349     * DOMFeature.dis: Description added and revised. (Still more
350     work required.)
351    
352     2005-10-04 Wakaba <wakaba@suika.fam.cx>
353    
354     * DOMMain.dis (DOMString): The "idl:perl" attribute
355     value has been changed from "DISPerl:String"
356     to "DISPerl:CharacterString" to clarify its semantics.
357    
358 wakaba 1.72 2005-10-03 Wakaba <wakaba@suika.fam.cx>
359    
360     * DOMFeature.dis (MIString): Java, ECMAScript, and Perl bound
361     type properties added.
362    
363     * DOMMain.dis (DataType): Java, ECMAScript, and Perl bound
364     type properties added.
365    
366 wakaba 1.71 2005-10-02 Wakaba <wakaba@suika.fam.cx>
367    
368     * DOMFeature.dis (Module): "idl:prefix" and "idl:moduleName"
369     properties added.
370    
371 wakaba 1.70 2005-10-01 Wakaba <wakaba@suika.fam.cx>
372    
373     * DOMFeature.dis: Documentation added (still work in progress).
374     (MIString): New type.
375    
376     * DOMCore.dis (namespaceURI): Fixed to return the namespace
377     URI value, not a reference to it.
378    
379 wakaba 1.69 2005-09-30 Wakaba <wakaba@suika.fam.cx>
380    
381     * DOMCore.dis, SimpleLS.dis: Shares namespace URIs and local
382     names where possible.
383    
384     * DOMFeature.dis: Documentation for DOM Minimum Implementation
385     added (still work in progress).
386    
387     * Makefile (feature.dae, feature-spec.dae): New rules.
388    
389 wakaba 1.67 2005-09-27 Wakaba <wakaba@suika.fam.cx>
390    
391     * DOMCore.dis (DOMCore:nodeProp): New property.
392    
393 wakaba 1.68 * DOMCore.dis, DOMXML.dis: Codes to set properties "TreeCore:*"
394     is removed.
395    
396 wakaba 1.66 2005-09-26 Wakaba <wakaba@suika.fam.cx>
397    
398     * DOMCore.dis, DOMXML.dis: New mn:* properties added.
399    
400 wakaba 1.65 2005-09-25 Wakaba <wakaba@suika.fam.cx>
401    
402     * Makefile (DAC_SUFFIX): Changed to ".dae".
403     (DAEM_SUFFIX): New.
404    
405 wakaba 1.64 2005-09-24 Wakaba <wakaba@suika.fam.cx>
406    
407     * DOMMain.dis (MDOM:): Reintroduced for "ManakaiDOM:ManakaiDOM1"
408     and "ManakaiDOM:ManakaiDOM2".
409    
410     * DOMFeature.dis, DOMMain.dis, DOMCore.dis, DOMXML.dis,
411     DOMLS.dis, SimpleLS.dis, GenericLS.dis: Use disPerl:H
412     instead of disPerl:Q for internal property hash keys.
413    
414     * DOMFeature.dis, DOMCore.dis, DOMXML.dis: Missing property
415     definitions added.
416    
417     * DOMCore.dis (DOMCore:TextNode, DOMCore:DocumentFragmentNode):
418     New resources.
419    
420     * DOMXML.dis (DOMXML:EntityNode, DOMXML:EntityReferenceNode): New
421     resources.
422    
423 wakaba 1.63 2005-09-23 Wakaba <wakaba@suika.fam.cx>
424    
425     * GenericLS.dis, SimpleLS.dis: New modules separated
426     from DOMLS.dis.
427    
428     * DOMFeature.dis, DOMMain.dis: "MDOM:" and "for" definitions
429     moved from DOMMain to DOMFeature. Now DOMFeature
430     has no dependency on DOMMain.
431    
432     * DOMFeature.dis (DEBUG): New variable.
433    
434 wakaba 1.62 2005-09-22 Wakaba <wakaba@suika.fam.cx>
435    
436     * Makefile: DAC_SUFFIX changed to ".dad".
437    
438 wakaba 1.61 2005-09-21 Wakaba <wakaba@suika.fam.cx>
439    
440     * DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion"
441     features if it is "for" ManakaiDOM:DOMXMLFeature.
442    
443 wakaba 1.74 * DOMMain.pm (StringExtend): Code portions of raising
444 wakaba 1.61 StringOutOfBoundsException is temporary disabled since
445     it is not a DOM-style exception supported by
446     current implementation of ManakaiNode - it will be
447     recovered in later revision.
448    
449 wakaba 1.60 2005-09-20 Wakaba <wakaba@suika.fam.cx>
450    
451     * DOMFeature.pm: Debug output code copied
452     from Attic/DOMMetaImpl.pm (Should these code incorporated
453     to source dis file?).
454    
455 wakaba 1.59 2005-09-19 Wakaba <wakaba@suika.fam.cx>
456    
457     * DOMMain.dis (ManakaiDOM:DOMMethod, ManakaiDOM:DOMMethodReturn,
458     ManakaiDOM:DOMAttribute, ManakaiDOM:DOMAttrGet,
459     ManakaiDOM:DOMAttrSet, ManakaiDOM:DOMMethodParam): Removed.
460     (ManakaiDOMTimeStamp): Removed.
461    
462     * DOMBoot.dis, DOMMetaImpl.dis, DOMMetaImpl.pm: Removed (they are no
463     longer in use).
464    
465     2005-09-18 Wakaba <wakaba@suika.fam.cx>
466    
467     * DOMMain.dis (StringOutOfBoundsException): New exception.
468    
469 wakaba 1.58 2005-09-15 Wakaba <wakaba@suika.fam.cx>
470    
471     * DOMFeature.dis: dis:dataType and dis:multipleProperties
472     properties added to properties.
473    
474 wakaba 1.57 2005-09-08 Wakaba <wakaba@suika.fam.cx>
475    
476     * Makefile: Rules renewaled.
477    
478     2005-09-07 Wakaba <wakaba@suika.fam.cx>
479    
480     * DOMCore.dis, DOMXML.dis, DOMLS.dis: Inheritance information fixed.
481    
482     2005-09-05 Wakaba <wakaba@suika.fam.cx>
483    
484     * DOMMain.dis (DOMImplementationRegistry,
485     DOMImplementationRegistryVar): New.
486    
487     * DOMFeature.dis (DOMImplementationRegistry,
488     DOMImplementationRegistryVar): Removed.
489     (ImplementationRegistry): New class.
490    
491 wakaba 1.56 2005-09-04 Wakaba <wakaba@suika.fam.cx>
492    
493     * DOMFeature.dis: New module.
494    
495     * DOMMetaImpl.dis (ManakaiDOM:ManakaiDOMObject): Removed.
496    
497     * DOMMain.dis (ManakaiDOM:ManakaiDOMObject): New.
498     (DOMString, DOMTimeStamp): Now they are not interfaces
499     but datatypes.
500     (DOMUserData, DOMObject, DOMUserData): Now they
501     are subtypes rather than aliases of their "real" type in IDL.
502    
503     * DOMCore.dis (DOMImplementationList, DOMImplementationSource):
504     New interfaces and classes.
505    
506 wakaba 1.55 2005-09-01 Wakaba <wakaba@suika.fam.cx>
507    
508     * DOMCore.dis (setTextNodeContent): Sets the infoset:parent
509     property of the new Text node.
510    
511 wakaba 1.54 2005-08-29 Wakaba <wakaba@suika.fam.cx>
512    
513     * Makefile: Loads "NaturalLanguage.dis".
514    
515     2005-08-26 Wakaba <wakaba@suika.fam.cx>
516    
517     * DOMCore.dis (createDocument): Set "ownerDocument" attribute
518     to the root element created by the method. (It was forgotten!!)
519    
520 wakaba 1.53 2005-08-15 Wakaba <wakaba@suika.fam.cx>
521    
522     * DOMCore.dis (appendChild, insertBefore, replaceChild): Typo
523     in the code of removing the newChild from the previous
524     parent of that node is fixed.
525    
526 wakaba 1.52 2005-05-29 Wakaba <wakaba@suika.fam.cx>
527    
528     * DOMLS.dis (SimpleSerializer): End tag was sometimes missing. Use
529     namespace prefix of element type if it is not declared
530     but not used else. A shift is replaced by pop:).
531    
532     * DOMCore.dis (getFeature): The getFeature method
533     for Node-derived classes implemented.
534     * DOMXML.dis (getFeature): Ditto.
535    
536 wakaba 1.51 2005-05-21 Wakaba <wakaba@suika.fam.cx>
537    
538     * DOMCore.dis (getNodeReference): Use HTMLDocument class
539     if a document node has no document element node but
540     has support for the "HTML" feature.
541    
542 wakaba 1.50 2005-03-03 Wakaba <wakaba@suika.fam.cx>
543    
544     * DOMMetaImpl.dis (features input normalizer): Variable name
545     typo fixed.
546     (ManakaiDOMImplementationSource.getDOMImplementation): Fixed bug
547     so that version specification for "+"'ed feature name does work now.
548    
549 wakaba 1.49 2005-03-02 Wakaba <wakaba@suika.fam.cx>
550    
551     * DOMBoot.dis (ResourceDef): Definitions for DOMFeature are
552     removed (now defined in DOMMetaImpl).
553    
554 wakaba 1.48 2005-02-21 Wakaba <wakaba@suika.fam.cx>
555    
556     * DOMMetaImpl.dis (IFClsDef[ManakaiDOMMinimumImplementation]): New.
557    
558     * Makefile: Rules for DOMMetaImpl module added.
559    
560 wakaba 1.47 2005-02-20 Wakaba <wakaba@suika.fam.cx>
561    
562     * DOMMetaImpl.dis: New module (split from DOMCore and DOMMain).
563    
564 wakaba 1.45 2005-02-18 Wakaba <wakaba@suika.fam.cx>
565    
566 wakaba 1.46 * DOMCore.dis (getFeature): ManakaiDOM:ManakaiDOMNodeObject.newReference
567     is an instance method, not a class method.
568    
569 wakaba 1.45 * DOMMain.dis (ResourceTypeDef[ManakaiDOM:Const,
570     ManakaiDOM:ConstGroup]): Removed (moved to "lib/manakai/DISLang.dis").
571     (Exception-related definitions): Removed (moved to
572     "lib/Message/Util/Error/DOMException.dis").
573     (ForDef[ManakaiDOM:ForIF, ManakaiDOM:ForClass]): Removed (moved
574     to DISLang).
575    
576     2005-02-17 Wakaba <wakaba@suika.fam.cx>
577    
578     * DOMMain.dis: Definitions for "ManakaiDOM:ManakaiDOMNodeObject" and
579     "ManakaiDOM:ManakaiDOMNodeReference" are removed (moved to
580     "lib/Message/Util/ManakaiNode.dis").
581     (ResourceDef[ManakaiDOM:DataType]): Removed (moved to
582     "lib/manakai/DISCore.dis").
583     (ResourceTypeDef[ManakaiDOM:IF, ManakaiDOM:Class,
584     ManakaiDOM:PrimitiveTypeClass]): Removed (moved to
585     "lib/manakai/DISLang.dis").
586    
587     2005-02-16 Wakaba <wakaba@suika.fam.cx>
588    
589     * DOMMain.dis (ForDef[ManakaiDOM:Perl]): Removed (moved to
590     DISPerl module).
591    
592 wakaba 1.44 2005-01-07 Wakaba <wakaba@suika.fam.cx>
593    
594     * DOMCore.dis: Each "delete array-item" replaced to a "splice".
595    
596 wakaba 1.43 2005-01-06 Wakaba <wakaba@suika.fam.cx>
597    
598     * DOMMain.dis (ensureXMLName): Test as if XML 1.0 if it is not an
599     XML document.
600    
601 wakaba 1.42 2005-01-05 Wakaba <wakaba@suika.fam.cx>
602    
603     * DOMMain.dis (ManakaiDOMExceptionOrWarning.stringify): New method.
604     (IntMethod[isExternallyReferred]): Rewritten.
605     (IntMethod[isExternallyReferredDownward]): Removed.
606     (Checking XML name legallity): Fix true or false mistakes.
607     (destroy, importTree, orphanate): Rewritten.
608     (destroyDownward, changeTreeIDDownward): Removed.
609     (TreeCore:urefnode property): Removed since not used.
610    
611     * DOMCore.dis: Tying array for NodeList implemented.
612    
613     2005-01-02 Wakaba <wakaba@suika.fam.cx>
614    
615     * DOMHTML.dis (HTMLDOMImplementation): New interface.
616    
617     * DOMViews.dis: Documentation for properties are added.
618    
619 wakaba 1.40 2004-12-29 Wakaba <wakaba@suika.fam.cx>
620    
621 wakaba 1.41 * Makefile: DOMXML, DOMEvents, DOMLS and ManakaiDOMLS2003 added.
622    
623 wakaba 1.40 * ManakaiDOMCore.dis: Removed (merged with DOMCore.dis).
624    
625 wakaba 1.39 2004-12-28 Wakaba <wakaba@suika.fam.cx>
626    
627     * ManakaiDOMXML.dis: Removed (merged with DOMXML.dis).
628    
629 wakaba 1.38 2004-12-01 Wakaba <wakaba@suika.fam.cx>
630    
631     * ManakaiDOMMain.dis: Removed (merged with DOMMain.dis).
632    
633 wakaba 1.37 2004-11-03 Wakaba <wakaba@suika.fam.cx>
634    
635     * .cvsignore: Ignore pod files.
636    
637 wakaba 1.36 2004-10-31 Wakaba <wakaba@suika.fam.cx>
638    
639     * DOMXML.dis (ProcessingInstruction.data): Property name error fixed.
640    
641     * DOMMain.dis: Don't call DOMString->__INT{length}__ - it should
642     be DOMString->length.
643    
644     * DOMCore.dis (Element.getElementsByTagName,
645     Node.getElementsByTagName, Element.getElementsByTagNameNS,
646     Node.getElementsByTagNameNS): Implemented.
647     (Element.getAttributeNode, Element.getAttributeNodeNS):
648     Check whether defined.
649    
650 wakaba 1.35 2004-10-18 Wakaba <wakaba@suika.fam.cx>
651    
652     * DOMWebForms.dis: New module.
653    
654 wakaba 1.33 2004-10-17 Wakaba <wakaba@suika.fam.cx>
655    
656 wakaba 1.34 * DOMBasicEvents.dis, DOMHTMLEvents.dis, DOMViews.dis,
657     DOMHTML.dis: New modules.
658 wakaba 1.33
659 wakaba 1.32 2004-10-16 Wakaba <wakaba@suika.fam.cx>
660    
661     * DOMMouseEvents.dis, DOMTextEvents.dis: New module.
662    
663 wakaba 1.30 2004-10-11 Wakaba <wakaba@suika.fam.cx>
664    
665     * ManakaiDOMMain.dis: 'TreeCore:anydata2' property type added.
666 wakaba 1.31 (DataType[ManakaiDOMKeyIdentifier, ManakaiDOMKeyIdentifiers]): added.
667 wakaba 1.30
668 wakaba 1.28 2004-10-10 Wakaba <wakaba@suika.fam.cx>
669 wakaba 1.30
670     * DOMEvents.dis: New module.
671 wakaba 1.28
672 wakaba 1.29 * ManakaiDOMCore.dis (ManakaiDOMAttributes.item): Return
673     node reference.
674    
675     * ManakaiDOMLS2003.dis (error_handler): '$caller' changed
676     to '$self' for correct error reporting and not to leak memory.
677    
678 wakaba 1.28 * Makefile (DIS2PM_PL): Path to dis2pm.pl changed.
679     * dis2pm.pl, idl2dis.pl: Removed (moved to ../../bin/).
680    
681 wakaba 1.26 2004-10-09 Wakaba <wakaba@suika.fam.cx>
682    
683 wakaba 1.28 * DOMCore.dis (ConfigParam): Moved from ManakaiDOMCore.
684     * ManakaiDOMCore.dis (ConfigParam): Removed.
685    
686 wakaba 1.27 * dis2pm.pl: Functions to create perl/pod structures
687     are moved to ../../bin/genlib.pl.
688 wakaba 1.28 (disdoc2pod, disdoc2text): Allow LESS-THAN SIGN as the first
689     character of a paragraph.
690 wakaba 1.27
691 wakaba 1.26 * ManakaiDOMLS2003.dis (ManakaiXMLParser2003/parse:#comment):
692     Set ownerDocument as parent if parent.ownerDocument is null.
693    
694     * dis2pm.pl (dis2perl): Report if DIS code has value.
695    
696     2004-10-06 Wakaba <wakaba@suika.fam.cx>
697    
698     * ManakaiDOMCore.dis (IFs): Inherit non-conditional version
699     of ManakaiDOMMain interfaces.
700    
701     * DOMCore.dis (Node.childNodes): Typo fixed.
702    
703     * ManakaiDOMLS2003.dis (parse): Check whether the namespace
704     prefix is null.
705    
706     * dis2pm.pl (perl_builtin_code): Allow hash reference as 'features'.
707     (Condition): Don't generate condition inheritance for DOM1, DOM2
708     and DOM3.
709    
710 wakaba 1.25 2004-09-30 Wakaba <wakaba@suika.fam.cx>
711    
712     * dis2pm.pl (disdoc_inline2pod, disdoc_inline2text): New
713     element type 'FILE' added.
714    
715     * ManakaiDOMMain.dis (ManakaiDOMExceptionOrWarning,
716     ManakaiDOMException, ManakaiDOMWarning): New classes.
717     (ManakaiDOMObject/___report_error): Implemented.
718    
719     * dis2pm.pl (perl_builtin_code:ParseFeature): Recognize leading '+'.
720    
721 wakaba 1.24 2004-09-29 Wakaba <wakaba@suika.fam.cx>
722    
723     * dis2pm.pl (get_redef_description, attr2perl, method2perl, if2perl):
724     New attribute 'IsAbstract', 'IsFinal' and 'ImplByApp' added.
725    
726     2004-09-27 Wakaba <wakaba@suika.fam.cx>
727    
728     * .cvsignore: New file.
729    
730 wakaba 1.22 2004-09-27 Wakaba <wakaba@suika.fam.cx>
731    
732 wakaba 1.23 * DOMLS.dis, ManakaiDOMLS2003: New file.
733    
734 wakaba 1.22 * dis2pm.pl (MAIN): Output "AUTHOR" pod section; support Perl+MPL
735     license.
736 wakaba 1.23 (disdoc2pod, disdoc2text): New 'DFN', 'SA', 'SE', 'HA', 'HE',
737     'XA', 'XE', 'Prefix', 'ERR', 'EV' and 'CP' element types supported.
738     (perl_name): Die if uninitialized value.
739     (constgroup2perl): Support constant group without machine-name.
740     (pod_item): Die if uninitialized value.
741     (qname_label): Don't output default prefix.
742 wakaba 1.22
743     * idl2dis.pl: Output module name and prefix as 'BindingName'
744     and 'FileName'.
745    
746 wakaba 1.20 2004-09-26 Wakaba <wakaba@suika.fam.cx>
747    
748 wakaba 1.21 * dis2pm.pl (constgroup2perl): Capitalize name.
749    
750     * idl2dis.pl (type, raise): Prepend namespace prefix if
751     type is 'DOMString' or 'DOMException' and it is not defined.
752     (MAIN): Make empty 'Return' element even if return
753     value is void.
754     (supply_incase): New.
755     (const): Use 'FullName' in favor of 'Description' if the name of
756     the const group is not a machine-friendly name.
757    
758     2004-09-26 Wakaba <wakaba@suika.fam.cx>
759    
760 wakaba 1.20 * dis2pm.pl (get_incase_label): Error if label is undef.
761    
762 wakaba 1.19 2004-09-25 Wakaba <wakaba@suika.fam.cx>
763    
764     * dis2pm.pl: Generate TODO list.
765     (method2perl): Use "dis".
766     (disdoc2pod, disdoc2text): 'HTML', 'InfosetP' element types added.
767     (perl_builtin_code): New code 'isRelativeDOMURI' added.
768    
769     * ManakaiDOMMain.dis (MDOM_REPLACE_BY_ITSELF_NO_EFFECT): New
770     warning code.
771    
772     * dis2pm.pl (attr2perl, method2perl): Output 'undef;' if the
773     method or attribute(set) does not return a value.
774     (perl_code): New macro 'WHEN' added. Macro 'INT{}' now allow
775     parameter.
776    
777 wakaba 1.18 2004-09-24 Wakaba <wakaba@suika.fam.cx>
778    
779     * dis2pm.pl (perl_exception): New 'subtype' parameter added.
780     (param2poditem): New.
781     (MAIN): Write 'NAMESPACE BINDINGS' pod section if necessary.
782     (perl_builtin_code): More developer-friendly error report.
783     (perl_code): New 'REQUIRE' statement added.
784     (disdoc2text, disdoc2pod): New 'QUOTE' element type added.
785     (get_value_literal): Default for unknown type is now 'undef'.
786    
787     2004-09-22 Wakaba <wakaba@suika.fam.cx>
788    
789     * dis2pm.pl (perl_builtin_code): New 'CheckName' and
790     'XMLVersion' added.
791    
792 wakaba 1.16 2004-09-20 Wakaba <wakaba@suika.fam.cx>
793    
794 wakaba 1.17 * dis2pm.pl (get_redef_description): See 'RedefinedBy' elements
795     even if it is 'ReMethod' and 'ReAttr' element.
796    
797     2004-09-20 Wakaba <wakaba@suika.fam.cx>
798    
799 wakaba 1.16 * dis2pm.pl (type_label): New option 'is_pod' implemented.
800     (get_redef_description): New function.
801     (get_isa_description): New function.
802     (disdoc2pod, disdoc2text): New.
803     (get_description): DISDOC support.
804     (valid_err, valid_err): New option 'node' implemented.
805    
806     * ManakaiDOMCore.dis (IF[ManakaiDOMNodeObjectNode]): New.
807    
808 wakaba 1.13 2004-09-19 Wakaba <wakaba@suika.fam.cx>
809    
810 wakaba 1.15 * dis2pm.pl (condition_match): Report error if the condition
811     not defined.
812    
813     * ManakaiDOMMain.dis (MDOM_IMPL_BY_APP): New exception code.
814    
815 wakaba 1.14 * dis2pm.pl (datatype2perl, datatypealias2perl): "FullName" attribute
816     introduced.
817 wakaba 1.15 (constgroup2perl): Define is-a relationship between group
818     Name and its Type.
819     (constgroup2perl): "IsBitMask" attribute introduced.
820 wakaba 1.14
821     * ManakaiDOMMain.dis: Renamed from "ManakaiDOM.dis".
822    
823 wakaba 1.13 * dis2pm.pl (type_label): Type label for unsigned-long and
824     unsigned-short added.
825     (perl_code): Die if uninitialized value is given.
826     (is_all_implemented): New function.
827    
828     * ManakaiDOMXML.dis: New module.
829    
830     * ManakaiDOMCore.dis: New module.
831    
832     * dis2pm.pl (dis2perl): 'Overridden' added.
833    
834 wakaba 1.12 2004-09-18 Wakaba <wakaba@suika.fam.cx>
835    
836     * ManakaiDOM.dis (MDOM_NEWCHILD_IS_REFCHILD): New warning.
837     (ManakaiDOMNodeObject->orphanate): New internal method.
838     (Interface[ManakaiDOMNodeObject, ManakaiDOMNodeReference]): All calls
839     of internal methods are now qualified by the package name.
840    
841 wakaba 1.11 2004-09-17 Wakaba <wakaba@suika.fam.cx>
842    
843     * DOMMain.dis: 'SpecLevel' attribute added.
844    
845     * idl2dis.pl (level): Set 'SpecLevel' attribute as well as 'Level'.
846    
847     * dis2pm.pl (get_level_description): Attribute name to see is
848     changed from 'Level' to 'SpecLevel'
849     (const2perl): Don't hardlink constant not to be warned
850     by perl -w.
851     (ops2perl): Declare subroutine 'DESTROY' not to be warned by
852     perl -w.
853 wakaba 1.12 (get_internal_code): Support of lang:dis.
854 wakaba 1.11
855     * ManakaiDOM.dis (newReference): New parameter 'class' introduced.
856    
857     * dis2pm.pl (perl_builtin_code:<ManakaiDOM:ManakaiDOMNamespaceURI>):
858     Separeted from "DOMString".
859     (if2perl, attr2perl): Don't cast to DOMString.
860    
861 wakaba 1.10 2004-09-15 Wakaba <wakaba@suika.fam.cx>
862    
863     * dis2pm.pl (perl_builtin_code): __CODE{CheckNCName}__ implemented.
864     (perl_if): Don't indent if preprocessing direction found.
865     (perl_code_source): Add \n before the #line directive.
866    
867     2004-09-14 Wakaba <wakaba@suika.fam.cx>
868    
869     * dis2pm.pl (get_internal_code): __INT{{name}}__ syntax now support
870     attribute.
871     (perl_code): __SUPER{name}__ syntax implemented.
872    
873 wakaba 1.9 2004-09-13 Wakaba <wakaba@suika.fam.cx>
874    
875     * dis2pm.pl (dis2perl): New.
876    
877     2004-09-12 Wakaba <wakaba@suika.fam.cx>
878    
879     * dis2pm.pl (get_warning_perl_code): New.
880    
881 wakaba 1.8 2004-09-10 Wakaba <wakaba@suika.fam.cx>
882    
883     * ManakaiDOM.dis (MDOM_NS_EMPTY_URI): New Exception type.
884     (ManakaiDOMNamespaceURI): New DataType.
885    
886     * DOMCore.dis: Most part of DOMImplementation interface is
887     implemented.
888    
889     * dis2pm.pl (method2perl): Description for returned value
890     is changed to be grouped.
891     (get_value_literal): Don't quote "null" even if it is a DOMString.
892     (perl_exception): Don't output terminating semicolon.
893     (perl_builtin_code): ManakaiDOM:ManakaiDOMNamespaceURI is
894     supported.
895    
896 wakaba 1.7 2004-09-09 Wakaba <wakaba@suika.fam.cx>
897 wakaba 1.8
898     * dis2pm.pl (method2perl, attr2perl): '(Return | Get | Set)/Exception'
899     implemented.
900 wakaba 1.7
901     * idl2dis.pl (type): Don't output Require element for
902     DOMMain module (now it is implicitly required by default).
903    
904 wakaba 1.6 2004-09-01 Wakaba <wakaba@suika.fam.cx>
905    
906     * idl2dis.pl (level): Use 'Level' instead of 'ModifiedLevel'.
907    
908 wakaba 1.5 2004-08-31 Wakaba <wakaba@suika.fam.cx>
909    
910     * dis2pm.pl (const2perl, constgroup2perl): New.
911    
912     * idl2dis.pl (idlna): New.
913    
914 wakaba 1.4 2004-08-30 Wakaba <wakaba@suika.fam.cx>
915    
916     * dis2pm.pl: Versioned implementation of "IF" supported (see
917     also Manakai Development Memo : 2004-08-29
918     <http://suika.fam.cx/~wakaba/-temp/wiki/wiki?manakai%2F%2F%A5%E1%A5%E2%2F%2F2004-08-29>).
919    
920     * idl2dis.pl (register_required_module): ISA is now
921     converted to elements, not a list attribute.
922    
923 wakaba 1.2 2004-08-22 Wakaba <wakaba@suika.fam.cx>
924    
925 wakaba 1.3 * idl2dis.pl (register_required_module): Top-level element type
926     name "Type" and "TypeAlias" changed to "DataType" and
927     "DataTypeAlias".
928    
929 wakaba 1.2 * dis2pm.pl (perl_code_source): New function.
930    
931 wakaba 1.1 2004-08-21 Wakaba <wakaba@suika.fam.cx>
932    
933     * ChangeLog: New file.
934    
935     * Makefile, DOMMain.dis, DOMCore.dis, DOMXML.dis, dis2pm.pl, idl2dis.pl:
936     New files (Moved from ../Markup/XML/DOM/).
937    
938    

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24