From 75ef5af371aa223e8a96607bb85bb20a340e4f47 Mon Sep 17 00:00:00 2001 From: David Aspinall Date: Tue, 1 May 2001 14:17:52 +0000 Subject: Rename some html files php --- html/develdownload.php | 141 +++++++++++++++++++++++++++++++++++++++++++++++++ html/feedback.php | 87 ++++++++++++++++++++++++++++++ html/fileshow.php | 24 +++++++++ html/htmlshow.php | 5 ++ html/index.php | 9 ++++ html/smallpage.php | 6 +++ 6 files changed, 272 insertions(+) create mode 100644 html/develdownload.php create mode 100644 html/feedback.php create mode 100644 html/fileshow.php create mode 100644 html/htmlshow.php create mode 100644 html/index.php create mode 100644 html/smallpage.php (limited to 'html') diff --git a/html/develdownload.php b/html/develdownload.php new file mode 100644 index 00000000..fb514a34 --- /dev/null +++ b/html/develdownload.php @@ -0,0 +1,141 @@ + + +

+NOTE: The current pre-release is the same as version 3.2. +It won't be updated with new features until 3.2 has been out for a while. +

+ +

+Below is the latest pre-release of Proof General, +made available for those who wish to test the latest features or bug +fixes. For developers, this release is also available as a +complete CVS snapshot (further below). +

+

+Pre-releases of Proof General may be buggy as we add new features and +experiment with them. Nonetheless, we welcome bug reports. But +please make sure you are using the latest pre-release before +reporting problems. +

+

+Please register if you haven't done so already. +

+ + + +

Manual for ProofGeneral-3.3pre010320

+ +

+The manual included with the pre-release may be +updated from that of the +last stable release. +

+

+Here is the pre-release documentation: the user manual in +, + +or +, +and the new separate "adapting" manual, in +, + +or +. +

+ + + +

Pre-release: ProofGeneral-3.3pre010320

+ +

+This version has been tested with XEmacs version 21.1.12 and +(minimally) with FSF Emacs 20.7.1. +We recommend the use of XEmacs; use under FSF Emacs +can no longer be supported. +

+

+Check the + + file + +for a summary of changes since the last stable version, and +notes about work-in-progress. +

+ + + + + + + + + + + + + + + + + +
gzip'ed tar file
zip file
RPM package
SRPM package
+ + +

+For install instructions, see +the stable version download. +

+ +

+

+

+

+ + + +

Complete Archive of ProofGeneral-3.3pre010320 for Developers

+ + +

+This archive is a snapshot from our CVS repository. +

+ +

+What's the difference from the user's pre-release above? +The complete archive also includes: +

+ +

+You probably don't need to download this if you're only +interested in hacking the Emacs lisp part of the program for a prover +that is currently supported. Note that there are no pre-built +documentation files in the developer's release. +

+ + diff --git a/html/feedback.php b/html/feedback.php new file mode 100644 index 00000000..4b01ce80 --- /dev/null +++ b/html/feedback.php @@ -0,0 +1,87 @@ + + +

+Please use the form below to send us comments, suggestions, +or offers to help with Proof Generl development. +
+Or send email directly to +the +

+

+You can also report a bug using this form, although it would +be more helpful to do this from within Emacs, using the +"Proof General -> Submit bug report" menu command. +

+ +
"> + + + + + + + + + + +
From:
Subject:
+ +
+
+ + +
+ +Dear " . $from . ",

\n"; }; + print "

"; + print "Thank-you for sending us feedback"; + if ($subject != "") { print " about " . $subject; }; + print ".

\n

"; + print "If you provided a valid return email address, somebody from the Proof General team will acknowledge your message after it has been read."; + print "

"; + + mail($project_feedback, + "[Web Feedback Form]: " . $subject, + $message, + "Reply-To: " . $from . "\n"); + + click_to_go_back(); + + footer(); +endif; +?> diff --git a/html/fileshow.php b/html/fileshow.php new file mode 100644 index 00000000..94df8538 --- /dev/null +++ b/html/fileshow.php @@ -0,0 +1,24 @@ +\n"; + /* I hope this is enough to prevent access outside cwd */ + if (substr($filename,0,1)=="." or + substr($filename,0,1)=="/" or + substr($filename,0,1)=="~") { + print "Sorry, can't show you that file!\n"; + } elseif (substr($filename,-3)==".el") { + elisp_markup($filename,"fileshow.html"); + } else { + outline_markup($filename,"fileshow.html",$expanded); + } + print "\n"; + print "
"; + click_to_go_back(); + footer(); +?> diff --git a/html/htmlshow.php b/html/htmlshow.php new file mode 100644 index 00000000..d9cb8b46 --- /dev/null +++ b/html/htmlshow.php @@ -0,0 +1,5 @@ + diff --git a/html/index.php b/html/index.php new file mode 100644 index 00000000..5d90977c --- /dev/null +++ b/html/index.php @@ -0,0 +1,9 @@ + + + + + diff --git a/html/smallpage.php b/html/smallpage.php new file mode 100644 index 00000000..64f538a3 --- /dev/null +++ b/html/smallpage.php @@ -0,0 +1,6 @@ + -- cgit v1.2.3