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

Legend:
Removed from v.1.203  
changed lines
  Added in v.1.223

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24