/[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.222 by wakaba, Sun Jun 17 13:37:40 2007 UTC revision 1.235 by wakaba, Sat Jul 7 15:05:01 2007 UTC
# Line 1  Line 1 
1    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
2    
3            * Node.pm (==, is_equal_node): Implemented.
4            (is_same_node): Implemented.
5            (get_feature, get_user_data, set_user_data): Implemented.
6            (is_supported): Implemented.
7            
8    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
9    
10            * DOMDocument.pm (get_element_by_id): Implemented.
11            (create_document): Implemented.
12    
13            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
14            errors.
15            (QNAME_NULLNS_ERR): New errors.
16    
17            * DocumenType.pm (create_document_type): Implemented.
18    
19    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
20    
21            * CDATASection.pm (is_element_content_whitespace): New.
22    
23            * DOMElement.pm (has_attribute): Alpha version.
24            (create_element, create_element_ns): Implemented.
25    
26            * DocumentType.pm (get_general_entity_node): Alpha version.
27    
28            * EntityReference.pm (create_entity_reference): Implemented.
29    
30            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
31    
32    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
33    
34            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
35    
36            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
37            (compat_mode): Check |defined| not to be warned as "uninitialized"
38            when |{manakai_compat_mode}| is |undef|.
39    
40            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
41    
42            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
43            Statements to set |$Error::Depth| are removed since they
44            are result in "uninitialized" warnings unless
45            the |Message::DOM::DOMException| module is loaded earlier.
46            Usually methods invoked in these methods does not
47            raise any exception so that it makes no difference.
48    
49    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
50    
51            * DOMDocument.pm (adopt_node): Implemented.
52            (doctype): Implemented.
53    
54            * DOMElement.pm (remove_attribute_node): Alpha version.
55    
56            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
57            error type.
58    
59            * Node.pm (set_user_data): Implemented.
60    
61    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
62    
63            * DOMImplementation.pm (new): New method name for |____new|.
64            It will be defined in the DOM Perl Binding specification
65            as part of |DOMImplementation| interface.
66            ($HasFeature): Defined for features support.
67            (has_feature, get_feature): Implemented.
68    
69            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
70            module unless necessary.
71            (___report_error): Removed since it is not used in fact.
72    
73            * DOMImplementationList.pm, DOMImplementationSource.pm,
74            DOMImplementationRegistry.pm: New modules.
75    
76    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
77    
78            * AttributeDefinition.pm (allowed_tokens): Implemented.
79    
80            * DOMStringList.pm: New Perl module.
81    
82    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
83    
84            * DOMElement.pm (clone_node): Alpha version.  It did not work
85            at all.
86    
87    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
88    
89            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
90    
91    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
92    
93            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
94            (manakai_is_html): Revised.
95            (Document): Now it implements the |HTMLDocument| interface.
96            (adopt_node): Alpha version.
97    
98            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
99            not |allowed_token|!
100    
101            * ElementTypeDefinition.pm (attribute_definitions): Don't
102            return an |undef| even if its |attribute_definitions|
103            list is not created.
104    
105    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
106    
107            * Comment.pm (node_type): Node type was incorrect!
108    
109            * DOMConfiguration.pm (get_parameter): Alpha.
110    
111            * DOMImplementation.pm (create_mc_decode_handler,
112            create_charset_name_from_uri, create_uri_from_charset_name):
113            New autoload configuration.  Note that the Message::Charset::Encode
114            module is subject to change.
115    
116            * XMLParserTemp.pm: Now it can be used with new version
117            of DOM implementation.  Current plan is to replace it by
118            an XML5 parser someday.
119    
120    2007-06-21  Wakaba  <wakaba@suika.fam.cx>
121    
122            * DOMLocator.pm: New module.
123    
124            * DOMError.pm: New module.
125    
126    2007-06-20  Wakaba  <wakaba@suika.fam.cx>
127    
128            * Node.pm (manakai_expanded_uri, manakai_parent_element,
129            clone_node, compare_document_position, has_attributes,
130            has_child_nodes, is_default_namespace, lookup_namespace_uri,
131            lookup_prefix, normalize): Implemented.
132    
133            * DOMElement.pm (remove_attribute, set_attribute): Alpha version.
134    
135            * DOMException.pm (CLONE_NODE_TYPE_NOT_SUPPORTED_ERR): New error.
136    
137    2007-06-17  Wakaba  <wakaba@suika.fam.cx>
138    
139            * AttributeDefinition.pm (____new): Set an empty list
140            to the |allowed_tokens| attribute.
141            (allowed_token): Alpha version.
142    
143            * DocumentType.pm (get_element_type_definition_node,
144            get_notation_node): ALpha version.
145    
146            * ElementTypeDefinition.pm (attribute_definitions): Alpha 2
147            version.
148    
149            * Entity.pm (notation_name): Implemented.
150    
151  2007-06-17  Wakaba  <wakaba@suika.fam.cx>  2007-06-17  Wakaba  <wakaba@suika.fam.cx>
152    
153          * Attr.pm (____new): Initialize |specified| as 1.          * Attr.pm (____new): Initialize |specified| as 1.

Legend:
Removed from v.1.222  
changed lines
  Added in v.1.235

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24