home *** CD-ROM | disk | FTP | other *** search
- # name change for VCM controlled files
-
- proc BrowserProcs::changeVSFileName {} {
- require "objnamecha.tcl"
- ObjNameChangeDialog new $wmttoolObj.changeName $wmttoolObj \
- -configV "" \
- -keeper "" \
- -item ""
- $wmttoolObj.changeName popUp
- }
-
- # copied from procs.tcl
-
- proc quoteIf {str} {
- if {[llength $str] > 1} {
- return \"$str\"
- }
- return $str
- }
-
-
- # check if specified module is active
-
- proc moduleIsActive {shortName} {
- global globalModuleHandler
- foreach module [$globalModuleHandler moduleSpecSet] {
- if { [$module name] == $shortName } {
- return 1
- }
- }
- return 0
- }
-