1 |
|
2006-01-27 Wakaba <wakaba@suika.fam.cx> |
2 |
|
|
3 |
|
* DOMCore.dis (ManakaiDOMDTDTypeInfo): New class. |
4 |
|
|
5 |
|
* Tree.dis (STORESIZE): Index bound bug fixed. |
6 |
|
(Attr.value): Redefined to consist with |AttributeDefinition.nodeValue|. |
7 |
|
(schemaTypeInfo): Implemented for XML DTD. |
8 |
|
(isId): Returns |true| if [attribute type] is |ID|. |
9 |
|
(setAttribute, setAttributeNS): Sets [attribute type] |
10 |
|
of the newly created |Attr| node (if any) when attribute |
11 |
|
definition is available. |
12 |
|
(doctype, documentElement): Reimplemented with tests. |
13 |
|
|
14 |
|
* XMLParser.dis: Sets [attribute type] information |
15 |
|
to created |Attr| nodes. Normalize namespace URIs |
16 |
|
when such information are available (unlikely but legal). |
17 |
|
(_HexadecimalCharacterReference): Number to character |
18 |
|
convertion bug fixed. |
19 |
|
(_DocumentTypeDeclaration): Sets |schema-type| |
20 |
|
configuration parameter to XML DTD URI. |
21 |
|
|
22 |
|
2006-01-26 Wakaba <wakaba@suika.fam.cx> |
23 |
|
|
24 |
|
* XMLParser.dis (_AttlistDeclaration): Now it can generate |
25 |
|
attribute definition nodes. |
26 |
|
|
27 |
|
* XDoctype.dis: |UNKNOWN_ATTR| is renamed as |NO_TYPE_ATTR| |
28 |
|
and another |UNKNOWN_ATTR| constant is introduced |
29 |
|
for consistency with XML Infoset. |
30 |
|
|
31 |
|
* DOMCore.dis (TypeInfo): Documentation updated. |
32 |
|
|
33 |
|
2006-01-26 Wakaba <wakaba@suika.fam.cx> |
34 |
|
|
35 |
|
* XDoctype.dis: A bug in test code fixed. |
36 |
|
|
37 |
|
* Tree.dis (NamedNodeMap): Element type or attribute |
38 |
|
definition named node maps now can be dereferenced |
39 |
|
as if they are array or hash references. |
40 |
|
(removeNamedItem, item, ___report_error): Implemented for element type |
41 |
|
or attribute definitions. |
42 |
|
(length): Tests added. |
43 |
|
(NamedNodeMapArray): New classes. |
44 |
|
|
45 |
|
2006-01-25 Wakaba <wakaba@suika.fam.cx> |
46 |
|
|
47 |
|
* XDoctype.dis (setElementTypeDefinitionNode, |
48 |
|
setAttributeDefinitionNode): Throws |c:INUSE_DEFINITION_ERR| |
49 |
|
if the new node is already used for another definition. |
50 |
|
(DocumentTypeDefinition, ElementTypeDefinition): Node |
51 |
|
property name was incorrect. |
52 |
|
(elementTypes, attributeDefinitions): Checks to |
53 |
|
ensure the collection is empty added. |
54 |
|
|
55 |
|
* Tree.dis: Property name typos fixed. |
56 |
|
(setNamedItem, setAttributeNode): Don't return any node |
57 |
|
if it replace itself. |
58 |
|
(c:userDeterminedId): Missing definition added. |
59 |
|
|
60 |
|
* DOMXML.dis (Notation): Missing property specification |
61 |
|
of|c:ownerDocument| as |mn:xrefnode0| is added. |
62 |
|
|
63 |
|
2006-01-23 Wakaba <wakaba@suika.fam.cx> |
64 |
|
|
65 |
|
* DOMCore.dis (Test): Missing argument added. |
66 |
|
(setNamedItem): If |DocumentType| with no |ownerDocument|, |
67 |
|
addition always fails with |WRONG_DOCUMENT_ERR|. Some |
68 |
|
error conditions were incorrect. |
69 |
|
|
70 |
|
* .cvsignore: Dummy files added. |
71 |
|
|
72 |
|
2006-01-22 Wakaba <wakaba@suika.fam.cx> |
73 |
|
|
74 |
|
* DOMCore.dis (NO_NAMED_NODE_ERR, NO_NAMED_NODE_NS_ERR, |
75 |
|
INUSE_DEFINITION_ERR, NO_NS_NAMEDNODEMAP_ERR): New error subtypes. |
76 |
|
|
77 |
|
* DOMMain.dis (ensureXMLName): Checks definesness of |$XMLVERSION| |
78 |
|
to avoid uninitialized value warning. |
79 |
|
|
80 |
|
* Tree.dis (ManakaiDOMElementTypeDefMap, ManakaiDOMAttrDefMap): New |
81 |
|
classes (work in progress). |
82 |
|
|
83 |
|
* XDoctype.dis (elementTypes, attributeDefinitions): New attributes. |
84 |
|
|
85 |
|
2006-01-22 Wakaba <wakaba@suika.fam.cx> |
86 |
|
|
87 |
|
* Tree.dis (getAttribute): Returns |null| if there |
88 |
|
is no attribute in |ManakaiDOM:DOMLatest| for compatibility |
89 |
|
with Web browser implementations. |
90 |
|
(getAttributeNS): It returned |null| if there |
91 |
|
is no attribute in any |For| unintentionally. It now |
92 |
|
returns an empty string in DOM levels less than or equals |
93 |
|
to three. |
94 |
|
|
95 |
|
* XMLParser.dis (shiftChar): Fixed not to be warned as |
96 |
|
uninitialized value or substring out of range. |
97 |
|
|
98 |
|
2006-01-21 Wakaba <wakaba@suika.fam.cx> |
99 |
|
|
100 |
|
* DOMXML.dis (DocumentType.childNodes): Removed |
101 |
|
from |ManakaiDOM:ManakaiDOMLatest| variant. |
102 |
|
|
103 |
|
* XMLParser.dis: Parsing of general internal entities implemented. |
104 |
|
(_DocumentTypeDeclaration): Appends a document type definition |
105 |
|
node to the document. |
106 |
|
(_ProcessingInstructionDTD): Appends a processing |
107 |
|
instruction node to the document type definition. |
108 |
|
(Element_): Document element could not be an |EmptyElemTag|. |
109 |
|
|
110 |
|
2006-01-21 Wakaba <wakaba@suika.fam.cx> |
111 |
|
|
112 |
|
* DOMFeature.dis (featuresParamToFeaturesHash): New block |
113 |
|
code (seprated from |InputProcessor|). Now |
114 |
|
a |features| parameter's version can be specified by |
115 |
|
an array reference that contains a set of version |
116 |
|
numbers. A test added. |
117 |
|
|
118 |
|
* XMLParser.dis: A test added. |
119 |
|
|
120 |
|
2006-01-07 Wakaba <wakaba@suika.fam.cx> |
121 |
|
|
122 |
|
* DOMCore.dis (Test): Don't invoke |DESTROY| method |
123 |
|
because it does not work with dummy object used in the test code. |
124 |
|
|
125 |
|
2006-01-07 Wakaba <wakaba@suika.fam.cx> |
126 |
|
|
127 |
|
* DOMMain.dis (checkXMLNamesQName): Checks whether |
128 |
|
namespace URI is defined for not being warned. |
129 |
|
|
130 |
|
* XDoctype.dis: New module. |
131 |
|
|
132 |
|
* DOMCore.dis (DOMStringList): Test added. |
133 |
|
|
134 |
|
* Makefile: |XDoctype.pm| added. |
135 |
|
|
136 |
|
* Tree.dis (Require): Requires |XDoctype.dis|. |
137 |
|
(ManakaiDOMNodeObjectNode.eq): Added. |
138 |
|
(Test): |DOMError.location| must return a |DOMLocator| |
139 |
|
object (it was incorrectly tested to return |null|). |
140 |
|
(EmptyNodeList.DESTROY): Removed. |
141 |
|
|
142 |
|
2006-01-04 Wakaba <wakaba@suika.fam.cx> |
143 |
|
|
144 |
|
* Tree.dis (NodeType): |ELEMENT_TYPE_DEFINITION_NODE| and |
145 |
|
|ATTRIBUTE_DEFINITION_NODE| node types added. |
146 |
|
(appendChild, insertBefore, replaceChild): New |
147 |
|
two node types added and processing instruction nodes |
148 |
|
as document type definition node child is allowed |
149 |
|
in |ManakaiDOM:ManakaiDOMLatest| mode. |
150 |
|
(getNodeReference): New |interface| parameter |
151 |
|
to filter classes by interface is added. |
152 |
|
(ElementTypeDefinitionRole): New role. |
153 |
|
(AttributeDefinitionRole): New role. |
154 |
|
|
155 |
|
2006-01-02 Wakaba <wakaba@suika.fam.cx> |
156 |
|
|
157 |
|
* DOMCore.dis (DOMStringList): Reimplemented as tied array. |
158 |
|
|
159 |
2005-12-31 Wakaba <wakaba@suika.fam.cx> |
2005-12-31 Wakaba <wakaba@suika.fam.cx> |
160 |
|
|
161 |
* DOMCore.dis (DOMError.location): Returns an empty |DOMLocator| |
* DOMCore.dis (DOMError.location): Returns an empty |DOMLocator| |