This repository was archived by the owner on Apr 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
93 lines (81 loc) · 3.24 KB
/
preview.html
File metadata and controls
93 lines (81 loc) · 3.24 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>CDL Remote Preview</title>
<link href="css/web.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<h1>CDL Remote Preview and Best Practice Checking</h1>
<p>These forms allow you to preview or perform a best practice check on
your content remotely, prior to submission to the California Digital
Library. They require that your content be available via HTTP and validate
against the appropriate DTD or Schema.</p>
<div align="center">
<br/>
<hr/>
</div>
<h2>Preview</h2>
<p>Enter a valid URL for the XML document of your choice,
then select the desired desired style and click preview to see your
document in the target interface.</p>
<div align="center">
<table width="80%" border="1" cellspacing="0" cellpadding="20" bgcolor="silver">
<tbody>
<tr>
<td align="left">
<!-- form action="/xtf/servlet/org.cdlib.xtf.web.PreviewXML" method="get" -->
<form action="/xtf/view" method="get">
<span>  URL:  </span>
<input type="text" name="source" size="50"/>
<span>  STYLE:  </span>
<select name="docId">
<option value="eschol-preview">eScholarship Digital Books</option>
<option value="oac-preview">OAC Etexts</option>
<option value="ead-preview">OAC EAD Finding Aids</option>
<option value="ead-v1to02-preview">EAD v1 to 2002 Conversion</option>
</select>
<span>    </span>
<input type="submit" name="action" value="PREVIEW"/>
<input type="reset" value="RESET"/>
</form>
</td>
</tr>
</tbody>
</table>
</div>
<div align="center">
<br/>
<hr/>
</div>
<h2>Best Practice Checking</h2>
<p>Enter a valid URL for the XML document of your choice, then select
the desired guideline and click BPC to see a best practice report
for your document.</p>
<div align="center">
<table width="80%" border="1" cellspacing="0" cellpadding="20" bgcolor="silver">
<tbody>
<tr>
<td align="left">
<form action="/xtf/view" method="get">
<span>  URL:  </span>
<input type="text" name="source" size="50"/>
<span>  GUIDELINE:  </span>
<select name="docId">
<option value="cdl-book-bpg">CDL Book Encoding</option>
<option value="cdl-lite-bpg">CDL Lite Encoding</option>
</select>
<span>    </span>
<input type="submit" value="BPC"/>
<input type="reset" value="RESET"/>
</form>
</td>
</tr>
</tbody>
</table>
</div>
<div align="center">
<br/>
<hr/>
</div>
</body>
</html>