1 |
|
2007-06-17 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* Attr.pm (____new): Initialize |specified| as 1. |
4 |
|
(base_uri, manakai_attribute_type, specified): Implemented. |
5 |
|
(prefix): Don't check read-only flag unless |strict_error_checking|. |
6 |
|
(value): Call |text_content| for now. |
7 |
|
|
8 |
|
* AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added. |
9 |
|
(declared_type, default_type): Implemented. |
10 |
|
|
11 |
|
* CharacterData.pm (____new): Allow a scalar reference |
12 |
|
as an input for the |data| attribute. |
13 |
|
(base_uri, manakai_append_text): Implemented. |
14 |
|
|
15 |
|
* DOMConfiguration.pm (set_parameter): Resetting implemented. |
16 |
|
|
17 |
|
* DOMDocument.pm (____new): Set default values to |
18 |
|
configuration parameter whose default is true. |
19 |
|
(document_uri, input_encoding): Implemented. |
20 |
|
(all_declarations_processed, manakai_is_html): Implemented. |
21 |
|
(base_uri, manakai_append_text, |
22 |
|
manakai_entity_base_uri, strict_error_checking, |
23 |
|
xml_encoding, xml_version, xml_standalone): Implemented. |
24 |
|
|
25 |
|
* DOMElement.pm (manakai_base_uri, base_uri): Implemented. |
26 |
|
(get_attribute, get_attribute_node): Alpha version. |
27 |
|
(set_attribute_node, set_attribute_node_ns): Implemented. |
28 |
|
(set_attribute_ns): Accept non-ARRAY qualified name. |
29 |
|
|
30 |
|
* DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|, |
31 |
|
|NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added. |
32 |
|
|
33 |
|
* DocumentType.pm (public_id, system_id): Implemented. |
34 |
|
(base_uri, declaration_base_uri, manakai_declaration_base_uri, |
35 |
|
manakai_append_text): Implemented. |
36 |
|
(element_types, general_entities, notations, |
37 |
|
set_element_type_definition_node, set_general_entity_node, |
38 |
|
set_notation_node): Alpha version. |
39 |
|
|
40 |
|
* ElementTypeDefinition.pm (manakai_append_text): Implemented. |
41 |
|
(attribute_definitions, set_attribute_definition_node): Alpha version. |
42 |
|
|
43 |
|
* Entity.pm (has_replacement_tree, public_id, system_id, |
44 |
|
manakai_declaration_base_uri, manakai_entity_base_uri, |
45 |
|
manakai_entity_uri): Implemented. |
46 |
|
|
47 |
|
* EntityReference.pm (manakai_expanded, manakai_external): Implemented. |
48 |
|
(base_uri, manakai_entity_base_uri): Implemented. |
49 |
|
|
50 |
|
* Node.pm (base_uri): Implemented. |
51 |
|
(text_content): Don't check read-only or not |
52 |
|
unless |strict_error_checking|. |
53 |
|
(manakai_append_text): Implemented. |
54 |
|
(get_feature): Alpha. |
55 |
|
(manakai_set_read_only): Implemented. |
56 |
|
|
57 |
|
* Notation.pm (public_id, system_id, manakai_append_text, |
58 |
|
manakai_declaration_base_uri): Implemented. |
59 |
|
|
60 |
|
* ProcessingInstruction.pm (manakai_base_uri, |
61 |
|
base_uri, manakai_append_text): Implemented. |
62 |
|
|
63 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
64 |
|
|
65 |
|
* DOMConfiguration.pm: New module. |
66 |
|
|
67 |
|
* Attr.pm (trivial accessor for read-write attributes): Throw |
68 |
|
an exception if the node is read-only. Delete the property |
69 |
|
if undef is specified. |
70 |
|
(prefix): Implemented. |
71 |
|
|
72 |
|
* DOMElement.pm (trivial accessor for read-write attributes): Throw |
73 |
|
an exception if the node is read-only. Delete the property |
74 |
|
if undef is specified. |
75 |
|
(prefix): Implemented. |
76 |
|
(text_content, manakai_append_text): Old implementations are removed. |
77 |
|
|
78 |
|
* DOMCharacterData.pm (text_content): Implemented. |
79 |
|
|
80 |
|
* DOMDocument.pm (____new): Initialize the strict-document-children |
81 |
|
parameter by true. |
82 |
|
(text_content): Reimplemented. |
83 |
|
(dom_config): New. |
84 |
|
|
85 |
|
* DOMException.pm (READ_ONLY_NODE_ERR): New subtype. |
86 |
|
|
87 |
|
* DocumentType.pm (text_content): Implemented. |
88 |
|
|
89 |
|
* ElementTypeDefinition.pm (text_content): Implemented. |
90 |
|
|
91 |
|
* Node.pm (___report_error): New method. |
92 |
|
(text_content): Implemented. |
93 |
|
(manakai_append_text): Copied from |DOMElement.pm|. |
94 |
|
|
95 |
|
* Notation.pm (text_content): Implemented. |
96 |
|
|
97 |
|
* ProcessingInstruction.pm (text_content): Implemented. |
98 |
|
|
99 |
|
* Text.pm (is_element_content_whitespace): Alpha version. |
100 |
|
|
101 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
102 |
|
|
103 |
|
* DOMException.pm (Message::IF::DOMException): Extends |
104 |
|
the |Message::Util::Error| class. |
105 |
|
|
106 |
|
* NodeList.pm (Message::DOM::NodeList): Extends the |Tie::Array| class. |
107 |
|
(CLEAR): Not all items were removed. |
108 |
|
|
109 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
110 |
|
|
111 |
|
* Attr.pm, AttributeDefinition.pm, DocumentFragment.pm, |
112 |
|
DocumentType.pm, Entity.pm, |
113 |
|
EntityReference.pm (____new): Initialize |child_nodes| by an empty list. |
114 |
|
|
115 |
|
* Node.pm, DOMCharacterData.pm, ElementTypeDefinition.pm, |
116 |
|
Notation.pm, ProcessingInstruction.pm (child_nodes): Implemetned. |
117 |
|
|
118 |
|
* DOMDocument.pm (AUTOLOAD): Typo fixed. |
119 |
|
|
120 |
|
* Node.pm (==, !=): Implemented. |
121 |
|
(manakai_read_only): Implemented. |
122 |
|
(is_same_node): Implemented. |
123 |
|
(is_equal_node): Alpha version. |
124 |
|
(manakai_set_read_only): Alpha version. |
125 |
|
(child_nodes, first_child, last_child, previous_sibling): Duplicate |
126 |
|
definitions are removed. |
127 |
|
|
128 |
|
2007-06-16 Wakaba <wakaba@suika.fam.cx> |
129 |
|
|
130 |
|
* Node.pm: First alpha version of implementation of attributes. |
131 |
|
|
132 |
|
2007-06-15 Wakaba <wakaba@suika.fam.cx> |
133 |
|
|
134 |
|
* ProcessingInstruction.pm, EntityReference.pm, |
135 |
|
CDATASection, DocumentFragment.pm, DOMDocument.pm, Entity.pm, |
136 |
|
ElementTypeDefinition.pm, AttributeDefinition.pm, |
137 |
|
DocumentType.pm, DOMElement.pm, Attr.pm, |
138 |
|
CharacterData.pm, Text.pm, Comment.pm (node_name, |
139 |
|
node_value, node_type): Implemented. |
140 |
|
|
141 |
|
2007-06-14 Wakaba <wakaba@suika.fam.cx> |
142 |
|
|
143 |
|
* Notation.pm, Entity.pm, EntityReference.pm, ProcessingInstruction.pm, |
144 |
|
CDATASection.pm, DocumentFragment.pm, ElementTypeDefinition.pm, |
145 |
|
AttributeDefinition.pm: New modules. |
146 |
|
|
147 |
|
* DOMDocument.pm (@ISA): 'Message::IF::DocumentXDoctype' added. |
148 |
|
(create_attribute_definition, create_element_type_definition, |
149 |
|
create_document_type_definition, create_cdata_section, |
150 |
|
create_processing_instruction, create_entity_reference, |
151 |
|
create_general_entity, create_notation): Prototypes added. |
152 |
|
|
153 |
|
* DOMImplementation.pm (create_document_type): Prototype added. |
154 |
|
|
155 |
|
* DocumentType.pm (@ISA), 'Message::IF::DocumentTypeDefinition' |
156 |
|
and 'Message::IF::DocumentTypeDeclaration' added. |
157 |
|
(create_document_type, create_document_type_definition): |
158 |
|
New methods. |
159 |
|
|
160 |
|
2007-06-13 Wakaba <wakaba@suika.fam.cx> |
161 |
|
|
162 |
|
* DOMImplementation.pm, Node.pm, DOMDocument.pm, |
163 |
|
DOMElement.pm, Attr.pm, DocumentType.pm, |
164 |
|
DOMCharacterData.pm, Text.pm, Comment.pm: Copied |
165 |
|
from <http://suika.fam.cx/gate/cvs/*checkout*/markup/html/whatpm/Whatpm/NanoDOM.pm?rev=1.9>. |
166 |
|
|
167 |
|
2007-06-10 Wakaba <wakaba@suika.fam.cx> |
168 |
|
|
169 |
|
* XMLParser.dis: Default to "1.0" if <?xml version=""?> |
170 |
|
specifies unknown value and trys to recover from the error. |
171 |
|
|
172 |
|
2007-05-13 Wakaba <wakaba@suika.fam.cx> |
173 |
|
|
174 |
|
* TreeCore.dis (manakaiLocalName): New attribute. |
175 |
|
|
176 |
|
2007-01-02 Wakaba <wakaba@suika.fam.cx> |
177 |
|
|
178 |
|
* GenericLS.dis (GLSException): New interface. |
179 |
|
|
180 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
181 |
|
|
182 |
|
* |InputProcessor|s and |OutputProcessor|s are |
183 |
|
named so that |report| statements in Perl |
184 |
|
module outputs can be identified by name. |dis:dataType|s |
185 |
|
of |DISCore:TFQNames| are all replaced |
186 |
|
by |DISCore:QName|. |
187 |
|
|
188 |
|
2006-12-31 Wakaba <wakaba@suika.fam.cx> |
189 |
|
|
190 |
|
* Element.dis (createElementNS): If an array reference |
191 |
|
is specified as the |qualifiedName| parameter, |
192 |
|
don't set the first item as the local name |
193 |
|
even if the second item is not specified (or |
194 |
|
specified as |undef|). |
195 |
|
(createElementNS, setAttribute, setAttributeNS, |
196 |
|
removeAttribute, removeAttributeNS, |
197 |
|
setAttributeNode, setAttributeNodeNS, |
198 |
|
removeAttributeNode, removeAttributeNodeNS): Sets |
199 |
|
or removes the |tc:contentAttributeList| value. |
200 |
|
|
201 |
|
* TreeCore.dis (AttrMap.item): Caches the result |
202 |
|
of sorting of content attribute names. |
203 |
|
(getAttrMap, getElementTypeDefNodeMap, |
204 |
|
getAttrDefNodeMap, getEntityNodeMap, getNotationNodeMap): Removed. |
205 |
|
(tc:contentAttributeList): New property. |
206 |
|
|
207 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
208 |
|
|
209 |
|
* DOMFeature.dis (ForDef): Removed. |
210 |
|
(f:provides, f:through): Removed. |
211 |
|
(Version): Removed. |
212 |
|
(implementFeature): Removed. |
213 |
|
|
214 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
215 |
|
|
216 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
217 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
218 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
219 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
220 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |For| specifications |
221 |
|
are removed. |
222 |
|
|
223 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
224 |
|
|
225 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
226 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
227 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
228 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
229 |
|
SimpleLS.dis, DOMMain.dis, XDP.dis: |WithFor| specifications |
230 |
|
and |DefaultFor|s are removed. |
231 |
|
|
232 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
233 |
|
|
234 |
|
* CharacterData.dis, DOMCore.dis, DOMFeature.dis, |
235 |
|
GenericLS.dis, TreeCore.dis, DOMString.dis, |
236 |
|
XML.dis, Element.dis, Document.dis, TreeStore,dis, |
237 |
|
Traversal.dis, XDoctype.dis, XMLParser.dis, DOMLS.dis, |
238 |
|
SimpleLS.dis, DOMMain.dis: References |
239 |
|
to the |ManakaiDOM:ManakaiDOM|, |ManakaiDOM:ManakaiDOM1|, |
240 |
|
|ManakaiDOM:ManakaiDOM2|, and |ManakaiDOM:ManakaiDOM3| |
241 |
|
modes are removed. |
242 |
|
|
243 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
244 |
|
|
245 |
|
* CharacterData.dis, TreeCore.dis (Require): References |
246 |
|
to the |Grove.dis| module are removed. |
247 |
|
|
248 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
249 |
|
|
250 |
|
* DOMFeature.dis (f:implementation, f:revImplementation): Removed. |
251 |
|
(Require): Reference to the |Grove.dis| module is removed. |
252 |
|
|
253 |
|
2006-12-30 Wakaba <wakaba@suika.fam.cx> |
254 |
|
|
255 |
|
* DOMCore.dis (ManakaiDOMImplementation): The |
256 |
|
class is no longer plays the role of |
257 |
|
a |mg:NodeRefRole|. Redundant |f:provides| |
258 |
|
properties are removed. |
259 |
|
|
260 |
|
2006-12-29 Wakaba <wakaba@suika.fam.cx> |
261 |
|
|
262 |
|
* TreeCore.dis, DOMCore.dis, Document.dis, |
263 |
|
Element.dis, CharacterData.dis, XML.dis, |
264 |
|
XDoctype.dis, DOMString.dis, TreeStore.dis, |
265 |
|
XMLParser.dis: Use Perl native |
266 |
|
hashs and |Scalar::Util|'s weak references in favor of |Grove.dis| |
267 |
|
for DOM nodes. See |
268 |
|
also <http://suika.fam.cx/gate/2005/sw/manakai/%E3%83%A1%E3%83%A2/2006-12-29>. |
269 |
|
|
270 |
|
2006-12-03 Wakaba <wakaba@suika.fam.cx> |
271 |
|
|
272 |
|
* DOMFeature.dis, TreeCore.dis: Unused |role|s are removed. |
273 |
|
|
274 |
|
2006-12-02 Wakaba <wakaba@suika.fam.cx> |
275 |
|
|
276 |
|
* DOMString.dis: New module. |
277 |
|
|
278 |
|
* DOMString.pm: New file. |
279 |
|
|
280 |
|
* DOMCore.dis (min): Moved from |DOMFeature.dis|. |
281 |
|
(ImplementationRegistryVariable): Moved from |DOMFeature.dis|. |
282 |
|
Now it references the |DOMImplementationRegistry| object. |
283 |
|
(DOMImplementationRegistryVariable): Moved from |DOMMain.dis|. |
284 |
|
(DOMImplementationRegistry): New interface and |
285 |
|
class, reformed from |ImplementationRegistry| in |DOMFeature.dis| |
286 |
|
and |DOMImplementationRegistry| in |DOMMain.dis|. Note |
287 |
|
that the class no longer support |get_implementation| |
288 |
|
and |get_implementation_list| methods from |
289 |
|
the |ImplementationRegistry| interface. |
290 |
|
(DOMImplementationList): Class implemented; no |
291 |
|
longer inherits from |ImplementationList|. |
292 |
|
(DOMImplementationSource): Class implemented; no |
293 |
|
longer inherits from |ImplementationSource|. Note that |
294 |
|
the class no longer support |get_implementation| |
295 |
|
and |get_implementation_list| methods from |
296 |
|
the |ImplementationSource| interface. |
297 |
|
(DOMStringList): Removed. |
298 |
|
|
299 |
|
* DOMFeature.dis (min, ManakaiDOM:DOMHTMLFeature, |
300 |
|
ManakaiDOM:DOMEventsFeature, ManakaiDOM:DOMXMLFeature, |
301 |
|
ManakaiDOM:DOMXMLFeatureXML11, most part of |
302 |
|
documentation for obsolete DOM Level 3 Minimum Implementation |
303 |
|
module, obsolete property name aliases, |
304 |
|
ImplemenationRegistryVar, ImplementationRegistry, |
305 |
|
DEBUG, MIString, ImplementationList, ImplementationSource, |
306 |
|
ManakaiDOM:implID): Removed. |
307 |
|
|
308 |
|
* DOMMain.dis (Redefine, RedefinedBy, Redefined): Removed. |
309 |
|
(DOMString): Removed. |
310 |
|
(DOMImplementationRegistryVar, DOMImplementationRegistry): Removed. |
311 |
|
|
312 |
|
* Makefile: |DOMString.pm| is added. |
313 |
|
|
314 |
|
* TreeCore.dis (is_default_namespace): |null| was |
315 |
|
returned where a false is expected (|null| is |
316 |
|
a false in Perl, but real |false| is appropriate here). |
317 |
|
|
318 |
|
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
319 |
|
|
320 |
|
* DOMCore.dis (TypeInfo, UserDataHandler): Removed. |
321 |
|
|
322 |
|
* Element.dis (TypeInfo): Moved from |DOMCore.dis|. |
323 |
|
|
324 |
|
* TreeCore.dis (UserDataHandler): Moved from |DOMCore.dis|. |
325 |
|
|
326 |
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
2006-11-05 Wakaba <wakaba@suika.fam.cx> |
327 |
|
|
328 |
* DOMFeature.dis (ImplementationList, ImplementationSource, |
* DOMFeature.dis (ImplementationList, ImplementationSource, |