]> git.p6c8.net - devedit.git/blob - templates/upload.htm
Oooops...
[devedit.git] / templates / upload.htm
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html>
5 <head>
6 <title>Upload a file to {DIR}</title>
7 <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
8 </head>
9 <body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
10
11 <h1>Upload a file to {DIR}</h1>
12
13 <p><a href="{SCRIPT}?command=show&file={DIR}">Back to {DIR}</a></p>
14
15 <p>Using this form, you can upload a file to the current directory ('{DIR}').</p>
16
17 <p><b>Note:</b> Currently, existing files can't be overwritten, so be careful!</p>
18
19 <hr>
20
21 <form action="{SCRIPT}" method="post" enctype="multipart/form-data">
22 <input type="hidden" name="command" value="upload">
23 <input type="hidden" name="file" value="{DIR}">
24
25 <p>File to upload:<br>
26 <input type="file" name="uploaded_file" size="35"></p>
27
28 <p>Transfer mode (see below):<br>
29 <input type="radio" name="ascii" value="1">ASCII <input type="radio" name="ascii" value="0" checked>Binary (default)</p>
30
31 <p><input type="submit" value="Upload file!"></p>
32 </form>
33
34 <hr>
35
36 <p><b>Explanation of the transfer modes:</b></p>
37
38 <ul>
39 <li><b>ASCII:</b> Any line separator in the uploaded file will be converted to the system specific line separator. Use this mode for text files, HTML documents, scripts and so on.</li>
40 <li><b>Binary:</b> The file will be uploaded as it is. Use this transfer mode for images, executable files and archives, for example. This is the default transfer mode.</li>
41 </ul>
42 </body>
43 </html>

patrick-canterino.de