/[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.226 by wakaba, Thu Jun 21 14:57:52 2007 UTC revision 1.292 by wakaba, Mon Jan 14 13:56:35 2008 UTC
# Line 1  Line 1 
1    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
2    
3            * CSSStyleDeclaration.pm (AUTOLOAD): DOM attributes reflecting
4            shorthand properties did croak (fixed but still they does not
5            return correct result - they need to be fixed later).
6    
7            * Element.pm (query_selector, query_selector_all): Prototypes
8            were missing.
9    
10    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
11    
12            * Window.pm (___reset_css): Typo fixed.
13    
14    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
15    
16            * CSSStyleDeclaration.pm: The classes now explicitly implement
17            the |CSS2Properties| interface.
18            (@{}, TIEARRAY, FETCH, FETCHSIZE, EXISTS, item, length): Implemented.
19    
20    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
21    
22            * CSSStyleDeclaration.pm (attributes reflecting CSS properties):
23            Return an empty string if no value is assigned to the property.  Insert
24            a SPACE before '!' for compatibility with Firefox.
25    
26    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
27    
28            * CSSRule.pm (css_text): Trailing newline character is removed
29            to avoid double empty lines in CSSStyleSheet->css_text.
30            (selector_text): Namespace support is fixed.
31    
32            * CSSStyleSheet.pm (___new): Now it accepts |_nsmap| option.
33    
34    2008-01-14  Wakaba  <wakaba@suika.fam.cx>
35    
36            * CSSRule.pm (selector_text): Use |serialize_selector_text|
37            to get better result.
38    
39    2008-01-13  Wakaba  <wakaba@suika.fam.cx>
40    
41            * Window.pm: New Perl module.
42    
43            * Document.pm (default_view): Implemented.
44    
45            * Element.pm (current_style): Implemented.
46    
47    2008-01-06  Wakaba  <wakaba@suika.fam.cx>
48    
49            * CSSStyleDeclaration.pm (css_text): Allow to shorten a complete
50            set of longhand properties.
51            (get_property_priority): Implemented.
52            (CSSComputedStyleDeclaration AUTOLOAD): Implemented for reflecting
53            attributes.
54    
55    2008-01-04  Wakaba  <wakaba@suika.fam.cx>
56    
57            * CSSStyleDeclaration.pm (css_text): Allow |{compute_multiple}|
58            as well as |{compute}| as a way to filter out longhand
59            properties.  Sort properties by names for readability.
60    
61    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
62    
63            * CSSStyleDeclaration.pm (css_text): Output |undef| property
64            information for debugging.
65    
66            * CSSStyleSheet.pm (manakai_base_uri): New attribute.
67    
68    2008-01-01  Wakaba  <wakaba@suika.fam.cx>
69    
70            * CSSStyleDeclaration.pm (CSSComputedStyleDeclaration): New class.
71    
72    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
73    
74            * SelectorsAPI.pm, Document.pm (___query_selector_all): New internal
75            method.
76    
77    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
78    
79            * SelectorsAPI.pm: Make simple-selector-sequence-matching
80            an independent function.
81    
82    2007-12-31  Wakaba  <wakaba@suika.fam.cx>
83    
84            * CSSStyleDeclaration.pm (AUTOLOAD): Getter for attributes
85            reflecting CSS property is implemented.
86            (css_text): Getter is implemented.
87    
88    2007-12-24  Wakaba  <wakaba@suika.fam.cx>
89    
90            * CSSRule.pm (selector_text): Ad hoc support for namespace prefixes.
91            (CSSNamespaceRule.css_text): Getter implemented.
92    
93            * CSSStyleSheet.pm (manakai_is_default_namespace,
94            manakai_lookup_namespace_prefix): New methods.
95    
96    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
97    
98            * CSSRule.pm (@charset.css_text): Implemented.
99    
100    2007-12-23  Wakaba  <wakaba@suika.fam.cx>
101    
102            * CSSRule.pm (type, css_text): Typo fixed.
103            (____new): s/_selector/_selectors/g;
104            (CSSStyleRule.css_text, selectors_text): Ad hoc implementation.
105    
106            * CSSStyleDeclaration.pm (css_text): Ad hoc implementation.
107    
108            * CSSStyleSheet.pm (new): s/new/____new/.
109            (css_text): New attribute.
110    
111    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
112    
113            * MediaList.pm: New placeholder for a CSSOM interface.
114    
115            * CSSRule.pm, CSSStyleSheet.pm: Implementing the initial
116            setting of owner* and parent* attributes; support
117            for the |delete_rule| method.
118    
119    2007-12-22  Wakaba  <wakaba@suika.fam.cx>
120    
121            * CSSStyleSheet.pm, CSSRule.pm, CSSRuleList.pm, CSSStyleDeclaration.pm:
122            First version of CSSOM implementation.
123    
124    2007-11-18  Wakaba  <wakaba@suika.fam.cx>
125    
126            * Document.pm, Entity.pm (manakai_has_bom,
127            manakai_charset): New attributes.
128    
129    2007-11-11  Wakaba  <wakaba@suika.fam.cx>
130    
131            * Document.pm, Element.pm (inner_html): Use |Whatpm::HTML::Serializer|
132            for getter.
133    
134    2007-10-27  Wakaba  <wakaba@suika.fam.cx>
135    
136            * Event.pm (init_event, init_event_ns, init_custom_event_ns):
137            The |namespaceURI| attribute was not set correctly.
138    
139            * DOMEvents.dis: Removed.
140    
141    2007-10-08  Wakaba  <wakaba@suika.fam.cx>
142    
143            * Event.pm, EventTarget.pm, EventTargetNode.pm,
144            EventException.pm: Implemented (but not tested!).
145    
146            * DOMException.pm (MALFORMED_EVENT_TYPE_ERR,
147            EVENT_INTERFACE_NOT_SUPPORTED_ERR, EXTERNAL_EVENT_ERR): New
148            error subtypes.
149    
150            * DOMImplementation.pm ($HasFeature): The |Event| feature,
151            version |3.0|, is added.
152    
153            * Document.pm, Node.pm: Event attributes and
154            methods are implemented.
155    
156    2007-10-07  Wakaba  <wakaba@suika.fam.cx>
157    
158            * SelectorsAPI.pm ($get_elements_by_selectors): Receive
159            an additional argument for "current element".
160            Support for |-manakai-current| and |-manakai-current(/s/)|
161            pseudo-classes.
162    
163    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
164    
165            * SelectorsAPI.pm: Attribute selectors are implemented.
166    
167    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
168    
169            * SelectorsAPI.pm (ElementSelector): Implemented.
170    
171    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
172    
173            * SelectorsAPI.pm (query_selector): Implemented.
174    
175    2007-09-29  Wakaba  <wakaba@suika.fam.cx>
176    
177            * SelectorsAPI.pm ($get_elements_by_selectors): Created
178            from most part of |query_selector_all|.
179    
180    2007-09-24  Wakaba  <wakaba@suika.fam.cx>
181    
182            * DOMException.pm (SYNTAX_ERR): New subtype is defined.
183            (UNDECLARED_PREFIX_ERR): New subtype is defined.
184    
185            * Document.pm (Document): Implements the |DocumentSelector|
186            interface.
187    
188            * Element.pm (Element): Implements the |ElementSelector|
189            interface.
190    
191            * Node.pm (Node): Implements the |NSResolver| interface.
192    
193            * SelectorsAPI.pm: Now (hopefully) conform to the Selectors
194            API Editor's Draft (only |query_selector_all| on |Document|,
195            with limited selectors syntax support, though).
196    
197    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
198    
199            * SelectorsAPI.pm: Namespaced type/universal selectors
200            are supported.
201    
202    2007-09-23  Wakaba  <wakaba@suika.fam.cx>
203    
204            * SelectorsAPI.pm: New Perl module.
205    
206    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
207    
208            * Node.pm (manakai_language): Return the |manakai_language|
209            of the |owner_document|, if any, as defined in the spec.
210    
211    2007-08-25  Wakaba  <wakaba@suika.fam.cx>
212    
213            * Makefile: Relative path was wrong.
214    
215    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
216    
217            * HTML/: New directory.
218    
219            * Element.pm (create_element_ns): Return object implementing
220            the |HTMLElement| interface for HTML elements.
221    
222    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
223    
224            * DOMImplementation.pod: New documentation.
225    
226            * Makefile: Make HTML document.
227    
228    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
229    
230            * XDoctype.dis, XDoctype.pm: Removed.
231    
232            * CharacterData.pm: Renamed from DOMCharacterData.pm.
233    
234            * Document.pm: Renamed from DOMDocument.pm.
235    
236            * Element.pm: Renamed from DOMElement.pm
237    
238    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
239    
240            * DOMString.dis, DOMString.pm, Document.dis, Document.pm,
241            Element.dis, Element.pm, CharacterData.dis, CharacterData.pm,
242            TreeCore.dis, TreeCore.pm, DOMCore.dis, DOMCore.pm,
243            DOMFeature.dis, DOMFeature.pm, XML.dis, XML.pm,
244            DOMMain.dis, DOMMain.pm, DOMLS.dis,
245            GenericLS.dis, GenericLS.pm, SimpleLS.dis: Removed.
246    
247            * Makefile: Rules for DIS are removed.
248    
249    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
250    
251            * Text.pm: |Message::DOM::Traversal, an obsolete module,
252            was referenced.
253    
254    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
255    
256            * DOMDocument.pm (inner_html): Setter in HTML document
257            is implemented.
258    
259    2007-07-29  Wakaba  <wakaba@suika.fam.cx>
260    
261            * DOMDocument.pm (inner_html): Setter in XML document
262            is implemented.
263    
264    2007-07-19  Wakaba  <wakaba@suika.fam.cx>
265    
266            * Attr.pm (DeclaredValueType): Added.
267    
268            * ProcessingInstruction.pm (data): Accept |undef|
269            as a valid input, for |text_content| (maybe) allows it.
270    
271            * TypeInfo.pm (type_namespace): The implementation was wrong.
272    
273    2007-07-16  Wakaba  <wakaba@suika.fam.cx>
274    
275            * DOMElement.pm: Incorrect module was referenced.
276    
277            * DOMImplementation.pm: References to
278            the |Message::Charset::Encode| module has been removed.
279    
280    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
281    
282            * XMLParserTemp.pm: Use |Whatpm::Charset::DecodeHandle|
283            instead of |Message::Charset::Encode|.
284    
285    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
286    
287            * DOMDocument.pm (inner_html): New attribute (beta).
288    
289            * DOMElement.pm (inner_html): New attribute (beta).
290    
291    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
292    
293            * DOMConfiguration.pm: Configuration parameter |create-child-element|
294            implemented.
295    
296            * DOMElement.pm (create_element_ns): Support for Atom
297            subclasses.
298    
299            * DOMImplementation.pm (DOMImplementation): Now
300            implements the |AtomDOMImplementation| interface.
301            ($HasFeature): Features |atom| and |atomthreading| are added.
302    
303            * NodeList.pm (StaticNodeList): Implemented.
304    
305    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
306    
307            * Atom/: New directory.
308    
309    2007-07-15  Wakaba  <wakaba@suika.fam.cx>
310    
311            * TreeWalker.pm, SerialWalker.pm: New Perl modules.
312    
313            * Text.pm (whole_text): Parameter index number has
314            been changed to support new |NodeFilter| Perl binding
315            definition.
316    
317    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
318    
319            * AttributeDefinition.pm, DOMElement.pm, DocumentType.pm,
320            ElementTypeDefinition.pm, Entity.pm, EntityReference.pm,
321            Notation.pm, ProcessingInstruction.pm (AUTOLOAD): Don't croak even if an attempt is made to modify a read-only attribute.
322    
323            * DOMConfiguration.pm (can_set_parameter,
324            set_parameter): Don't allow to set the value
325            to a string other than <http://www.w3.org/TR/REC-xml> (XML 1.0 DTD).
326    
327            * DOMDocument.pm (Message::IF::DocumentTraversal): New interface.
328            (create_tree_walker, manakai_create_serial_walker): References
329            and prototypes are added.
330    
331            * DOMException.pm (NULLPO_ERR): New error type:-).
332    
333            * DOMImplementation.pm ($HasFeature): Feature |Traversal|,
334            version |2.0|, is added.
335    
336    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
337    
338            * CDATASection.pm: Removed (merged with |Text.pm|).
339    
340            * Text.pm (Message::DOM::Text::CDATASection): New.
341    
342            * Comment.pm: Removed (merged with |DOMCharacterData.pm|).
343    
344            * DOMCharacterData.pm (Message::DOM::CharacterData::Comment): New.
345    
346    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
347    
348            * DOMConfiguration.pm: Support for |schema-type|
349            and |http://suika.fam.cx/www/2006/dom-config/xml-id|.
350    
351            * NamedNodeMap (TIEHASH): Were missing.
352    
353    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
354    
355            * AttributeDefinition.pm (node_value): Implemented.
356            (create_attribute_definition): Implemented.
357    
358            * DOMConfiguration.pm (%{}, TIEHASH,
359            get_parameter, set_parameter, can_set_parameter,
360            EXISTS, DELETE, parameter_names, FETCH, STORE,
361            FIRSTKEY, LASTKEY): Implemented.
362    
363            * DOMDocument.pm (____new): Set |error-handler| default.
364            (get_elements_by_tag_name, get_elements_by_tag_name_ns): Implemented.
365    
366            * DOMElement.pm (get_elements_by_tag_name, get_elements_by_tag_name_ns):
367            Implemented.
368    
369            * DOMException.pm: Error types for |DOMConfiguration|
370            are added.
371    
372            * DOMStringList.pm (Message::DOM::DOMStringList::StaticList): New
373            class.
374    
375            * DocumentType.pm (get_element_type_definition_node,
376            get_general_entity_node, get_notation_node,
377            set_element_type_definition_node, set_general_entity_node,
378            set_notation_node, create_document_type_definition): Implemented.
379    
380            * ElementTypeDefinition.pm (get_attribute_definition_node,
381            set_attribute_definition_node, create_element_type_definition):
382            Implemented.
383    
384            * Entity.pm (create_general_entity): Implemented.
385    
386            * Node.pm: Constants in |OperationType| definition
387            group are added.
388            (manakai_language): Implemented.
389    
390            * NodeList.pm (Message::DOM::NodeList::GetElementsList): New
391            class.
392    
393            * Notation.pm (create_notation): Implemented.
394    
395    2007-07-14  Wakaba  <wakaba@suika.fam.cx>
396    
397            * TypeInfo.pm: New Perl module.
398    
399            * Attr.pm: Use |manakai_local_name| rather than |local_name|
400            to avoid HTML5 case normalization.
401            (is_id): Implemented.
402            (manakai_name): New attribute.
403            (schema_type_info): Implemented.
404            (create_attribute_ns): Empty string as namespace URI
405            was not supported.
406    
407            * DOMElement.pm (clone_node): Removed since now it is
408            defined in |Node.pm|.
409            (schema_type_info): Implemented.
410            (manakai_tag_name): New attribute.
411            (get_attribute, get_attribute_node, get_attribute_ns,
412            get_attribute_node_ns, has_attribute, has_attribute_ns,
413            remove_attribute, remove_attribute_ns,
414            remove_attribute_node, set_attribute, set_attribute_ns,
415            set_id_attribute, set_id_attribute_node,
416            set_id_attribute_ns): Implemented.
417            (create_element_ns): Empty string as namespace URI
418            was not supported.
419    
420    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
421    
422            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
423    
424            * DocumentType.pm (create_document_type_definition): Initialize
425            |public_id|, |system_id|, and |internal_subset| attributes
426            by empty strings for compatibility with Web browsers.
427            (create_document_type): Initialize |internal_subset|
428            attribute by an empty string for compatibility with
429            Web browsers.
430    
431            * ElementTypeDefinition.pm, Entity.pm,
432            Notation.pm (owner_document_type_definition): Implemented.
433    
434    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
435    
436            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
437            feature is added for compatibility with |XMLParserTemp.pm|.
438    
439    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
440    
441            * Attr.pm (value, node_value): Now it is defined
442            as |text_content| itself.
443    
444            * AttributeDefinition.pm, ElementTypeDefinition.pm,
445            Node.pm (AUTOLOAD): Unused block is removed.
446    
447            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
448    
449            * DocumentType.pm (internal_subset): Implemented.
450    
451            * Entity.pm (is_externally_declared, input_encoding,
452            xml_version): Implemented.
453    
454            * ProcessingInstruction.pm (target, data): Implemented.
455    
456    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
457    
458            * DOMCharacterData.pm (AUTOLOAD): Removed.
459            (data): Reimplemented.
460            (delete_data, insert_data, replace_data, substring_data): There were
461            a number of bugs.
462    
463            * Text.pm (AUTOLOAD): Removed.  Unused.
464    
465    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
466    
467            * StringExtended.pm: New Perl module.
468    
469            * DOMCharacterData.pm (length, append_data, delete_data,
470            insert_data, replace_data, substring_data): Implemented.
471    
472            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
473    
474            * Text.pm (is_element_content_whitespace, whole_text,
475            split_text): Implemented.
476    
477    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
478    
479            * DOMElement.pm (attributes): Implemented.
480    
481            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
482    
483            * DocumentType.pm (entities, general_entities,
484            notations, element_types): Implemented.
485    
486            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
487    
488            * NamedNodeMap.pm: New Perl module.
489    
490    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
491    
492            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
493            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
494            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
495            insert_before, replace_child): Implemented.
496    
497            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
498    
499            * Node.pm (remove_child): Implemented.
500    
501    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
502    
503            * Node.pm (==, is_equal_node): Implemented.
504            (is_same_node): Implemented.
505            (get_feature, get_user_data, set_user_data): Implemented.
506            (is_supported): Implemented.
507            
508    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
509    
510            * DOMDocument.pm (get_element_by_id): Implemented.
511            (create_document): Implemented.
512    
513            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
514            errors.
515            (QNAME_NULLNS_ERR): New errors.
516    
517            * DocumenType.pm (create_document_type): Implemented.
518    
519    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
520    
521            * CDATASection.pm (is_element_content_whitespace): New.
522    
523            * DOMElement.pm (has_attribute): Alpha version.
524            (create_element, create_element_ns): Implemented.
525    
526            * DocumentType.pm (get_general_entity_node): Alpha version.
527    
528            * EntityReference.pm (create_entity_reference): Implemented.
529    
530            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
531    
532    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
533    
534            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
535    
536            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
537            (compat_mode): Check |defined| not to be warned as "uninitialized"
538            when |{manakai_compat_mode}| is |undef|.
539    
540            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
541    
542            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
543            Statements to set |$Error::Depth| are removed since they
544            are result in "uninitialized" warnings unless
545            the |Message::DOM::DOMException| module is loaded earlier.
546            Usually methods invoked in these methods does not
547            raise any exception so that it makes no difference.
548    
549    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
550    
551            * DOMDocument.pm (adopt_node): Implemented.
552            (doctype): Implemented.
553    
554            * DOMElement.pm (remove_attribute_node): Alpha version.
555    
556            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
557            error type.
558    
559            * Node.pm (set_user_data): Implemented.
560    
561    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
562    
563            * DOMImplementation.pm (new): New method name for |____new|.
564            It will be defined in the DOM Perl Binding specification
565            as part of |DOMImplementation| interface.
566            ($HasFeature): Defined for features support.
567            (has_feature, get_feature): Implemented.
568    
569            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
570            module unless necessary.
571            (___report_error): Removed since it is not used in fact.
572    
573            * DOMImplementationList.pm, DOMImplementationSource.pm,
574            DOMImplementationRegistry.pm: New modules.
575    
576    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
577    
578            * AttributeDefinition.pm (allowed_tokens): Implemented.
579    
580            * DOMStringList.pm: New Perl module.
581    
582    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
583    
584            * DOMElement.pm (clone_node): Alpha version.  It did not work
585            at all.
586    
587    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
588    
589            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
590    
591    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
592    
593            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
594            (manakai_is_html): Revised.
595            (Document): Now it implements the |HTMLDocument| interface.
596            (adopt_node): Alpha version.
597    
598            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
599            not |allowed_token|!
600    
601            * ElementTypeDefinition.pm (attribute_definitions): Don't
602            return an |undef| even if its |attribute_definitions|
603            list is not created.
604    
605  2007-06-21  Wakaba  <wakaba@suika.fam.cx>  2007-06-21  Wakaba  <wakaba@suika.fam.cx>
606    
607          * Comment.pm (node_type): Node type was incorrect!          * Comment.pm (node_type): Node type was incorrect!

Legend:
Removed from v.1.226  
changed lines
  Added in v.1.292

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24