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