/[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.93 by wakaba, Fri Nov 25 06:18:40 2005 UTC revision 1.107 by wakaba, Wed Jan 25 12:21:46 2006 UTC
# Line 1  Line 1 
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>  2005-11-25  Wakaba  <wakaba@suika.fam.cx>
178    
179          * Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error):          * Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error):

Legend:
Removed from v.1.93  
changed lines
  Added in v.1.107

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24