From: Rob H. <for...@us...> - 2001-12-18 09:07:41
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv17511/templates Modified Files: checkout.html commit.html create_file.html create_folder.html edit_file.html upload_file.html Log Message: multi-file VCS commands now work. fixed some other bugs throughout the program, mostly fallout from adding the file pulldown to the browse template. Index: checkout.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/checkout.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- checkout.html 2001/11/24 11:58:00 1.3 +++ checkout.html 2001/12/18 09:07:38 1.4 @@ -3,5 +3,5 @@ <form submit="<TMPL_VAR NAME=PROGNAME>"> <input type="hidden" name="action" value="vcsaction" /> - <input type="hidden" name="command" value="checkout" /> + <input type="hidden" name="vcs_command" value="checkout" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Index: commit.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/commit.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- commit.html 2001/11/30 20:42:05 1.3 +++ commit.html 2001/12/18 09:07:38 1.4 @@ -3,5 +3,5 @@ <form submit="<TMPL_VAR NAME=PROGNAME>" type="get"> <input type="hidden" name="action" value="vcsaction" /> - <input type="hidden" name="command" value="commit" /> + <input type="hidden" name="vcs_command" value="commit" /> <input type="hidden" name="filename" value="<TMPL_VAR NAME=FILENAME>" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> Index: create_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_file.html,v retrieving revision 1.3 retrieving revision 1.4 diff -U2 -r1.3 -r1.4 --- create_file.html 2001/12/18 00:42:03 1.3 +++ create_file.html 2001/12/18 09:07:38 1.4 @@ -1,5 +1,5 @@ <form action="<TMPL_VAR NAME=PROGNAME>"> <input name="action" value="file" type="hidden" /> -<input name="command" value="create_file" type="hidden" /> +<input name="file_command" value="create_file" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Index: create_folder.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/create_folder.html,v retrieving revision 1.2 retrieving revision 1.3 diff -U2 -r1.2 -r1.3 --- create_folder.html 2001/11/30 20:42:05 1.2 +++ create_folder.html 2001/12/18 09:07:38 1.3 @@ -1,5 +1,5 @@ <form action="<TMPL_VAR NAME=PROGNAME>"> <input name="action" value="file" type="hidden" /> -<input name="command" value="create_folder" type="hidden" /> +<input name="file_command" value="create_folder" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Index: edit_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/edit_file.html,v retrieving revision 1.6 retrieving revision 1.7 diff -U2 -r1.6 -r1.7 --- edit_file.html 2001/11/30 20:42:05 1.6 +++ edit_file.html 2001/12/18 09:07:38 1.7 @@ -3,5 +3,5 @@ <form submit="<TMPL_VAR NAME=PROGNAME>"> <input name="action" value="file" type="hidden" /> - <input name="command" value="edit" type="hidden" /> + <input name="file_command" value="edit" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> Index: upload_file.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/upload_file.html,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- upload_file.html 2001/12/18 02:09:35 1.1 +++ upload_file.html 2001/12/18 09:07:38 1.2 @@ -2,5 +2,5 @@ enctype="multipart/form-data"> <input name="action" value="file" type="hidden" /> -<input name="command" value="upload" type="hidden" /> +<input name="file_command" value="upload" type="hidden" /> <input name="location" value="<TMPL_VAR NAME=LOCATION>" type="hidden" /> <input name="fullpath" value="<TMPL_VAR NAME=FULLPATH>" type="hidden" /> |