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

Legend:
Removed from v.1.86  
changed lines
  Added in v.1.125

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24