Differences From:
File
tools/import-cvs.tcl
part of check-in
[c172959c32]
- Moved the import control code into its own package. The application has been reduced to command line processing and handing over to the new package.
by
aku on
2007-09-08 06:33:23.
[view]
To:
File
tools/import-cvs.tcl
part of check-in
[86a7f249c1]
- Started to restructure the namespace hierarchy, beginning at the bottom, with the log module.
by
aku on
2007-09-09 00:58:18.
[view]
@@ -41,10 +41,10 @@
# -----------------------------------------------------------------------------
# Requirements
package require Tcl 8.4
-package require tools::log ; # User Feedback
-package require import::cvs ; # Importer Control
+package require vc::tools::log ; # User Feedback
+package require import::cvs ; # Importer Control
# -----------------------------------------------------------------------------
proc main {} {
@@ -66,9 +66,9 @@
switch -exact -- $opt {
--nosign { import::cvs::configure -nosign 1 }
--debugcommit { import::cvs::configure -debugcommit 1 }
--stopat { next ; import::cvs::configure -stopat [this] }
- -v { incr verbosity ; ::tools::log::verbosity $verbosity }
+ -v { incr verbosity ; ::vc::tools::log::verbosity $verbosity }
default usage
}
next
}