1 |
|
2006-01-25 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* XDoctype.dis (setElementTypeDefinitionNode, |
4 |
|
setAttributeDefinitionNode): Throws |c:INUSE_DEFINITION_ERR| |
5 |
|
if the new node is already used for another definition. |
6 |
|
(DocumentTypeDefinition, ElementTypeDefinition): Node |
7 |
|
property name was incorrect. |
8 |
|
(elementTypes, attributeDefinitions): Checks to |
9 |
|
ensure the collection is empty added. |
10 |
|
|
11 |
|
* Tree.dis: Property name typos fixed. |
12 |
|
(setNamedItem, setAttributeNode): Don't return any node |
13 |
|
if it replace itself. |
14 |
|
(c:userDeterminedId): Missing definition added. |
15 |
|
|
16 |
|
* DOMXML.dis (Notation): Missing property specification |
17 |
|
of|c:ownerDocument| as |mn:xrefnode0| is added. |
18 |
|
|
19 |
|
2006-01-23 Wakaba <wakaba@suika.fam.cx> |
20 |
|
|
21 |
|
* DOMCore.dis (Test): Missing argument added. |
22 |
|
(setNamedItem): If |DocumentType| with no |ownerDocument|, |
23 |
|
addition always fails with |WRONG_DOCUMENT_ERR|. Some |
24 |
|
error conditions were incorrect. |
25 |
|
|
26 |
|
* .cvsignore: Dummy files added. |
27 |
|
|
28 |
|
2006-01-22 Wakaba <wakaba@suika.fam.cx> |
29 |
|
|
30 |
|
* DOMCore.dis (NO_NAMED_NODE_ERR, NO_NAMED_NODE_NS_ERR, |
31 |
|
INUSE_DEFINITION_ERR, NO_NS_NAMEDNODEMAP_ERR): New error subtypes. |
32 |
|
|
33 |
|
* DOMMain.dis (ensureXMLName): Checks definesness of |$XMLVERSION| |
34 |
|
to avoid uninitialized value warning. |
35 |
|
|
36 |
|
* Tree.dis (ManakaiDOMElementTypeDefMap, ManakaiDOMAttrDefMap): New |
37 |
|
classes (work in progress). |
38 |
|
|
39 |
|
* XDoctype.dis (elementTypes, attributeDefinitions): New attributes. |
40 |
|
|
41 |
|
2006-01-22 Wakaba <wakaba@suika.fam.cx> |
42 |
|
|
43 |
|
* Tree.dis (getAttribute): Returns |null| if there |
44 |
|
is no attribute in |ManakaiDOM:DOMLatest| for compatibility |
45 |
|
with Web browser implementations. |
46 |
|
(getAttributeNS): It returned |null| if there |
47 |
|
is no attribute in any |For| unintentionally. It now |
48 |
|
returns an empty string in DOM levels less than or equals |
49 |
|
to three. |
50 |
|
|
51 |
|
* XMLParser.dis (shiftChar): Fixed not to be warned as |
52 |
|
uninitialized value or substring out of range. |
53 |
|
|
54 |
|
2006-01-21 Wakaba <wakaba@suika.fam.cx> |
55 |
|
|
56 |
|
* DOMXML.dis (DocumentType.childNodes): Removed |
57 |
|
from |ManakaiDOM:ManakaiDOMLatest| variant. |
58 |
|
|
59 |
|
* XMLParser.dis: Parsing of general internal entities implemented. |
60 |
|
(_DocumentTypeDeclaration): Appends a document type definition |
61 |
|
node to the document. |
62 |
|
(_ProcessingInstructionDTD): Appends a processing |
63 |
|
instruction node to the document type definition. |
64 |
|
(Element_): Document element could not be an |EmptyElemTag|. |
65 |
|
|
66 |
|
2006-01-21 Wakaba <wakaba@suika.fam.cx> |
67 |
|
|
68 |
|
* DOMFeature.dis (featuresParamToFeaturesHash): New block |
69 |
|
code (seprated from |InputProcessor|). Now |
70 |
|
a |features| parameter's version can be specified by |
71 |
|
an array reference that contains a set of version |
72 |
|
numbers. A test added. |
73 |
|
|
74 |
|
* XMLParser.dis: A test added. |
75 |
|
|
76 |
|
2006-01-07 Wakaba <wakaba@suika.fam.cx> |
77 |
|
|
78 |
|
* DOMCore.dis (Test): Don't invoke |DESTROY| method |
79 |
|
because it does not work with dummy object used in the test code. |
80 |
|
|
81 |
|
2006-01-07 Wakaba <wakaba@suika.fam.cx> |
82 |
|
|
83 |
|
* DOMMain.dis (checkXMLNamesQName): Checks whether |
84 |
|
namespace URI is defined for not being warned. |
85 |
|
|
86 |
|
* XDoctype.dis: New module. |
87 |
|
|
88 |
|
* DOMCore.dis (DOMStringList): Test added. |
89 |
|
|
90 |
|
* Makefile: |XDoctype.pm| added. |
91 |
|
|
92 |
|
* Tree.dis (Require): Requires |XDoctype.dis|. |
93 |
|
(ManakaiDOMNodeObjectNode.eq): Added. |
94 |
|
(Test): |DOMError.location| must return a |DOMLocator| |
95 |
|
object (it was incorrectly tested to return |null|). |
96 |
|
(EmptyNodeList.DESTROY): Removed. |
97 |
|
|
98 |
|
2006-01-04 Wakaba <wakaba@suika.fam.cx> |
99 |
|
|
100 |
|
* Tree.dis (NodeType): |ELEMENT_TYPE_DEFINITION_NODE| and |
101 |
|
|ATTRIBUTE_DEFINITION_NODE| node types added. |
102 |
|
(appendChild, insertBefore, replaceChild): New |
103 |
|
two node types added and processing instruction nodes |
104 |
|
as document type definition node child is allowed |
105 |
|
in |ManakaiDOM:ManakaiDOMLatest| mode. |
106 |
|
(getNodeReference): New |interface| parameter |
107 |
|
to filter classes by interface is added. |
108 |
|
(ElementTypeDefinitionRole): New role. |
109 |
|
(AttributeDefinitionRole): New role. |
110 |
|
|
111 |
|
2006-01-02 Wakaba <wakaba@suika.fam.cx> |
112 |
|
|
113 |
|
* DOMCore.dis (DOMStringList): Reimplemented as tied array. |
114 |
|
|
115 |
|
2005-12-31 Wakaba <wakaba@suika.fam.cx> |
116 |
|
|
117 |
|
* DOMCore.dis (DOMError.location): Returns an empty |DOMLocator| |
118 |
|
if it is not provided. |
119 |
|
|
120 |
|
* XMLParser.dis: Parsing methods to skip document |
121 |
|
type declaration is added. |
122 |
|
|
123 |
|
2005-12-29 Wakaba <wakaba@suika.fam.cx> |
124 |
|
|
125 |
|
* XMLParser.dis (shiftChar): Checks characters are legal |
126 |
|
or not. Normalize end-of-lines. |
127 |
|
(rule _XMLDeclaration_): Implemented. |
128 |
|
(WFErrDef): Well-formedness error |wf-syntax-error|, |
129 |
|
|wf-pi-target-is-xml|, |wf-no-end-tag|, |
130 |
|
|wf-unsupported-xml-version|, |wf-malformed-enc-name|, |
131 |
|
|wf-malformed-xml-standalone|, |wf-legal-literal-character|, |
132 |
|
|wf-element-type-match|, |wf-unique-att-spec|, |
133 |
|
|wf-legal-character| added. |
134 |
|
(%character-code-point): New formatter rule. |
135 |
|
|
136 |
|
* Tree.dis (Document.xmlEncoding): It is now read-write attribute. |
137 |
|
|
138 |
|
* DOMCore.dis (DOMError.stringify): Added. |
139 |
|
(error-handler.default): Returns |false| (don't continue) |
140 |
|
when the error severity is |SEVERITY_FATAL_ERROR|. |
141 |
|
|
142 |
|
2005-12-28 Wakaba <wakaba@suika.fam.cx> |
143 |
|
|
144 |
|
* XMLParser.dis (DocumentEntity): Typos fixed. |
145 |
|
(|lexmode|s): New |?default-token| statements are used |
146 |
|
so that tokenizer description has been simplified |
147 |
|
and CDATA sections now can be parsed. |
148 |
|
|
149 |
|
2005-12-28 Wakaba <wakaba@suika.fam.cx> |
150 |
|
|
151 |
|
* XMLParser.dis: Some modifications made. |
152 |
|
|
153 |
|
2005-12-27 Wakaba <wakaba@suika.fam.cx> |
154 |
|
|
155 |
|
* DOMLS.dis (PARSE_ERR, SERIALIZE_ERR): They are now a |
156 |
|
global named resource. |
157 |
|
|
158 |
|
* Makefile: Rules to make |XMLParser.pm| is added. |
159 |
|
|
160 |
|
* XMLParser.dis: New file. |
161 |
|
|
162 |
|
2005-12-24 Wakaba <wakaba@suika.fam.cx> |
163 |
|
|
164 |
|
* DOMCore.dis (ManakaiDOMError._FORMATTER_PACKAGE_): Error |
165 |
|
message formatter can now vary by error types. |
166 |
|
(DOMLocator.utf32Offset): New (manakai extended) attribute. |
167 |
|
|
168 |
|
2005-12-23 Wakaba <wakaba@suika.fam.cx> |
169 |
|
|
170 |
|
* DOMCore.dis (DOMLocator): Implemented. |
171 |
|
|
172 |
|
2005-12-21 Wakaba <wakaba@suika.fam.cx> |
173 |
|
|
174 |
|
* DOMCore.dis (DOMConfigurationParameterApplication, |
175 |
|
domConfigurationParameter): New resources. |
176 |
|
|
177 |
|
2005-11-25 Wakaba <wakaba@suika.fam.cx> |
178 |
|
|
179 |
|
* Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error): |
180 |
|
New methods. |
181 |
|
|
182 |
|
2005-11-24 Wakaba <wakaba@suika.fam.cx> |
183 |
|
|
184 |
|
* DOMMain.dis, DOMLS.dis, DOMXML.dis, Tree.dis: Old |__WARNING__| |
185 |
|
blocks are replaced by |DOMError|-based |__DOMCore:ERROR__| blocks. |
186 |
|
|
187 |
|
* DOMMain.dis (___report_error): Throws the error unkess |
188 |
|
it is a |DOMCore:DOMError| object. |
189 |
|
|
190 |
|
2005-11-24 Wakaba <wakaba@suika.fam.cx> |
191 |
|
|
192 |
|
* DOMCore.dis (severity, type): Getters return value from |
193 |
|
the definition of the current error (i.e. |-def| hash). |
194 |
|
(___error_def): New method. |
195 |
|
(errorType): |dis:dataType| changed to |DISCore:TFQNames| |
196 |
|
to ease natural reference to constant value. |
197 |
|
(error-handler.default): Prints the error message by |warn|. |
198 |
|
|
199 |
|
* Tree.dis (nodeValue.set): Reimplemented so that it |
200 |
|
warns as setting has no effect. |
201 |
|
(___report_error): New method. (It had been only implemented |
202 |
|
in superclass.) |
203 |
|
(setting-node-value-no-effect): New error type. |
204 |
|
|
205 |
|
2005-11-23 Wakaba <wakaba@suika.fam.cx> |
206 |
|
|
207 |
|
* DOMCore.dis: Error codes added. |
208 |
|
|
209 |
|
* Tree.dis (destroyNodeStem): New method implementation. |
210 |
|
|
211 |
|
2005-11-22 Wakaba <wakaba@suika.fam.cx> |
212 |
|
|
213 |
|
* Tree.dis (cloneNode): User data handlers implemented. |
214 |
|
(adoptNode): User data handlers implemented. |
215 |
|
|
216 |
|
2005-11-21 Wakaba <wakaba@suika.fam.cx> |
217 |
|
|
218 |
|
* DOMCore.dis (UserDataHandler): A constraint for Perl binding |
219 |
|
added. |
220 |
|
|
221 |
|
* Tree.dis (cloneNode): Invoking of |UserDataHandler|s are implemented. |
222 |
|
(getUserData, setUserData): Implemented. |
223 |
|
|
224 |
|
2005-11-20 Wakaba <wakaba@suika.fam.cx> |
225 |
|
|
226 |
|
* DOMCore.dis (UserDataHandler): Implemented. |
227 |
|
(DOMErrorHandler): Blessed package name bug fixed. |
228 |
|
|
229 |
|
* ManakaiDOMLS2003.dis: Reference to |Node| subclasses |
230 |
|
changed to |Tree.dis|. |
231 |
|
|
232 |
|
2005-11-20 Wakaba <wakaba@suika.fam.cx> |
233 |
|
|
234 |
|
* DOMMain.dis: Unused declarations and definitions removed. |
235 |
|
|
236 |
|
* DOMCore.dis: DOM document tree related interfaces removed. |
237 |
|
|
238 |
|
* Tree.dis: New module separated from |DOMCore.dis|. |
239 |
|
|
240 |
|
* DOMXML.dis: Some referent changed to |Tree.dis|. |
241 |
|
|
242 |
|
* Makefile: |Tree.dis| added. |
243 |
|
|
244 |
|
2005-11-16 Wakaba <wakaba@suika.fam.cx> |
245 |
|
|
246 |
|
* .cvsignore: Revised. |
247 |
|
|
248 |
2005-11-16 Wakaba <wakaba@suika.fam.cx> |
2005-11-16 Wakaba <wakaba@suika.fam.cx> |
249 |
|
|
250 |
* ManakaiDOMLS2003.dis: Tests added. |
* ManakaiDOMLS2003.dis: Tests added. |