1 <!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
6 <title>Upload a file to {DIR}
</title>
7 <meta http-equiv=
"content-type" content=
"text/html; charset=iso-8859-1">
9 <body bgcolor=
"#FFFFFF" text=
"#000000" link=
"#0000FF" vlink=
"#800080" alink=
"#FF0000">
11 <h1>Upload a file to {DIR}
</h1>
13 <p>(equals
<a href=
"{URL}" target=
"_blank">{URL}
</a>)
</p>
15 <p><a href=
"{SCRIPT}?command=show&file={DIR}">Back to {DIR}
</a></p>
17 <p>Using this form, you can upload a file to the current directory ('{DIR}').
</p>
19 <p><b>Note:
</b> Currently, existing files can't be overwritten, so be careful!
</p>
23 <form action=
"{SCRIPT}" method=
"post" enctype=
"multipart/form-data">
24 <input type=
"hidden" name=
"command" value=
"upload">
25 <input type=
"hidden" name=
"file" value=
"{DIR}">
27 <p>File to upload:
<br>
28 <input type=
"file" name=
"uploaded_file" size=
"35"></p>
30 <p>Transfer mode (see below):
<br>
31 <input type=
"radio" name=
"ascii" value=
"1">ASCII
<input type=
"radio" name=
"ascii" value=
"0" checked
>Binary (default)
</p>
33 <p><input type=
"checkbox" name=
"overwrite">Overwrite file if it already exists
</p>
35 <p><input type=
"submit" value=
"Upload file!"></p>
40 <p><b>Explanation of the transfer modes:
</b></p>
43 <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>
44 <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>
49 <p align=
"right"><a href=
"{SCRIPT}?command=about" target=
"_blank"><i>About Dev-Editor
</i></a></p>