/[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.85 by wakaba, Tue Nov 15 14:18:23 2005 UTC revision 1.123 by wakaba, Sun Feb 12 06:42:15 2006 UTC
# Line 1  Line 1 
1    2006-02-12  Wakaba  <wakaba@suika.fam.cx>
2    
3            * XMLParser.dis (parseString): General |Entity| replacement
4            tree is not constructed because of a typo.  Clears |EntityReference|
5            content before constructing |Entity| replacement tree.
6            The |xp:wf-entity-declared| well-formedness constraint
7            for entity references in attribute value literal is implemented.
8    
9    2006-02-11  Wakaba  <wakaba@suika.fam.cx>
10    
11            * XMLParser.dis: |xp:wf-entity-declared| well-formedness
12            constaraint for entity references that appear in
13            content of elements is implemented.   Set |EntityReference.isExpanded|
14            attribute.
15            (getEmptyEntityState): New code.
16    
17            * XDoctype.dis (DocumentTypeDefinition.nodeType): Duplicate
18            definition is removed.
19    
20            * DOMXML.dis (Entity.isExternallyDeclared): New attribute.
21            (EntityReference.isExpanded): Setter is added.
22    
23    2006-02-11  Wakaba  <wakaba@suika.fam.cx>
24    
25            * XMLParser.dis: |xp:wf-no-lt-in-attribute-values|
26            and |xp:wf-no-external-entity-references| well-formedness
27            constraints are implemented.
28    
29    2006-02-11  Wakaba  <wakaba@suika.fam.cx>
30    
31            * XMLParser.dis ($self->{has_error}): Removed.
32            (parseString): Don't throw |DOMLS:PARSE_ERR| if all fatal
33            errors (including well-formedness constraint errors) are
34            traped by the error handler.
35            (PubidLiteral, SystemLiteral): Set |publicId| or |systemId|
36            attribute of the node.  Reports an error if |publidLiteral|
37            contains a non-|pubidChar|.
38    
39            * XDoctype.dis (d:DeclFeature30): New feature (|fe:XDoctypeDeclaration|
40            version |3.0|).
41            (ManakaiDOMDocumentTypeDefinition): The class no longer
42            inherits |x:ManakaiDOMDocumentType| class.  Instead,
43            it inherits |d:ManakaiDOMDocumentTypeDeclaration|
44            and |t:ManakaiDOMNOde| classes.  It still implements |x:DocumentType|
45            interface (except unimplemented |notations| and |internalSubset|
46            attributes).
47            (ManakaiDOMDocumentTypeDefinition.entities): New attribute
48            for compatibility with |x:DocumentType| interface.
49            (ManakaiDOMDocumentTypeDefinition.lookupPrefix): New method.
50            (ManakaiDOMDocumentTypeDefinition.getFeature): New method.
51            (ManakaiDOMDocumentTypeDefinition.nodeType,
52            ManakaiDOMDocumentTypeDefinition.textContent): New attributes.
53            (DocumentTypeDeclaration): New interface.
54    
55            * Tree.dis (Node/@f:implements): Typos fixed.
56            (Node.MUErrorHandler): Missing |last A| statement is added.
57            (createDocumentType): Throws an exception if |qualifiedName|
58            is illegal.  Calls |DocumentTypeDefinition.newObject|
59            instead of obsolete |DocumentType.newObject|.
60    
61            * DOMXML.dis (DocumentType.name, DocumentType.entities,
62            DocumentType.publicId, DocumentType.systemId,
63            DocumentType.lookupPrefix, DocumentType.getFeature): Now they are defined
64            as clones of similar attributes or methods
65            in |MDOM:XDoctype| module.
66            (DocumentType.newObject): Removed (use |DocumentTypeDefinition.newObject|
67            instead).
68            (DocumentType.childNodes): Removed (|Node.childNodes| definition
69            is used).
70    
71    2006-02-10  Wakaba  <wakaba@suika.fam.cx>
72    
73            * XMLParser.dis (xp:fatal-xml11-end-of-line-in-xml-declaration): New
74            fatal error.
75    
76    2006-02-09  Wakaba  <wakaba@suika.fam.cx>
77    
78            * XMLParser.dis (CommentDeclaration): |STRING| is now
79            defined as a |?default-token|.
80            (XMLTests): Tests for |Char - RestrictedChar| matchness,
81            comment declarations, cdata sections, and |MSE| in |content|
82            added.
83            (XMLTests/PerlDef): Bug fixed: |pop| -> |shift|.
84            (get-location-from-token): |$token->{location_d}|
85            for |?default-token| column counting support added.
86    
87            * DOMCore.dis (c:erred): It is now a |DISCore:OrderedList| property.
88    
89    2006-02-08  Wakaba  <wakaba@suika.fam.cx>
90    
91            * Tree.dis (createProcessingInstruction): Don't
92            throw |MDOMX:MDOM_BAD_NAME| exception if |Document.strictErrorChecking|
93            is |false|.
94    
95            * XMLParser.dis (parseString): Initializes |$self->{location}|.
96            It enables improved error position report.
97            (XDO): It now includes |S+| following target name |xml| as
98            part of the token.  (PI with target starting with |xml|
99            was unable to be placed at the beginning of the document entity.)
100            (_ProcessingInstruction, _ProcessingInstructionDTD): Creates
101            a processing instruction node with |#INVALID| node name
102            if target name is not given and recovered from the error.
103            (S): Variable |$s| added.
104            (XMLTests): Tests for XML declarations and processing
105            instructions are added.  Prints error type name if unexpected
106            error with severity of error or fatal error has been reported.
107            Catch unexpected exceptions thrown in parser (different
108            from |LSException|), prints its message, and invoke |$test->not_ok|
109            for the ease of testing.
110            (xp:get-location-from-token): Location values now take |$self->{char}|
111            stack into acount.
112            
113    2006-02-08  Wakaba  <wakaba@suika.fam.cx>
114    
115            * XMLParser.dis (shiftChar): Line and column number counting
116            is fixed.  Although the DOM Level 3 Core specification
117            is unclear about whether the first number is zero or one,
118            in most programs the first line is "one" and
119            the first column is "one", manakai follows the practice.
120            (_XMLDeclaration): Don't set |xmlStandalone| value
121            if |standalone| pseudo-attribute value is |no|.  XML declaration
122            tests (successful cases) added.
123            (xp:get-location-from-token): Sets |lineNumber| and |columnNumber|
124            properties.
125    
126    2006-02-08  Wakaba  <wakaba@suika.fam.cx>
127    
128            * XMLParser.dis (XMLTests): Tests for |c:erred| is supported.
129    
130    2006-02-06  Wakaba  <wakaba@suika.fam.cx>
131    
132            * DOMCore.dis (c:erred): New property.
133            (c:DOMErrorType): It should have been a subset
134            of |ecore:AnyErrorCode|.
135    
136            * XMLParser.dis (XMLTests): Empty input tests added.
137    
138    2006-01-30  Wakaba  <wakaba@suika.fam.cx>
139    
140            * XDoctype.dis (d:Feature): New canonical feature
141            name |fe:XDoctype| is added.
142    
143            * XMLParser.dis: Predefined general entity references
144            are implemented.  Creates |Entity| nodes from general entities
145            declared in internal subset.  |Entity| nodes created from internal
146            general parsed entities now have replacement tree.
147            Sets |cfg:entity-reference-read-only| flag off during
148            the tree generation.  Some parsing rules use |$self->{doc}|
149            rather than |$doc| parameter.  Similarly, |$self->{docx}| (document
150            node with |fe:XDoctype| feature) and |$self->{dtdef}| are
151            introduced.  General entity references in attribute value literal
152            are supported.
153    
154    2006-01-29  Wakaba  <wakaba@suika.fam.cx>
155    
156            * Tree.dis (ManakaiDOM:entity-reference-read-only): Configuration
157            parameter name changed to |cfg:entity-reference-read-only|.
158            (createEntityReference): Set |c:read-only| flag of
159            the created entity reference, too.
160    
161            * DOMLS.dis (min): New canonical feature name |fe:Min| added.
162    
163            * GenericLS.dis: Don't refer |DOMMain:DOMString|; use |f:MIString|
164            from |DOMFeature| module instead.  Use |idl:Object|
165            instead of |DOMMain:DOMObject| as well.
166            (Generic): New canonical feature name |fe:GenericLS| added.
167            (DOMLS:ParserRole, DOMLS:SerializerRole): Their
168            canonical name changed to |gls:ParserRole| and |gls:SerializerRole|
169            respectively.
170    
171            * DOMXML.dis (entities, notations): Perl code removed.
172            It will be reimplemented using |DocumentTypeDefinition|
173            class from |XDoctype| module.
174    
175            * DOMFeature.dis, DOMCore.dis, DOMMain.dis, DOMXML.dis,
176            Tree.dis, DOMLS.dis, GenericLS.dis, ManakaiDOMLS2003.dis,
177            SimpleLS.dis: Cleaned up unused definitions.
178    
179            * DOMCore.dis, DOMLS.dis (CParam): Definitions
180            for LS module moved from |DOMCore| module to |DOMLS| module.
181            This change makes |DOMCore| to |DOMLS| dependency removed.
182    
183            * .cvsignore (.html.pm, .ls.pm): Removed.
184    
185            * Makefile (.html.pm, .ls.pm): Removed.
186            (feature.dae): Include |GenericLS| module.
187            (core.dae): Don't include |DOMLS| and |GenericLS| module.
188            (ls.dae): Include |DOMLS| module.
189    
190    2006-01-29  Wakaba  <wakaba@suika.fam.cx>
191    
192            * XMLParser.dis: Tests on default attributes and their |specified|
193            attribute are added.
194    
195            * XDoctype.dis (createGeneralEntity): New method.
196            (generalEntities): New attribute.
197            (getGeneralEntityNode, setGeneralEntityNode): New methods.
198    
199            * Tree.dis (ManakaiDOMEntities): Removed.
200            (ManakaiDOMEntityMap): New class.
201            (ManakaiDOM:entity-reference-read-only): New configuration parameter.
202            (createEntityReference): If there is a corresponding |Entity|
203            node in the document type definition, then copies its
204            subtree.
205    
206            * DOMXML.dis (Entity): Documentation updated.
207            (publicId, systemId, notationName, xmlEncoding,
208            xmlVersion): These attributes are now settable
209            if |ManakaiDOM:ManakaiDOMLatest| mode.
210            (hasReplacementTree): New attribute for |ManakaiDOM:ManakaiDOMLatest|
211            mode.
212            (ownerDocumentTypeDefinition): New attribute
213            for |ManakaiDOM:ManakaiDOMLatest| mode.
214            (isExpanded): New attribute for |ManakaiDOM:ManakaiDOMLatest| mode.
215    
216    2006-01-28  Wakaba  <wakaba@suika.fam.cx>
217    
218            * DOMCore.dis (ErrDef): Missing |ecore:textFormatter| property added.
219    
220            * DOMMain.dis (ErrDef): Missing |ecore:textFormatter| property added.
221    
222            * Tree.dis (ErrDef): Missing |ecore:textFormatter| property added.
223            (ManakaiDOMAttributes): Removed.
224            (ManakaiDOMAttrMap): New class.
225            (ManakaiDOMAttrMapArray): New class.
226            (namespaceURI): Bug to return a string representation
227            of a reference to the namespace URI string is fixed.
228            (selectAttrNodeObject, selectAttrNodeObjectNodeNS): Reimplemented.
229            (removeAttribute, removeAttributeNS): DTD default attributes
230            are supported.  Don't throw |NO_MODIFICATION_ALLOWED_ERR|
231            if there is no attribute node.
232            (createElement, createElementNS): DTD default attributes are supported.
233            (setAttributeNode): Reimplemented.
234    
235    2006-01-27  Wakaba  <wakaba@suika.fam.cx>
236    
237            * DOMCore.dis (ManakaiDOMDTDTypeInfo): New class.
238    
239            * Tree.dis (STORESIZE): Index bound bug fixed.
240            (Attr.value): Redefined to consist with |AttributeDefinition.nodeValue|.
241            (schemaTypeInfo): Implemented for XML DTD.
242            (isId): Returns |true| if [attribute type] is |ID|.
243            (setAttribute, setAttributeNS): Sets [attribute type]
244            of the newly created |Attr| node (if any) when attribute
245            definition is available.
246            (doctype, documentElement): Reimplemented with tests.
247    
248            * XMLParser.dis: Sets [attribute type] information
249            to created |Attr| nodes.  Normalize namespace URIs
250            when such information are available (unlikely but legal).
251            (_HexadecimalCharacterReference): Number to character
252            convertion bug fixed.
253            (_DocumentTypeDeclaration): Sets |schema-type|
254            configuration parameter to XML DTD URI.
255    
256    2006-01-26  Wakaba  <wakaba@suika.fam.cx>
257    
258            * XMLParser.dis (_AttlistDeclaration): Now it can generate
259            attribute definition nodes.
260    
261            * XDoctype.dis: |UNKNOWN_ATTR| is renamed as |NO_TYPE_ATTR|
262            and another |UNKNOWN_ATTR| constant is introduced
263            for consistency with XML Infoset.
264    
265            * DOMCore.dis (TypeInfo): Documentation updated.
266    
267    2006-01-26  Wakaba  <wakaba@suika.fam.cx>
268    
269            * XDoctype.dis: A bug in test code fixed.
270    
271            * Tree.dis (NamedNodeMap): Element type or attribute
272            definition named node maps now can be dereferenced
273            as if they are array or hash references.
274            (removeNamedItem, item, ___report_error): Implemented for element type
275            or attribute definitions.
276            (length): Tests added.
277            (NamedNodeMapArray): New classes.
278    
279    2006-01-25  Wakaba  <wakaba@suika.fam.cx>
280    
281            * XDoctype.dis (setElementTypeDefinitionNode,
282            setAttributeDefinitionNode): Throws |c:INUSE_DEFINITION_ERR|
283            if the new node is already used for another definition.
284            (DocumentTypeDefinition, ElementTypeDefinition): Node
285            property name was incorrect.
286            (elementTypes, attributeDefinitions): Checks to
287            ensure the collection is empty added.
288    
289            * Tree.dis: Property name typos fixed.
290            (setNamedItem, setAttributeNode): Don't return any node
291            if it replace itself.
292            (c:userDeterminedId): Missing definition added.
293    
294            * DOMXML.dis (Notation): Missing property specification
295            of|c:ownerDocument| as |mn:xrefnode0| is added.
296    
297    2006-01-23  Wakaba  <wakaba@suika.fam.cx>
298    
299            * DOMCore.dis (Test): Missing argument added.
300            (setNamedItem): If |DocumentType| with no |ownerDocument|,
301            addition always fails with |WRONG_DOCUMENT_ERR|.  Some
302            error conditions were incorrect.
303    
304            * .cvsignore: Dummy files added.
305    
306    2006-01-22  Wakaba  <wakaba@suika.fam.cx>
307    
308            * DOMCore.dis (NO_NAMED_NODE_ERR, NO_NAMED_NODE_NS_ERR,
309            INUSE_DEFINITION_ERR, NO_NS_NAMEDNODEMAP_ERR): New error subtypes.
310    
311            * DOMMain.dis (ensureXMLName): Checks definesness of |$XMLVERSION|
312            to avoid uninitialized value warning.
313    
314            * Tree.dis (ManakaiDOMElementTypeDefMap, ManakaiDOMAttrDefMap): New
315            classes (work in progress).
316    
317            * XDoctype.dis (elementTypes, attributeDefinitions): New attributes.
318    
319    2006-01-22  Wakaba  <wakaba@suika.fam.cx>
320    
321            * Tree.dis (getAttribute): Returns |null| if there
322            is no attribute in |ManakaiDOM:DOMLatest| for compatibility
323            with Web browser implementations.
324            (getAttributeNS): It returned |null| if there
325            is no attribute in any |For| unintentionally.  It now
326            returns an empty string in DOM levels less than or equals
327            to three.
328    
329            * XMLParser.dis (shiftChar): Fixed not to be warned as
330            uninitialized value or substring out of range.
331    
332    2006-01-21  Wakaba  <wakaba@suika.fam.cx>
333    
334            * DOMXML.dis (DocumentType.childNodes): Removed
335            from |ManakaiDOM:ManakaiDOMLatest| variant.
336    
337            * XMLParser.dis: Parsing of general internal entities implemented.
338            (_DocumentTypeDeclaration): Appends a document type definition
339            node to the document.
340            (_ProcessingInstructionDTD): Appends a processing
341            instruction node to the document type definition.
342            (Element_): Document element could not be an |EmptyElemTag|.
343    
344    2006-01-21  Wakaba  <wakaba@suika.fam.cx>
345    
346            * DOMFeature.dis (featuresParamToFeaturesHash): New block
347            code (seprated from |InputProcessor|).  Now
348            a |features| parameter's version can be specified by
349            an array reference that contains a set of version
350            numbers.  A test added.
351    
352            * XMLParser.dis: A test added.
353    
354    2006-01-07  Wakaba  <wakaba@suika.fam.cx>
355    
356            * DOMCore.dis (Test): Don't invoke |DESTROY| method
357            because it does not work with dummy object used in the test code.
358    
359    2006-01-07  Wakaba  <wakaba@suika.fam.cx>
360    
361            * DOMMain.dis (checkXMLNamesQName): Checks whether
362            namespace URI is defined for not being warned.
363    
364            * XDoctype.dis: New module.
365    
366            * DOMCore.dis (DOMStringList): Test added.
367    
368            * Makefile: |XDoctype.pm| added.
369    
370            * Tree.dis (Require): Requires |XDoctype.dis|.
371            (ManakaiDOMNodeObjectNode.eq): Added.
372            (Test): |DOMError.location| must return a |DOMLocator|
373            object (it was incorrectly tested to return |null|).
374            (EmptyNodeList.DESTROY): Removed.
375    
376    2006-01-04  Wakaba  <wakaba@suika.fam.cx>
377    
378            * Tree.dis (NodeType): |ELEMENT_TYPE_DEFINITION_NODE| and
379            |ATTRIBUTE_DEFINITION_NODE| node types added.
380            (appendChild, insertBefore, replaceChild): New
381            two node types added and processing instruction nodes
382            as document type definition node child is allowed
383            in |ManakaiDOM:ManakaiDOMLatest| mode.
384            (getNodeReference): New |interface| parameter
385            to filter classes by interface is added.
386            (ElementTypeDefinitionRole): New role.
387            (AttributeDefinitionRole): New role.
388    
389    2006-01-02  Wakaba  <wakaba@suika.fam.cx>
390    
391            * DOMCore.dis (DOMStringList): Reimplemented as tied array.
392    
393    2005-12-31  Wakaba  <wakaba@suika.fam.cx>
394    
395            * DOMCore.dis (DOMError.location): Returns an empty |DOMLocator|
396            if it is not provided.
397    
398            * XMLParser.dis: Parsing methods to skip document
399            type declaration is added.
400    
401    2005-12-29  Wakaba  <wakaba@suika.fam.cx>
402    
403            * XMLParser.dis (shiftChar): Checks characters are legal
404            or not.  Normalize end-of-lines.
405            (rule _XMLDeclaration_): Implemented.
406            (WFErrDef): Well-formedness error |wf-syntax-error|,
407            |wf-pi-target-is-xml|, |wf-no-end-tag|,
408            |wf-unsupported-xml-version|, |wf-malformed-enc-name|,
409            |wf-malformed-xml-standalone|, |wf-legal-literal-character|,
410            |wf-element-type-match|, |wf-unique-att-spec|,
411            |wf-legal-character| added.
412            (%character-code-point): New formatter rule.
413    
414            * Tree.dis (Document.xmlEncoding): It is now read-write attribute.
415    
416            * DOMCore.dis (DOMError.stringify): Added.
417            (error-handler.default): Returns |false| (don't continue)
418            when the error severity is |SEVERITY_FATAL_ERROR|.
419    
420    2005-12-28  Wakaba  <wakaba@suika.fam.cx>
421    
422            * XMLParser.dis (DocumentEntity): Typos fixed.
423            (|lexmode|s): New |?default-token| statements are used
424            so that tokenizer description has been simplified
425            and CDATA sections now can be parsed.
426    
427    2005-12-28  Wakaba  <wakaba@suika.fam.cx>
428    
429            * XMLParser.dis: Some modifications made.
430    
431    2005-12-27  Wakaba  <wakaba@suika.fam.cx>
432    
433            * DOMLS.dis (PARSE_ERR, SERIALIZE_ERR): They are now a
434            global named resource.
435    
436            * Makefile: Rules to make |XMLParser.pm| is added.
437    
438            * XMLParser.dis: New file.
439    
440    2005-12-24  Wakaba  <wakaba@suika.fam.cx>
441    
442            * DOMCore.dis (ManakaiDOMError._FORMATTER_PACKAGE_): Error
443            message formatter can now vary by error types.
444            (DOMLocator.utf32Offset): New (manakai extended) attribute.
445    
446    2005-12-23  Wakaba  <wakaba@suika.fam.cx>
447    
448            * DOMCore.dis (DOMLocator): Implemented.
449    
450    2005-12-21  Wakaba  <wakaba@suika.fam.cx>
451    
452            * DOMCore.dis (DOMConfigurationParameterApplication,
453            domConfigurationParameter): New resources.
454    
455    2005-11-25  Wakaba  <wakaba@suika.fam.cx>
456    
457            * Tree.dis (NodeList.___report_error, NamedNodeMap.___report_error):
458            New methods.
459    
460    2005-11-24  Wakaba  <wakaba@suika.fam.cx>
461    
462            * DOMMain.dis, DOMLS.dis, DOMXML.dis, Tree.dis: Old |__WARNING__|
463            blocks are replaced by |DOMError|-based |__DOMCore:ERROR__| blocks.
464    
465            * DOMMain.dis (___report_error): Throws the error unkess
466            it is a |DOMCore:DOMError| object.
467            
468    2005-11-24  Wakaba  <wakaba@suika.fam.cx>
469    
470            * DOMCore.dis (severity, type): Getters return value from
471            the definition of the current error (i.e. |-def| hash).
472            (___error_def): New method.
473            (errorType): |dis:dataType| changed to |DISCore:TFQNames|
474            to ease natural reference to constant value.
475            (error-handler.default): Prints the error message by |warn|.
476    
477            * Tree.dis (nodeValue.set): Reimplemented so that it
478            warns as setting has no effect.
479            (___report_error): New method.  (It had been only implemented
480            in superclass.)
481            (setting-node-value-no-effect): New error type.
482    
483    2005-11-23  Wakaba  <wakaba@suika.fam.cx>
484    
485            * DOMCore.dis: Error codes added.
486    
487            * Tree.dis (destroyNodeStem): New method implementation.
488    
489    2005-11-22  Wakaba  <wakaba@suika.fam.cx>
490    
491            * Tree.dis (cloneNode): User data handlers implemented.
492            (adoptNode): User data handlers implemented.
493            
494    2005-11-21  Wakaba  <wakaba@suika.fam.cx>
495    
496            * DOMCore.dis (UserDataHandler): A constraint for Perl binding
497            added.
498    
499            * Tree.dis (cloneNode): Invoking of |UserDataHandler|s are implemented.
500            (getUserData, setUserData): Implemented.
501    
502    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
503    
504            * DOMCore.dis (UserDataHandler): Implemented.
505            (DOMErrorHandler): Blessed package name bug fixed.
506    
507            * ManakaiDOMLS2003.dis: Reference to |Node| subclasses
508            changed to |Tree.dis|.
509            
510    2005-11-20  Wakaba  <wakaba@suika.fam.cx>
511    
512            * DOMMain.dis: Unused declarations and definitions removed.
513    
514            * DOMCore.dis: DOM document tree related interfaces removed.
515    
516            * Tree.dis: New module separated from |DOMCore.dis|.
517    
518            * DOMXML.dis: Some referent changed to |Tree.dis|.
519    
520            * Makefile: |Tree.dis| added.
521    
522    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
523    
524            * .cvsignore: Revised.
525            
526    2005-11-16  Wakaba  <wakaba@suika.fam.cx>
527    
528            * ManakaiDOMLS2003.dis: Tests added.
529            (domConfig): Method name in the code fixed to |flag|.
530    
531            * DOMMain.dis (findOffset32): Missing |^| in regular expressions
532            added.
533    
534            * DOMCore.dis (hasChildNodes): Returns |false| if the node type
535            is defined not to have any children.
536            (CharacterData): Typos in element type names and function names fixed.
537    
538  2005-11-15  Wakaba  <wakaba@suika.fam.cx>  2005-11-15  Wakaba  <wakaba@suika.fam.cx>
539    
540          * DOMFeature.dis (MinimumImplementation.eq): Added.          * DOMFeature.dis (MinimumImplementation.eq): Added.

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.123

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24