/[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.54 by wakaba, Tue Aug 30 12:30:45 2005 UTC revision 1.104 by wakaba, Sat Jan 21 17:37:51 2006 UTC
# Line 1  Line 1 
1    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    2006-01-21  Wakaba  <wakaba@suika.fam.cx>
15    
16            * 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            * 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    2006-01-07  Wakaba  <wakaba@suika.fam.cx>
37    
38            * 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            * 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    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    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    2005-12-28  Wakaba  <wakaba@suika.fam.cx>
103    
104            * 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            * 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    2005-12-23  Wakaba  <wakaba@suika.fam.cx>
129    
130            * DOMCore.dis (DOMLocator): Implemented.
131    
132    2005-12-21  Wakaba  <wakaba@suika.fam.cx>
133    
134            * DOMCore.dis (DOMConfigurationParameterApplication,
135            domConfigurationParameter): New resources.
136    
137    2005-11-25  Wakaba  <wakaba@suika.fam.cx>
138    
139            * Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error):
140            New methods.
141    
142    2005-11-24  Wakaba  <wakaba@suika.fam.cx>
143    
144            * 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            * 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    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    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
185    
186            * 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            * 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    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
205    
206            * .cvsignore: Revised.
207            
208    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
209    
210            * 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    2005-11-15  Wakaba  <wakaba@suika.fam.cx>
221    
222            * 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            * 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    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    2005-10-16  Wakaba  <wakaba@suika.fam.cx>
243    
244            * 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            * DOMCore.dis (DOMConfiguration): Extends "ManakaiDOM:ManakaiDOMObject".
252    
253    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    2005-10-13  Wakaba  <wakaba@suika.fam.cx>
274    
275            * DOMCore.dis (setAttrValueNS): New code.
276    
277    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    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    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    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    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    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    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    2005-10-02  Wakaba  <wakaba@suika.fam.cx>
367    
368            * DOMFeature.dis (Module): "idl:prefix" and "idl:moduleName"
369            properties added.
370    
371    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    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    2005-09-27  Wakaba  <wakaba@suika.fam.cx>
390    
391            * DOMCore.dis (DOMCore:nodeProp): New property.
392    
393            * DOMCore.dis, DOMXML.dis: Codes to set properties "TreeCore:*"
394            is removed.
395    
396    2005-09-26  Wakaba  <wakaba@suika.fam.cx>
397    
398            * DOMCore.dis, DOMXML.dis: New mn:* properties added.
399    
400    2005-09-25  Wakaba  <wakaba@suika.fam.cx>
401    
402            * Makefile (DAC_SUFFIX): Changed to ".dae".
403            (DAEM_SUFFIX): New.
404    
405    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    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    2005-09-22  Wakaba  <wakaba@suika.fam.cx>
435    
436            * Makefile: DAC_SUFFIX changed to ".dad".
437    
438    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            * DOMMain.pm (StringExtend): Code portions of raising
444            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    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    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    2005-09-15  Wakaba  <wakaba@suika.fam.cx>
470    
471            * DOMFeature.dis: dis:dataType and dis:multipleProperties
472            properties added to properties.
473    
474    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    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    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  2005-08-29  Wakaba  <wakaba@suika.fam.cx>  2005-08-29  Wakaba  <wakaba@suika.fam.cx>
512    
513          * Makefile: Loads "NaturalLanguage.dis".          * Makefile: Loads "NaturalLanguage.dis".

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.104

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24