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

Legend:
Removed from v.1.163  
changed lines
  Added in v.1.200

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24