aboutsummaryrefslogtreecommitdiff
path: root/html/functions.php3
diff options
context:
space:
mode:
authorDavid Aspinall2001-03-20 16:44:55 +0000
committerDavid Aspinall2001-03-20 16:44:55 +0000
commita64c9401667e8ea98241a496ff6eab82381f1ffd (patch)
tree3c6ade309deb65686d4ad855f8d5742da03f474f /html/functions.php3
parent3516cb7082e6ee1f2d1b7a22e45b7844847d1d50 (diff)
Changes to use proofgen@dcs for now instead of broken proofgeneral.org
Diffstat (limited to 'html/functions.php3')
-rw-r--r--html/functions.php319
1 files changed, 17 insertions, 2 deletions
diff --git a/html/functions.php3 b/html/functions.php3
index c4817bee..39b6b266 100644
--- a/html/functions.php3
+++ b/html/functions.php3
@@ -14,9 +14,18 @@
// Project configuration
-$project_email = "feedback@proofgeneral.org";
-$project_list = "users@proofgeneral.org";
+// $project_email = "feedback@proofgeneral.org";
+// $project_list = "users@proofgeneral.org";
+// $project_feedback = "feedback@proofgeneral.org":
+
+// Disable because free parking forwarding is broken
+$proofgenatdcs = "proofgen@dcs.ed.ac.uk";
+$project_email = $proofgenatdcs;
+$project_list = $proofgenatdcs;
+$project_feedback = $proofgenatdcs;
+
$project_title = "Proof General";
+
$project_subtitle = "Organize your Proofs!";
$project_full_title = $project_title . " --- " . $project_subtitle;
@@ -39,6 +48,11 @@ function mlink($addr) {
print "<a href=\"mailto:" . $addr . "\">" . $addr . "</a>";
}
+function mlinktxt($addr,$txt) {
+ print "<a href=\"mailto:" . $addr . "\">" . $txt . "</a>";
+}
+
+
// FIXME: doesn't seem to work. Why not?
function project_email() {
mlink($project_email);
@@ -131,6 +145,7 @@ function small_header_body($title) {
or use SCRIPT_NAME, and then include footer.html. */
function footer($filemodified=".") {
+ global $project_feedback;
include('footer.html');
date_modified($filemodified);
print "</address>\n";