Remove CVS expansions
authorJakub Skoczen <jakub@indexdata.dk>
Wed, 25 Jul 2012 09:06:32 +0000 (11:06 +0200)
committerJakub Skoczen <jakub@indexdata.dk>
Wed, 25 Jul 2012 09:06:32 +0000 (11:06 +0200)
48 files changed:
Build
Changes
Makefile
README
archive/chris-hubick/README
bin/CQLGenerator
bin/CQLLexer
bin/CQLParser
docs/Makefile
etc/generate.properties
etc/pqf.properties
etc/xslt/README
lib/README
spec/bnf
src/main/java/org/z3950/zing/cql/CQLAndNode.java
src/main/java/org/z3950/zing/cql/CQLBooleanNode.java
src/main/java/org/z3950/zing/cql/CQLGenerator.java
src/main/java/org/z3950/zing/cql/CQLLexer.java
src/main/java/org/z3950/zing/cql/CQLNode.java
src/main/java/org/z3950/zing/cql/CQLNotNode.java
src/main/java/org/z3950/zing/cql/CQLOrNode.java
src/main/java/org/z3950/zing/cql/CQLParseException.java
src/main/java/org/z3950/zing/cql/CQLParser.java
src/main/java/org/z3950/zing/cql/CQLPrefix.java
src/main/java/org/z3950/zing/cql/CQLPrefixNode.java
src/main/java/org/z3950/zing/cql/CQLProxNode.java
src/main/java/org/z3950/zing/cql/CQLRelation.java
src/main/java/org/z3950/zing/cql/CQLSortNode.java
src/main/java/org/z3950/zing/cql/CQLTermNode.java
src/main/java/org/z3950/zing/cql/Makefile
src/main/java/org/z3950/zing/cql/MissingParameterException.java
src/main/java/org/z3950/zing/cql/Modifier.java
src/main/java/org/z3950/zing/cql/ModifierSet.java
src/main/java/org/z3950/zing/cql/PQFTranslationException.java
src/main/java/org/z3950/zing/cql/UnknownIndexException.java
src/main/java/org/z3950/zing/cql/UnknownPositionException.java
src/main/java/org/z3950/zing/cql/UnknownRelationException.java
src/main/java/org/z3950/zing/cql/UnknownRelationModifierException.java
test/random/Makefile
test/random/README
test/random/mkrandom
test/regression/Makefile
test/regression/README
test/regression/mkanswers
test/regression/mktests
test/regression/runcanon
test/regression/runtests
test/regression/showtest

diff --git a/Build b/Build
index 2c2f550..87facee 100755 (executable)
--- a/Build
+++ b/Build
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-# $Id: Build,v 1.2 2002-11-20 17:20:11 mike Exp $
 
 : ${MAKE=make}
 for dir in src/main/java/org/z3950/zing/cql test/regression docs; do
diff --git a/Changes b/Changes
index c182200..2a0ee39 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,3 @@
-$Id: Changes,v 1.46 2008-05-28 10:03:53 mike Exp $
 
 Revision history for the CQL-Java package.
 See the bottom of this file for a list of things still to do.
index 2836ab6..0308585 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-# $Id: Makefile,v 1.1 2002-11-17 23:29:55 mike Exp $
 
 **make-default**:
        ./Build
diff --git a/README b/README
index eea8b25..0120033 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,3 @@
-$Id: README,v 1.24 2007-06-07 16:04:50 mike Exp $
 
 CQL-Java - a free CQL compiler, and other CQL tools, for Java
 
index b7292e5..35021e4 100644 (file)
@@ -1,4 +1,3 @@
-$Id: README,v 1.1 2005-08-29 15:15:02 mike Exp $
 
 This directory contains a substantial rewrite of CQL-Java v0.7
 as supplied by Chris Hubick on 22nd August 2005.  I don't think
index 97c2765..55de086 100755 (executable)
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-# $Id: CQLGenerator,v 1.1 2002-11-02 01:24:41 mike Exp $
 # Trivial script to invoke the CQLGenerator test-harness
 
 java org.z3950.zing.cql.CQLGenerator ${@+"$@"}
index 4967738..c07e566 100755 (executable)
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-# $Id: CQLLexer,v 1.2 2002-11-01 23:45:28 mike Exp $
 # Trivial script to invoke the CQLLexer test-harness
 
 java org.z3950.zing.cql.CQLLexer ${@+"$@"}
index 3147d85..26a52b1 100755 (executable)
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-# $Id: CQLParser,v 1.2 2002-11-01 23:45:28 mike Exp $
 # Trivial script to invoke the CQLParser test-harness
 
 java org.z3950.zing.cql.CQLParser ${@+"$@"}
