]> git.p6c8.net - devedit.git/blob - templates/upload.htm
Simplified check_path() a little bit
[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>(equals <a href="{URL}" target="_blank">{URL}</a>)</p>
14
15 <p><a href="{SCRIPT}?command=show&amp;file={DIR_URL}">Back to {DIR}</a></p>
16
17 <p>Using this form, you can upload a file to the current directory ('{DIR}').</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" id="ascii" value="1"><label for="ascii">ASCII</label> <input type="radio" name="ascii" id="binary" value="0" checked><label for="binary">Binary (default)</label></p>
30
31 <p><input type="checkbox" name="overwrite" id="overwrite"><label for="overwrite">Overwrite existing file</label></p>
32
33 <p><input type="submit" value="Upload file!"></p>
34 </form>
35
36 <hr>
37
38 <p><b>Explanation of the transfer modes:</b></p>
39
40 <ul>
41 <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>
42 <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>
43 </ul>
44
45 <hr>
46
47 <p align="right"><a href="{SCRIPT}?command=about" target="_blank"><i>About Dev-Editor</i></a></p>
48 </body>
49 </html>

patrick-canterino.de