From: Rob H. <for...@us...> - 2001-11-24 11:34:48
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv3300/templates Modified Files: browse.html checkout.html Log Message: hooked create_file, create_folder and checkout to their respective backends. there seems to be a bug with location that makes create_file and create_folder not very useful. checkout is basically a stub. Index: browse.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse.html,v retrieving revision 1.26 retrieving revision 1.27 diff -U2 -r1.26 -r1.27 --- browse.html 2001/11/22 09:35:39 1.26 +++ browse.html 2001/11/24 11:34:45 1.27 @@ -24,5 +24,5 @@ <a href="<TMPL_VAR NAME=PROGNAME>?action=file&filename=0&command=upload">Upload</a>   |   - <a href="<TMPL_VAR NAME=PROGNAME>?action=vcsaction&command=checkout">Checkout</a> + <a href="<TMPL_VAR NAME=PROGNAME>?action=file&filename=0&command=checkout">Checkout</a> <br /> </td> Index: checkout.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/checkout.html,v retrieving revision 1.1 retrieving revision 1.2 diff -U2 -r1.1 -r1.2 --- checkout.html 2001/08/15 22:06:47 1.1 +++ checkout.html 2001/11/24 11:34:45 1.2 @@ -1,8 +1,9 @@ <center> Please enter module name to checkout to <TMPL_VAR NAME=LOCATION>: - <form submit="<TMPL_VAR NAME=FILENAME>" type="get"> - <input type="hidden" name="action" value="checkout" /> + <form submit="<TMPL_VAR NAME=PROGNAME>"> + <input type="hidden" name="action" value="vcsaction" /> + <input type="hidden" name="command" value="checkout" /> <input type="hidden" name="location" value="<TMPL_VAR NAME=LOCATION>" /> - <input type="text" name="module" /> + <input type="text" name="filename" /> <input type="submit" name="checkout" value="Done" /> <TMPL_VAR NAME=ERROR> |