index a61ae53..36ce6b8 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: Makefile,v 1.2 2007-06-06 13:20:44 mike Exp $
 
 all: overview-tree.html
 
index 0494623..409f872 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: generate.properties,v 1.2 2002-11-03 16:49:38 mike Exp $
 #
 # Propeties file to drive the org.z3950.zing.cql.CQLGenerator
 # test-harness.  See that class's documentation for the semantics of
index 6de0172..2448482 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: pqf.properties,v 1.9 2003-12-18 13:17:16 mike Exp $
 #
 # Propeties file to drive org.z3950.zing.cql.CQLNode's toPQF()
 # back-end.  This specifies the interpretation of various CQL
index b6918eb..0ee649f 100644 (file)
@@ -1,4 +1,3 @@
-$Id: README,v 1.2 2007-06-06 14:38:25 mike Exp $
 
 The XSLT files in this directory are supposed to allow you to make
 a thin-client for SRU using only an XSLT-enabled web browser.  It
index 3bc0875..fdfdab7 100644 (file)
@@ -1,4 +1,3 @@
-$Id: README,v 1.2 2002-12-09 16:29:44 mike Exp $
 
 The library file "cql-java.jar" will appear here when you do a build
 in ../src/org/z3950/zing/cql.  Put it on your CLASSPATH to use the
index 616fa07..a49a5aa 100644 (file)
--- a/spec/bnf
+++ b/spec/bnf
@@ -1,4 +1,3 @@
-$Id: bnf,v 1.1 2007-06-27 23:36:19 mike Exp $
 
 Sort of derived from http://www.loc.gov/standards/sru/cql/
 
