/[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.160 by wakaba, Thu Mar 30 16:01:42 2006 UTC revision 1.198 by wakaba, Sun Nov 5 09:16:28 2006 UTC
# Line 1  Line 1 
1    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CharacterData.dis (ManakaiDOMDocumentCharacterData): New
4            class.  Factory methods |createTextNode| and |createComment|
5            are moved from |ManakaiDOMDocument|.
6    
7            * DOMCore.dis: References to |ManakaiDOMObject|
8            are removed.
9            (tc:createImplForTest): Moved from |TreeCore.dis|.
10            (DOMImplementation.___create_node_ref): Support
11            for the |mg:nodeRefClass| option is removed.
12            (ManakaiDOMConfiguration.___report_error): Moved
13            from |ManakaiDOMObject| class.
14    
15            * DOMFeature.dis (domidl:extends): New property.
16            (f:getFeatureImpl): Support for |+| classes is removed.
17    
18            * DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed.
19            (ManakaiDOM:ManakaiDOMObject): Removed.
20            (DOMDataType): Removed.
21    
22            * Document.dis (ManakaiDOMImplementationDocument):
23            The |createDocument| method is moved from
24            the |ManakaiDOMImplementationTC| in |TreeCore.dis|.
25            (ManakaiDOMDocument.___create_node_ref): Removed.
26            (createElement, createElementNS, createAttribute,
27            createAttributeNS, createTextNode, createComment,
28            createCDATASection, createEntityReference,
29            createProcessingInstruction): Class implementations
30            are moved to each module.
31    
32            * Element.dis (ManakaiDOMImplementationElement): Factory
33            methods are moved from |Document.dis|.
34            (ManakaiDOMElement.___create_node_ref): Support
35            for old class registry is removed.
36            (ManakaiDOMAttr.___create_node_ref): Removed.
37            (Attr.baseURI): Implementation
38            for |xml:base| attribute is merged.
39            (Attr.nodeValue, Attr.value): Implementation
40            for |xml:id| attribute is merged.
41    
42            * TreeCore.dis (ManakaiDOMImplementationTC): Removed.
43    
44            * XDoctype.dis (ManakaiDOMImplementationXDoctype): The
45            definition for |createDocumentType| method
46            is moved from |TreeCore.dis|.
47    
48            * XML.dis (ManakaiDOMXMLDocument): Factory
49            methods are moved from |Document.dis|.
50            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged
51            into |ManakaiDOMAttr| in |Element.dis|).
52    
53    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
54    
55            * Element.dis (___get_node_ref): |eval|ed |require|
56            statement was broken.
57    
58            * DOMFeature.dis (getImplementationList): Argument
59            is not passed to the |getImplementation| method.
60    
61            * TreeStore.dis (DOMImplementationTreeStore): It
62            did not |f:implements| the |TSFeature30| feature.
63    
64            * XMLParser.dis: Use |create_uri_reference|
65            method instead of internal |_new| method
66            to create a URI reference object.
67    
68    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
69    
70            * DOMCore.dis (ManakaiDOMImplementation): No longer
71            explicitly inherits |urigen:ManakaiURIImplementation| (and
72            the |f:ManakaiMinimumImplementation| class inherited
73            by it).  The |f:Minimum| feature is ever implemented
74            for compatibility (but is expected to be removed).
75            Internal methods such as |___report_error| are copied from
76            obsolete |f:MinimumImplementation| class.  DOM3
77            methods |hasFeature| and |getFeature| are also
78            moved from that class, but they now support no
79            foreign classes.
80    
81            * DOMFeature.dis (ManakaiImplementationSource): It
82            now |p:require|s |Message::Util::AutoLoad::Registry|.
83            The class no longer support classes
84            other than |ManakaiDOMImplementation|.  Note
85            that the |ImplementationRegistry| object does continue
86            to support foreign classes via foreign classes
87            implementing |ImplementationSource|
88            or |DOMImplementationSource| interface.
89            (MinimumImplementation): Removed.
90    
91            * DOMLS.dis (ManakaiDOMImplementationLS): It no
92            longer inherit the |ManakaiDOMImplementation|; it
93            is now expected to be implemented by |DOMImplementation|
94            objects.
95    
96            * DOMMain.dis (null): Removed.
97    
98            * Document.dis (___create_node_ref): It no
99            longer support foreign classes other
100            than |Message::DOM::Document::ManakaiDOMDocument|.
101            Note that document format specific DOM
102            interfaces, if supported, should be
103            all instances of the |Document| interface
104            in the implementation, as defined
105            in the Web Applications 1.0 specification (where
106            the |HTMLDocument| interface must be implemented
107            by all |Document| objects, even if the |Document|
108            contains no HTML element).
109    
110            * GenericLS.dis (GLSImplementation): It no
111            longer inherit the |MinimumImplementation|; it
112            is now expected to be implemented by |DOMImplementation|
113            objects.
114            (createGLSParser, createGLSSerializer): Load
115            module implementing parser or serializer
116            if necessary.
117    
118            * Traversal.dis (ManakaiDOMDocumentTraversal): It no
119            longer inherits the |ManakaiDOMDocument|; it
120            is now expected to be implemented by |Document|
121            objects.
122    
123            * XDP.dis (XDPDocument): It no longer
124            inherits the |Document|; it is now expected
125            to be implemented by all |Document| objects.
126    
127            * XDoctype.dis (ManakaiDOMDocumentXDoctype): It no
128            longer inherits the |ManakaiDOMDocument|; it
129            is now expected to be implemented by |Document|
130            objects.
131    
132    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
133    
134            * DOMCore.dis (ManakaiDOMImplementation): No longer
135            explicitly inherits |tc:ManakaiDOMImplementationTC|.
136            (ManakaiDOMImplementation.AUTOLOAD): New method definition.
137    
138            * TreeCore.dis (ManakaiDOMImplementationTC): Extends
139            the |ManakaiDOMImplementation| class.
140    
141    2006-11-03  Wakaba  <wakaba@suika.fam.cx>
142    
143            * DOMFeature.dis: Definitions for various concepts
144            are added.
145    
146            * GenericLS.dis (GLSImplementation): It no
147            longer inherits the |MinimumImplementation|; rather,
148            any |ManakaiMinimumImplementation| object also
149            implements |GLSImplementation| methods.
150    
151            * TreeStore.dis (DOMImplementationTreeStore): It no
152            longer inherits the |DOMImplementation|; rather,
153            any |ManakaiDOMImplementation| object also
154            implements |DOMImplementationTreeStore| methods.
155    
156    2006-08-15  Wakaba  <wakaba@suika.fam.cx>
157    
158            * TreeStore.pm: Added to the CVS repository
159            to enable for the dis database to contain XML
160            fragments.
161    
162            * Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added.
163    
164            * TreeStore.dis (Namespace): Namespace URI was incorrect.
165    
166    2006-06-18  Wakaba  <wakaba@suika.fam.cx>
167    
168            * Traversal.dis (expandEntityReferences): Syntax was incorrect.
169    
170            * TreeCore.dis (manakaiReadOnly): Test assertion was incorrect.
171    
172            * XDP.dis (dtdText): Test assertion was incorrect.
173    
174    2006-05-21  Wakaba  <wakaba@suika.fam.cx>
175    
176            * XDP.dis (XDPEntityValue.stringify): Don't escape
177            any |%|s in |xdp:attr-definition| children.
178    
179    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
180    
181            * XDP.dis (createXDPRNIKeyword): The Perl method
182            name property is added.
183    
184    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
185    
186            * XDP.dis (createXDPIf): New method.
187            (XDPIfElement): New interface.
188    
189    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
190    
191            * XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition):
192            New methods.
193    
194    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
195    
196            * XDP.dis (XDPDocument): A number of constructor methods
197            are added.
198            (XDPTextDecl.dtdText): The |xml| target was missing.
199    
200    2006-05-14  Wakaba  <wakaba@suika.fam.cx>
201    
202            * Traversal.dis (SerialWalker): New interface.
203            (manakaiCreateSerialWalker): New method.
204    
205    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
206    
207            * Traversal.dis (testNode): Calls |acceptNode| method
208            rather than |&{}| dereferencing.
209            (acceptNode): Implemented.
210    
211    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
212    
213            * XDP.dis: New module.
214    
215            * Makefile: |XDP.dis| is added.
216    
217            * Traversal.dis (NodeFilter): |InputProcessor|
218            and |OutputProcessor| are added.
219    
220    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
221    
222            * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.
223            (TreeWalker): The |MANAKAI_FILTER_OPAQUE| value support
224            is added.  The |FILTER_REJECT| value is treated
225            as |FILTER_ACCEPT| if the |currentNode| is in the
226            rejected subtree as specified in the spec.
227    
228    2006-05-05  Wakaba  <wakaba@suika.fam.cx>
229    
230            * SimpleLS.dis: An |xmlns:| prefix was missing.
231    
232    2006-05-04  Wakaba  <wakaba@suika.fam.cx>
233    
234            * SimpleLS.dis: Namespace bugs are fixed.
235    
236    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
237    
238            * .cvsignore: Updated.
239    
240            * Traversal.dis: Unused declarations are removed.
241    
242    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
243    
244            * CharacterData.dis (Require): A reference to
245            the |MDOM:Traversal| module is added.
246            (wholeText): Implemented.
247    
248    2006-04-30  Wakaba  <wakaba@suika.fam.cx>
249    
250            * Makefile: |Traversal.dis| is added.
251    
252            * Traversal.dis: New module.
253    
254            * TreeCore.dis (___report_error): Return value was
255            not propagated.
256    
257    2006-04-29  Wakaba  <wakaba@suika.fam.cx>
258    
259            * Element.dis (removeAttributeNS): A runtime error
260            was occurred if there was no specified attribute node.
261    
262            * TreeCore.dis (manakaiLanguage): New attribute.
263    
264    2006-04-28  Wakaba  <wakaba@suika.fam.cx>
265    
266            * TreeCore.dis (NodeList.manakaiReadOnly, NamedNodeMap.manakaiReadOnly):
267            New attributes.
268    
269            (StaticNodeList): New interface.
270    
271    2006-04-24  Wakaba  <wakaba@suika.fam.cx>
272    
273            * DOMCore.dis (c:SET_TO_NULL_ERR): New error code.
274    
275    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
276    
277            * SimpleLS.dis: Reimplemented.
278    
279    2006-04-22  Wakaba  <wakaba@suika.fam.cx>
280    
281            * DOMCore.dis (NO_MODIFICATION_ALLOWED_ERR): It is now
282            a qualified name.
283            (tc:EXTERNAL_NODE_COMPARISON_ERR): New error type.
284    
285            * TreeCore.dis (compareDocumentPosition): Implemented.
286            (normalize): Implemented.
287            (STORESIZE, CLEAR): Were not implemented for |EmptyNodeList|
288            class.
289    
290    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
291    
292            * DOMCore.dis (OUT_OF_BOUND_ERR, NEGATIVE_INDEX_ERR): Removed.
293    
294    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
295    
296            * CharacterData.dis (length, insertData, substringData,
297            appendData, deleteData, replaceData, splitText): Reimplemented.
298    
299            * DOMCore.dis (NEGATIVE_LENGTH_ERR): New error.
300            (c:index): The definition was missing.
301            (c:length): New property.
302    
303    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
304    
305            * XMLParser.dis (close): Invoke |close| method
306            rather than |close| function.
307    
308    2006-04-16  Wakaba  <wakaba@suika.fam.cx>
309    
310            * CharacterData.dis: New module split from |TreeCore.dis|.
311    
312            * CharacterData.pm: Added to the CVS repository.
313    
314            * TreeCore.dis: The |CharacterData|, |Text|, and |Comment|
315            interfaces are removed.
316            (Require): A reference to the |MDOM:CharacterData| module
317            is added.
318    
319            * DOMMain.dis (StringExtended, StringOutOfBoundsException): Removed.
320    
321            * DOMCore.dis (StringOutOfBoundsException): New error.
322    
323            * Makefile: |CharacterData.pm| is added.
324    
325    2006-04-09  Wakaba  <wakaba@suika.fam.cx>
326    
327            * XMLParser.dis (Require): Requires the |MCharset:Encode|
328            module.
329            (parse): Set the |inputEncoding| attribute of the generated document
330            object.
331            (resolveLSInput default implementation): The |byteStream|
332            and |encoding| attributes of the |LSInput| interface
333            are now supported.
334            (resolveLSInput): Parameters |impl| and |parser| are added.
335            (InputFile.inputEncoding): New attribute.
336    
337    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
338    
339            * Document.dis (adoptNode test): Documents were
340            made by different documents.
341    
342    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
343    
344            * XMLParser.dis: The |cfg:dtd-default-attributes| configuration
345            parameter is changed to |cfg:dtd-default-attribute|.
346    
347    2006-04-04  Wakaba  <wakaba@suika.fam.cx>
348    
349            * TreeCore.dis: The |DOMMain:raiseException| elements
350            are replaced by |disPerl:EXCEPTION|s.
351    
352    2006-04-03  Wakaba  <wakaba@suika.fam.cx>
353    
354            * DOMMain.dis (GetPropNode, CheckReadOnly): Removed.
355    
356            * Node.dis (cfg:dtd-default-attribute): The configuration
357            parameter |cfg:dtd-default-attributes| is renamed
358            as |cfg:dtd-default-attribute|.
359            (Roles): Definitions are changed so that classes
360            that implement those classes MUST implement the |Node|
361            and its subinterfaces.
362            (cfg:dtd-attribute-type): New configuration parameter.
363    
364            * Document.dis (adoptNode): Don't throw exception
365            if |strictErrorChecking| is |false|.
366    
367            * Element.dis (setAttribute, setAttributeNS): Don't
368            set [attribute type] if the |cfg:dtd-attribute-type|
369            configuration parameter is set to |false|.
370            (removeAttribute, removeAttributeNS, removeAttributeNode): Don't
371            regenerate default attribute nodes if the |cfg:dtd-default-attribute|
372            configuration parameter is set to |false|.
373    
374    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
375    
376            * TreeStore.dis: New module.
377    
378            * Makefile: |TreeStore.dis| is added.
379    
380    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
381    
382            * XMLParser.dis: Updated so that it can be used
383            with |TreeCore.pm|, |Document.pm|, |Element.pm|,
384            and |XML.pm|.  Set the read-only flag to
385            the |DocumentType|, |Entity|, and |EntityReference| noes.
386    
387            * Node.dis (textContent): It did not handle descendant
388            element and entity reference nodes.
389    
390            * Element.dis, XML.dis (manakaiBaseURI.get): Its
391            definition has been changed to return only explicit
392            base URI specification.
393    
394            * DOMLS.dis (LSInput, LSOutput): They no longer
395            inherits the |ManakaiDOM:ManakaiDOMObject| class.
396    
397            * Tree.dis, DOMXML.dis, ManakaiDOMLS2003.dis: Removed.
398    
399            * Tree.pm, DOMXML.pm: Removed.
400    
401            * TreeCore.pm, Document.pm, Element.pm: Added
402            to the CVS repository since they are necessary to
403            build the dis library.
404    
405            * Makefile: Sync'ed to new modules disposition.
406    
407    2006-04-02  Wakaba  <wakaba@suika.fam.cx>
408    
409            * Makefile: Rules for |Tree.pm| and |DOMXML.pm| are
410            removed.  For |Element.pm| and |Document.pm| are added.
411    
412            * Document.dis, Element.dis: New module split from |TreeCore.dis|.
413    
414            * TreeCore.dis (Document, DocumentFragment, Element, Attr): Removed.
415    
416    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
417    
418            * DOMFeature.dis (getImplementation, getImplementationList): Support
419            for new class information variables.
420            (DOMLS:Generic): This old feature name is removed.
421    
422            * GenericLS.dis (createGLSParser, createGLSSerializer): Support
423            for new class information variables.
424    
425            * TreeCore.dis (manakaiExpandedURI): New attribute.
426            (Document, Element.___create_node_ref): New method
427            implementations.
428    
429    2006-04-01  Wakaba  <wakaba@suika.fam.cx>
430    
431            * TreeCore.dis (setIdAttribute, setIdAttributeNS, setIdAttributeNode):
432            Reimplemented.
433            (isId): Setter is added.
434            (Element.normalize): Definition copied from the |MDOM:Tree|
435            module.
436    
437    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
438    
439            * Makefile (clean-db): New rule.
440    
441            * TreeCore.dis (setUserData): Schedule to invoke
442            the user data handler when the node is removed
443            from the memory.
444            (setAttribute, setAttributeNS): Set the [attribute type]
445            if DTD attribute definition is available.
446            (CharacterData members): Definitions copied from
447            the |MDOM:Tree| module.
448    
449    2006-03-31  Wakaba  <wakaba@suika.fam.cx>
450    
451            * DOMCore.dis (DOMStringList.==): New overloaded operator.
452    
453            * DOMFeature.dis (ManakaiHasFeatureByGetFeature): The
454            class did not implement the |GetFeature| interface.
455            (hasFeature): The |+| prefix was not taken into account.
456    
457            * TreeCore.dis (Node): The class now inherits
458            the |ManakaiHasFeatureByGetFeature| class.  It now
459            implements the |f:GetFeature| and |ecore:MUErrorTarget|
460            interfaces.
461            (CreateNodeRefMethod): The |mg:nodeRefInterfaces| option
462            is supported.
463            (lookupNamespaceURI, lookupPrefix, isDefaultNamespace): Reimplemented.
464            (manakaiParentElement): New attribute.
465    
466            * XDoctype.dis (d:Feature): Old feature name |ManakaiDOM:XDoctype|
467            is removed.
468            (lookupPrefix): Old method implementation is removed.
469    
470            * XML.dis (CDATASection): The |mg:NodeRefRole| was
471            missing because of the |DISCore:stopISARecursive| property.
472    
473            * TreeCore.dis, XML.dis, XDoctype.dis, DOMCore.dis, DOMFeature.dis:
474            They now pass all tests included in those modules!
475    
476  2006-03-30  Wakaba  <wakaba@suika.fam.cx>  2006-03-30  Wakaba  <wakaba@suika.fam.cx>
477    
478          * DOMCore.dis (Require): A reference to the |MURI:Generic|          * DOMCore.dis (Require): A reference to the |MURI:Generic|

Legend:
Removed from v.1.160  
changed lines
  Added in v.1.198

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24