1 |
|
2007-07-14 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* TypeInfo.pm: New Perl module. |
4 |
|
|
5 |
|
* Attr.pm: Use |manakai_local_name| rather than |local_name| |
6 |
|
to avoid HTML5 case normalization. |
7 |
|
(is_id): Implemented. |
8 |
|
(manakai_name): New attribute. |
9 |
|
(schema_type_info): Implemented. |
10 |
|
(create_attribute_ns): Empty string as namespace URI |
11 |
|
was not supported. |
12 |
|
|
13 |
|
* DOMElement.pm (clone_node): Removed since now it is |
14 |
|
defined in |Node.pm|. |
15 |
|
(schema_type_info): Implemented. |
16 |
|
(manakai_tag_name): New attribute. |
17 |
|
(get_attribute, get_attribute_node, get_attribute_ns, |
18 |
|
get_attribute_node_ns, has_attribute, has_attribute_ns, |
19 |
|
remove_attribute, remove_attribute_ns, |
20 |
|
remove_attribute_node, set_attribute, set_attribute_ns, |
21 |
|
set_id_attribute, set_id_attribute_node, |
22 |
|
set_id_attribute_ns): Implemented. |
23 |
|
(create_element_ns): Empty string as namespace URI |
24 |
|
was not supported. |
25 |
|
|
26 |
|
2007-07-12 Wakaba <wakaba@suika.fam.cx> |
27 |
|
|
28 |
|
* AttributeDefinition.pm (owner_element_type_definition): Implemented. |
29 |
|
|
30 |
|
* DocumentType.pm (create_document_type_definition): Initialize |
31 |
|
|public_id|, |system_id|, and |internal_subset| attributes |
32 |
|
by empty strings for compatibility with Web browsers. |
33 |
|
(create_document_type): Initialize |internal_subset| |
34 |
|
attribute by an empty string for compatibility with |
35 |
|
Web browsers. |
36 |
|
|
37 |
|
* ElementTypeDefinition.pm, Entity.pm, |
38 |
|
Notation.pm (owner_document_type_definition): Implemented. |
39 |
|
|
40 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
41 |
|
|
42 |
|
* DOMImplementation.pm ($HasFeature): |fe:XDoctypeDeclaration| |
43 |
|
feature is added for compatibility with |XMLParserTemp.pm|. |
44 |
|
|
45 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
46 |
|
|
47 |
|
* Attr.pm (value, node_value): Now it is defined |
48 |
|
as |text_content| itself. |
49 |
|
|
50 |
|
* AttributeDefinition.pm, ElementTypeDefinition.pm, |
51 |
|
Node.pm (AUTOLOAD): Unused block is removed. |
52 |
|
|
53 |
|
* CDATASection.pm, DocumentFragment.pm (AUTOLOAD): Removed. Unused. |
54 |
|
|
55 |
|
* DocumentType.pm (internal_subset): Implemented. |
56 |
|
|
57 |
|
* Entity.pm (is_externally_declared, input_encoding, |
58 |
|
xml_version): Implemented. |
59 |
|
|
60 |
|
* ProcessingInstruction.pm (target, data): Implemented. |
61 |
|
|
62 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
63 |
|
|
64 |
|
* DOMCharacterData.pm (AUTOLOAD): Removed. |
65 |
|
(data): Reimplemented. |
66 |
|
(delete_data, insert_data, replace_data, substring_data): There were |
67 |
|
a number of bugs. |
68 |
|
|
69 |
|
* Text.pm (AUTOLOAD): Removed. Unused. |
70 |
|
|
71 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
72 |
|
|
73 |
|
* StringExtended.pm: New Perl module. |
74 |
|
|
75 |
|
* DOMCharacterData.pm (length, append_data, delete_data, |
76 |
|
insert_data, replace_data, substring_data): Implemented. |
77 |
|
|
78 |
|
* DOMException.pm (INDEX_SIZE_ERR): Implemented. |
79 |
|
|
80 |
|
* Text.pm (is_element_content_whitespace, whole_text, |
81 |
|
split_text): Implemented. |
82 |
|
|
83 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
84 |
|
|
85 |
|
* DOMElement.pm (attributes): Implemented. |
86 |
|
|
87 |
|
* DOMException.pm (INUSE_DEFINITION_ERR): New error type. |
88 |
|
|
89 |
|
* DocumentType.pm (entities, general_entities, |
90 |
|
notations, element_types): Implemented. |
91 |
|
|
92 |
|
* ElementTypeDefinition.pm (attribute_definitions): Implemented. |
93 |
|
|
94 |
|
* NamedNodeMap.pm: New Perl module. |
95 |
|
|
96 |
|
2007-07-08 Wakaba <wakaba@suika.fam.cx> |
97 |
|
|
98 |
|
* Attr.pm, AttributeDefinition.pm, DOMCharacterData.pm, |
99 |
|
DOMDocument.pm, DocumentType.pm, ElementTypeDefinition.pm, |
100 |
|
Node.pm, Notation.pm, ProcessingInstruction.pm (append_child, |
101 |
|
insert_before, replace_child): Implemented. |
102 |
|
|
103 |
|
* DOMException.pm (HIERARCHY_REQUEST_ERR, NOT_FOUND_ERR): Implemented. |
104 |
|
|
105 |
|
* Node.pm (remove_child): Implemented. |
106 |
|
|
107 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
108 |
|
|
109 |
|
* Node.pm (==, is_equal_node): Implemented. |
110 |
|
(is_same_node): Implemented. |
111 |
|
(get_feature, get_user_data, set_user_data): Implemented. |
112 |
|
(is_supported): Implemented. |
113 |
|
|
114 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
115 |
|
|
116 |
|
* DOMDocument.pm (get_element_by_id): Implemented. |
117 |
|
(create_document): Implemented. |
118 |
|
|
119 |
|
* DOMException.pm (EXTERNAL_OBJECT_ERR, INUSE_DOCTYPE_ERR): New |
120 |
|
errors. |
121 |
|
(QNAME_NULLNS_ERR): New errors. |
122 |
|
|
123 |
|
* DocumenType.pm (create_document_type): Implemented. |
124 |
|
|
125 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
126 |
|
|
127 |
|
* CDATASection.pm (is_element_content_whitespace): New. |
128 |
|
|
129 |
|
* DOMElement.pm (has_attribute): Alpha version. |
130 |
|
(create_element, create_element_ns): Implemented. |
131 |
|
|
132 |
|
* DocumentType.pm (get_general_entity_node): Alpha version. |
133 |
|
|
134 |
|
* EntityReference.pm (create_entity_reference): Implemented. |
135 |
|
|
136 |
|
* ProcessingInstruction.pm (create_processing_instruction): Implemented. |
137 |
|
|
138 |
|
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
139 |
|
|
140 |
|
* Attr.pm (create_attribute, create_attribute_ns): Implemented. |
141 |
|
|
142 |
|
* DOMDocument.pm: Load character classes from |Char::Class::XML|. |
143 |
|
(compat_mode): Check |defined| not to be warned as "uninitialized" |
144 |
|
when |{manakai_compat_mode}| is |undef|. |
145 |
|
|
146 |
|
* DOMException.pm (INVALID_CHARACTER_ERR, NAMESPACE_ERR): Added. |
147 |
|
|
148 |
|
* DOMImplementationRegistry.pm, DOMImplementationSource.pm: |
149 |
|
Statements to set |$Error::Depth| are removed since they |
150 |
|
are result in "uninitialized" warnings unless |
151 |
|
the |Message::DOM::DOMException| module is loaded earlier. |
152 |
|
Usually methods invoked in these methods does not |
153 |
|
raise any exception so that it makes no difference. |
154 |
|
|
155 |
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
2007-07-07 Wakaba <wakaba@suika.fam.cx> |
156 |
|
|
157 |
* DOMDocument.pm (adopt_node): Implemented. |
* DOMDocument.pm (adopt_node): Implemented. |