1 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* StringExtended.pm: New Perl module. |
4 |
|
|
5 |
|
* DOMCharacterData.pm (length, append_data, delete_data, |
6 |
|
insert_data, replace_data, substring_data): Implemented. |
7 |
|
|
8 |
|
* DOMException.pm (INDEX_SIZE_ERR): Implemented. |
9 |
|
|
10 |
|
* Text.pm (is_element_content_whitespace, whole_text, |
11 |
|
split_text): Implemented. |
12 |
|
|
13 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
14 |
|
|
15 |
|
* DOMElement.pm (attributes): Implemented. |
16 |
|
|
17 |
|
* DOMException.pm (INUSE_DEFINITION_ERR): New error type. |
18 |
|
|
19 |
|
* DocumentType.pm (entities, general_entities, |
20 |
|
notations, element_types): Implemented. |
21 |
|
|
22 |
|
* ElementTypeDefinition.pm (attribute_definitions): Implemented. |
23 |
|
|
24 |
|
* NamedNodeMap.pm: New Perl module. |
25 |
|
|
26 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
27 |
|
|
28 |
|
* Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm, |
29 |
|
DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm, |
30 |
|
Node.pm, Notation.pm, ProcessingInstruction.pm (append_child, |
31 |
|
insert_before, replace_child): Implemented. |
32 |
|
|
33 |
|
* DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented. |
34 |
|
|
35 |
|
* Node.pm (remove_child): Implemented. |
36 |
|
|
37 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
38 |
|
|
39 |
|
* Node.pm (==, is_equal_node): Implemented. |
40 |
|
(is_same_node): Implemented. |
41 |
|
(get_feature, get_user_data, set_user_data): Implemented. |
42 |
|
(is_supported): Implemented. |
43 |
|
|
44 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
45 |
|
|
46 |
|
* DOMDocument.pm (get_element_by_id): Implemented. |
47 |
|
(create_document): Implemented. |
48 |
|
|
49 |
|
* DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New |
50 |
|
errors. |
51 |
|
(QNAME_NULLNS_ERR): New errors. |
52 |
|
|
53 |
|
* DocumenType.pm (create_document_type): Implemented. |
54 |
|
|
55 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
56 |
|
|
57 |
|
* CDATASection.pm (is_element_content_whitespace): New. |
58 |
|
|
59 |
|
* DOMElement.pm (has_attribute): Alpha version. |
60 |
|
(create_element, create_element_ns): Implemented. |
61 |
|
|
62 |
|
* DocumentType.pm (get_general_entity_node): Alpha version. |
63 |
|
|
64 |
|
* EntityReference.pm (create_entity_reference): Implemented. |
65 |
|
|
66 |
|
* ProcessingInstruction.pm (create_processing_instruction): Implemented. |
67 |
|
|
68 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
69 |
|
|
70 |
|
* Attr.pm (create_attribute, create_attribute_ns): Implemented. |
71 |
|
|
72 |
|
* DOMDocument.pm: Load character classes from |Char::Class::XML|. |
73 |
|
(compat_mode): Check |defined| not to be warned as "uninitialized" |
74 |
|
when |{manakai_compat_mode}| is |undef|. |
75 |
|
|
76 |
|
* DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added. |
77 |
|
|
78 |
|
* DOMImplementationRegistry.pm, DOMImplementationSource.pm: |
79 |
|
Statements to set |$Error::Depth| are removed since they |
80 |
|
are result in "uninitialized" warnings unless |
81 |
|
the |Message::DOM::DOMException| module is loaded earlier. |
82 |
|
Usually methods invoked in these methods does not |
83 |
|
raise any exception so that it makes no difference. |
84 |
|
|
85 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
86 |
|
|
87 |
|
* DOMDocument.pm (adopt_node): Implemented. |
88 |
|
(doctype): Implemented. |
89 |
|
|
90 |
|
* DOMElement.pm (remove_attribute_node): Alpha version. |
91 |
|
|
92 |
|
* DOMException.pm (ADOPT_NODE_TYPE_NOT_SUPPORTED_ERR): New |
93 |
|
error type. |
94 |
|
|
95 |
|
* Node.pm (set_user_data): Implemented. |
96 |
|
|
97 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
98 |
|
|
99 |
|
* DOMImplementation.pm (new): New method name for |____new|. |
100 |
|
It will be defined in the DOM Perl Binding specification |
101 |
|
as part of |DOMImplementation| interface. |
102 |
|
($HasFeature): Defined for features support. |
103 |
|
(has_feature, get_feature): Implemented. |
104 |
|
|
105 |
|
* DOMStringList.pm: Don't load the |Message::DOM::DOMException| |
106 |
|
module unless necessary. |
107 |
|
(___report_error): Removed since it is not used in fact. |
108 |
|
|
109 |
|
* DOMImplementationList.pm, DOMImplementationSource.pm, |
110 |
|
DOMImplementationRegistry.pm: New modules. |
111 |
|
|
112 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
113 |
|
|
114 |
|
* AttributeDefinition.pm (allowed_tokens): Implemented. |
115 |
|
|
116 |
|
* DOMStringList.pm: New Perl module. |
117 |
|
|
118 |
2007-06-26 Wakaba <wakaba@suika.fam.cx> |
2007-06-26 Wakaba <wakaba@suika.fam.cx> |
119 |
|
|
120 |
* DOMElement.pm (clone_node): Alpha version. It did not work |
* DOMElement.pm (clone_node): Alpha version. It did not work |