/[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.171 by wakaba, Sun Apr 9 14:29:41 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>  2006-04-09  Wakaba  <wakaba@suika.fam.cx>
326    
327          * XMLParser.dis (Require): Requires the |MCharset:Encode|          * XMLParser.dis (Require): Requires the |MCharset:Encode|

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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24