mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-08 13:39:58 +00:00
207 lines
4.9 KiB
PHP
207 lines
4.9 KiB
PHP
<?php
|
|
//
|
|
// "$Id$"
|
|
//
|
|
// Software download page.
|
|
//
|
|
|
|
//
|
|
// Include necessary headers...
|
|
//
|
|
|
|
include_once "phplib/html.php";
|
|
|
|
|
|
// List of download servers...
|
|
$sitelist = array(
|
|
// "http://ftp.easysw.com/pub" => "Oregon, USA via HTTP",
|
|
// "ftp://ftp.easysw.com/pub" => "Oregon, USA via FTP",
|
|
// "http://ftp2.easysw.com/pub" => "Maryland, USA via HTTP",
|
|
"ftp://ftp.easysw.com/pub" => "Maryland, USA via FTP",
|
|
"ftp://ftp3.easysw.com/pub" => "California, USA via FTP",
|
|
"http://www.nu6.org/_/mirror/ftp.easysw.com/pub" => "Gustavsberg, Sweden via HTTP",
|
|
"http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub" => "Espoo, Finland via HTTP",
|
|
"ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub" => "Espoo, Finland via FTP",
|
|
);
|
|
|
|
|
|
// Get the list of software files...
|
|
$fp = fopen("data/software.md5", "r");
|
|
$files = array();
|
|
|
|
while ($line = fgets($fp, 255))
|
|
$files[sizeof($files)] = trim($line);
|
|
|
|
fclose($fp);
|
|
|
|
// Get form data, if any...
|
|
if (array_key_exists("FILE", $_GET))
|
|
$file = $_GET["FILE"];
|
|
else
|
|
$file = "";
|
|
|
|
if (array_key_exists("SITE", $_GET))
|
|
{
|
|
$site = $_GET["SITE"];
|
|
setcookie("SITE", $site, time() + 90 * 86400, "/");
|
|
}
|
|
else if (array_key_exists("SITE", $_COOKIE) &&
|
|
array_key_exists($_COOKIE["SITE"], $sitelist))
|
|
$site = $_COOKIE["SITE"];
|
|
else
|
|
$site = "";
|
|
|
|
if (array_key_exists("VERSION", $_GET))
|
|
$version = $_GET["VERSION"];
|
|
else
|
|
{
|
|
$data = explode(" ", $files[0]);
|
|
$version = $data[1];
|
|
}
|
|
|
|
// Show the standard header...
|
|
if ($site != "" && $file != "")
|
|
html_header("Download", "", "$site/$file");
|
|
else
|
|
html_header("Download");
|
|
|
|
html_start_links(1);
|
|
|
|
$curversion = "";
|
|
for ($i = 0; $i < sizeof($files); $i ++)
|
|
{
|
|
// Grab the data for the current file...
|
|
$data = explode(" ", $files[$i]);
|
|
$fversion = $data[1];
|
|
|
|
if ($fversion != $curversion)
|
|
{
|
|
$curversion = $fversion;
|
|
html_link("v$fversion", "$PHP_SELF?VERSION=$fversion");
|
|
}
|
|
}
|
|
|
|
html_link("Subversion", "$PHP_SELF#SVN");
|
|
|
|
html_end_links();
|
|
|
|
print("<h1>Download</h1>\n");
|
|
|
|
// Show files or sites...
|
|
if ($file != "")
|
|
{
|
|
if ($site != "")
|
|
print("<p>Your download should begin shortly. If not, please "
|
|
."<a href='$site/$file'>click here</a> to download the file "
|
|
."from the current mirror.</p>\n"
|
|
."<h2>Change Mirror Site:</h2>\n");
|
|
else
|
|
print("<p>Please select a mirror site below to begin the download.</p>\n"
|
|
."<h2>Select Mirror Site:</h2>\n");
|
|
|
|
print("<form action='$PHP_SELF' method='GET' name='download'>\n"
|
|
."<input type='hidden' name='FILE' value='"
|
|
. htmlspecialchars($file, ENT_QUOTES) . "'/>\n"
|
|
."<input type='hidden' name='VERSION' value='"
|
|
. htmlspecialchars($version, ENT_QUOTES) . "'/>\n");
|
|
|
|
if ($site == "")
|
|
print("<input type='radio' name='SITE' value='' checked/>None<br />\n");
|
|
|
|
reset($sitelist);
|
|
while (list($key, $val) = each($sitelist))
|
|
{
|
|
print("<input type='radio' name='SITE' value='$key' "
|
|
."onClick='document.download.submit();'");
|
|
if ($site == $key)
|
|
print(" checked");
|
|
print("/>$val<br />\n");
|
|
}
|
|
|
|
if ($site != "")
|
|
print("<input type='submit' value='Change Mirror Site'/>\n");
|
|
else
|
|
print("<input type='submit' value='Select Mirror Site'/>\n");
|
|
|
|
print("</form>\n");
|
|
}
|
|
else
|
|
{
|
|
// Show files...
|
|
print("<h2>Releases</h2>\n");
|
|
|
|
html_start_table(array("Version", "Filename", "Size", "MD5 Sum"));
|
|
|
|
$curversion = "";
|
|
|
|
for ($i = 0; $i < sizeof($files); $i ++)
|
|
{
|
|
// Grab the data for the current file...
|
|
$data = explode(" ", $files[$i]);
|
|
$md5 = $data[0];
|
|
$fversion = $data[1];
|
|
$filename = $data[2];
|
|
$basename = basename($filename);
|
|
|
|
html_start_row();
|
|
|
|
if ($fversion == $version)
|
|
{
|
|
$cs = "<th>";
|
|
$ce = "</th>";
|
|
}
|
|
else
|
|
{
|
|
$cs = "<td align='center'>";
|
|
$ce = "</td>";
|
|
}
|
|
|
|
if ($fversion != $curversion)
|
|
{
|
|
if ($curversion != "")
|
|
{
|
|
print("<td colspan='4'></td>");
|
|
html_end_row();
|
|
html_start_row();
|
|
}
|
|
|
|
$curversion = $fversion;
|
|
print("$cs<a name='$fversion'>$fversion</a>$ce");
|
|
}
|
|
else
|
|
print("$cs$ce");
|
|
|
|
$kbytes = (int)((filesize("/home/ftp/pub/$filename") + 1023) / 1024);
|
|
|
|
print("$cs<a href='$PHP_SELF?VERSION=$version&FILE=$filename'>"
|
|
."<tt>$basename</tt></a>$ce"
|
|
."$cs${kbytes}k$ce"
|
|
."$cs<tt>$md5</tt>$ce");
|
|
|
|
html_end_row();
|
|
}
|
|
|
|
html_end_table();
|
|
|
|
print("<h2><a name='SVN'>Subversion Access</a></h2>\n"
|
|
."<p>The $PROJECT_NAME software is available via Subversion "
|
|
."using the following URL:</p>\n"
|
|
."<pre>\n"
|
|
." <a href='http://svn.easysw.com/public/$PROJECT_MODULE/'>"
|
|
."http://svn.easysw.com/public/$PROJECT_MODULE/</a>\n"
|
|
."</pre>\n"
|
|
."<p>The following command can be used to checkout the current "
|
|
."$PROJECT_NAME source from Subversion:</p>\n"
|
|
."<pre>\n"
|
|
." <kbd>svn co http://svn.easysw.com/public/$PROJECT_MODULE/trunk/ $PROJECT_MODULE</kbd>\n"
|
|
."</pre>\n");
|
|
}
|
|
|
|
// Show the standard footer...
|
|
html_footer();
|
|
|
|
//
|
|
// End of "$Id$".
|
|
//
|
|
?>
|