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

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24