From f5ef0f7c0fa1e8096fbf06c8f639830a202c8a9a Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Wed, 27 Jul 2005 20:09:19 +0000 Subject: [PATCH] Add Revison ISO interface svn path=/trunk/; revision=16814 --- cis/ReactOS.RevisionISO/config.template.php | 8 + cis/ReactOS.RevisionISO/index.php | 158 ++++++++++++++++++++ 2 files changed, 166 insertions(+) create mode 100644 cis/ReactOS.RevisionISO/config.template.php create mode 100644 cis/ReactOS.RevisionISO/index.php diff --git a/cis/ReactOS.RevisionISO/config.template.php b/cis/ReactOS.RevisionISO/config.template.php new file mode 100644 index 00000000000..59b942e7e89 --- /dev/null +++ b/cis/ReactOS.RevisionISO/config.template.php @@ -0,0 +1,8 @@ + diff --git a/cis/ReactOS.RevisionISO/index.php b/cis/ReactOS.RevisionISO/index.php new file mode 100644 index 00000000000..7efa46d929f --- /dev/null +++ b/cis/ReactOS.RevisionISO/index.php @@ -0,0 +1,158 @@ + $b) ? -1 : 1; +} + +function printHeader() +{ +?> + + + +ReactOS Revison ISOs + + + + + + +
+ + + + + + + + + + + +
+
+ + + + + + + + + + + +
+ Branch: + + + +   + + Revision: + +"; +?> + +   + + +
+ +
+
+ +
+ + + + +No ISO exist for branch '" . $branch . "' and revision " . $revision . ".

"; + printFooter(); + } +} + +if (!empty($_POST["getiso"]) && !empty($_POST["branch"]) && !empty($_POST["revision"]) && is_numeric($_POST["revision"])) + main(); +else +{ + printHeader(); + printMenu(); + printFooter(); +} + +?>