/[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.242 by wakaba, Thu Jul 12 13:54:46 2007 UTC
# Line 1  Line 1 
1    2007-07-12  Wakaba  <wakaba@suika.fam.cx>
2    
3            * AttributeDefinition.pm (owner_element_type_definition): Implemented.
4    
5            * DocumentType.pm (create_document_type_definition): Initialize
6            |public_id|, |system_id|, and |internal_subset| attributes
7            by empty strings for compatibility with Web browsers.
8            (create_document_type): Initialize |internal_subset|
9            attribute by an empty string for compatibility with
10            Web browsers.
11    
12            * ElementTypeDefinition.pm, Entity.pm,
13            Notation.pm (owner_document_type_definition): Implemented.
14    
15    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
16    
17            * DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration|
18            feature is added for compatibility with |XMLParserTemp.pm|.
19    
20    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
21    
22            * Attr.pm (value, node_value): Now it is defined
23            as |text_content| itself.
24    
25            * AttributeDefinition.pm, ElementTypeDefinition.pm,
26            Node.pm (AUTOLOAD): Unused block is removed.
27    
28            * CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed.  Unused.
29    
30            * DocumentType.pm (internal_subset): Implemented.
31    
32            * Entity.pm (is_externally_declared, input_encoding,
33            xml_version): Implemented.
34    
35            * ProcessingInstruction.pm (target, data): Implemented.
36    
37    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
38    
39            * DOMCharacterData.pm (AUTOLOAD): Removed.
40            (data): Reimplemented.
41            (delete_data, insert_data, replace_data, substring_data): There were
42            a number of bugs.
43    
44            * Text.pm (AUTOLOAD): Removed.  Unused.
45    
46    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
47    
48            * StringExtended.pm: New Perl module.
49    
50            * DOMCharacterData.pm (length, append_data, delete_data,
51            insert_data, replace_data, substring_data): Implemented.
52    
53            * DOMException.pm (INDEX_SIZE_ERR): Implemented.
54    
55            * Text.pm (is_element_content_whitespace, whole_text,
56            split_text): Implemented.
57    
58    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
59    
60            * DOMElement.pm (attributes): Implemented.
61    
62            * DOMException.pm (INUSE_DEFINITION_ERR): New error type.
63    
64            * DocumentType.pm (entities, general_entities,
65            notations, element_types): Implemented.
66    
67            * ElementTypeDefinition.pm (attribute_definitions): Implemented.
68    
69            * NamedNodeMap.pm: New Perl module.
70    
71    2007-07-08  Wakaba  <wakaba@suika.fam.cx>
72    
73            * Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm,
74            DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm,
75            Node.pm, Notation.pm, ProcessingInstruction.pm (append_child,
76            insert_before, replace_child): Implemented.
77    
78            * DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented.
79    
80            * Node.pm (remove_child): Implemented.
81    
82    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
83    
84            * Node.pm (==, is_equal_node): Implemented.
85            (is_same_node): Implemented.
86            (get_feature, get_user_data, set_user_data): Implemented.
87            (is_supported): Implemented.
88            
89    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
90    
91            * DOMDocument.pm (get_element_by_id): Implemented.
92            (create_document): Implemented.
93    
94            * DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New
95            errors.
96            (QNAME_NULLNS_ERR): New errors.
97    
98            * DocumenType.pm (create_document_type): Implemented.
99    
100    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
101    
102            * CDATASection.pm (is_element_content_whitespace): New.
103    
104            * DOMElement.pm (has_attribute): Alpha version.
105            (create_element, create_element_ns): Implemented.
106    
107            * DocumentType.pm (get_general_entity_node): Alpha version.
108    
109            * EntityReference.pm (create_entity_reference): Implemented.
110    
111            * ProcessingInstruction.pm (create_processing_instruction): Implemented.
112    
113    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
114    
115            * Attr.pm (create_attribute, create_attribute_ns): Implemented.
116    
117            * DOMDocument.pm: Load character classes from |Char::Class::XML|.
118            (compat_mode): Check |defined| not to be warned as "uninitialized"
119            when |{manakai_compat_mode}| is |undef|.
120    
121            * DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added.
122    
123            * DOMImplementationRegistry.pm, DOMImplementationSource.pm:
124            Statements to set |$Error::Depth| are removed since they
125            are result in "uninitialized" warnings unless
126            the |Message::DOM::DOMException| module is loaded earlier.
127            Usually methods invoked in these methods does not
128            raise any exception so that it makes no difference.
129    
130    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
131    
132            * DOMDocument.pm (adopt_node): Implemented.
133            (doctype): Implemented.
134    
135            * DOMElement.pm (remove_attribute_node): Alpha version.
136    
137            * DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New
138            error type.
139    
140            * Node.pm (set_user_data): Implemented.
141    
142    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
143    
144            * DOMImplementation.pm (new): New method name for |____new|.
145            It will be defined in the DOM Perl Binding specification
146            as part of |DOMImplementation| interface.
147            ($HasFeature): Defined for features support.
148            (has_feature, get_feature): Implemented.
149    
150            * DOMStringList.pm: Don't load the |Message::DOM::DOMException|
151            module unless necessary.
152            (___report_error): Removed since it is not used in fact.
153    
154            * DOMImplementationList.pm, DOMImplementationSource.pm,
155            DOMImplementationRegistry.pm: New modules.
156    
157    2007-07-07  Wakaba  <wakaba@suika.fam.cx>
158    
159            * AttributeDefinition.pm (allowed_tokens): Implemented.
160    
161            * DOMStringList.pm: New Perl module.
162    
163    2007-06-26  Wakaba  <wakaba@suika.fam.cx>
164    
165            * DOMElement.pm (clone_node): Alpha version.  It did not work
166            at all.
167    
168    2007-06-24  Wakaba  <wakaba@suika.fam.cx>
169    
170            * ProcessingInstruction.pm (data): Now it is a read-write attribute.
171    
172    2007-06-23  Wakaba  <wakaba@suika.fam.cx>
173    
174            * DOMDocument.pm (compat_mode, manakai_compat_mode): Implemented.
175            (manakai_is_html): Revised.
176            (Document): Now it implements the |HTMLDocument| interface.
177            (adopt_node): Alpha version.
178    
179            * AttributeDefinition.pm (allowed_tokens): |allowed_tokens|,
180            not |allowed_token|!
181    
182            * ElementTypeDefinition.pm (attribute_definitions): Don't
183            return an |undef| even if its |attribute_definitions|
184            list is not created.
185    
186  2007-06-21  Wakaba  <wakaba@suika.fam.cx>  2007-06-21  Wakaba  <wakaba@suika.fam.cx>
187    
188          * 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.242

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24