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

Legend:
Removed from v.1.99  
changed lines
  Added in v.1.111

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24