/[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.35 by wakaba, Mon Oct 18 12:23:51 2004 UTC revision 1.91 by wakaba, Thu Nov 24 12:08:23 2005 UTC
# Line 1  Line 1 
1    2005-11-24  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMCore.dis (severity, type): Getters return value from
4            the definition of the current error (i.e. |-def| hash).
5            (___error_def): New method.
6            (errorType): |dis:dataType| changed to |DISCore:TFQNames|
7            to ease natural reference to constant value.
8            (error-handler.default): Prints the error message by |warn|.
9    
10            * Tree.dis (nodeValue.set): Reimplemented so that it
11            warns as setting has no effect.
12            (___report_error): New method.  (It had been only implemented
13            in superclass.)
14            (setting-node-value-no-effect): New error type.
15    
16    2005-11-23  Wakaba  <wakaba@suika.fam.cx>
17    
18            * DOMCore.dis: Error codes added.
19    
20            * Tree.dis (destroyNodeStem): New method implementation.
21    
22    2005-11-22  Wakaba  <wakaba@suika.fam.cx>
23    
24            * Tree.dis (cloneNode): User data handlers implemented.
25            (adoptNode): User data handlers implemented.
26            
27    2005-11-21  Wakaba  <wakaba@suika.fam.cx>
28    
29            * DOMCore.dis (UserDataHandler): A constraint for Perl binding
30            added.
31    
32            * Tree.dis (cloneNode): Invoking of |UserDataHandler|s are implemented.
33            (getUserData, setUserData): Implemented.
34    
35    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
36    
37            * DOMCore.dis (UserDataHandler): Implemented.
38            (DOMErrorHandler): Blessed package name bug fixed.
39    
40            * ManakaiDOMLS2003.dis: Reference to |Node| subclasses
41            changed to |Tree.dis|.
42            
43    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
44    
45            * DOMMain.dis: Unused declarations and definitions removed.
46    
47            * DOMCore.dis: DOM document tree related interfaces removed.
48    
49            * Tree.dis: New module separated from |DOMCore.dis|.
50    
51            * DOMXML.dis: Some referent changed to |Tree.dis|.
52    
53            * Makefile: |Tree.dis| added.
54    
55    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
56    
57            * .cvsignore: Revised.
58            
59    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
60    
61            * ManakaiDOMLS2003.dis: Tests added.
62            (domConfig): Method name in the code fixed to |flag|.
63    
64            * DOMMain.dis (findOffset32): Missing |^| in regular expressions
65            added.
66    
67            * DOMCore.dis (hasChildNodes): Returns |false| if the node type
68            is defined not to have any children.
69            (CharacterData): Typos in element type names and function names fixed.
70    
71    2005-11-15  Wakaba  <wakaba@suika.fam.cx>
72    
73            * DOMFeature.dis (MinimumImplementation.eq): Added.
74    
75            * DOMMain.dis: |DISPerl:ISA| reference fixed.
76    
77            * Generic.dis: Implements new |DOMLS:Generic| feature.
78    
79    2005-11-15  Wakaba  <wakaba@suika.fam.cx>
80    
81            * DOMFeature.dis (stringifyFeatures): Don't double |SPACE|
82            characters between feature names and versions.
83    
84    2005-11-13  Wakaba  <wakaba@suika.fam.cx>
85    
86            * DOMFeature.dis (stringifyFeatures): A test code added.
87    
88    2005-10-26  Wakaba  <wakaba@suika.fam.cx>
89    
90            * SimpleLS.dis (writeToString): Don't stop serializing
91            when an |false| value appears in |@src|.
92    
93    2005-10-16  Wakaba  <wakaba@suika.fam.cx>
94    
95            * DOMCore.dis (DOMError, DOMErrorHandler): Reimplemented.
96            (ErrDef): Redefined.
97    
98            * DOMLS.dis (ErrDef): Redefined.
99    
100    2005-10-16  Wakaba  <wakaba@suika.fam.cx>
101    
102            * DOMCore.dis (DOMConfiguration): Extends "ManakaiDOM:ManakaiDOMObject".
103    
104    2005-10-15  Wakaba  <wakaba@suika.fam.cx>
105    
106            * DOMCore.dis (Require): References "DOMLS.dis" module.
107            (CParam): Definitions for LS module added.
108    
109            * DOMLS.dis (ManakaiDOMLSInput): The input processor
110            is also an output processor now.
111            (ManakaiDOMLSResourceResolver): Implemented.
112            (CParam): Definitions updated.
113    
114    2005-10-14  Wakaba  <wakaba@suika.fam.cx>
115    
116            * DOMCore.dis (NOT_RECOGNIZED_CONFIG_PARAM_ERR,
117            NOT_SUPPORTED_CONFIG_VALUE_ERR,
118            INCOMPATIBLE_CONFIG_VALUE_ERR): New error subcodes.
119            (DOMConfiguration): Implemented.
120            (CParam): Definitions updated.
121    
122            * DOMMain.dis (DOMURIs): New data type.
123            
124    2005-10-13  Wakaba  <wakaba@suika.fam.cx>
125    
126            * DOMCore.dis (setAttrValueNS): New code.
127    
128    2005-10-12  Wakaba  <wakaba@suika.fam.cx>
129    
130            * DOMCore.dis: Don't set "infoset:prefix" internal
131            property unless it has non-null value.
132            (newObject): "refNode" parameter introduced.
133            (ManakaiDOMNode.newObject): Calls "NodeStem.newNode"
134            method if "refNode" parameter is specified.
135            (cloneNode): Don't set "read-only" flag.
136            (getNodeReference): Caches the result.
137            (selectAttributeNodeForRemove): Don't removes any other
138            non-namespace-aware attribute nodes.
139    
140    2005-10-11  Wakaba  <wakaba@suika.fam.cx>
141    
142            * DOMCore.dis (appendChild, createElementNS, createAttributeNS,
143            setAttribute, setAttributeNS): "strictErrorChecking" attribute supported.
144            (doStrictErrorChecking): New code.
145    
146            * DOMMain.dis (XML10Name, XML11Name): "strictErrorChecking" attribute
147            supported.
148    
149            * Makefile: Rule to make "DOMFeature.pm" restored.
150    
151    2005-10-10  Wakaba  <wakaba@suika.fam.cx>
152    
153            * DOMCore.dis (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode.
154            (adoptNode): Implemented.
155    
156    2005-10-09  Wakaba  <wakaba@suika.fam.cx>
157    
158            * DOMHTML.dis, DOMWebForms.dis: Typos in element type prefix fixed.
159    
160            * DOMFeature.dis (DOMCore:implementation): Short name added.
161    
162            * DOMCore.dis (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error subcode.
163            (DOMCore:node): New error parameter.
164            (DOMCore:ownerDocument): Changed from "mn:irefnode0"
165            to "mn:xrefnode0".  For this reason, all assignments
166            to this property have been rewritten to references
167            to code "mn:setXRefNode".
168            (cloneNode): Implemented.
169            (setAttributeNode): A missing "importTree" method call added.
170            (setAttributeNodeNS): Perl code removed and changed
171            to a reference to "setAttributeNode" method code.
172    
173            * DOMXML.dis (DOMCore:ownerDocument): Changed from "mn:irefnode0"
174            property to "mn:xrefnode0" property.
175    
176    2005-10-08  Wakaba  <wakaba@suika.fam.cx>
177    
178            * DOMCore.dis, DOMLS.dis: Now constant values are defined only
179            in interfaces.
180    
181    2005-10-06  Wakaba  <wakaba@suika.fam.cx>
182    
183            * DOMCore.dis (ManakaiDOMEmptyNodeList): New class.
184            (ManakaiDOMCharacterData): Methods reimplemented.
185            (splitText): Reimplemented.
186            (childNodes): Returns a "ManakaiDOMEmptyNodeList"
187            for non-parent node types.
188    
189            * DOMXML.dis (childNodes): Returns a "ManakaiDOMEmptyNodeList"
190                    for non-parent node types.
191    
192    2005-10-05  Wakaba  <wakaba@suika.fam.cx>
193    
194            * ManakaiDOMLS2003.dis: Revised to new format.
195    
196            * GenericLS.dis (DOMLS:ParseString): New feature.
197    
198    2005-10-05  Wakaba  <wakaba@suika.fam.cx>
199    
200            * DOMFeature.dis: Description added and revised.  (Still more
201            work required.)
202    
203    2005-10-04  Wakaba  <wakaba@suika.fam.cx>
204    
205            * DOMMain.dis (DOMString): The "idl:perl" attribute
206            value has been changed from "DISPerl:String"
207            to "DISPerl:CharacterString" to clarify its semantics.
208    
209    2005-10-03  Wakaba  <wakaba@suika.fam.cx>
210    
211            * DOMFeature.dis (MIString): Java, ECMAScript, and Perl bound
212            type properties added.
213    
214            * DOMMain.dis (DataType): Java, ECMAScript, and Perl bound
215            type properties added.
216    
217    2005-10-02  Wakaba  <wakaba@suika.fam.cx>
218    
219            * DOMFeature.dis (Module): "idl:prefix" and "idl:moduleName"
220            properties added.
221    
222    2005-10-01  Wakaba  <wakaba@suika.fam.cx>
223    
224            * DOMFeature.dis: Documentation added (still work in progress).
225            (MIString): New type.
226    
227            * DOMCore.dis (namespaceURI): Fixed to return the namespace
228            URI value, not a reference to it.
229    
230    2005-09-30  Wakaba  <wakaba@suika.fam.cx>
231    
232            * DOMCore.dis, SimpleLS.dis: Shares namespace URIs and local
233            names where possible.
234    
235            * DOMFeature.dis: Documentation for DOM Minimum Implementation
236            added (still work in progress).
237    
238            * Makefile (feature.dae, feature-spec.dae): New rules.
239    
240    2005-09-27  Wakaba  <wakaba@suika.fam.cx>
241    
242            * DOMCore.dis (DOMCore:nodeProp): New property.
243    
244            * DOMCore.dis, DOMXML.dis: Codes to set properties "TreeCore:*"
245            is removed.
246    
247    2005-09-26  Wakaba  <wakaba@suika.fam.cx>
248    
249            * DOMCore.dis, DOMXML.dis: New mn:* properties added.
250    
251    2005-09-25  Wakaba  <wakaba@suika.fam.cx>
252    
253            * Makefile (DAC_SUFFIX): Changed to ".dae".
254            (DAEM_SUFFIX): New.
255    
256    2005-09-24  Wakaba  <wakaba@suika.fam.cx>
257    
258            * DOMMain.dis (MDOM:): Reintroduced for "ManakaiDOM:ManakaiDOM1"
259            and "ManakaiDOM:ManakaiDOM2".
260    
261            * DOMFeature.dis, DOMMain.dis, DOMCore.dis, DOMXML.dis,
262            DOMLS.dis, SimpleLS.dis, GenericLS.dis: Use disPerl:H
263            instead of disPerl:Q for internal property hash keys.
264    
265            * DOMFeature.dis, DOMCore.dis, DOMXML.dis: Missing property
266            definitions added.
267    
268            * DOMCore.dis (DOMCore:TextNode, DOMCore:DocumentFragmentNode):
269            New resources.
270            
271            * DOMXML.dis (DOMXML:EntityNode, DOMXML:EntityReferenceNode): New
272            resources.
273    
274    2005-09-23  Wakaba  <wakaba@suika.fam.cx>
275    
276            * GenericLS.dis, SimpleLS.dis: New modules separated
277            from DOMLS.dis.
278    
279            * DOMFeature.dis, DOMMain.dis: "MDOM:" and "for" definitions
280            moved from DOMMain to DOMFeature.  Now DOMFeature
281            has no dependency on DOMMain.
282    
283            * DOMFeature.dis (DEBUG): New variable.
284    
285    2005-09-22  Wakaba  <wakaba@suika.fam.cx>
286    
287            * Makefile: DAC_SUFFIX changed to ".dad".
288    
289    2005-09-21  Wakaba  <wakaba@suika.fam.cx>
290    
291            * DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion"
292            features if it is "for" ManakaiDOM:DOMXMLFeature.
293    
294            * DOMMain.pm (StringExtend): Code portions of raising
295            StringOutOfBoundsException is temporary disabled since
296            it is not a DOM-style exception supported by
297            current implementation of ManakaiNode - it will be
298            recovered in later revision.
299    
300    2005-09-20  Wakaba  <wakaba@suika.fam.cx>
301    
302            * DOMFeature.pm: Debug output code copied
303            from Attic/DOMMetaImpl.pm (Should these code incorporated
304            to source dis file?).
305    
306    2005-09-19  Wakaba  <wakaba@suika.fam.cx>
307    
308            * DOMMain.dis (ManakaiDOM:DOMMethod, ManakaiDOM:DOMMethodReturn,
309            ManakaiDOM:DOMAttribute, ManakaiDOM:DOMAttrGet,
310            ManakaiDOM:DOMAttrSet, ManakaiDOM:DOMMethodParam): Removed.
311            (ManakaiDOMTimeStamp): Removed.
312    
313            * DOMBoot.dis, DOMMetaImpl.dis, DOMMetaImpl.pm: Removed (they are no
314            longer in use).
315    
316    2005-09-18  Wakaba  <wakaba@suika.fam.cx>
317    
318            * DOMMain.dis (StringOutOfBoundsException): New exception.
319    
320    2005-09-15  Wakaba  <wakaba@suika.fam.cx>
321    
322            * DOMFeature.dis: dis:dataType and dis:multipleProperties
323            properties added to properties.
324    
325    2005-09-08  Wakaba  <wakaba@suika.fam.cx>
326    
327            * Makefile: Rules renewaled.
328    
329    2005-09-07  Wakaba  <wakaba@suika.fam.cx>
330    
331            * DOMCore.dis, DOMXML.dis, DOMLS.dis: Inheritance information fixed.
332    
333    2005-09-05  Wakaba  <wakaba@suika.fam.cx>
334    
335            * DOMMain.dis (DOMImplementationRegistry,
336            DOMImplementationRegistryVar): New.
337    
338            * DOMFeature.dis (DOMImplementationRegistry,
339            DOMImplementationRegistryVar): Removed.
340            (ImplementationRegistry): New class.
341    
342    2005-09-04  Wakaba  <wakaba@suika.fam.cx>
343    
344            * DOMFeature.dis: New module.
345    
346            * DOMMetaImpl.dis (ManakaiDOM:ManakaiDOMObject): Removed.
347    
348            * DOMMain.dis (ManakaiDOM:ManakaiDOMObject): New.
349            (DOMString, DOMTimeStamp): Now they are not interfaces
350            but datatypes.
351            (DOMUserData, DOMObject, DOMUserData): Now they
352            are subtypes rather than aliases of their "real" type in IDL.
353            
354            * DOMCore.dis (DOMImplementationList, DOMImplementationSource):
355            New interfaces and classes.    
356    
357    2005-09-01  Wakaba  <wakaba@suika.fam.cx>
358    
359            * DOMCore.dis (setTextNodeContent): Sets the infoset:parent
360            property of the new Text node.
361    
362    2005-08-29  Wakaba  <wakaba@suika.fam.cx>
363    
364            * Makefile: Loads "NaturalLanguage.dis".
365    
366    2005-08-26  Wakaba  <wakaba@suika.fam.cx>
367    
368            * DOMCore.dis (createDocument): Set "ownerDocument" attribute
369            to the root element created by the method.  (It was forgotten!!)
370    
371    2005-08-15  Wakaba  <wakaba@suika.fam.cx>
372    
373            * DOMCore.dis (appendChild, insertBefore, replaceChild): Typo
374            in the code of removing the newChild from the previous
375            parent of that node is fixed.
376    
377    2005-05-29  Wakaba  <wakaba@suika.fam.cx>
378    
379            * DOMLS.dis (SimpleSerializer): End tag was sometimes missing.  Use
380            namespace prefix of element type if it is not declared
381            but not used else.  A shift is replaced by pop:).
382    
383            * DOMCore.dis (getFeature): The getFeature method
384            for Node-derived classes implemented.
385            * DOMXML.dis (getFeature): Ditto.
386    
387    2005-05-21  Wakaba  <wakaba@suika.fam.cx>
388    
389            * DOMCore.dis (getNodeReference): Use HTMLDocument class
390            if a document node has no document element node but
391            has support for the "HTML" feature.
392    
393    2005-03-03  Wakaba  <wakaba@suika.fam.cx>
394    
395            * DOMMetaImpl.dis (features input normalizer): Variable name
396            typo fixed.
397            (ManakaiDOMImplementationSource.getDOMImplementation): Fixed bug
398            so that version specification for "+"'ed feature name does work now.
399    
400    2005-03-02  Wakaba  <wakaba@suika.fam.cx>
401    
402            * DOMBoot.dis (ResourceDef): Definitions for DOMFeature are
403            removed (now defined in DOMMetaImpl).
404    
405    2005-02-21  Wakaba  <wakaba@suika.fam.cx>
406    
407            * DOMMetaImpl.dis (IFClsDef[ManakaiDOMMinimumImplementation]): New.
408    
409            * Makefile: Rules for DOMMetaImpl module added.
410    
411    2005-02-20  Wakaba  <wakaba@suika.fam.cx>
412    
413            * DOMMetaImpl.dis: New module (split from DOMCore and DOMMain).
414    
415    2005-02-18  Wakaba  <wakaba@suika.fam.cx>
416    
417            * DOMCore.dis (getFeature): ManakaiDOM:ManakaiDOMNodeObject.newReference
418            is an instance method, not a class method.
419    
420            * DOMMain.dis (ResourceTypeDef[ManakaiDOM:Const,
421            ManakaiDOM:ConstGroup]): Removed (moved to "lib/manakai/DISLang.dis").
422            (Exception-related definitions): Removed (moved to
423            "lib/Message/Util/Error/DOMException.dis").
424            (ForDef[ManakaiDOM:ForIF, ManakaiDOM:ForClass]): Removed (moved
425            to DISLang).
426    
427    2005-02-17  Wakaba  <wakaba@suika.fam.cx>
428    
429            * DOMMain.dis: Definitions for "ManakaiDOM:ManakaiDOMNodeObject" and
430            "ManakaiDOM:ManakaiDOMNodeReference" are removed (moved to
431            "lib/Message/Util/ManakaiNode.dis").
432            (ResourceDef[ManakaiDOM:DataType]): Removed (moved to
433            "lib/manakai/DISCore.dis").
434            (ResourceTypeDef[ManakaiDOM:IF, ManakaiDOM:Class,
435            ManakaiDOM:PrimitiveTypeClass]): Removed (moved to
436            "lib/manakai/DISLang.dis").
437    
438    2005-02-16  Wakaba  <wakaba@suika.fam.cx>
439    
440            * DOMMain.dis (ForDef[ManakaiDOM:Perl]): Removed (moved to
441            DISPerl module).
442    
443    2005-01-07  Wakaba  <wakaba@suika.fam.cx>
444    
445            * DOMCore.dis: Each "delete array-item" replaced to a "splice".
446    
447    2005-01-06  Wakaba  <wakaba@suika.fam.cx>
448    
449            * DOMMain.dis (ensureXMLName): Test as if XML 1.0 if it is not an
450            XML document.
451    
452    2005-01-05  Wakaba  <wakaba@suika.fam.cx>
453    
454            * DOMMain.dis (ManakaiDOMExceptionOrWarning.stringify): New method.
455            (IntMethod[isExternallyReferred]): Rewritten.
456            (IntMethod[isExternallyReferredDownward]): Removed.
457            (Checking XML name legallity): Fix true or false mistakes.
458            (destroy, importTree, orphanate): Rewritten.
459            (destroyDownward, changeTreeIDDownward): Removed.
460            (TreeCore:urefnode property): Removed since not used.
461    
462            * DOMCore.dis: Tying array for NodeList implemented.
463    
464    2005-01-02  Wakaba  <wakaba@suika.fam.cx>
465    
466            * DOMHTML.dis (HTMLDOMImplementation): New interface.
467    
468            * DOMViews.dis: Documentation for properties are added.
469    
470    2004-12-29  Wakaba  <wakaba@suika.fam.cx>
471    
472            * Makefile: DOMXML, DOMEvents, DOMLS and ManakaiDOMLS2003 added.
473    
474            * ManakaiDOMCore.dis: Removed (merged with DOMCore.dis).
475    
476    2004-12-28  Wakaba  <wakaba@suika.fam.cx>
477    
478            * ManakaiDOMXML.dis: Removed (merged with DOMXML.dis).
479    
480    2004-12-01  Wakaba  <wakaba@suika.fam.cx>
481    
482            * ManakaiDOMMain.dis: Removed (merged with DOMMain.dis).
483    
484    2004-11-03  Wakaba  <wakaba@suika.fam.cx>
485    
486            * .cvsignore: Ignore pod files.
487    
488    2004-10-31  Wakaba  <wakaba@suika.fam.cx>
489    
490            * DOMXML.dis (ProcessingInstruction.data): Property name error fixed.
491    
492            * DOMMain.dis: Don't call DOMString->__INT{length}__ - it should
493            be DOMString->length.
494    
495            * DOMCore.dis (Element.getElementsByTagName,
496            Node.getElementsByTagName, Element.getElementsByTagNameNS,
497            Node.getElementsByTagNameNS): Implemented.
498            (Element.getAttributeNode, Element.getAttributeNodeNS):
499            Check whether defined.
500    
501  2004-10-18  Wakaba  <wakaba@suika.fam.cx>  2004-10-18  Wakaba  <wakaba@suika.fam.cx>
502    
503          * DOMWebForms.dis: New module.          * DOMWebForms.dis: New module.

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.91

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24