Update of /cvsroot/sandweb/sandweb/templates
In directory sc8-pr-cvs1:/tmp/cvs-serv25209/templates
Modified Files:
commit.html
Log Message:
* commit wasn't passing the password through in a POST, so, if
you weren't saving the repo password, then it would fail with
"permission denied" :( now it's fixed though :)
* we now get decent error reporting from sandweb-expect, hurrah!
Index: commit.html
===================================================================
RCS file: /cvsroot/sandweb/sandweb/templates/commit.html,v
retrieving revision 1.20
retrieving revision 1.21
diff -U2 -r1.20 -r1.21
--- commit.html 22 Jan 2003 06:55:14 -0000 1.20
+++ commit.html 26 Jan 2003 05:46:19 -0000 1.21
@@ -3,5 +3,5 @@
<td width="center">
Please enter a commit message for <TMPL_VAR NAME=LOCATION>/<TMPL_VAR NAME=FILENAME> :
- <form name="commit">
+ <form name="commit" type="POST">
<!-- <TMPL_VAR NAME=PROGNAME> -->
<input type="hidden" name="action" value="vcs">
@@ -11,4 +11,5 @@
<input type="hidden" name="module_name" value="<TMPL_VAR NAME=MODULE_NAME>">
<input type="hidden" name="repo_name" value="<TMPL_VAR NAME=REPO_NAME>">
+ <input type="hidden" name="repo_password" value="<TMPL_VAR NAME=REPO_PASSWORD>">
<input name="Submit" value="1" type="hidden">
<input type="text" name="message">
|