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> |
2005-12-29 Wakaba <wakaba@suika.fam.cx> |
124 |
|
|
125 |
* XMLParser.dis (shiftChar): Checks characters are legal |
* XMLParser.dis (shiftChar): Checks characters are legal |