blob: 963fd76c702d6fe02b5768046ecc079aa48dd1da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<!--#set var="revision" value="\$Id: file-upload.html,v 1.5 2001-09-19 08:52:08 link Exp $" -->
<!--#set var="date" value="\$Date: 2001-09-19 08:52:08 $" -->
<!--#include virtual="/header.html" -->
<p>
This form allows you to upload files from your computer and have
them validated.
</p>
<form method="post" enctype="multipart/form-data" action="/check">
File: <input type="file" name="uploaded_file" size="50" /><br />
Document type:
<select name="doctype">
<option value="Inline">(specified inline)</option>
<option>XHTML 1.0 Strict</option>
<option>XHTML 1.0 Transitional</option>
<option>XHTML 1.0 Frameset</option>
<option>HTML 4.01 Strict</option>
<option>HTML 4.01 Transitional</option>
<option>HTML 4.01 Frameset</option>
<option>HTML 3.2</option>
<option>HTML 2.0</option>
</select>
<table cellpadding="0" cellspacing="0">
<tr>
<td>
<input name="ss" type="checkbox" value="" /> Show source input
</td>
<td>
<input name="outline" type="checkbox" value="" /> Show an outline of this
document<br />
</td>
</tr>
<tr>
<td>
<input name="sp" type="checkbox" value="" /> Show parse tree
</td>
<td>
<input name="noatt" type="checkbox" value="" /> exclude
attributes from the parse tree<br />
</td>
</tr>
</table>
<input type="submit" value="Validate this document" />
<input type="reset" value="Reset this form" />
</form>
<p>
If your document is on the Web, you can validate
it by <a href="./">entering its address</a> instead.
</p>
<!--#include virtual="/footer.html" -->
</body>
</html>
|