[Cvsshell-devel] CVS: cvsshell/etc cvsshell.ini,1.1,1.2 default-cvsshellrc,1.1,1.2
Status: Beta
Brought to you by:
stefanheimann
|
From: Stefan H. <ste...@us...> - 2002-03-08 11:12:32
|
Update of /cvsroot/cvsshell/cvsshell/etc
In directory usw-pr-cvs1:/tmp/cvs-serv22728/etc
Modified Files:
cvsshell.ini default-cvsshellrc
Log Message:
Added support for better handling of arguments to cvs commands
Index: cvsshell.ini
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/etc/cvsshell.ini,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** cvsshell.ini 7 Mar 2002 12:57:17 -0000 1.1
--- cvsshell.ini 8 Mar 2002 11:12:29 -0000 1.2
***************
*** 17,20 ****
--- 17,29 ----
end
+ section COMMAND_OPTIONS:
+ up, upd, update, refresh = AdD:r:fI:j:k:lRpPW:
+ ad, add, new = k:m:
+ ci, com, commit = flRF:m:nr:
+ delete, remove = flR
+ co, get, checkout = Acsd:ND:r:fj:k:lRnpP
+ st, stat, status = lrv
+ end
+
section PARSERS:
INIT_CMDS = basic_cmds.parseInitCmdsSection
Index: default-cvsshellrc
===================================================================
RCS file: /cvsroot/cvsshell/cvsshell/etc/default-cvsshellrc,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** default-cvsshellrc 7 Mar 2002 12:57:17 -0000 1.1
--- default-cvsshellrc 8 Mar 2002 11:12:29 -0000 1.2
***************
*** 9,17 ****
# options for cvs commands
#
! # Format: option1, option2 = global options % options
! # Global options are the options available for all commands,
! # options are the options only available for this specific command.
! # Example: cvs -n update -P
! # Here, `-n' is a global option, while `-P' is just a option
#
# You can use the keyword `ALL' to apply options to all commands
--- 9,13 ----
# options for cvs commands
#
! # Format: option1, option2 = options
#
# You can use the keyword `ALL' to apply options to all commands
***************
*** 19,25 ****
# 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 -d
! co, get, checkout = -q %
end
--- 15,21 ----
# 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
|