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(); +} + +?>