Diff
Not logged in

Differences From:

File tools/lib/cvs.tcl part of check-in [cdf5e6d8b7] - Encapsulated access to the fossil and cvs applications in their own packages. by aku on 2007-09-13 06:59:24. [view]

To:

File tools/lib/cvs.tcl part of check-in [b504674c5f] - Fixed problems with the untested statistics module. Moved cset <-> uuid map out of cvs to control layer, separate package. Currently not really useful, will be needed when handling cvs branches. Moved some user feedback around, and the import control too. by aku on 2007-09-15 03:18:31. [view]

@@ -321,9 +321,9 @@
 	}
     }
 
     # Provide metadata about the changeset the backend may wish to have
-    return [list $u $cm $s]
+    return [list $u $s $cm]
 }
 
 namespace eval ::vc::cvs::ws {
     # Workspace where checkouts happen
@@ -375,14 +375,8 @@
 
 proc ::vc::cvs::ws::ncsets {} {
     variable ncs
     return  $ncs
-}
-
-proc ::vc::cvs::ws::uuid {c uuid} {
-    variable rtree
-    $rtree set $c uuid $uuid
-    return
 }
 
 # -----------------------------------------------------------------------------
 # Internal helper commands: Changeset inspection and construction.
@@ -477,12 +471,12 @@
 }
 
 namespace eval ::vc::cvs::ws {
     namespace export at scan csets rtree workspace wsignore wsclear wssetup \
-	foreach_cset root ntrunk ncsets uuid
+	foreach_cset root ntrunk ncsets
 }
 
 # -----------------------------------------------------------------------------
 # Ready
 
 package provide vc::cvs::ws 1.0
 return