/[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.203 by wakaba, Fri Dec 29 14:45:40 2006 UTC revision 1.246 by wakaba, Sat Jul 14 10:28:52 2007 UTC
# Line 1  Line 1 
1    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CDATASection.pm: Removed (merged with |Text.pm|).
4    
5            * Text.pm (Message::DOM::Text::CDATASection): New.
6    
7            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
8    
9            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
10    
11    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
12    
13            * DOMConfiguration.pm: Support for |schema-type|
14            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
15    
16            * NamedNodeMap (TIEHASH): Were missing.
17    
18    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
19    
20            * AttributeDefinition.pm (node_value): Implemented.
21            (create_attribute_definition): Implemented.
22    
23            * DOMConfiguration.pm (%{}, TIEHASH,
24            get_parameter, set_parameter, can_set_parameter,
25            EXISTS, DELETE, parameter_names, FETCH, STORE,
26            FIRSTKEY, LASTKEY): Implemented.
27    
28            * DOMDocument.pm (____new): Set |error-handler| default.
29            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
30    
31            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
32            Implemented.
33    
34            * DOMException.pm: Error types for |DOMConfiguration|
35            are added.
36    
37            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
38            class.
39    
40            * DocumentType.pm (get_element_type_definition_node,
41            get_general_entity_node, get_notation_node,
42            set_element_type_definition_node, set_general_entity_node,
43            set_notation_node, create_document_type_definition): Implemented.
44    
45            * ElementTypeDefinition.pm (get_attribute_definition_node,
46            set_attribute_definition_node, create_element_type_definition):
47            Implemented.
48    
49            * Entity.pm (create_general_entity): Implemented.
50    
51            * Node.pm: Constants in |OperationType| definition
52            group are added.
53            (manakai_language): Implemented.
54    
55            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
56            class.
57    
58            * Notation.pm (create_notation): Implemented.
59    
60    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
61    
62            * TypeInfo.pm: New Perl module.
63    
64            * Attr.pm: Use |manakai_local_name| rather than |local_name|
65            to avoid HTML5 case normalization.
66            (is_id): Implemented.
67            (manakai_name): New attribute.
68            (schema_type_info): Implemented.
69            (create_attribute_ns): Empty string as namespace URI
70            was not supported.
71    
72            * DOMElement.pm (clone_node): Removed since now it is
73            defined in |Node.pm|.
74            (schema_type_info): Implemented.
75            (manakai_tag_name): New attribute.
76            (get_attribute, get_attribute_node, get_attribute_ns,
77            get_attribute_node_ns, has_attribute, has_attribute_ns,
78            remove_attribute, remove_attribute_ns,
79            remove_attribute_node, set_attribute, set_attribute_ns,
80            set_id_attribute, set_id_attribute_node,
81            set_id_attribute_ns): Implemented.
82            (create_element_ns): Empty string as namespace URI
83            was not supported.
84    
85    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
86    
87            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
88    
89            * DocumentType.pm (create_document_type_definition): Initialize
90            |public_id|, |system_id|, and |internal_subset| attributes
91            by empty strings for compatibility with Web browsers.
92            (create_document_type): Initialize |internal_subset|
93            attribute by an empty string for compatibility with
94            Web browsers.
95    
96            * ElementTypeDefinition.pm, Entity.pm,
97            Notation.pm (owner_document_type_definition): Implemented.
98    
99    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
100    
101            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
102            feature is added for compatibility with |XMLParserTemp.pm|.
103    
104    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
105    
106            * Attr.pm (value, node_value): Now it is defined
107            as |text_content| itself.
108    
109            * AttributeDefinition.pm, ElementTypeDefinition.pm,
110            Node.pm (AUTOLOAD): Unused block is removed.
111    
112            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
113    
114            * DocumentType.pm (internal_subset): Implemented.
115    
116            * Entity.pm (is_externally_declared, input_encoding,
117            xml_version): Implemented.
118    
119            * ProcessingInstruction.pm (target, data): Implemented.
120    
121    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
122    
123            * DOMCharacterData.pm (AUTOLOAD): Removed.
124            (data): Reimplemented.
125            (delete_data, insert_data, replace_data, substring_data): There were
126            a number of bugs.
127    
128            * Text.pm (AUTOLOAD): Removed.  Unused.
129    
130    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
131    
132            * StringExtended.pm: New Perl module.
133    
134            * DOMCharacterData.pm (length, append_data, delete_data,
135            insert_data, replace_data, substring_data): Implemented.
136    
137            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
138    
139            * Text.pm (is_element_content_whitespace, whole_text,
140            split_text): Implemented.
141    
142    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
143    
144            * DOMElement.pm (attributes): Implemented.
145    
146            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
147    
148            * DocumentType.pm (entities, general_entities,
149            notations, element_types): Implemented.
150    
151            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
152    
153            * NamedNodeMap.pm: New Perl module.
154    
155    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
156    
157            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
158            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
159            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
160            insert_before, replace_child): Implemented.
161    
162            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
163    
164            * Node.pm (remove_child): Implemented.
165    
166    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
167    
168            * Node.pm (==, is_equal_node): Implemented.
169            (is_same_node): Implemented.
170            (get_feature, get_user_data, set_user_data): Implemented.
171            (is_supported): Implemented.
172            
173    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
174    
175            * DOMDocument.pm (get_element_by_id): Implemented.
176            (create_document): Implemented.
177    
178            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
179            errors.
180            (QNAME_NULLNS_ERR): New errors.
181    
182            * DocumenType.pm (create_document_type): Implemented.
183    
184    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
185    
186            * CDATASection.pm (is_element_content_whitespace): New.
187    
188            * DOMElement.pm (has_attribute): Alpha version.
189            (create_element, create_element_ns): Implemented.
190    
191            * DocumentType.pm (get_general_entity_node): Alpha version.
192    
193            * EntityReference.pm (create_entity_reference): Implemented.
194    
195            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
196    
197    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
198    
199            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
200    
201            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
202            (compat_mode): Check |defined| not to be warned as "uninitialized"
203            when |{manakai_compat_mode}| is |undef|.
204    
205            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
206    
207            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
208            Statements to set |$Error::Depth| are removed since they
209            are result in "uninitialized" warnings unless
210            the |Message::DOM::DOMException| module is loaded earlier.
211            Usually methods invoked in these methods does not
212            raise any exception so that it makes no difference.
213    
214    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
215    
216            * DOMDocument.pm (adopt_node): Implemented.
217            (doctype): Implemented.
218    
219            * DOMElement.pm (remove_attribute_node): Alpha version.
220    
221            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
222            error type.
223    
224            * Node.pm (set_user_data): Implemented.
225    
226    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
227    
228            * DOMImplementation.pm (new): New method name for |____new|.
229            It will be defined in the DOM Perl Binding specification
230            as part of |DOMImplementation| interface.
231            ($HasFeature): Defined for features support.
232            (has_feature, get_feature): Implemented.
233    
234            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
235            module unless necessary.
236            (___report_error): Removed since it is not used in fact.
237    
238            * DOMImplementationList.pm, DOMImplementationSource.pm,
239            DOMImplementationRegistry.pm: New modules.
240    
241    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
242    
243            * AttributeDefinition.pm (allowed_tokens): Implemented.
244    
245            * DOMStringList.pm: New Perl module.
246    
247    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
248    
249            * DOMElement.pm (clone_node): Alpha version.  It did not work
250            at all.
251    
252    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
253    
254            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
255    
256    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
257    
258            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
259            (manakai_is_html): Revised.
260            (Document): Now it implements the |HTMLDocument| interface.
261            (adopt_node): Alpha version.
262    
263            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
264            not |allowed_token|!
265    
266            * ElementTypeDefinition.pm (attribute_definitions): Don't
267            return an |undef| even if its |attribute_definitions|
268            list is not created.
269    
270    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
271    
272            * Comment.pm (node_type): Node type was incorrect!
273    
274            * DOMConfiguration.pm (get_parameter): Alpha.
275    
276            * DOMImplementation.pm (create_mc_decode_handler,
277            create_charset_name_from_uri, create_uri_from_charset_name):
278            New autoload configuration.  Note that the Message::Charset::Encode
279            module is subject to change.
280    
281            * XMLParserTemp.pm: Now it can be used with new version
282            of DOM implementation.  Current plan is to replace it by
283            an XML5 parser someday.
284    
285    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
286    
287            * DOMLocator.pm: New module.
288    
289            * DOMError.pm: New module.
290    
291    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
292    
293            * Node.pm (manakai_expanded_uri, manakai_parent_element,
294            clone_node, compare_document_position, has_attributes,
295            has_child_nodes, is_default_namespace, lookup_namespace_uri,
296            lookup_prefix, normalize): Implemented.
297    
298            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
299    
300            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
301    
302    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
303    
304            * AttributeDefinition.pm (____new): Set an empty list
305            to the |allowed_tokens| attribute.
306            (allowed_token): Alpha version.
307    
308            * DocumentType.pm (get_element_type_definition_node,
309            get_notation_node): ALpha version.
310    
311            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
312            version.
313    
314            * Entity.pm (notation_name): Implemented.
315    
316    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
317    
318            * Attr.pm (____new): Initialize |specified| as 1.
319            (base_uri, manakai_attribute_type, specified): Implemented.
320            (prefix): Don't check read-only flag unless |strict_error_checking|.
321            (value): Call |text_content| for now.
322    
323            * AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
324            (declared_type, default_type): Implemented.
325    
326            * CharacterData.pm (____new): Allow a scalar reference
327            as an input for the |data| attribute.
328            (base_uri, manakai_append_text): Implemented.
329    
330            * DOMConfiguration.pm (set_parameter): Resetting implemented.
331    
332            * DOMDocument.pm (____new): Set default values to
333            configuration parameter whose default is true.
334            (document_uri, input_encoding): Implemented.
335            (all_declarations_processed, manakai_is_html): Implemented.
336            (base_uri, manakai_append_text,
337            manakai_entity_base_uri, strict_error_checking,
338            xml_encoding, xml_version, xml_standalone): Implemented.
339    
340            * DOMElement.pm (manakai_base_uri, base_uri): Implemented.
341            (get_attribute, get_attribute_node): Alpha version.
342            (set_attribute_node, set_attribute_node_ns): Implemented.
343            (set_attribute_ns): Accept non-ARRAY qualified name.
344    
345            * DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
346            |NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.
347    
348            * DocumentType.pm (public_id, system_id): Implemented.
349            (base_uri, declaration_base_uri, manakai_declaration_base_uri,
350            manakai_append_text): Implemented.
351            (element_types, general_entities, notations,
352            set_element_type_definition_node, set_general_entity_node,
353            set_notation_node): Alpha version.
354    
355            * ElementTypeDefinition.pm (manakai_append_text): Implemented.
356            (attribute_definitions, set_attribute_definition_node): Alpha version.
357    
358            * Entity.pm (has_replacement_tree, public_id, system_id,
359            manakai_declaration_base_uri, manakai_entity_base_uri,
360            manakai_entity_uri): Implemented.
361    
362            * EntityReference.pm (manakai_expanded, manakai_external): Implemented.
363            (base_uri, manakai_entity_base_uri): Implemented.
364    
365            * Node.pm (base_uri): Implemented.
366            (text_content): Don't check read-only or not
367            unless |strict_error_checking|.
368            (manakai_append_text): Implemented.
369            (get_feature): Alpha.
370            (manakai_set_read_only): Implemented.
371    
372            * Notation.pm (public_id, system_id, manakai_append_text,
373            manakai_declaration_base_uri): Implemented.
374    
375            * ProcessingInstruction.pm (manakai_base_uri,
376            base_uri, manakai_append_text): Implemented.
377    
378    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
379    
380            * DOMConfiguration.pm: New module.
381    
382            * Attr.pm (trivial accessor for read-write attributes): Throw
383            an exception if the node is read-only.  Delete the property
384            if undef is specified.
385            (prefix): Implemented.
386    
387            * DOMElement.pm (trivial accessor for read-write attributes): Throw
388            an exception if the node is read-only.  Delete the property
389            if undef is specified.
390            (prefix): Implemented.
391            (text_content, manakai_append_text): Old implementations are removed.
392    
393            * DOMCharacterData.pm (text_content): Implemented.
394    
395            * DOMDocument.pm (____new): Initialize the strict-document-children
396            parameter by true.
397            (text_content): Reimplemented.
398            (dom_config): New.
399    
400            * DOMException.pm (READ_ONLY_NODE_ERR): New subtype.
401    
402            * DocumentType.pm (text_content): Implemented.
403    
404            * ElementTypeDefinition.pm (text_content): Implemented.
405    
406            * Node.pm (___report_error): New method.
407            (text_content): Implemented.
408            (manakai_append_text): Copied from |DOMElement.pm|.
409    
410            * Notation.pm (text_content): Implemented.
411    
412            * ProcessingInstruction.pm (text_content): Implemented.
413    
414            * Text.pm (is_element_content_whitespace): Alpha version.
415    
416    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
417    
418            * DOMException.pm (Message::IF::DOMException): Extends
419            the |Message::Util::Error| class.
420    
421            * NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class.
422            (CLEAR): Not all items were removed.
423    
424    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
425    
426            * Attr.pm, AttributeDefinition.pm, DocumentFragment.pm,
427            DocumentType.pm, Entity.pm,
428            EntityReference.pm (____new): Initialize |child_nodes| by an empty list.
429    
430            * Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm,
431            Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned.
432    
433            * DOMDocument.pm (AUTOLOAD): Typo fixed.
434    
435            * Node.pm (==, !=): Implemented.
436            (manakai_read_only): Implemented.
437            (is_same_node): Implemented.
438            (is_equal_node): Alpha version.
439            (manakai_set_read_only): Alpha version.
440            (child_nodes, first_child, last_child, previous_sibling): Duplicate
441            definitions are removed.
442    
443    2007-06-16  Wakaba  <wakaba@suika.fam.cx>
444    
445            * Node.pm: First alpha version of implementation of attributes.
446    
447    2007-06-15  Wakaba  <wakaba@suika.fam.cx>
448    
449            * ProcessingInstruction.pm, EntityReference.pm,
450            CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm,
451            ElementTypeDefinition.pm, AttributeDefinition.pm,
452            DocumentType.pm, DOMElement.pm, Attr.pm,
453            CharacterData.pm, Text.pm, Comment.pm (node_name,
454            node_value, node_type): Implemented.
455    
456    2007-06-14  Wakaba  <wakaba@suika.fam.cx>
457    
458            * Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm,
459            CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm,
460            AttributeDefinition.pm: New modules.
461    
462            * DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added.
463            (create_attribute_definition, create_element_type_definition,
464            create_document_type_definition, create_cdata_section,
465            create_processing_instruction, create_entity_reference,
466            create_general_entity, create_notation): Prototypes added.
467    
468            * DOMImplementation.pm (create_document_type): Prototype added.
469    
470            * DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition'
471            and 'Message::IF::DocumentTypeDeclaration' added.
472            (create_document_type, create_document_type_definition):
473            New methods.
474    
475    2007-06-13  Wakaba  <wakaba@suika.fam.cx>
476    
477            * DOMImplementation.pm, Node.pm, DOMDocument.pm,
478            DOMElement.pm, Attr.pm, DocumentType.pm,
479            DOMCharacterData.pm, Text.pm, Comment.pm: Copied
480            from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>.
481    
482    2007-06-10  Wakaba  <wakaba@suika.fam.cx>
483    
484            * XMLParser.dis: Default to "1.0" if <?xml version=""?>
485            specifies unknown value and trys to recover from the error.
486    
487    2007-05-13  Wakaba  <wakaba@suika.fam.cx>
488    
489            * TreeCore.dis (manakaiLocalName): New attribute.
490    
491    2007-01-02  Wakaba  <wakaba@suika.fam.cx>
492    
493            * GenericLS.dis (GLSException): New interface.
494    
495    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
496    
497            * |InputProcessor|s and |OutputProcessor|s are
498            named so that |report| statements in Perl
499            module outputs can be identified by name. |dis:dataType|s
500            of |DISCore:TFQNames| are all replaced
501            by |DISCore:QName|.
502    
503    2006-12-31  Wakaba  <wakaba@suika.fam.cx>
504    
505            * Element.dis (createElementNS): If an array reference
506            is specified as the |qualifiedName| parameter,
507            don't set the first item as the local name
508            even if the second item is not specified (or
509            specified as |undef|).
510            (createElementNS, setAttribute, setAttributeNS,
511            removeAttribute, removeAttributeNS,
512            setAttributeNode, setAttributeNodeNS,
513            removeAttributeNode, removeAttributeNodeNS): Sets
514            or removes the |tc:contentAttributeList| value.
515    
516            * TreeCore.dis (AttrMap.item): Caches the result
517            of sorting of content attribute names.
518            (getAttrMap, getElementTypeDefNodeMap,
519            getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed.
520            (tc:contentAttributeList): New property.
521    
522    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
523    
524            * DOMFeature.dis (ForDef): Removed.
525            (f:provides, f:through): Removed.
526            (Version): Removed.
527            (implementFeature): Removed.
528    
529    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
530    
531            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
532            GenericLS.dis, TreeCore.dis, DOMString.dis,
533            XML.dis, Element.dis, Document.dis, TreeStore,dis,
534            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
535            SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications
536            are removed.
537    
538    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
539    
540            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
541            GenericLS.dis, TreeCore.dis, DOMString.dis,
542            XML.dis, Element.dis, Document.dis, TreeStore,dis,
543            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
544            SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications
545            and |DefaultFor|s are removed.
546    
547    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
548    
549            * CharacterData.dis, DOMCore.dis, DOMFeature.dis,
550            GenericLS.dis, TreeCore.dis, DOMString.dis,
551            XML.dis, Element.dis, Document.dis, TreeStore,dis,
552            Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis,
553            SimpleLS.dis, DOMMain.dis: References
554            to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|,
555            |ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3|
556            modes are removed.
557    
558    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
559    
560            * CharacterData.dis, TreeCore.dis (Require): References
561            to the |Grove.dis| module are removed.
562    
563    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
564    
565            * DOMFeature.dis (f:implementation, f:revImplementation): Removed.
566            (Require): Reference to the |Grove.dis| module is removed.
567    
568    2006-12-30  Wakaba  <wakaba@suika.fam.cx>
569    
570            * DOMCore.dis (ManakaiDOMImplementation): The
571            class is no longer plays the role of
572            a |mg:NodeRefRole|.  Redundant |f:provides|
573            properties are removed.
574    
575  2006-12-29  Wakaba  <wakaba@suika.fam.cx>  2006-12-29  Wakaba  <wakaba@suika.fam.cx>
576    
577          * TreeCore.dis, DOMCore.dis, Document.dis,          * TreeCore.dis, DOMCore.dis, Document.dis,

Legend:
Removed from v.1.203  
changed lines
  Added in v.1.246

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24