index a1ebf76..7e39669 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLAndNode.java,v 1.9 2007-06-29 12:48:21 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,7 +5,6 @@ package org.z3950.zing.cql;
 /**
  * Represents an AND node in a CQL parse-tree.
  *
- * @version    $Id: CQLAndNode.java,v 1.9 2007-06-29 12:48:21 mike Exp $
  */
 public class CQLAndNode extends CQLBooleanNode {
     /**
index 06a9bc9..18c0bff 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLBooleanNode.java,v 1.18 2007-07-03 16:03:00 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.List;
@@ -7,7 +6,6 @@ import java.util.Properties;
 /**
  * Represents a boolean node in a CQL parse-tree.
  *
- * @version    $Id: CQLBooleanNode.java,v 1.18 2007-07-03 16:03:00 mike Exp $
  */
 public abstract class CQLBooleanNode extends CQLNode {
 
index 8d02022..77e4fce 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLGenerator.java,v 1.9 2007-07-03 15:41:35 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.Properties;
@@ -22,7 +21,6 @@ import java.io.FileNotFoundException;
  * this distribution - there is a <TT>generate_<I>x</I>()</TT> method
  * for each grammar element <I>X</I>.
  *
- * @version    $Id: CQLGenerator.java,v 1.9 2007-07-03 15:41:35 mike Exp $
  * @see                <A href="http://zing.z3950.org/cql/index.html"
  *                     >http://zing.z3950.org/cql/index.html</A>
  */
index 24dd241..e53a082 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLLexer.java,v 1.14 2007-07-03 13:30:42 mike Exp $
 
 package org.z3950.zing.cql;
 import java.io.InputStream;
index fa263ae..8e24cf3 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLNode.java,v 1.26 2007-07-03 13:36:03 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.HashMap;
@@ -11,7 +10,6 @@ import java.util.Properties;
 /**
  * Represents a node in a CQL parse-tree.
  *
- * @version    $Id: CQLNode.java,v 1.26 2007-07-03 13:36:03 mike Exp $
  */
 public abstract class CQLNode {
 
index 90346f4..4f3814c 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLNotNode.java,v 1.9 2007-06-29 12:48:21 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,7 +5,6 @@ package org.z3950.zing.cql;
 /**
  * Represents a NOT node in a CQL parse-tree.
  *
- * @version    $Id: CQLNotNode.java,v 1.9 2007-06-29 12:48:21 mike Exp $
  */
 public class CQLNotNode extends CQLBooleanNode {
     /**
index 67a292d..92c9dfa 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLOrNode.java,v 1.9 2007-06-29 12:48:21 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,7 +5,6 @@ package org.z3950.zing.cql;
 /**
  * Represents an OR node in a CQL parse-tree.
  *
- * @version    $Id: CQLOrNode.java,v 1.9 2007-06-29 12:48:21 mike Exp $
  */
 public class CQLOrNode extends CQLBooleanNode {
     /**
index ceb97de..ff1423f 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLParseException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,7 +5,6 @@ package org.z3950.zing.cql;
 /**
  * Exception indicating that an error ocurred parsing CQL.
  *
- * @version    $Id: CQLParseException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
  */
 public class CQLParseException extends Exception {
     private int pos;
index 62a51b6..2509563 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLParser.java,v 1.39 2007-08-06 15:54:48 mike Exp $
 
 package org.z3950.zing.cql;
 import java.io.IOException;
@@ -15,7 +14,6 @@ import java.util.List;
 /**
  * Compiles CQL strings into parse trees of CQLNode subtypes.
  *
- * @version    $Id: CQLParser.java,v 1.39 2007-08-06 15:54:48 mike Exp $
  * @see                <A href="http://zing.z3950.org/cql/index.html"
  *                     >http://zing.z3950.org/cql/index.html</A>
  */
index cb3043f..64ed961 100644 (file)
@@ -1,11 +1,9 @@
-// $Id: CQLPrefix.java,v 1.5 2007-06-27 22:39:55 mike Exp $
 
 package org.z3950.zing.cql;
 
 /**
  * Represents a CQL prefix mapping from short name to long identifier.
  *
- * @version    $Id: CQLPrefix.java,v 1.5 2007-06-27 22:39:55 mike Exp $
  */
 public class CQLPrefix {
 
index 656f6e6..d3f6b74 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLPrefixNode.java,v 1.10 2007-07-03 16:40:11 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.ArrayList;
@@ -9,7 +8,6 @@ import java.util.Properties;
 /**
  * Represents a prefix node in a CQL parse-tree.
  *
- * @version    $Id: CQLPrefixNode.java,v 1.10 2007-07-03 16:40:11 mike Exp $
  */
 public class CQLPrefixNode extends CQLNode {
 
index 9f1f0c3..35f1781 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLProxNode.java,v 1.14 2007-06-29 12:53:03 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -9,7 +8,6 @@ package org.z3950.zing.cql;
  * candidate records which are sufficiently close to each other, as
  * specified by a set of proximity parameters.
  *
- * @version    $Id: CQLProxNode.java,v 1.14 2007-06-29 12:53:03 mike Exp $
  */
 public class CQLProxNode extends CQLBooleanNode {
     /**
index 4e9fd27..716a1e9 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLRelation.java,v 1.19 2007-07-03 13:40:58 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.List;
@@ -7,7 +6,6 @@ import java.util.Properties;
 /**
  * Represents a relation between a CQL index and term.
  *
- * @version    $Id: CQLRelation.java,v 1.19 2007-07-03 13:40:58 mike Exp $
  */
 public class CQLRelation extends CQLNode {
     ModifierSet ms;
index 68a4ea9..96a93e8 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLSortNode.java,v 1.2 2008-04-11 12:05:15 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.ArrayList;
@@ -9,7 +8,6 @@ import java.util.Properties;
 /**
  * Represents a sort node in a CQL parse-tree.
  *
- * @version    $Id: CQLSortNode.java,v 1.2 2008-04-11 12:05:15 mike Exp $
  */
 public class CQLSortNode extends CQLNode {
     /**
index dfd0e63..a6e1772 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: CQLTermNode.java,v 1.28 2007-07-03 13:41:24 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.ArrayList;
@@ -12,7 +11,6 @@ import java.util.Properties;
  * these must be provided - you can't have an index without a
  * relation or vice versa.
  *
- * @version    $Id: CQLTermNode.java,v 1.28 2007-07-03 13:41:24 mike Exp $
  */
 public class CQLTermNode extends CQLNode {
     private String index;
index c318cc0..9470de2 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: Makefile,v 1.18 2007-07-03 12:56:29 mike Exp $
 #
 # Your Java compiler will require that this source directory is on the
 # classpath.  The best way to do that is just to add the CQL-Java
index 07873b8..c953e42 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,7 +5,6 @@ package org.z3950.zing.cql;
 /**
  * Exception indicating that a required property was not specified.
  *
- * @version    $Id: MissingParameterException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
  */
 public class MissingParameterException extends Exception {
     /**
index 91d3a17..71232e9 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: Modifier.java,v 1.4 2007-07-03 13:29:34 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -10,7 +9,6 @@ package org.z3950.zing.cql;
  * <P>
  * This class is used only by ModifierSet.
  *
- * @version $Id: Modifier.java,v 1.4 2007-07-03 13:29:34 mike Exp $
  */
 public class Modifier {
     String type;
index 7eb965f..da94b8c 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: ModifierSet.java,v 1.13 2007-07-03 13:30:18 mike Exp $
 
 package org.z3950.zing.cql;
 import java.util.ArrayList;
@@ -15,7 +14,6 @@ import java.util.List;
  * zero or more <I>type</I> <I>comparison</I> <I>value</I> pairs,
  * where type, comparison and value are all strings.
  *
- * @version $Id: ModifierSet.java,v 1.13 2007-07-03 13:30:18 mike Exp $
  */
 public class ModifierSet {
     private String base;
index 0272e84..f0d7dc2 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: PQFTranslationException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -6,7 +5,6 @@ package org.z3950.zing.cql;
 /**
  * Base class for exceptions occurring when translating parse trees to PQF.
  *
- * @version $Id: PQFTranslationException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
  */
 public class PQFTranslationException extends Exception {
     PQFTranslationException(String s) {
index 7eabe75..01dce00 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: UnknownIndexException.java,v 1.2 2007-06-27 22:44:40 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -11,7 +10,6 @@ package org.z3950.zing.cql;
  * that, because the PQF configuration doesn't know about a relation,
  * we throw one of these babies.
  *
- * @version $Id: UnknownIndexException.java,v 1.2 2007-06-27 22:44:40 mike Exp $
  */
 public class UnknownIndexException extends PQFTranslationException {
     /**
index f1fc9f3..649a7d0 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: UnknownPositionException.java,v 1.2 2002-11-29 16:42:54 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -13,7 +12,6 @@ package org.z3950.zing.cql;
  * configuration.  If the position is not configured, we throw one of
  * these babies.
  *
- * @version $Id: UnknownPositionException.java,v 1.2 2002-11-29 16:42:54 mike Exp $
  */
 public class UnknownPositionException extends PQFTranslationException {
     /**
index 11cedb7..3a665d9 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: UnknownRelationException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -11,7 +10,6 @@ package org.z3950.zing.cql;
  * that, because the PQF configuration doesn't know about a relation,
  * we throw one of these babies.
  *
- * @version $Id: UnknownRelationException.java,v 1.2 2002-11-06 20:13:45 mike Exp $
  */
 public class UnknownRelationException extends PQFTranslationException {
     /**
index 8025eb9..2d3d6f2 100644 (file)
@@ -1,4 +1,3 @@
-// $Id: UnknownRelationModifierException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
 
 package org.z3950.zing.cql;
 
@@ -11,7 +10,6 @@ package org.z3950.zing.cql;
  * that, because the PQF configuration doesn't know about a relation modifier,
  * we throw one of these babies.
  *
- * @version $Id: UnknownRelationModifierException.java,v 1.1 2002-11-06 20:13:45 mike Exp $
  */
 public class UnknownRelationModifierException extends PQFTranslationException {
     /**
index d8f6a80..d3e1421 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: Makefile,v 1.2 2007-06-07 16:16:15 mike Exp $
 
 all: ../../target/cql-java-1.8.jar
        PATH=$(PATH):../../bin CLASSPATH=../../target/cql-java-1.8.jar ./mkrandom 100
index 98e7c7f..586796b 100644 (file)
@@ -1,4 +1,3 @@
-$Id: README,v 1.2 2002-12-09 16:29:44 mike Exp $
 
 In this directory, we test the integrity of the CQL-Java tools as
 follows:
index 185f2c3..131e9e7 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/perl -w
 
-# $Id: mkrandom,v 1.2 2002-11-03 17:02:48 mike Exp $
 
 use strict;
 
index 81a3b27..5243e41 100644 (file)
@@ -1,4 +1,3 @@
-# $Id: Makefile,v 1.9 2002-11-28 11:56:55 mike Exp $
 
 XMLCANONICALISER = cat
 # Change this to "./xmlpp.pl" if you want to check for equivalence
index ec2b312..0d7b96b 100644 (file)
@@ -1,4 +1,3 @@
-$Id: README,v 1.8 2007-06-29 13:06:07 mike Exp $
 
 If you just don't want to think about it
 ----------------------------------------
index ca6eefc..16e7dd2 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/perl -w
 
-# $Id: mkanswers,v 1.5 2002-11-21 09:57:28 mike Exp $
 
 use IO::File;
 use strict;
index 41a1500..78057b0 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/perl -w
 
-# $Id: mktests,v 1.3 2002-11-20 22:50:45 mike Exp $
 
 use IO::File;
 use strict;
index 9c07e33..46d6a93 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/perl -w
 
-# $Id: runcanon,v 1.1 2007-06-29 13:05:12 mike Exp $
 #
 # Tests that all sample queries can be rendered into idempotent
 # canoncial form.
index 1630be9..c12cd3c 100755 (executable)
@@ -1,6 +1,5 @@
 #!/usr/bin/perl -w
 
-# $Id: runtests,v 1.12 2007-07-03 15:53:52 mike Exp $
 
 use IO::File;
 use strict;
index a55c143..0154d9d 100755 (executable)
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-# $Id: showtest,v 1.6 2002-11-28 11:56:55 mike Exp $
 
 if [ $# != 1 ]; then
        echo "Usage: $0 <test-name>" >&2