| |
---|
| | |
---|
| | PROGNAME = "tren.py" |
---|
| | BASENAME = PROGNAME.split(".py")[0] |
---|
| | PROGENV = BASENAME.upper() |
---|
| | RCSID = "$Id: tren.py,v 1.133 2010/02/02 17:41:21 tundra Exp $" |
---|
| | RCSID = "$Id: tren.py,v 1.134 2010/02/02 17:49:53 tundra Exp $" |
---|
| | VERSION = RCSID.split()[2] |
---|
| | |
---|
| | # Copyright Information |
---|
| | |
---|
| |
---|
| | if ProgramOptions["DEBUG"]: |
---|
| | |
---|
| | # Dump what we know about the command line |
---|
| | |
---|
| | DebugMsg(ColumnPad([dCMDLINE, sys.argv])) |
---|
| | DebugMsg(ColumnPad([dPROGENV, os.getenv("TREN")])) |
---|
| | DebugMsg(ColumnPad([dRESOLVEDOPTS, OPTIONS])) |
---|
| | DumpList(DebugMsg, dCMDLINE, "", sys.argv) |
---|
| | DumpList(DebugMsg, dPROGENV, "", envopt) |
---|
| | DumpList(DebugMsg, dRESOLVEDOPTS, "", OPTIONS) |
---|
| | |
---|
| | # Create and populate an object with rename targets. We have to |
---|
| | # do *before* we process any renaming requests because they may make |
---|
| | # reference to renaming tokens that only can be resolved with the |
---|
| |
---|
| | |