Update of /cvsroot/cvsshell/cvsshell/etc
In directory usw-pr-cvs1:/tmp/cvs-serv25500/etc
Modified Files:
cvsshell.ini default-cvsshellrc
Log Message:
* refactoring
* many small improvements
Index: cvsshell.ini
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/etc/cvsshell.ini,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** cvsshell.ini 9 Mar 2002 10:56:20 -0000 1.3
--- cvsshell.ini 10 Mar 2002 23:13:59 -0000 1.4
***************
*** 3,18 ****
?, help = basic_cmds.cmdHelp
cd = basic_cmds.changeDir
! up, upd, update = basic_cmds.update
! refresh = basic_cmds.simulateUpdate
! sr,set-root = basic_cmds.setCvsRoot
! rr,read-root = basic_cmds.readCvsRoot
! cr,clear-root = basic_cmds.clearCvsRoot
! list = basic_cmds.printListing
! ad, add, new = basic_cmds.add
! ci, com, commit = basic_cmds.commit
! delete, remove = basic_cmds.remove
! co, get, checkout = basic_cmds.checkout
! st, stat, status = basic_cmds.status
! auto = basic_cmds.toggleCvsRootAutoUpdate
end
--- 3,18 ----
?, help = basic_cmds.cmdHelp
cd = basic_cmds.changeDir
! up, upd, update = cvs_cmds.update
! refresh = cvs_cmds.simulateUpdate
! sr,set-root = cvs_cmds.setCvsRoot
! rr,read-root = cvs_cmds.readCvsRoot
! cr,clear-root = cvs_cmds.clearCvsRoot
! list = cvs_cmds.printListing
! ad, add, new = cvs_cmds.add
! ci, com, commit = cvs_cmds.commit
! delete, remove = cvs_cmds.remove
! co, get, checkout = cvs_cmds.checkout
! st, stat, status = cvs_cmds.status
! auto = cvs_cmds.toggleCvsRootAutoUpdate
end
***************
*** 27,33 ****
section PARSERS:
! INIT_CMDS = basic_cmds.parseInitCmdsSection
! CVSROOT = basic_cmds.parseCvsRootSection
! DEFAULT_CMD_OPTIONS = basic_cmds.parseDefaultOptions
! CONFIG = basic_cmds.parseConfigSection
end
--- 27,33 ----
section PARSERS:
! INIT_CMDS = parsing.parseInitCmdsSection
! CVSROOT = parsing.parseCvsRootSection
! DEFAULT_CMD_OPTIONS = parsing.parseDefaultOptions
! CONFIG = parsing.parseConfigSection
end
Index: default-cvsshellrc
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/etc/default-cvsshellrc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** default-cvsshellrc 9 Mar 2002 10:56:20 -0000 1.3
--- default-cvsshellrc 10 Mar 2002 23:13:59 -0000 1.4
***************
*** 4,8 ****
# Here you can set configuration variables
section CONFIG:
! pager = less
end
--- 4,8 ----
# Here you can set configuration variables
section CONFIG:
! pager = more
end
***************
*** 15,23 ****
# Format: option1, option2 = options
# You can use the keyword `ALL' to apply options to all commands
! # Note: You have to specify the options for every synonym of a command, too.
! section DEFAULT_CMD_OPTIONS:
ALL = -z 3
! up, upd, update = -q -P
! co, get, checkout = -q
end
--- 15,25 ----
# Format: option1, option2 = options
# You can use the keyword `ALL' to apply options to all commands
! # You can specify different options for synonyms of a command.
! # Note: DON'T specify the option `-q' or `-Q' for the commands `st',
! # `stat', `status' or `ALL'. The options suppress information that are
! # needed by these commands.
! section DEFAULT_CMD_OPTIONS:
ALL = -z 3
! up, upd, update = -q -P
end
|