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