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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.25 by wakaba, Thu Sep 30 05:28:49 2004 UTC revision 1.107 by wakaba, Wed Jan 25 12:21:46 2006 UTC
# Line 1  Line 1 
1    2006-01-25  Wakaba  <wakaba@suika.fam.cx>
2    
3            * XDoctype.dis (setElementTypeDefinitionNode,
4            setAttributeDefinitionNode): Throws |c:INUSE_DEFINITION_ERR|
5            if the new node is already used for another definition.
6            (DocumentTypeDefinition, ElementTypeDefinition): Node
7            property name was incorrect.
8            (elementTypes, attributeDefinitions): Checks to
9            ensure the collection is empty added.
10    
11            * Tree.dis: Property name typos fixed.
12            (setNamedItem, setAttributeNode): Don't return any node
13            if it replace itself.
14            (c:userDeterminedId): Missing definition added.
15    
16            * DOMXML.dis (Notation): Missing property specification
17            of|c:ownerDocument| as |mn:xrefnode0| is added.
18    
19    2006-01-23  Wakaba  <wakaba@suika.fam.cx>
20    
21            * DOMCore.dis (Test): Missing argument added.
22            (setNamedItem): If |DocumentType| with no |ownerDocument|,
23            addition always fails with |WRONG_DOCUMENT_ERR|.  Some
24            error conditions were incorrect.
25    
26            * .cvsignore: Dummy files added.
27    
28    2006-01-22  Wakaba  <wakaba@suika.fam.cx>
29    
30            * DOMCore.dis (NO_NAMED_NODE_ERR, NO_NAMED_NODE_NS_ERR,
31            INUSE_DEFINITION_ERR, NO_NS_NAMEDNODEMAP_ERR): New error subtypes.
32    
33            * DOMMain.dis (ensureXMLName): Checks definesness of |$XMLVERSION|
34            to avoid uninitialized value warning.
35    
36            * Tree.dis (ManakaiDOMElementTypeDefMap, ManakaiDOMAttrDefMap): New
37            classes (work in progress).
38    
39            * XDoctype.dis (elementTypes, attributeDefinitions): New attributes.
40    
41    2006-01-22  Wakaba  <wakaba@suika.fam.cx>
42    
43            * Tree.dis (getAttribute): Returns |null| if there
44            is no attribute in |ManakaiDOM:DOMLatest| for compatibility
45            with Web browser implementations.
46            (getAttributeNS): It returned |null| if there
47            is no attribute in any |For| unintentionally.  It now
48            returns an empty string in DOM levels less than or equals
49            to three.
50    
51            * XMLParser.dis (shiftChar): Fixed not to be warned as
52            uninitialized value or substring out of range.
53    
54    2006-01-21  Wakaba  <wakaba@suika.fam.cx>
55    
56            * DOMXML.dis (DocumentType.childNodes): Removed
57            from |ManakaiDOM:ManakaiDOMLatest| variant.
58    
59            * XMLParser.dis: Parsing of general internal entities implemented.
60            (_DocumentTypeDeclaration): Appends a document type definition
61            node to the document.
62            (_ProcessingInstructionDTD): Appends a processing
63            instruction node to the document type definition.
64            (Element_): Document element could not be an |EmptyElemTag|.
65    
66    2006-01-21  Wakaba  <wakaba@suika.fam.cx>
67    
68            * DOMFeature.dis (featuresParamToFeaturesHash): New block
69            code (seprated from |InputProcessor|).  Now
70            a |features| parameter's version can be specified by
71            an array reference that contains a set of version
72            numbers.  A test added.
73    
74            * XMLParser.dis: A test added.
75    
76    2006-01-07  Wakaba  <wakaba@suika.fam.cx>
77    
78            * DOMCore.dis (Test): Don't invoke |DESTROY| method
79            because it does not work with dummy object used in the test code.
80    
81    2006-01-07  Wakaba  <wakaba@suika.fam.cx>
82    
83            * DOMMain.dis (checkXMLNamesQName): Checks whether
84            namespace URI is defined for not being warned.
85    
86            * XDoctype.dis: New module.
87    
88            * DOMCore.dis (DOMStringList): Test added.
89    
90            * Makefile: |XDoctype.pm| added.
91    
92            * Tree.dis (Require): Requires |XDoctype.dis|.
93            (ManakaiDOMNodeObjectNode.eq): Added.
94            (Test): |DOMError.location| must return a |DOMLocator|
95            object (it was incorrectly tested to return |null|).
96            (EmptyNodeList.DESTROY): Removed.
97    
98    2006-01-04  Wakaba  <wakaba@suika.fam.cx>
99    
100            * Tree.dis (NodeType): |ELEMENT_TYPE_DEFINITION_NODE| and
101            |ATTRIBUTE_DEFINITION_NODE| node types added.
102            (appendChild, insertBefore, replaceChild): New
103            two node types added and processing instruction nodes
104            as document type definition node child is allowed
105            in |ManakaiDOM:ManakaiDOMLatest| mode.
106            (getNodeReference): New |interface| parameter
107            to filter classes by interface is added.
108            (ElementTypeDefinitionRole): New role.
109            (AttributeDefinitionRole): New role.
110    
111    2006-01-02  Wakaba  <wakaba@suika.fam.cx>
112    
113            * DOMCore.dis (DOMStringList): Reimplemented as tied array.
114    
115    2005-12-31  Wakaba  <wakaba@suika.fam.cx>
116    
117            * DOMCore.dis (DOMError.location): Returns an empty |DOMLocator|
118            if it is not provided.
119    
120            * XMLParser.dis: Parsing methods to skip document
121            type declaration is added.
122    
123    2005-12-29  Wakaba  <wakaba@suika.fam.cx>
124    
125            * XMLParser.dis (shiftChar): Checks characters are legal
126            or not.  Normalize end-of-lines.
127            (rule _XMLDeclaration_): Implemented.
128            (WFErrDef): Well-formedness error |wf-syntax-error|,
129            |wf-pi-target-is-xml|, |wf-no-end-tag|,
130            |wf-unsupported-xml-version|, |wf-malformed-enc-name|,
131            |wf-malformed-xml-standalone|, |wf-legal-literal-character|,
132            |wf-element-type-match|, |wf-unique-att-spec|,
133            |wf-legal-character| added.
134            (%character-code-point): New formatter rule.
135    
136            * Tree.dis (Document.xmlEncoding): It is now read-write attribute.
137    
138            * DOMCore.dis (DOMError.stringify): Added.
139            (error-handler.default): Returns |false| (don't continue)
140            when the error severity is |SEVERITY_FATAL_ERROR|.
141    
142    2005-12-28  Wakaba  <wakaba@suika.fam.cx>
143    
144            * XMLParser.dis (DocumentEntity): Typos fixed.
145            (|lexmode|s): New |?default-token| statements are used
146            so that tokenizer description has been simplified
147            and CDATA sections now can be parsed.
148    
149    2005-12-28  Wakaba  <wakaba@suika.fam.cx>
150    
151            * XMLParser.dis: Some modifications made.
152    
153    2005-12-27  Wakaba  <wakaba@suika.fam.cx>
154    
155            * DOMLS.dis (PARSE_ERR, SERIALIZE_ERR): They are now a
156            global named resource.
157    
158            * Makefile: Rules to make |XMLParser.pm| is added.
159    
160            * XMLParser.dis: New file.
161    
162    2005-12-24  Wakaba  <wakaba@suika.fam.cx>
163    
164            * DOMCore.dis (ManakaiDOMError._FORMATTER_PACKAGE_): Error
165            message formatter can now vary by error types.
166            (DOMLocator.utf32Offset): New (manakai extended) attribute.
167    
168    2005-12-23  Wakaba  <wakaba@suika.fam.cx>
169    
170            * DOMCore.dis (DOMLocator): Implemented.
171    
172    2005-12-21  Wakaba  <wakaba@suika.fam.cx>
173    
174            * DOMCore.dis (DOMConfigurationParameterApplication,
175            domConfigurationParameter): New resources.
176    
177    2005-11-25  Wakaba  <wakaba@suika.fam.cx>
178    
179            * Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error):
180            New methods.
181    
182    2005-11-24  Wakaba  <wakaba@suika.fam.cx>
183    
184            * DOMMain.dis, DOMLS.dis, DOMXML.dis, Tree.dis: Old |__WARNING__|
185            blocks are replaced by |DOMError|-based |__DOMCore:ERROR__| blocks.
186    
187            * DOMMain.dis (___report_error): Throws the error unkess
188            it is a |DOMCore:DOMError| object.
189            
190    2005-11-24  Wakaba  <wakaba@suika.fam.cx>
191    
192            * DOMCore.dis (severity, type): Getters return value from
193            the definition of the current error (i.e. |-def| hash).
194            (___error_def): New method.
195            (errorType): |dis:dataType| changed to |DISCore:TFQNames|
196            to ease natural reference to constant value.
197            (error-handler.default): Prints the error message by |warn|.
198    
199            * Tree.dis (nodeValue.set): Reimplemented so that it
200            warns as setting has no effect.
201            (___report_error): New method.  (It had been only implemented
202            in superclass.)
203            (setting-node-value-no-effect): New error type.
204    
205    2005-11-23  Wakaba  <wakaba@suika.fam.cx>
206    
207            * DOMCore.dis: Error codes added.
208    
209            * Tree.dis (destroyNodeStem): New method implementation.
210    
211    2005-11-22  Wakaba  <wakaba@suika.fam.cx>
212    
213            * Tree.dis (cloneNode): User data handlers implemented.
214            (adoptNode): User data handlers implemented.
215            
216    2005-11-21  Wakaba  <wakaba@suika.fam.cx>
217    
218            * DOMCore.dis (UserDataHandler): A constraint for Perl binding
219            added.
220    
221            * Tree.dis (cloneNode): Invoking of |UserDataHandler|s are implemented.
222            (getUserData, setUserData): Implemented.
223    
224    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
225    
226            * DOMCore.dis (UserDataHandler): Implemented.
227            (DOMErrorHandler): Blessed package name bug fixed.
228    
229            * ManakaiDOMLS2003.dis: Reference to |Node| subclasses
230            changed to |Tree.dis|.
231            
232    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
233    
234            * DOMMain.dis: Unused declarations and definitions removed.
235    
236            * DOMCore.dis: DOM document tree related interfaces removed.
237    
238            * Tree.dis: New module separated from |DOMCore.dis|.
239    
240            * DOMXML.dis: Some referent changed to |Tree.dis|.
241    
242            * Makefile: |Tree.dis| added.
243    
244    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
245    
246            * .cvsignore: Revised.
247            
248    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
249    
250            * ManakaiDOMLS2003.dis: Tests added.
251            (domConfig): Method name in the code fixed to |flag|.
252    
253            * DOMMain.dis (findOffset32): Missing |^| in regular expressions
254            added.
255    
256            * DOMCore.dis (hasChildNodes): Returns |false| if the node type
257            is defined not to have any children.
258            (CharacterData): Typos in element type names and function names fixed.
259    
260    2005-11-15  Wakaba  <wakaba@suika.fam.cx>
261    
262            * DOMFeature.dis (MinimumImplementation.eq): Added.
263    
264            * DOMMain.dis: |DISPerl:ISA| reference fixed.
265    
266            * Generic.dis: Implements new |DOMLS:Generic| feature.
267    
268    2005-11-15  Wakaba  <wakaba@suika.fam.cx>
269    
270            * DOMFeature.dis (stringifyFeatures): Don't double |SPACE|
271            characters between feature names and versions.
272    
273    2005-11-13  Wakaba  <wakaba@suika.fam.cx>
274    
275            * DOMFeature.dis (stringifyFeatures): A test code added.
276    
277    2005-10-26  Wakaba  <wakaba@suika.fam.cx>
278    
279            * SimpleLS.dis (writeToString): Don't stop serializing
280            when an |false| value appears in |@src|.
281    
282    2005-10-16  Wakaba  <wakaba@suika.fam.cx>
283    
284            * DOMCore.dis (DOMError, DOMErrorHandler): Reimplemented.
285            (ErrDef): Redefined.
286    
287            * DOMLS.dis (ErrDef): Redefined.
288    
289    2005-10-16  Wakaba  <wakaba@suika.fam.cx>
290    
291            * DOMCore.dis (DOMConfiguration): Extends "ManakaiDOM:ManakaiDOMObject".
292    
293    2005-10-15  Wakaba  <wakaba@suika.fam.cx>
294    
295            * DOMCore.dis (Require): References "DOMLS.dis" module.
296            (CParam): Definitions for LS module added.
297    
298            * DOMLS.dis (ManakaiDOMLSInput): The input processor
299            is also an output processor now.
300            (ManakaiDOMLSResourceResolver): Implemented.
301            (CParam): Definitions updated.
302    
303    2005-10-14  Wakaba  <wakaba@suika.fam.cx>
304    
305            * DOMCore.dis (NOT_RECOGNIZED_CONFIG_PARAM_ERR,
306            NOT_SUPPORTED_CONFIG_VALUE_ERR,
307            INCOMPATIBLE_CONFIG_VALUE_ERR): New error subcodes.
308            (DOMConfiguration): Implemented.
309            (CParam): Definitions updated.
310    
311            * DOMMain.dis (DOMURIs): New data type.
312            
313    2005-10-13  Wakaba  <wakaba@suika.fam.cx>
314    
315            * DOMCore.dis (setAttrValueNS): New code.
316    
317    2005-10-12  Wakaba  <wakaba@suika.fam.cx>
318    
319            * DOMCore.dis: Don't set "infoset:prefix" internal
320            property unless it has non-null value.
321            (newObject): "refNode" parameter introduced.
322            (ManakaiDOMNode.newObject): Calls "NodeStem.newNode"
323            method if "refNode" parameter is specified.
324            (cloneNode): Don't set "read-only" flag.
325            (getNodeReference): Caches the result.
326            (selectAttributeNodeForRemove): Don't removes any other
327            non-namespace-aware attribute nodes.
328    
329    2005-10-11  Wakaba  <wakaba@suika.fam.cx>
330    
331            * DOMCore.dis (appendChild, createElementNS, createAttributeNS,
332            setAttribute, setAttributeNS): "strictErrorChecking" attribute supported.
333            (doStrictErrorChecking): New code.
334    
335            * DOMMain.dis (XML10Name, XML11Name): "strictErrorChecking" attribute
336            supported.
337    
338            * Makefile: Rule to make "DOMFeature.pm" restored.
339    
340    2005-10-10  Wakaba  <wakaba@suika.fam.cx>
341    
342            * DOMCore.dis (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode.
343            (adoptNode): Implemented.
344    
345    2005-10-09  Wakaba  <wakaba@suika.fam.cx>
346    
347            * DOMHTML.dis, DOMWebForms.dis: Typos in element type prefix fixed.
348    
349            * DOMFeature.dis (DOMCore:implementation): Short name added.
350    
351            * DOMCore.dis (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode.
352            (DOMCore:node): New error parameter.
353            (DOMCore:ownerDocument): Changed from "mn:irefnode0"
354            to "mn:xrefnode0".  For this reason, all assignments
355            to this property have been rewritten to references
356            to code "mn:setXRefNode".
357            (cloneNode): Implemented.
358            (setAttributeNode): A missing "importTree" method call added.
359            (setAttributeNodeNS): Perl code removed and changed
360            to a reference to "setAttributeNode" method code.
361    
362            * DOMXML.dis (DOMCore:ownerDocument): Changed from "mn:irefnode0"
363            property to "mn:xrefnode0" property.
364    
365    2005-10-08  Wakaba  <wakaba@suika.fam.cx>
366    
367            * DOMCore.dis, DOMLS.dis: Now constant values are defined only
368            in interfaces.
369    
370    2005-10-06  Wakaba  <wakaba@suika.fam.cx>
371    
372            * DOMCore.dis (ManakaiDOMEmptyNodeList): New class.
373            (ManakaiDOMCharacterData): Methods reimplemented.
374            (splitText): Reimplemented.
375            (childNodes): Returns a "ManakaiDOMEmptyNodeList"
376            for non-parent node types.
377    
378            * DOMXML.dis (childNodes): Returns a "ManakaiDOMEmptyNodeList"
379                    for non-parent node types.
380    
381    2005-10-05  Wakaba  <wakaba@suika.fam.cx>
382    
383            * ManakaiDOMLS2003.dis: Revised to new format.
384    
385            * GenericLS.dis (DOMLS:ParseString): New feature.
386    
387    2005-10-05  Wakaba  <wakaba@suika.fam.cx>
388    
389            * DOMFeature.dis: Description added and revised.  (Still more
390            work required.)
391    
392    2005-10-04  Wakaba  <wakaba@suika.fam.cx>
393    
394            * DOMMain.dis (DOMString): The "idl:perl" attribute
395            value has been changed from "DISPerl:String"
396            to "DISPerl:CharacterString" to clarify its semantics.
397    
398    2005-10-03  Wakaba  <wakaba@suika.fam.cx>
399    
400            * DOMFeature.dis (MIString): Java, ECMAScript, and Perl bound
401            type properties added.
402    
403            * DOMMain.dis (DataType): Java, ECMAScript, and Perl bound
404            type properties added.
405    
406    2005-10-02  Wakaba  <wakaba@suika.fam.cx>
407    
408            * DOMFeature.dis (Module): "idl:prefix" and "idl:moduleName"
409            properties added.
410    
411    2005-10-01  Wakaba  <wakaba@suika.fam.cx>
412    
413            * DOMFeature.dis: Documentation added (still work in progress).
414            (MIString): New type.
415    
416            * DOMCore.dis (namespaceURI): Fixed to return the namespace
417            URI value, not a reference to it.
418    
419    2005-09-30  Wakaba  <wakaba@suika.fam.cx>
420    
421            * DOMCore.dis, SimpleLS.dis: Shares namespace URIs and local
422            names where possible.
423    
424            * DOMFeature.dis: Documentation for DOM Minimum Implementation
425            added (still work in progress).
426    
427            * Makefile (feature.dae, feature-spec.dae): New rules.
428    
429    2005-09-27  Wakaba  <wakaba@suika.fam.cx>
430    
431            * DOMCore.dis (DOMCore:nodeProp): New property.
432    
433            * DOMCore.dis, DOMXML.dis: Codes to set properties "TreeCore:*"
434            is removed.
435    
436    2005-09-26  Wakaba  <wakaba@suika.fam.cx>
437    
438            * DOMCore.dis, DOMXML.dis: New mn:* properties added.
439    
440    2005-09-25  Wakaba  <wakaba@suika.fam.cx>
441    
442            * Makefile (DAC_SUFFIX): Changed to ".dae".
443            (DAEM_SUFFIX): New.
444    
445    2005-09-24  Wakaba  <wakaba@suika.fam.cx>
446    
447            * DOMMain.dis (MDOM:): Reintroduced for "ManakaiDOM:ManakaiDOM1"
448            and "ManakaiDOM:ManakaiDOM2".
449    
450            * DOMFeature.dis, DOMMain.dis, DOMCore.dis, DOMXML.dis,
451            DOMLS.dis, SimpleLS.dis, GenericLS.dis: Use disPerl:H
452            instead of disPerl:Q for internal property hash keys.
453    
454            * DOMFeature.dis, DOMCore.dis, DOMXML.dis: Missing property
455            definitions added.
456    
457            * DOMCore.dis (DOMCore:TextNode, DOMCore:DocumentFragmentNode):
458            New resources.
459            
460            * DOMXML.dis (DOMXML:EntityNode, DOMXML:EntityReferenceNode): New
461            resources.
462    
463    2005-09-23  Wakaba  <wakaba@suika.fam.cx>
464    
465            * GenericLS.dis, SimpleLS.dis: New modules separated
466            from DOMLS.dis.
467    
468            * DOMFeature.dis, DOMMain.dis: "MDOM:" and "for" definitions
469            moved from DOMMain to DOMFeature.  Now DOMFeature
470            has no dependency on DOMMain.
471    
472            * DOMFeature.dis (DEBUG): New variable.
473    
474    2005-09-22  Wakaba  <wakaba@suika.fam.cx>
475    
476            * Makefile: DAC_SUFFIX changed to ".dad".
477    
478    2005-09-21  Wakaba  <wakaba@suika.fam.cx>
479    
480            * DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion"
481            features if it is "for" ManakaiDOM:DOMXMLFeature.
482    
483            * DOMMain.pm (StringExtend): Code portions of raising
484            StringOutOfBoundsException is temporary disabled since
485            it is not a DOM-style exception supported by
486            current implementation of ManakaiNode - it will be
487            recovered in later revision.
488    
489    2005-09-20  Wakaba  <wakaba@suika.fam.cx>
490    
491            * DOMFeature.pm: Debug output code copied
492            from Attic/DOMMetaImpl.pm (Should these code incorporated
493            to source dis file?).
494    
495    2005-09-19  Wakaba  <wakaba@suika.fam.cx>
496    
497            * DOMMain.dis (ManakaiDOM:DOMMethod, ManakaiDOM:DOMMethodReturn,
498            ManakaiDOM:DOMAttribute, ManakaiDOM:DOMAttrGet,
499            ManakaiDOM:DOMAttrSet, ManakaiDOM:DOMMethodParam): Removed.
500            (ManakaiDOMTimeStamp): Removed.
501    
502            * DOMBoot.dis, DOMMetaImpl.dis, DOMMetaImpl.pm: Removed (they are no
503            longer in use).
504    
505    2005-09-18  Wakaba  <wakaba@suika.fam.cx>
506    
507            * DOMMain.dis (StringOutOfBoundsException): New exception.
508    
509    2005-09-15  Wakaba  <wakaba@suika.fam.cx>
510    
511            * DOMFeature.dis: dis:dataType and dis:multipleProperties
512            properties added to properties.
513    
514    2005-09-08  Wakaba  <wakaba@suika.fam.cx>
515    
516            * Makefile: Rules renewaled.
517    
518    2005-09-07  Wakaba  <wakaba@suika.fam.cx>
519    
520            * DOMCore.dis, DOMXML.dis, DOMLS.dis: Inheritance information fixed.
521    
522    2005-09-05  Wakaba  <wakaba@suika.fam.cx>
523    
524            * DOMMain.dis (DOMImplementationRegistry,
525            DOMImplementationRegistryVar): New.
526    
527            * DOMFeature.dis (DOMImplementationRegistry,
528            DOMImplementationRegistryVar): Removed.
529            (ImplementationRegistry): New class.
530    
531    2005-09-04  Wakaba  <wakaba@suika.fam.cx>
532    
533            * DOMFeature.dis: New module.
534    
535            * DOMMetaImpl.dis (ManakaiDOM:ManakaiDOMObject): Removed.
536    
537            * DOMMain.dis (ManakaiDOM:ManakaiDOMObject): New.
538            (DOMString, DOMTimeStamp): Now they are not interfaces
539            but datatypes.
540            (DOMUserData, DOMObject, DOMUserData): Now they
541            are subtypes rather than aliases of their "real" type in IDL.
542            
543            * DOMCore.dis (DOMImplementationList, DOMImplementationSource):
544            New interfaces and classes.    
545    
546    2005-09-01  Wakaba  <wakaba@suika.fam.cx>
547    
548            * DOMCore.dis (setTextNodeContent): Sets the infoset:parent
549            property of the new Text node.
550    
551    2005-08-29  Wakaba  <wakaba@suika.fam.cx>
552    
553            * Makefile: Loads "NaturalLanguage.dis".
554    
555    2005-08-26  Wakaba  <wakaba@suika.fam.cx>
556    
557            * DOMCore.dis (createDocument): Set "ownerDocument" attribute
558            to the root element created by the method.  (It was forgotten!!)
559    
560    2005-08-15  Wakaba  <wakaba@suika.fam.cx>
561    
562            * DOMCore.dis (appendChild, insertBefore, replaceChild): Typo
563            in the code of removing the newChild from the previous
564            parent of that node is fixed.
565    
566    2005-05-29  Wakaba  <wakaba@suika.fam.cx>
567    
568            * DOMLS.dis (SimpleSerializer): End tag was sometimes missing.  Use
569            namespace prefix of element type if it is not declared
570            but not used else.  A shift is replaced by pop:).
571    
572            * DOMCore.dis (getFeature): The getFeature method
573            for Node-derived classes implemented.
574            * DOMXML.dis (getFeature): Ditto.
575    
576    2005-05-21  Wakaba  <wakaba@suika.fam.cx>
577    
578            * DOMCore.dis (getNodeReference): Use HTMLDocument class
579            if a document node has no document element node but
580            has support for the "HTML" feature.
581    
582    2005-03-03  Wakaba  <wakaba@suika.fam.cx>
583    
584            * DOMMetaImpl.dis (features input normalizer): Variable name
585            typo fixed.
586            (ManakaiDOMImplementationSource.getDOMImplementation): Fixed bug
587            so that version specification for "+"'ed feature name does work now.
588    
589    2005-03-02  Wakaba  <wakaba@suika.fam.cx>
590    
591            * DOMBoot.dis (ResourceDef): Definitions for DOMFeature are
592            removed (now defined in DOMMetaImpl).
593    
594    2005-02-21  Wakaba  <wakaba@suika.fam.cx>
595    
596            * DOMMetaImpl.dis (IFClsDef[ManakaiDOMMinimumImplementation]): New.
597    
598            * Makefile: Rules for DOMMetaImpl module added.
599    
600    2005-02-20  Wakaba  <wakaba@suika.fam.cx>
601    
602            * DOMMetaImpl.dis: New module (split from DOMCore and DOMMain).
603    
604    2005-02-18  Wakaba  <wakaba@suika.fam.cx>
605    
606            * DOMCore.dis (getFeature): ManakaiDOM:ManakaiDOMNodeObject.newReference
607            is an instance method, not a class method.
608    
609            * DOMMain.dis (ResourceTypeDef[ManakaiDOM:Const,
610            ManakaiDOM:ConstGroup]): Removed (moved to "lib/manakai/DISLang.dis").
611            (Exception-related definitions): Removed (moved to
612            "lib/Message/Util/Error/DOMException.dis").
613            (ForDef[ManakaiDOM:ForIF, ManakaiDOM:ForClass]): Removed (moved
614            to DISLang).
615    
616    2005-02-17  Wakaba  <wakaba@suika.fam.cx>
617    
618            * DOMMain.dis: Definitions for "ManakaiDOM:ManakaiDOMNodeObject" and
619            "ManakaiDOM:ManakaiDOMNodeReference" are removed (moved to
620            "lib/Message/Util/ManakaiNode.dis").
621            (ResourceDef[ManakaiDOM:DataType]): Removed (moved to
622            "lib/manakai/DISCore.dis").
623            (ResourceTypeDef[ManakaiDOM:IF, ManakaiDOM:Class,
624            ManakaiDOM:PrimitiveTypeClass]): Removed (moved to
625            "lib/manakai/DISLang.dis").
626    
627    2005-02-16  Wakaba  <wakaba@suika.fam.cx>
628    
629            * DOMMain.dis (ForDef[ManakaiDOM:Perl]): Removed (moved to
630            DISPerl module).
631    
632    2005-01-07  Wakaba  <wakaba@suika.fam.cx>
633    
634            * DOMCore.dis: Each "delete array-item" replaced to a "splice".
635    
636    2005-01-06  Wakaba  <wakaba@suika.fam.cx>
637    
638            * DOMMain.dis (ensureXMLName): Test as if XML 1.0 if it is not an
639            XML document.
640    
641    2005-01-05  Wakaba  <wakaba@suika.fam.cx>
642    
643            * DOMMain.dis (ManakaiDOMExceptionOrWarning.stringify): New method.
644            (IntMethod[isExternallyReferred]): Rewritten.
645            (IntMethod[isExternallyReferredDownward]): Removed.
646            (Checking XML name legallity): Fix true or false mistakes.
647            (destroy, importTree, orphanate): Rewritten.
648            (destroyDownward, changeTreeIDDownward): Removed.
649            (TreeCore:urefnode property): Removed since not used.
650    
651            * DOMCore.dis: Tying array for NodeList implemented.
652    
653    2005-01-02  Wakaba  <wakaba@suika.fam.cx>
654    
655            * DOMHTML.dis (HTMLDOMImplementation): New interface.
656    
657            * DOMViews.dis: Documentation for properties are added.
658    
659    2004-12-29  Wakaba  <wakaba@suika.fam.cx>
660    
661            * Makefile: DOMXML, DOMEvents, DOMLS and ManakaiDOMLS2003 added.
662    
663            * ManakaiDOMCore.dis: Removed (merged with DOMCore.dis).
664    
665    2004-12-28  Wakaba  <wakaba@suika.fam.cx>
666    
667            * ManakaiDOMXML.dis: Removed (merged with DOMXML.dis).
668    
669    2004-12-01  Wakaba  <wakaba@suika.fam.cx>
670    
671            * ManakaiDOMMain.dis: Removed (merged with DOMMain.dis).
672    
673    2004-11-03  Wakaba  <wakaba@suika.fam.cx>
674    
675            * .cvsignore: Ignore pod files.
676    
677    2004-10-31  Wakaba  <wakaba@suika.fam.cx>
678    
679            * DOMXML.dis (ProcessingInstruction.data): Property name error fixed.
680    
681            * DOMMain.dis: Don't call DOMString->__INT{length}__ - it should
682            be DOMString->length.
683    
684            * DOMCore.dis (Element.getElementsByTagName,
685            Node.getElementsByTagName, Element.getElementsByTagNameNS,
686            Node.getElementsByTagNameNS): Implemented.
687            (Element.getAttributeNode, Element.getAttributeNodeNS):
688            Check whether defined.
689    
690    2004-10-18  Wakaba  <wakaba@suika.fam.cx>
691    
692            * DOMWebForms.dis: New module.
693    
694    2004-10-17  Wakaba  <wakaba@suika.fam.cx>
695    
696            * DOMBasicEvents.dis, DOMHTMLEvents.dis, DOMViews.dis,
697            DOMHTML.dis: New modules.
698    
699    2004-10-16  Wakaba  <wakaba@suika.fam.cx>
700    
701            * DOMMouseEvents.dis, DOMTextEvents.dis: New module.
702    
703    2004-10-11  Wakaba  <wakaba@suika.fam.cx>
704    
705            * ManakaiDOMMain.dis: 'TreeCore:anydata2' property type added.
706            (DataType[ManakaiDOMKeyIdentifier, ManakaiDOMKeyIdentifiers]): added.
707    
708    2004-10-10  Wakaba  <wakaba@suika.fam.cx>
709    
710            * DOMEvents.dis: New module.
711    
712            * ManakaiDOMCore.dis (ManakaiDOMAttributes.item): Return
713            node reference.
714    
715            * ManakaiDOMLS2003.dis (error_handler): '$caller' changed
716            to '$self' for correct error reporting and not to leak memory.
717    
718            * Makefile (DIS2PM_PL): Path to dis2pm.pl changed.
719            * dis2pm.pl, idl2dis.pl: Removed (moved to ../../bin/).
720    
721    2004-10-09  Wakaba  <wakaba@suika.fam.cx>
722    
723            * DOMCore.dis (ConfigParam): Moved from ManakaiDOMCore.
724            * ManakaiDOMCore.dis (ConfigParam): Removed.
725    
726            * dis2pm.pl: Functions to create perl/pod structures
727            are moved to ../../bin/genlib.pl.
728            (disdoc2pod, disdoc2text): Allow LESS-THAN SIGN as the first
729            character of a paragraph.
730    
731            * ManakaiDOMLS2003.dis (ManakaiXMLParser2003/parse:#comment):
732            Set ownerDocument as parent if parent.ownerDocument is null.
733    
734            * dis2pm.pl (dis2perl): Report if DIS code has value.
735    
736    2004-10-06  Wakaba  <wakaba@suika.fam.cx>
737    
738            * ManakaiDOMCore.dis (IFs): Inherit non-conditional version
739            of ManakaiDOMMain interfaces.
740    
741            * DOMCore.dis (Node.childNodes): Typo fixed.
742    
743            * ManakaiDOMLS2003.dis (parse): Check whether the namespace
744            prefix is null.
745    
746            * dis2pm.pl (perl_builtin_code): Allow hash reference as 'features'.
747            (Condition): Don't generate condition inheritance for DOM1, DOM2
748            and DOM3.
749    
750  2004-09-30  Wakaba  <wakaba@suika.fam.cx>  2004-09-30  Wakaba  <wakaba@suika.fam.cx>
751    
752          * dis2pm.pl (disdoc_inline2pod, disdoc_inline2text): New          * dis2pm.pl (disdoc_inline2pod, disdoc_inline2text): New

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.107

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24