gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] fenfire/docs/pegboard/vocabprocess--tjl peg.rst


From: Tuomas J. Lukka
Subject: [Gzz-commits] fenfire/docs/pegboard/vocabprocess--tjl peg.rst
Date: Mon, 12 May 2003 09:09:38 -0400

CVSROOT:        /cvsroot/fenfire
Module name:    fenfire
Changes by:     Tuomas J. Lukka <address@hidden>        03/05/12 09:09:38

Modified files:
        docs/pegboard/vocabprocess--tjl: peg.rst 

Log message:
        pegfixes

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/fenfire/fenfire/docs/pegboard/vocabprocess--tjl/peg.rst.diff?tr1=1.6&tr2=1.7&r1=text&r2=text

Patches:
Index: fenfire/docs/pegboard/vocabprocess--tjl/peg.rst
diff -u fenfire/docs/pegboard/vocabprocess--tjl/peg.rst:1.6 
fenfire/docs/pegboard/vocabprocess--tjl/peg.rst:1.7
--- fenfire/docs/pegboard/vocabprocess--tjl/peg.rst:1.6 Mon May 12 08:55:38 2003
+++ fenfire/docs/pegboard/vocabprocess--tjl/peg.rst     Mon May 12 09:09:38 2003
@@ -3,8 +3,8 @@
 =============================================================
 
 :Author:   Tuomas J. Lukka
-:Last-Modified: $Date: 2003/05/12 12:55:38 $
-:Revision: $Revision: 1.6 $
+:Last-Modified: $Date: 2003/05/12 13:09:38 $
+:Revision: $Revision: 1.7 $
 :Status:   Current
 
 It seems that vocabularies are easy to create but difficult
@@ -208,7 +208,7 @@
         * parseable by alph.
         * This is analogous to spreadsheet or zzStructure cell contents.
         */
-       static public Object content;
+       static public final Object content;
     }
 
 CLINK
@@ -223,13 +223,13 @@
        /** The RDF class for content links. An node which is a content link
         * must have both the cLinkFrom and cLinkTo properties.
         */
-       static public Object CLink;
+       static public final Object CLink;
        /** The Alph-parseable enfilade literal of a content link from-end.
         */
-       static public Object cLinkFrom;
+       static public final Object cLinkFrom;
        /** The Alph-parseable enfilade literal of a content link to-end.
         */
-       static public Object cLinkTo;
+       static public final Object cLinkTo;
     }
 
 
@@ -250,11 +250,11 @@
         * Canvases contain (with the "contains" property)
         * nodes, which shall have the "x" and "y" properties.
         */
-       static public Object Canvas2D;
+       static public final Object Canvas;
        /** The property by which the canvas is connected to
         * the nodes, as (canvas, contains, node).
         */
-       static public Object contains;
+       static public final Object contains;
        /** The x and y coordinates of a node on a canvas.
         * (node, x, literal), where the literal is parseable
         * as a floating-point number (similar to Java doubles). 
@@ -263,7 +263,7 @@
         * to define its own coordinate attributes, which would take
         * use close to Ted's floating world ideas.
         */
-       static public Object x, y;
+       static public final Object x, y;
     }
 
 PP
@@ -288,7 +288,7 @@
        /** The directed link association.
         * A and B are linked by the tuple (A, DLINK.dLink, B)
         */
-       static public Object dLink;
+       static public final Object dLink;
     }
 
 
@@ -305,7 +305,7 @@
         * to be Foo 
         * by a triple (node, RDF.type, Foo).
         */
-       static public Object type;
+       static public final Object type;
     }
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]