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

Legend:
Removed from v.1.208  
changed lines
  Added in v.1.224

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24