<!-- download.php3 -->
<?php
	$head = "LARTware - Download";
	$title = $head;
	$thispage = "download";
	require("table-top.php3");
	require("sidebar.php3");
	require("table-mid.php3");
?>

<h2>Get your source and binaries. <a
href="http://www.kschoice.com/">Everything for free!</a></h2>

<p> This page provides links to all downloadable files on the LART Pages.
More information, such as the license under which this software is released,
should be available in the respective directories - just click the header.

<p> If you have problems downloading large files, use a download tool that
supports continue mode on http connections.
<a href="ftp://ftp.gnu.org/gnu/wget/">GNU wget</a> can do the trick.

<p> You can find more information about the file formats (other than ASCII
text) on the <a href="./links.php3#formats">links page</a>.

<p>
<?php
	unset($farray);
	exec("/usr/bin/find . -name '*.desc' -print | grep -v setec | sort", $farray, $ret);
	if ($ret) {
		echo "No files found";
	} else {
		$prevdir = "";
		while (list($a, $b) = each($farray)) {
			$dir = dirname($b);
			if (strcmp($dir, $prevdir)) {
				$dname = str_replace("./", "", $dir);
				$link = "<a href=\"$dir/\">$dname</a>";
				dlist($dir."/*", $link);
			}
			$prevdir = $dir;
		}
	}
?>

<?php	require("table-btm.php3"); ?>
