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

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.114

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24