/[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.63 by wakaba, Fri Sep 23 18:24:52 2005 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>  2005-09-23  Wakaba  <wakaba@suika.fam.cx>
275    
276          * GenericLS.dis, SimpleLS.dis: New modules separated          * GenericLS.dis, SimpleLS.dis: New modules separated
# Line 18  Line 291 
291          * DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion"          * DOMCore.pm (DOMImplementation): Provides "XML" and "XMLVersion"
292          features if it is "for" ManakaiDOM:DOMXMLFeature.          features if it is "for" ManakaiDOM:DOMXMLFeature.
293    
294          * DOMMain.pm (StringExtended): Code portions of raising          * DOMMain.pm (StringExtend): Code portions of raising
295          StringOutOfBoundsException is temporary disabled since          StringOutOfBoundsException is temporary disabled since
296          it is not a DOM-style exception supported by          it is not a DOM-style exception supported by
297          current implementation of ManakaiNode - it will be          current implementation of ManakaiNode - it will be

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24