Revision: 17700
          http://sourceforge.net/p/gate/code/17700
Author:   markagreenwood
Date:     2014-03-19 09:46:32 +0000 (Wed, 19 Mar 2014)
Log Message:
-----------
removed two lost looking tcl scripts which might have been left over from pre 
GATE 2

Removed Paths:
-------------
    gate/trunk/src/main/gate/util/FindScripts.tcl
    gate/trunk/src/main/gate/util/ScriptsList.tcl

Deleted: gate/trunk/src/main/gate/util/FindScripts.tcl
===================================================================
--- gate/trunk/src/main/gate/util/FindScripts.tcl       2014-03-19 09:11:55 UTC 
(rev 17699)
+++ gate/trunk/src/main/gate/util/FindScripts.tcl       2014-03-19 09:46:32 UTC 
(rev 17700)
@@ -1,37 +0,0 @@
-# FindScripts.tcl
-#
-# lists all the .tcl scripts in the gate/src directory
-#
-# Hamish, 14/3/00 
-# $Id$
-
-
-namespace eval GATE {
-
-  set tclFiles [list]
-
-  proc filter { dir } {
-    global tclFiles
-
-    foreach f [glob -nocomplain ${dir}/*] {
-      if [file isdirectory $f] { filter $f }
-      if [string match {*.tcl} $f] { lappend tclFiles [string range $f 2 end] }
-    }
-  }
-
-  proc findScripts { } {
-    global tclFiles
-
-    # cd to the gate/src directory
-    # assumes that we are in gate or one of its subdirectories when we start
-    set WD [pwd]
-    if { ! [string match "*gate*" $WD] } { error "not in the gate directories" 
}
-    while { [file tail $WD] != "gate" } { cd ..; set WD [pwd] }
-    cd src
-
-    filter {.}
-
-    set tclFiles
-  }
-
-} ;# namespace eval GATE

Deleted: gate/trunk/src/main/gate/util/ScriptsList.tcl
===================================================================
--- gate/trunk/src/main/gate/util/ScriptsList.tcl       2014-03-19 09:11:55 UTC 
(rev 17699)
+++ gate/trunk/src/main/gate/util/ScriptsList.tcl       2014-03-19 09:46:32 UTC 
(rev 17700)
@@ -1,5 +0,0 @@
-# ScriptsList.tcl  ** AUTOGENERATED: DO NOT EDIT **
-namespace eval GATE { set gateScriptsList {
-  gate/util/FindScripts.tcl
-  gate/util/ScriptsList.tcl
-} }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to