Update of /cvsroot/sandweb/sandweb/templates
In directory usw-pr-cvs1:/tmp/cvs-serv16902/templates
Modified Files:
edit_file.html view_file.html
Log Message:
* fixed weird formatting of view and edit templates
* updated File.txt documentation. I decided to document the
location/file behavior as it *should* work; the problem I was
seeing before is actually sandweb.cgi's problem. It needs an
extra routine to support the correct behavior ( the filename
needs to be extracted from the absolute or relative path ).
Index: edit_file.html
===================================================================
RCS file: /cvsroot/sandweb/sandweb/templates/edit_file.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -U2 -r1.1 -r1.2
--- edit_file.html 2001/11/22 00:57:16 1.1
+++ edit_file.html 2001/11/22 08:29:00 1.2
@@ -5,5 +5,5 @@
<pre>
<textarea cols="80" rows="24">
- <TMPL_VAR NAME=CONTENT>
+ <TMPL_VAR NAME=CONTENT>
</textarea>
</pre>
Index: view_file.html
===================================================================
RCS file: /cvsroot/sandweb/sandweb/templates/view_file.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -U2 -r1.3 -r1.4
--- view_file.html 2001/11/22 00:57:16 1.3
+++ view_file.html 2001/11/22 08:29:00 1.4
@@ -4,5 +4,5 @@
<input type="submit" name="view_method" value="Download" />
<pre>
- <TMPL_VAR NAME=CONTENT>
+ <TMPL_VAR NAME=CONTENT>
</pre>
</form>
|