/[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.184 by wakaba, Sat May 13 05:40:58 2006 UTC revision 1.204 by wakaba, Sat Dec 30 01:45:50 2006 UTC
# Line 1  Line 1 
1    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
2    
3            * DOMCore.dis (ManakaiDOMImplementation): The
4            class is no longer plays the role of
5            a |mg:NodeRefRole|.  Redundant |f:provides|
6            properties are removed.
7    
8    2006-12-29  Wakaba  <wakaba@suika.fam.cx>
9    
10            * TreeCore.dis, DOMCore.dis, Document.dis,
11            Element.dis, CharacterData.dis, XML.dis,
12            XDoctype.dis, DOMString.dis, TreeStore.dis,
13            XMLParser.dis: Use Perl native
14            hashs and |Scalar::Util|'s weak references in favor of |Grove.dis|
15            for DOM nodes.  See
16            also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>.
17    
18    2006-12-03  Wakaba  <wakaba@suika.fam.cx>
19    
20            * DOMFeature.dis, TreeCore.dis: Unused |role|s are removed.
21    
22    2006-12-02  Wakaba  <wakaba@suika.fam.cx>
23    
24            * DOMString.dis: New module.
25    
26            * DOMString.pm: New file.
27    
28            * DOMCore.dis (min): Moved from |DOMFeature.dis|.
29            (ImplementationRegistryVariable): Moved from |DOMFeature.dis|.
30            Now it references the |DOMImplementationRegistry| object.
31            (DOMImplementationRegistryVariable): Moved from |DOMMain.dis|.
32            (DOMImplementationRegistry): New interface and
33            class, reformed from |ImplementationRegistry| in |DOMFeature.dis|
34            and |DOMImplementationRegistry| in |DOMMain.dis|.  Note
35            that the class no longer support |get_implementation|
36            and |get_implementation_list| methods from
37            the |ImplementationRegistry| interface.
38            (DOMImplementationList): Class implemented; no
39            longer inherits from |ImplementationList|.
40            (DOMImplementationSource): Class implemented; no
41            longer inherits from |ImplementationSource|.  Note that
42            the class no longer support |get_implementation|
43            and |get_implementation_list| methods from
44            the |ImplementationSource| interface.
45            (DOMStringList): Removed.
46    
47            * DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature,
48            ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature,
49            ManakaiDOM:DOMXMLFeatureXML11, most part of
50            documentation for obsolete DOM Level 3 Minimum Implementation
51            module, obsolete property name aliases,
52            ImplemenationRegistryVar, ImplementationRegistry,
53            DEBUG, MIString, ImplementationList, ImplementationSource,
54            ManakaiDOM:implID): Removed.
55    
56            * DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed.
57            (DOMString): Removed.
58            (DOMImplementationRegistryVar, DOMImplementationRegistry): Removed.
59    
60            * Makefile: |DOMString.pm| is added.
61    
62            * TreeCore.dis (is_default_namespace): |null| was
63            returned where a false is expected (|null| is
64            a false in Perl, but real |false| is appropriate here).
65    
66    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
67    
68            * DOMCore.dis (TypeInfo, UserDataHandler): Removed.
69    
70            * Element.dis (TypeInfo): Moved from |DOMCore.dis|.
71    
72            * TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|.
73    
74    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
75    
76            * DOMFeature.dis (ImplementationList, ImplementationSource,
77            ImplementationRegistry): Parameters |features|
78            now allow |null| (equivalent to an empty string).
79    
80    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
81    
82            * CharacterData.dis (ManakaiDOMDocumentCharacterData): New
83            class.  Factory methods |createTextNode| and |createComment|
84            are moved from |ManakaiDOMDocument|.
85    
86            * DOMCore.dis: References to |ManakaiDOMObject|
87            are removed.
88            (tc:createImplForTest): Moved from |TreeCore.dis|.
89            (DOMImplementation.___create_node_ref): Support
90            for the |mg:nodeRefClass| option is removed.
91            (ManakaiDOMConfiguration.___report_error): Moved
92            from |ManakaiDOMObject| class.
93    
94            * DOMFeature.dis (domidl:extends): New property.
95            (f:getFeatureImpl): Support for |+| classes is removed.
96    
97            * DOMMain.dis (DOMMain:docSupportsXMLFeature): Removed.
98            (ManakaiDOM:ManakaiDOMObject): Removed.
99            (DOMDataType): Removed.
100    
101            * Document.dis (ManakaiDOMImplementationDocument):
102            The |createDocument| method is moved from
103            the |ManakaiDOMImplementationTC| in |TreeCore.dis|.
104            (ManakaiDOMDocument.___create_node_ref): Removed.
105            (createElement, createElementNS, createAttribute,
106            createAttributeNS, createTextNode, createComment,
107            createCDATASection, createEntityReference,
108            createProcessingInstruction): Class implementations
109            are moved to each module.
110    
111            * Element.dis (ManakaiDOMImplementationElement): Factory
112            methods are moved from |Document.dis|.
113            (ManakaiDOMElement.___create_node_ref): Support
114            for old class registry is removed.
115            (ManakaiDOMAttr.___create_node_ref): Removed.
116            (Attr.baseURI): Implementation
117            for |xml:base| attribute is merged.
118            (Attr.nodeValue, Attr.value): Implementation
119            for |xml:id| attribute is merged.
120    
121            * TreeCore.dis (ManakaiDOMImplementationTC): Removed.
122    
123            * XDoctype.dis (ManakaiDOMImplementationXDoctype): The
124            definition for |createDocumentType| method
125            is moved from |TreeCore.dis|.
126    
127            * XML.dis (ManakaiDOMXMLDocument): Factory
128            methods are moved from |Document.dis|.
129            (ManakaiDOMXMLBaseAttr, ManakaiDOMXMLIdAttr): Removed (merged
130            into |ManakaiDOMAttr| in |Element.dis|).
131    
132    2006-11-05  Wakaba  <wakaba@suika.fam.cx>
133    
134            * Element.dis (___get_node_ref): |eval|ed |require|
135            statement was broken.
136    
137            * DOMFeature.dis (getImplementationList): Argument
138            is not passed to the |getImplementation| method.
139    
140            * TreeStore.dis (DOMImplementationTreeStore): It
141            did not |f:implements| the |TSFeature30| feature.
142    
143            * XMLParser.dis: Use |create_uri_reference|
144            method instead of internal |_new| method
145            to create a URI reference object.
146    
147    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
148    
149            * DOMCore.dis (ManakaiDOMImplementation): No longer
150            explicitly inherits |urigen:ManakaiURIImplementation| (and
151            the |f:ManakaiMinimumImplementation| class inherited
152            by it).  The |f:Minimum| feature is ever implemented
153            for compatibility (but is expected to be removed).
154            Internal methods such as |___report_error| are copied from
155            obsolete |f:MinimumImplementation| class.  DOM3
156            methods |hasFeature| and |getFeature| are also
157            moved from that class, but they now support no
158            foreign classes.
159    
160            * DOMFeature.dis (ManakaiImplementationSource): It
161            now |p:require|s |Message::Util::AutoLoad::Registry|.
162            The class no longer support classes
163            other than |ManakaiDOMImplementation|.  Note
164            that the |ImplementationRegistry| object does continue
165            to support foreign classes via foreign classes
166            implementing |ImplementationSource|
167            or |DOMImplementationSource| interface.
168            (MinimumImplementation): Removed.
169    
170            * DOMLS.dis (ManakaiDOMImplementationLS): It no
171            longer inherit the |ManakaiDOMImplementation|; it
172            is now expected to be implemented by |DOMImplementation|
173            objects.
174    
175            * DOMMain.dis (null): Removed.
176    
177            * Document.dis (___create_node_ref): It no
178            longer support foreign classes other
179            than |Message::DOM::Document::ManakaiDOMDocument|.
180            Note that document format specific DOM
181            interfaces, if supported, should be
182            all instances of the |Document| interface
183            in the implementation, as defined
184            in the Web Applications 1.0 specification (where
185            the |HTMLDocument| interface must be implemented
186            by all |Document| objects, even if the |Document|
187            contains no HTML element).
188    
189            * GenericLS.dis (GLSImplementation): It no
190            longer inherit the |MinimumImplementation|; it
191            is now expected to be implemented by |DOMImplementation|
192            objects.
193            (createGLSParser, createGLSSerializer): Load
194            module implementing parser or serializer
195            if necessary.
196    
197            * Traversal.dis (ManakaiDOMDocumentTraversal): It no
198            longer inherits the |ManakaiDOMDocument|; it
199            is now expected to be implemented by |Document|
200            objects.
201    
202            * XDP.dis (XDPDocument): It no longer
203            inherits the |Document|; it is now expected
204            to be implemented by all |Document| objects.
205    
206            * XDoctype.dis (ManakaiDOMDocumentXDoctype): It no
207            longer inherits the |ManakaiDOMDocument|; it
208            is now expected to be implemented by |Document|
209            objects.
210    
211    2006-11-04  Wakaba  <wakaba@suika.fam.cx>
212    
213            * DOMCore.dis (ManakaiDOMImplementation): No longer
214            explicitly inherits |tc:ManakaiDOMImplementationTC|.
215            (ManakaiDOMImplementation.AUTOLOAD): New method definition.
216    
217            * TreeCore.dis (ManakaiDOMImplementationTC): Extends
218            the |ManakaiDOMImplementation| class.
219    
220    2006-11-03  Wakaba  <wakaba@suika.fam.cx>
221    
222            * DOMFeature.dis: Definitions for various concepts
223            are added.
224    
225            * GenericLS.dis (GLSImplementation): It no
226            longer inherits the |MinimumImplementation|; rather,
227            any |ManakaiMinimumImplementation| object also
228            implements |GLSImplementation| methods.
229    
230            * TreeStore.dis (DOMImplementationTreeStore): It no
231            longer inherits the |DOMImplementation|; rather,
232            any |ManakaiDOMImplementation| object also
233            implements |DOMImplementationTreeStore| methods.
234    
235    2006-08-15  Wakaba  <wakaba@suika.fam.cx>
236    
237            * TreeStore.pm: Added to the CVS repository
238            to enable for the dis database to contain XML
239            fragments.
240    
241            * Makefile (DOT_CORE_DIS_FILES): |TreeStore.pm| is added.
242    
243            * TreeStore.dis (Namespace): Namespace URI was incorrect.
244    
245    2006-06-18  Wakaba  <wakaba@suika.fam.cx>
246    
247            * Traversal.dis (expandEntityReferences): Syntax was incorrect.
248    
249            * TreeCore.dis (manakaiReadOnly): Test assertion was incorrect.
250    
251            * XDP.dis (dtdText): Test assertion was incorrect.
252    
253    2006-05-21  Wakaba  <wakaba@suika.fam.cx>
254    
255            * XDP.dis (XDPEntityValue.stringify): Don't escape
256            any |%|s in |xdp:attr-definition| children.
257    
258    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
259    
260            * XDP.dis (createXDPRNIKeyword): The Perl method
261            name property is added.
262    
263    2006-05-20  Wakaba  <wakaba@suika.fam.cx>
264    
265            * XDP.dis (createXDPIf): New method.
266            (XDPIfElement): New interface.
267    
268    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
269    
270            * XDP.dis (createXDPElement, createXDPAttlist, createXDPAttrDefinition):
271            New methods.
272    
273    2006-05-15  Wakaba  <wakaba@suika.fam.cx>
274    
275            * XDP.dis (XDPDocument): A number of constructor methods
276            are added.
277            (XDPTextDecl.dtdText): The |xml| target was missing.
278    
279    2006-05-14  Wakaba  <wakaba@suika.fam.cx>
280    
281            * Traversal.dis (SerialWalker): New interface.
282            (manakaiCreateSerialWalker): New method.
283    
284    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
285    
286            * Traversal.dis (testNode): Calls |acceptNode| method
287            rather than |&{}| dereferencing.
288            (acceptNode): Implemented.
289    
290    2006-05-13  Wakaba  <wakaba@suika.fam.cx>
291    
292            * XDP.dis: New module.
293    
294            * Makefile: |XDP.dis| is added.
295    
296            * Traversal.dis (NodeFilter): |InputProcessor|
297            and |OutputProcessor| are added.
298    
299  2006-05-13  Wakaba  <wakaba@suika.fam.cx>  2006-05-13  Wakaba  <wakaba@suika.fam.cx>
300    
301          * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.          * Traversal.dis (MANAKAI_FILTER_OPAQUE): New |AcceptNode| value.

Legend:
Removed from v.1.184  
changed lines
  Added in v.1.204

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24