forked from DistributedProofreaders/ppwb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechinfo-ppcomp.php
More file actions
54 lines (48 loc) · 1.24 KB
/
techinfo-ppcomp.php
File metadata and controls
54 lines (48 loc) · 1.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
<?php
output_header();
echo <<<BODY
<p>Technical info for ppcomp.</p>
<ol>
<li>
The ppcomp program program was originally written as the standalone program comp_pp.py
by bibimbop at pgdp. It is used as part of the DP Workbench with permission.
Users who want a compare tool with many more options might find
the <a href='https://pptools.tangledhelix.com'>tangledhelix</a> site useful.
</li>
</ol>
BODY;
output_footer();
function output_header()
{
echo <<<HEAD
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>PP Workbench</title>
<link rel="stylesheet" type="text/css" href="rfrank.css">
</head>
<body>
<div id="header" class='hsty'>ppcomp</div>
<hr style='border:none; border-bottom:1px solid silver;'>
HEAD;
}
function output_footer()
{
echo <<<FOOT
<div id="footer">
<hr style='border:none; border-bottom:1px solid silver;'>
<table summary="" width="100%">
<tr>
<td align="left">
<a style='font-size:70%' href='ppcomp.php'>PPCOMP</a></td>
<td align="right">
<a style='font-size:70%' href='mailto:rfrank@rfrank.net'>CONTACT</a></td>
</tr>
</table>
</div>
</body>
</html>
FOOT;
}