[Scummvm-cvs-logs] SF.net SVN: scummvm:[40812] web/trunk

sev at users.sourceforge.net sev at users.sourceforge.net
Sat May 23 19:43:05 CEST 2009


Revision: 40812
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40812&view=rev
Author:   sev
Date:     2009-05-23 17:43:04 +0000 (Sat, 23 May 2009)

Log Message:
-----------
Kill web site code.

Removed Paths:
-------------
    web/trunk/compatibility.php
    web/trunk/contact.php
    web/trunk/credits.inc
    web/trunk/credits.php
    web/trunk/demos.php
    web/trunk/docs/
    web/trunk/documentation.php
    web/trunk/downloads.css
    web/trunk/downloads.php
    web/trunk/faq.css
    web/trunk/faq.inc
    web/trunk/faq.php
    web/trunk/feed-atom.php
    web/trunk/feed-rss20.php
    web/trunk/include/compatibility/
    web/trunk/include/html.php
    web/trunk/include/incl.php
    web/trunk/include/menu.php
    web/trunk/include/news.php
    web/trunk/include/scr-categories.php
    web/trunk/include/screenshots.php
    web/trunk/include/sidebar.php
    web/trunk/include/util.php
    web/trunk/index.css
    web/trunk/links.css
    web/trunk/links.php
    web/trunk/press.php
    web/trunk/screenshots.css
    web/trunk/screenshots.php
    web/trunk/style.css
    web/trunk/subprojects.php

Deleted: web/trunk/compatibility.php
===================================================================
--- web/trunk/compatibility.php	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/compatibility.php	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,210 +0,0 @@
-<?php
-
-/*
- * ScummVM Compatibility Page
- *
- */
-
-// set this for position of this file relative
-$file_root = ".";
-
-// load libraries
-require($file_root."/include/"."incl.php");
-
-// Load the compatibility information for the requested version
-if (isset($_GET['version'])) {
-	// Filter very long versions and strange characters
-	$version = substr($_GET['version'], 0, 10);
-	$version = preg_replace('/[^a-z0-9\.]/i', "", $version);
-
-	// Test whether the file exists
-	if (!file_exists($file_root."/include/compatibility/compat-".$version.".inc"))
-		$version = "SVN";
-} else {
-	$version = "SVN";
-}
-include($file_root."/include/compatibility/compat-".$version.".inc");
-
-// start of html
-html_page_header('ScummVM :: Compatibility - '.$version);
-
-html_content_begin($version.' Compatibility');
-
-if (isset($_GET['details'])) {
-	$details = $_GET['details'];
-}
-
-?>
-  <div class="par-item">
-
-<?php
-
-if ($details) {
-
-  echo '<div class="par-content">';
-
-}
-else {
-?>
-    <div class="par-intro">
-<br>
-	  This page lists the progress of ScummVM as it relates to individual game compatibility.
-	  Please note this list applies to the English versions of games. We attempt to test many versions of games, however there are occasionally problems with other languages.<br><br>
-	  Click on the game name to view the complete notes of a game.<br><br>
-<?php
-
-// Get the available versions of compatibility information
-$versions = array();
-if ($dir = opendir($file_root."/include/compatibility/")) {
-	while (($compatfile = readdir($dir)) !== false) {
-		if (substr($compatfile, 0, 7) == "compat-" && substr($compatfile, -4) == ".inc") {
-			$ver = substr($compatfile, 7, strlen($compatfile) - 11);
-			if ($ver != "SVN")
-				$versions[] = $ver;
-		}
-	}
-	closedir($dir);
-}
-
-// Sort by version number
-natsort($versions);
-
-// Latest version first
-$versions = array_reverse($versions);
-
-if ($version == "SVN") {
-?>
-	  This is the compatibility of the current WIP SVN version, <B>not of a stable release</B>
-	  (Please see one of the following for the Compatibility charts of the stable releases:
-<?php
-foreach ($versions as $ver)
-	echo " <a href=\"compatibility.php?version=".$ver."\">".$ver."</a>";
-
-?>).<br><br>
-	  As this is the status of the Work In Progress version, occasional temporary bugs
-	  may be introduced with new changes, thus this list refects the 'best case' scenario. 
-	  It is highly recommended to use the latest stable release, where possible.
-<?php
-} else {
-?>
-	  Also, this is the compatibility of the <?php echo $version; ?> stable release, <B>not
-	  of SVN snapshots/daily builds</B>. The status of these can be found on the <a href="compatibility.php">SVN Compatibility</A> chart.<br>
-	  You can also see the Compatibility chart for these releases:
-<?php
-
-foreach ($versions as $ver)
-	if ($ver != $version)
-		echo " <a href=\"compatibility.php?version=".$ver."\">".$ver."</a>";
-
-}
-?>
-	  <br><br>
-	  <small>Last Updated: <?php echo date("F d, Y",filemtime($file_root."/include/compatibility/compat-".$version.".inc")); ?></small>
-<br>
-<br>
-    </div>
-<br>
-    <div class="par-content">
-
-<?php
-	// Display the Color Key Table
-	echo html_frame_start("Color Key","85%",1,1,"color4");
-	$pcts = array(0,5,10,15,20,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100);
-	while (list($key,$num) = each($pcts))
-	{
-		$keyTD .= html_frame_td($num,'align=center class="pct'.$num.'"');
-	}
-	echo html_frame_tr($keyTD);
-	echo html_frame_end(),html_br();
-}
-
-// render the compatibility chart
-
-if ($details) {
-	// 'Details' mode -- information about a specific game
-	echo html_frame_start("Game Compatibility Chart","90%",2,1,"color4");
-	echo html_frame_tr(
-			   html_frame_td("Game Full Name").
-			   html_frame_td("Game Short Name").
-			   html_frame_td("% Completed"),
-			   "color4"
-	
-			  );
-
-	$arrayt = array();
-	foreach($gamesCompanies as $ar) {
-		$arrayt = array_merge($arrayt, $ar);
-	}
-	while (list($name,$array) = each($arrayt))
-	{
-
-		if ($array[0] == $details) {
-			$color = "color0";
-			echo html_frame_tr(
-				html_frame_td($name).
-			    	html_frame_td($array[0]).
-		 	    	html_frame_td($array[1]."%", 'align="center" class="pct'.($array[1] - ($array[1]%5)).'"'),
-		  	        $color
-	  		);
-			echo html_frame_tr(html_frame_td(
-							 html_br().
-							 html_blockquote($notes{$details}).
-							 html_br(),
-							 "colspan=4")
-							);
-		}
-	}
-} else {
-	// List mode -- show all games
-	function displayGameList($title, $games) {
-		global $version;
-
-		echo html_frame_start("$title Game Compatibility Chart","95%",2,1,"color4");
-		echo html_frame_tr(
-			   html_frame_td("Game Full Name").
-			   html_frame_td("Game Short Name").
-			   html_frame_td("% Completed"),
-			   "color4"
-			  );
-		$c = 0;
-		while (list($name,$array) = each($games))
-		{	
-			if ($c % 2 == 0) { $color = "color2"; } else { $color = "color0"; }
-			echo html_frame_tr(
-						html_frame_td(html_ahref($name, $PHP_SELF."?version=".$version."&details=".$array[0])).
-						html_frame_td($array[0]).
-						html_frame_td($array[1]."%", 'align="center" class="pct'.($array[1] - ($array[1]%5)).'"'),
-						$color
-			);
-			$c++;
-		}		  
-	}
-	
-	$i = 0;
-	while (list($name,$games) = each($gamesCompanies))
-	{
-		if ($i != 0) {
-			echo html_frame_end(" ");
-			echo html_p();
-		}
-
-		displayGameList($name, $games);
-
-		$i++;
-	}
-
-}
-
-echo html_frame_end(" ");
-
-if ($details)
-  echo '<p class="bottom-link"><a href="javascript:history.back(1)"><<Back</a></p>'."\n";
-
-echo " <br>";
-echo "  </div>\n";
-echo "</div>\n";
-
-html_content_end();
-html_page_footer();
-
-?>

Deleted: web/trunk/contact.php
===================================================================
--- web/trunk/contact.php	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/contact.php	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,87 +0,0 @@
-<?php
-
-// set this for position of this file relative
-$file_root = ".";
-
-// load libraries
-require($file_root."/include/"."incl.php");
-
-// start of html
-html_page_header('ScummVM :: Contact');
-
-html_content_begin('Contact');
-
-?>
-  <div class="par-item">
-    <div class="par-intro">
-	<p>
-	<br>
-		<b>Please do not contact the team for questions about using ScummVM. Instead use the
-		<a href="http://forums.scummvm.org/">forums</a> or the
-		<a href="http://sourceforge.net/tracker/?group_id=37116äatid=418820">bug reporting system</a>!</b><br><br>
-	</p>
-    </div>
-	<br>
-
-<?php html_subhead_start("IRC channel"); ?>
-
-    <div class="par-subhead-content">
-	<p>
-		The #scummvm IRC channel on <a href="http://freenode.net/irc_servers.shtml">irc.freenode.net</a> is also a good
-		place to ask questions. Many ScummVM developers hang out there regularly, as well as many ScummVM users.
-	</p>
-	<br>
-
-    </div>	
-
-    <?php html_subhead_start("Forums"); ?>
-
-    <div class="par-subhead-content">
-	<p>
-	We offer several <a href="http://forums.scummvm.org/">forums</a>.
-	Use the <a href="http://forums.scummvm.org/viewforum.php?f=2">Help and Support forum</a> if you encounter problems using ScummVM.
-	The <a href="http://forums.scummvm.org/viewforum.php?f=1">General discussion forum</a> is, as the name suggests,
-	meant for general discussion of any topics somehow related to ScummVM.
-  Also there are some platform-specific forums and <a href="http://forums.scummvm.org/viewforum.php?f=8">the Junkyard</a>.
-	</p>
-	<p><b>Don't forget to read <a href="http://forums.scummvm.org/viewtopic.php?t=17">Forum Rules</a> before your first post.</b></p>
-	<br>
-	
-    </div>	
-
-<?php html_subhead_start("Bug reports, feature requests, patches"); ?>
-
-    <div class="par-subhead-content">
-	<p>
-	If you think you found a bug, take a look at our <a href="http://sourceforge.net/tracker/?group_id=37116äatid=418820">bug tracker</a>.
-	Maybe a similar bug has already been filed, in which case you can add a comment to that bug report. If not, you can submit a new
-	bug report, but <b>please carefully read the instructions given on the submit form</b>. And of course, follow them :-)
-	</p>
-	<p>
-	Feature requests should go on our <a href="http://sourceforge.net/tracker/?group_id=37116äatid=418823">feature request tracker</a>
-	(again first check if something similar has already been requested).
-	</p>
-	<p>
-	Finally, if you have made a modification to the ScummVM source code and want to see it merged back into the ScummVM main line,
-	you can use our <a href="http://sourceforge.net/tracker/?group_id=37116äatid=418822">patch tracker</a> for that. 
-	</p>
-	<br>
-    
-    </div>	
-
-<?php html_subhead_start("Mailing lists"); ?>
-
-    <div class="par-subhead-content">
-	<p>
-	There are three ScummVM related  <a href="http://sourceforge.net/mail/?group_id=37116">mailing lists</a>.
-	Two of them are for automated content only. The one where you can send emails to yourself is scummvm-devel.
-	</p>
-    </div>
-  </div>
-
-<?php
-
-html_content_end();
-html_page_footer();
-
-?>

Deleted: web/trunk/credits.inc
===================================================================
--- web/trunk/credits.inc	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/credits.inc	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,444 +0,0 @@
-<!-- This file was generated by credits.pl. Do not edit by hand! -->
-<div class='par-item'><div class='par-head'>ScummVM Team</div><div class='par-content'> 
-<div class='par-subhead'>Project Leaders</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-</div>
-<div class='par-subhead'>Retired Project Leaders</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>James Brown</td><td style='width:10em; text-align: left;' class='news-author'>ender</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Vincent Hamm</td><td style='width:10em; text-align: left;' class='news-author'>yaz0r</td><td>ScummVM co-founder, Original Cruise/CinE author</td>
-<tr><td style='width:13em; padding:2px;'>Ludvig Strigeus</td><td style='width:10em; text-align: left;' class='news-author'>ludde</td><td>Original ScummVM and SimonVM author</td>
-</table>
-</div>
-<div class='par-subhead'>Engine Teams</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<span style='font-weight: bold'>SCUMM:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Travis Howell</td><td style='width:10em; text-align: left;' class='news-author'>Kirben</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Paweł Kołodziejski</td><td style='width:10em; text-align: left;' class='news-author'>aquadran</td><td>Codecs, iMUSE, Smush, etc.</td>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td>FT INSANE, MM NES, MM C64, game detection, Herc/CGA</td>
-</table>
-<span style='font-weight: bold'>HE:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Travis Howell</td><td style='width:10em; text-align: left;' class='news-author'>Kirben</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-<span style='font-weight: bold'>AGI:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Stuart George</td><td style='width:10em; text-align: left;' class='news-author'>darkfiber</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Matthew Hoops</td><td style='width:10em; text-align: left;' class='news-author'>clone2727</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Filippos Karapetis</td><td style='width:10em; text-align: left;' class='news-author'>[md5]</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Paweł Kołodziejski</td><td style='width:10em; text-align: left;' class='news-author'>aquadran</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Walter van Niftrik</td><td style='width:10em; text-align: left;' class='news-author'>waltervn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Kari Salminen</td><td style='width:10em; text-align: left;' class='news-author'>Buddha^</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-<span style='font-weight: bold'>AGOS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Paul Gilbert</td><td style='width:10em; text-align: left;' class='news-author'>dreammaster</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Travis Howell</td><td style='width:10em; text-align: left;' class='news-author'>Kirben</td><td></td>
-</table>
-<span style='font-weight: bold'>BASS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Joost Peters</td><td style='width:10em; text-align: left;' class='news-author'>joostp</td><td></td>
-</table>
-<span style='font-weight: bold'>Broken Sword 1:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-</table>
-<span style='font-weight: bold'>Broken Sword 2:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-</table>
-<span style='font-weight: bold'>Cinematique evo 1:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Vincent Hamm</td><td style='width:10em; text-align: left;' class='news-author'>yazoo</td><td>original CinE engine author</td>
-<tr><td style='width:13em; padding:2px;'>Paweł Kołodziejski</td><td style='width:10em; text-align: left;' class='news-author'>aquadran</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-<span style='font-weight: bold'>Cinematique evo 2:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Vincent Hamm</td><td style='width:10em; text-align: left;' class='news-author'>yazoo</td><td>original CruisE engine author</td>
-</table>
-<span style='font-weight: bold'>FOTAQ:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Joost Peters</td><td style='width:10em; text-align: left;' class='news-author'>joostp</td><td></td>
-</table>
-<span style='font-weight: bold'>Gob:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Sven Hesse</td><td style='width:10em; text-align: left;' class='news-author'>DrMcCoy</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Willem Jan Palenstijn</td><td style='width:10em; text-align: left;' class='news-author'>wjp</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-<span style='font-weight: bold'>Groovie:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Henry Bush</td><td style='width:10em; text-align: left;' class='news-author'>spookypeanut</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Scott Thomas</td><td style='width:10em; text-align: left;' class='news-author'>ST</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Jordi Vilalta Prat</td><td style='width:10em; text-align: left;' class='news-author'>jvprat</td><td></td>
-</table>
-<span style='font-weight: bold'>Kyra:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td>VQA Player</td>
-<tr><td style='width:13em; padding:2px;'>Oystein Eftevaag</td><td style='width:10em; text-align: left;' class='news-author'>vinterstum</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Florian Kagerer</td><td style='width:10em; text-align: left;' class='news-author'>athrxx</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Johannes Schickel</td><td style='width:10em; text-align: left;' class='news-author'>LordHoto</td><td></td>
-</table>
-<span style='font-weight: bold'>Lure:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Paul Gilbert</td><td style='width:10em; text-align: left;' class='news-author'>dreammaster</td><td></td>
-</table>
-<span style='font-weight: bold'>M4:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Paul Gilbert</td><td style='width:10em; text-align: left;' class='news-author'>dreammaster</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Benjamin Haisch</td><td style='width:10em; text-align: left;' class='news-author'>johndoe</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Filippos Karapetis</td><td style='width:10em; text-align: left;' class='news-author'>[md5]</td><td></td>
-</table>
-<span style='font-weight: bold'>MADE:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Benjamin Haisch</td><td style='width:10em; text-align: left;' class='news-author'>johndoe</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Filippos Karapetis</td><td style='width:10em; text-align: left;' class='news-author'>[md5]</td><td></td>
-</table>
-<span style='font-weight: bold'>Parallaction:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>peres</td><td></td>
-</table>
-<span style='font-weight: bold'>SAGA:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Sven Hesse</td><td style='width:10em; text-align: left;' class='news-author'>DrMcCoy</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Filippos Karapetis</td><td style='width:10em; text-align: left;' class='news-author'>[md5]</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Andrew Kurushin</td><td style='width:10em; text-align: left;' class='news-author'>ajax16384</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-<span style='font-weight: bold'>SCI:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Greg Frieger</td><td style='width:10em; text-align: left;' class='news-author'>_FRG_</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Paul Gilbert</td><td style='width:10em; text-align: left;' class='news-author'>dreammaster</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Filippos Karapetis</td><td style='width:10em; text-align: left;' class='news-author'>[md5]</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Walter van Niftrik</td><td style='width:10em; text-align: left;' class='news-author'>waltervn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Jordi Vilalta Prat</td><td style='width:10em; text-align: left;' class='news-author'>jvprat</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Lars Skovlund</td><td style='width:10em; text-align: left;' class='news-author'>lskovlun</td><td></td>
-</table>
-<span style='font-weight: bold'>Tinsel:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Torbjörn Andersson</td><td style='width:10em; text-align: left;' class='news-author'>eriktorbjorn</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Paul Gilbert</td><td style='width:10em; text-align: left;' class='news-author'>dreammaster</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Sven Hesse</td><td style='width:10em; text-align: left;' class='news-author'>DrMcCoy</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Filippos Karapetis</td><td style='width:10em; text-align: left;' class='news-author'>[md5]</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Joost Peters</td><td style='width:10em; text-align: left;' class='news-author'>joostp</td><td></td>
-</table>
-<span style='font-weight: bold'>Touché:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-</table>
-<span style='font-weight: bold'>Tucker:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Gregory Montoir</td><td style='width:10em; text-align: left;' class='news-author'>cyx</td><td></td>
-</table>
-</div>
-<div class='par-subhead'>Backend Teams</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<span style='font-weight: bold'>Dreamcast:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Marcus Comstedt</td><td></td><td></td>
-</table>
-<span style='font-weight: bold'>GP2X:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>John Willis</td><td style='width:10em; text-align: left;' class='news-author'>DJWillis</td><td></td>
-</table>
-<span style='font-weight: bold'>iPhone:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Oystein Eftevaag</td><td style='width:10em; text-align: left;' class='news-author'>vinterstum</td><td></td>
-</table>
-<span style='font-weight: bold'>Maemo:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Frantisek Dufka</td><td style='width:10em; text-align: left;' class='news-author'>fanoush</td><td></td>
-</table>
-<span style='font-weight: bold'>Nintendo DS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Neil Millstone</td><td style='width:10em; text-align: left;' class='news-author'>agent-q</td><td></td>
-</table>
-<span style='font-weight: bold'>PalmOS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Chris Apers</td><td style='width:10em; text-align: left;' class='news-author'>chrilith </td><td></td>
-</table>
-<span style='font-weight: bold'>PocketPC / WinCE:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Kostas Nakos</td><td style='width:10em; text-align: left;' class='news-author'>Jubanka</td><td></td>
-</table>
-<span style='font-weight: bold'>PlayStation 2:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Max Lingua</td><td style='width:10em; text-align: left;' class='news-author'>sunmax</td><td></td>
-</table>
-<span style='font-weight: bold'>PSP (PlayStation Portable):</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Joost Peters</td><td style='width:10em; text-align: left;' class='news-author'>joostp</td><td></td>
-</table>
-<span style='font-weight: bold'>SDL (Win/Linux/OS X/etc.):</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td>Asm routines, GFX layers</td>
-</table>
-<span style='font-weight: bold'>SymbianOS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Jurgen Braam</td><td style='width:10em; text-align: left;' class='news-author'>SumthinWicked</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Lars Persson</td><td style='width:10em; text-align: left;' class='news-author'>AnotherGuest</td><td></td>
-</table>
-<span style='font-weight: bold'>Wii:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Andre Heider</td><td style='width:10em; text-align: left;' class='news-author'>dhewg</td><td></td>
-</table>
-</div>
-<div class='par-subhead'>Other subsystems</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<span style='font-weight: bold'>Infrastructure:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td>Backend & Engine APIs, file API, sound mixer, audiostreams, data structures, etc.</td>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-</table>
-<span style='font-weight: bold'>GUI:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Eugene Sandulenko</td><td style='width:10em; text-align: left;' class='news-author'>sev</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Johannes Schickel</td><td style='width:10em; text-align: left;' class='news-author'>LordHoto</td><td></td>
-</table>
-<span style='font-weight: bold'>Miscellaneous:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>David Corrales-Lopez</td><td style='width:10em; text-align: left;' class='news-author'>david_corrales</td><td>Filesystem access improvements (GSoC 2007 task)</td>
-<tr><td style='width:13em; padding:2px;'>Jerome Fisher</td><td style='width:10em; text-align: left;' class='news-author'>KingGuppy</td><td>MT-32 emulator</td>
-<tr><td style='width:13em; padding:2px;'>Jochen Hoenicke</td><td style='width:10em; text-align: left;' class='news-author'>hoenicke</td><td>Speaker & PCjr sound support, AdLib work</td>
-<tr><td style='width:13em; padding:2px;'>Chris Page</td><td style='width:10em; text-align: left;' class='news-author'>cp88</td><td>Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task)</td>
-<tr><td style='width:13em; padding:2px;'>Robin Watts</td><td style='width:10em; text-align: left;' class='news-author'>robinwatts</td><td>ARM assembly routines for nice speedups on several ports; improvements to the sound mixer</td>
-</table>
-</div>
-<div class='par-subhead'>Website (content)</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<p style='margin-left:2em; margin-bottom: 1em'>All active team members</p>
-</div>
-<div class='par-subhead'>Documentation</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Joachim Eberhard</td><td style='width:10em; text-align: left;' class='news-author'>joachimeberhard</td><td>Numerous contributions to documentation</td>
-<tr><td style='width:13em; padding:2px;'>Matthew Hoops</td><td style='width:10em; text-align: left;' class='news-author'>clone2727</td><td>Wiki editor</td>
-</table>
-</div>
-<div class='par-subhead'>FreeSCI Contributors</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Anders Baden Nielsen</td><td></td><td>PPC testing</td>
-<tr><td style='width:13em; padding:2px;'>Bas Zoetekouw</td><td></td><td>Man pages, debian package management, CVS maintenance</td>
-<tr><td style='width:13em; padding:2px;'>Carl Muckenhoupt</td><td></td><td>Sources to the SCI resource viewer tools that started it all</td>
-<tr><td style='width:13em; padding:2px;'>Chris Kehler</td><td></td><td>Makefile enhancements</td>
-<tr><td style='width:13em; padding:2px;'>Christoph Reichenbach</td><td></td><td>UN*X code, VM/Graphics/Sound/other infrastructure</td>
-<tr><td style='width:13em; padding:2px;'>Christopher T. Lansdown</td><td></td><td>Original CVS maintainer, Alpha compatibility fixes</td>
-<tr><td style='width:13em; padding:2px;'>Claudio Matsuoka</td><td></td><td>CVS snapshots, daily builds, BeOS and cygwin ports</td>
-<tr><td style='width:13em; padding:2px;'>Dark Minister</td><td></td><td>SCI research (bytecode and parser)</td>
-<tr><td style='width:13em; padding:2px;'>Dmitry Jemerov</td><td></td><td>Port to the Win32 platform, numerous bugfixes</td>
-<tr><td style='width:13em; padding:2px;'>Emmanuel Jeandel</td><td></td><td>Bugfixes and bug reports</td>
-<tr><td style='width:13em; padding:2px;'>Francois-R Boyer</td><td></td><td>MT-32 information and mapping code</td>
-<tr><td style='width:13em; padding:2px;'>George Reid</td><td></td><td>FreeBSD package management</td>
-<tr><td style='width:13em; padding:2px;'>Hubert Maier</td><td></td><td>AmigaOS 4 port</td>
-<tr><td style='width:13em; padding:2px;'>Hugues Valois</td><td></td><td>Game selection menu</td>
-<tr><td style='width:13em; padding:2px;'>Johannes Manhave</td><td></td><td>Document format translation</td>
-<tr><td style='width:13em; padding:2px;'>Jordi Vilalta</td><td></td><td>Numerous code and website clean-up patches</td>
-<tr><td style='width:13em; padding:2px;'>Lars Skovlund</td><td></td><td>Project maintenance, most documentation, bugfixes, SCI1 support</td>
-<tr><td style='width:13em; padding:2px;'>Magnus Reftel</td><td></td><td>Heap implementation, Python class viewer, bugfixes</td>
-<tr><td style='width:13em; padding:2px;'>Matt Hargett</td><td></td><td>Clean-ups, bugfixes, Hardcore QA, Win32</td>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td></td><td>SetJump implementation</td>
-<tr><td style='width:13em; padding:2px;'>Paul David Doherty</td><td></td><td>Game version information</td>
-<tr><td style='width:13em; padding:2px;'>Petr Vyhnak</td><td></td><td>The DCL-INFLATE algorithm, many Win32 improvements</td>
-<tr><td style='width:13em; padding:2px;'>Rainer Canavan</td><td></td><td>IRIX MIDI driver and bug fixes</td>
-<tr><td style='width:13em; padding:2px;'>Rainer De Temple</td><td></td><td>SCI research</td>
-<tr><td style='width:13em; padding:2px;'>Ravi I.</td><td></td><td>SCI0 sound resource specification</td>
-<tr><td style='width:13em; padding:2px;'>Ruediger Hanke</td><td></td><td>Port to the MorphOS platform</td>
-<tr><td style='width:13em; padding:2px;'>Rune Orsval</td><td></td><td>Configuration file editor</td>
-<tr><td style='width:13em; padding:2px;'>Rickard Lind</td><td></td><td>MT32->GM MIDI mapping magic, sound research</td>
-<tr><td style='width:13em; padding:2px;'>Rink Springer</td><td></td><td>Port to the DOS platform, several bug fixes</td>
-<tr><td style='width:13em; padding:2px;'>Robey Pointer</td><td></td><td>Bug tracking system hosting</td>
-<tr><td style='width:13em; padding:2px;'>Sergey Lapin</td><td></td><td>Port of Carl's type 2 decompression code</td>
-<tr><td style='width:13em; padding:2px;'>Solomon Peachy</td><td></td><td>SDL ports and much of the sound subsystem</td>
-<tr><td style='width:13em; padding:2px;'>Vyacheslav Dikonov</td><td></td><td>Config script improvements</td>
-<tr><td style='width:13em; padding:2px;'>Walter van Niftrik</td><td></td><td>Ports to the Dreamcast and GP32 platforms</td>
-<tr><td style='width:13em; padding:2px;'>Xiaojun Chen</td><td></td><td></td>
-<tr><td style='width:13em; padding:2px;'>Sean Terrell</td><td></td><td></td>
-</table>
-<p style='margin-left:2em; margin-bottom: 1em'>Special thanks to Prof. Dr. Gary Nutt for allowing the FreeSCI VM extension as a course project in his Advanced OS course</p>
-<p style='margin-left:2em; margin-bottom: 1em'>Special thanks to Bob Heitman and Corey Cole for their support of FreeSCI</p>
-</div>
-<div class='par-subhead'>Retired Team Members</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Tore Anderson</td><td style='width:10em; text-align: left;' class='news-author'>tore</td><td>Former Debian GNU/Linux maintainer</td>
-<tr><td style='width:13em; padding:2px;'>Nicolas Bacca</td><td style='width:10em; text-align: left;' class='news-author'>arisme</td><td>Former WinCE porter</td>
-<tr><td style='width:13em; padding:2px;'>Ralph Brorsen</td><td style='width:10em; text-align: left;' class='news-author'>painelf</td><td>Help with GUI implementation</td>
-<tr><td style='width:13em; padding:2px;'>Jamieson Christian</td><td style='width:10em; text-align: left;' class='news-author'>jamieson630</td><td>iMUSE, MIDI, all things musical</td>
-<tr><td style='width:13em; padding:2px;'>David Eriksson</td><td style='width:10em; text-align: left;' class='news-author'>twogood</td><td>Engines: FOTAQ</td>
-<tr><td style='width:13em; padding:2px;'>Hans-Jörg Frieden</td><td></td><td>Former AmigaOS 4 packager</td>
-<tr><td style='width:13em; padding:2px;'>Robert Göffringmann</td><td style='width:10em; text-align: left;' class='news-author'>lavosspawn</td><td>Original PS2 porter; Engines: BASS, BS1</td>
-<tr><td style='width:13em; padding:2px;'>Jonathan Gray</td><td style='width:10em; text-align: left;' class='news-author'>khalek</td><td>Engines: SCUMM, HE, BS2</td>
-<tr><td style='width:13em; padding:2px;'>Rüdiger Hanke</td><td></td><td>Port: MorphOS</td>
-<tr><td style='width:13em; padding:2px;'>Felix Jakschitsch</td><td style='width:10em; text-align: left;' class='news-author'>yot</td><td>Zak256 reverse engineering</td>
-<tr><td style='width:13em; padding:2px;'>Oliver Kiehl</td><td style='width:10em; text-align: left;' class='news-author'>olki</td><td>Engines: AGOS, BASS</td>
-<tr><td style='width:13em; padding:2px;'>Mutwin Kraus</td><td style='width:10em; text-align: left;' class='news-author'>mutle</td><td>Original MacOS porter</td>
-<tr><td style='width:13em; padding:2px;'>Peter Moraliyski</td><td style='width:10em; text-align: left;' class='news-author'>ph0x</td><td>Port: GP32</td>
-<tr><td style='width:13em; padding:2px;'>Juha Niemimäki</td><td></td><td>Former AmigaOS 4 packager</td>
-<tr><td style='width:13em; padding:2px;'>Jeremy Newman</td><td style='width:10em; text-align: left;' class='news-author'>laxdragon</td><td>Former webmaster</td>
-<tr><td style='width:13em; padding:2px;'>Lionel Ulmer</td><td style='width:10em; text-align: left;' class='news-author'>bbrox</td><td>Port: X11</td>
-<tr><td style='width:13em; padding:2px;'>Won Star</td><td style='width:10em; text-align: left;' class='news-author'>wonst719</td><td>Former GP32 porter</td>
-<tr><td style='width:13em; padding:2px;'>David Symonds</td><td style='width:10em; text-align: left;' class='news-author'>dsymonds</td><td>Engines: AGI</td>
-</table>
-</div>
-</div></div>
-<div class='par-item'><div class='par-head'>Other contributions</div><div class='par-content'> 
-<div class='par-subhead'>Packages</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<span style='font-weight: bold'>AmigaOS 4:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Hubert Maier</td><td style='width:10em; text-align: left;' class='news-author'>Raziel_AOne</td><td></td>
-</table>
-<span style='font-weight: bold'>Atari/FreeMiNT:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Keith Scroggins</td><td style='width:10em; text-align: left;' class='news-author'>KeithS</td><td></td>
-</table>
-<span style='font-weight: bold'>BeOS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Stefan Parviainen</td><td></td><td></td>
-<tr><td style='width:13em; padding:2px;'>Luc Schrijvers</td><td style='width:10em; text-align: left;' class='news-author'>Begasus</td><td></td>
-</table>
-<span style='font-weight: bold'>Debian GNU/Linux:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>David Weinehall</td><td style='width:10em; text-align: left;' class='news-author'>tao</td><td></td>
-</table>
-<span style='font-weight: bold'>Fedora / RedHat:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Willem Jan Palenstijn</td><td style='width:10em; text-align: left;' class='news-author'>wjp</td><td></td>
-</table>
-<span style='font-weight: bold'>Mac OS X:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Max Horn</td><td style='width:10em; text-align: left;' class='news-author'>Fingolfin</td><td></td>
-<tr><td style='width:13em; padding:2px;'>Oystein Eftevaag</td><td style='width:10em; text-align: left;' class='news-author'>vinterstum</td><td></td>
-</table>
-<span style='font-weight: bold'>Mandriva:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Dominik Scherer</td><td></td><td></td>
-</table>
-<span style='font-weight: bold'>MorphOS:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Fabien Coeurjoly</td><td style='width:10em; text-align: left;' class='news-author'>fab1</td><td></td>
-</table>
-<span style='font-weight: bold'>OS/2:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Paul Smedley</td><td style='width:10em; text-align: left;' class='news-author'>Creeping</td><td></td>
-</table>
-<span style='font-weight: bold'>SlackWare:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Robert Kelsen</td><td></td><td></td>
-</table>
-<span style='font-weight: bold'>Solaris x86:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Laurent Blume</td><td style='width:10em; text-align: left;' class='news-author'>laurent</td><td></td>
-</table>
-<span style='font-weight: bold'>Solaris SPARC:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Markus Strangl</td><td style='width:10em; text-align: left;' class='news-author'>WooShell</td><td></td>
-</table>
-<span style='font-weight: bold'>Win32:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Travis Howell</td><td style='width:10em; text-align: left;' class='news-author'>Kirben</td><td></td>
-</table>
-<span style='font-weight: bold'>Win64:</span>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Chris Gray</td><td style='width:10em; text-align: left;' class='news-author'>Psychoid</td><td></td>
-</table>
-</div>
-<div class='par-subhead'>Websites (design)</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Dobó Balázs</td><td style='width:10em; text-align: left;' class='news-author'>draven</td><td>Website design</td>
-<tr><td style='width:13em; padding:2px;'>Yaroslav Fedevych</td><td style='width:10em; text-align: left;' class='news-author'>jafd</td><td>HTML/CSS for the website</td>
-<tr><td style='width:13em; padding:2px;'>David Jensen</td><td style='width:10em; text-align: left;' class='news-author'>Tyst</td><td>SVG logo conversion</td>
-<tr><td style='width:13em; padding:2px;'>Jean Marc</td><td></td><td>ScummVM logo</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>Raina</td><td>ScummVM forum buttons</td>
-</table>
-</div>
-<div class='par-subhead'>Code contributions</div>
-<div class='par-subhead-dots'> </div>
-<div class='par-subhead-content'>
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Ori Avtalion</td><td style='width:10em; text-align: left;' class='news-author'>salty-horse</td><td>Subtitle control options in the GUI; BASS GUI fixes</td>
-<tr><td style='width:13em; padding:2px;'>Stuart Caie</td><td></td><td>Decoders for Amiga and AtariST data files (AGOS engine)</td>
-<tr><td style='width:13em; padding:2px;'>Paolo Costabel</td><td></td><td>PSP port contributions</td>
-<tr><td style='width:13em; padding:2px;'>Thierry Crozat</td><td style='width:10em; text-align: left;' class='news-author'>criezy</td><td>Support for Broken Sword 1 Macintosh version</td>
-<tr><td style='width:13em; padding:2px;'>Martin Doucha</td><td style='width:10em; text-align: left;' class='news-author'>next_ghost</td><td>CinE engine objectification</td>
-<tr><td style='width:13em; padding:2px;'>Thomas Fach-Pedersen</td><td style='width:10em; text-align: left;' class='news-author'>madmoose</td><td>ProTracker module player</td>
-<tr><td style='width:13em; padding:2px;'>Benjamin Haisch</td><td style='width:10em; text-align: left;' class='news-author'>john_doe</td><td>Heavily improved de-/encoder for DXA videos</td>
-<tr><td style='width:13em; padding:2px;'>Janne Huttunen</td><td></td><td>V3 actor mask support, Dig/FT SMUSH audio</td>
-<tr><td style='width:13em; padding:2px;'>Kovács Endre János</td><td></td><td>Several fixes for Simon1</td>
-<tr><td style='width:13em; padding:2px;'>Jeroen Janssen</td><td style='width:10em; text-align: left;' class='news-author'>japj</td><td>Numerous readability and bugfix patches</td>
-<tr><td style='width:13em; padding:2px;'>Andreas Karlsson</td><td style='width:10em; text-align: left;' class='news-author'>Sprawl</td><td>Initial port for SymbianOS</td>
-<tr><td style='width:13em; padding:2px;'>Claudio Matsuoka</td><td></td><td>Daily Linux builds</td>
-<tr><td style='width:13em; padding:2px;'>Thomas Mayer</td><td></td><td>PSP port contributions</td>
-<tr><td style='width:13em; padding:2px;'>Sean Murray</td><td style='width:10em; text-align: left;' class='news-author'>lightcast</td><td>ScummVM tools GUI application (GSoC 2007 task)</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>n0p</td><td>Windows CE port aspect ratio correction scaler and right click input method</td>
-<tr><td style='width:13em; padding:2px;'>Mikesch Nepomuk</td><td style='width:10em; text-align: left;' class='news-author'>mnepomuk</td><td>MI1 VGA floppy patches</td>
-<tr><td style='width:13em; padding:2px;'>Nicolas Noble</td><td style='width:10em; text-align: left;' class='news-author'>pixels</td><td>Config file and ALSA support</td>
-<tr><td style='width:13em; padding:2px;'>Tim Phillips</td><td style='width:10em; text-align: left;' class='news-author'>realmz</td><td>Initial MI1 CD music support</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>Quietust</td><td>Sound support for Amiga SCUMM V2/V3 games, MM NES support</td>
-<tr><td style='width:13em; padding:2px;'>Andreas Röver</td><td></td><td>Broken Sword 1/2 MPEG2 cutscene support</td>
-<tr><td style='width:13em; padding:2px;'>Edward Rudd</td><td style='width:10em; text-align: left;' class='news-author'>urkle</td><td>Fixes for playing MP3 versions of MI1/Loom audio</td>
-<tr><td style='width:13em; padding:2px;'>Daniel Schepler</td><td style='width:10em; text-align: left;' class='news-author'>dschepler</td><td>Final MI1 CD music support, initial Ogg Vorbis support</td>
-<tr><td style='width:13em; padding:2px;'>André Souza</td><td style='width:10em; text-align: left;' class='news-author'>luke_br</td><td>SDL-based OpenGL renderer</td>
-</table>
-</div>
-<p style='margin-left:2em; margin-bottom: 1em'>And to all the contributors, users, and beta testers we've missed. Thanks!</p>
-</div></div>
-<div class='par-item'><div class='par-head'>Special thanks to</div><div class='par-content'> 
-<table style='margin-left:2em; margin-bottom: 1em'>
-<tr><td style='width:13em; padding:2px;'>Sander Buskens</td><td></td><td>For his work on the initial reversing of Monkey2</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>Canadacow</td><td>For the original MT-32 emulator</td>
-<tr><td style='width:13em; padding:2px;'>Kevin Carnes</td><td></td><td>For Scumm16, the basis of ScummVM's older gfx codecs</td>
-<tr><td style='width:13em; padding:2px;'>Curt Coder</td><td></td><td>For the original TrollVM (preAGI) code</td>
-<tr><td style='width:13em; padding:2px;'>Patrick Combet</td><td style='width:10em; text-align: left;' class='news-author'>Dorian Gray</td><td>For the original Gobliiins ADL player</td>
-<tr><td style='width:13em; padding:2px;'>Ivan Dubrov</td><td></td><td>For contributing the initial version of the Gobliiins engine</td>
-<tr><td style='width:13em; padding:2px;'>Till Kresslein</td><td style='width:10em; text-align: left;' class='news-author'>Krest</td><td>For design of modern ScummVM GUI</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>Jezar</td><td>For his freeverb filter implementation</td>
-<tr><td style='width:13em; padding:2px;'>Jim Leiterman</td><td></td><td>Various info on his FM-TOWNS/Marty SCUMM ports</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>lloyd</td><td>For deep tech details about C64 Zak & MM</td>
-<tr><td style='width:13em; padding:2px;'>Sarien Team</td><td></td><td>Original AGI engine code</td>
-<tr><td style='width:13em; padding:2px;'>Jimmi Thøgersen</td><td></td><td>For ScummRev, and much obscure code/documentation</td>
-<tr><td style='width:13em; padding:2px;'>???</td><td style='width:10em; text-align: left;' class='news-author'>Tristan</td><td>For additional work on the original MT-32 emulator</td>
-<tr><td style='width:13em; padding:2px;'>James Woodcock</td><td></td><td>Soundtrack enhancements</td>
-</table>
-<p style='margin-left:2em; margin-bottom: 1em'>Tony Warriner and everyone at Revolution Software Ltd. for sharing with us the source of some of their brilliant games, allowing us to release Beneath a Steel Sky as freeware... and generally being supportive above and beyond the call of duty.</p>
-<p style='margin-left:2em; margin-bottom: 1em'>John Passfield and Steve Stamatiadis for sharing the source of their classic title, Flight of the Amazon Queen and also being incredibly supportive.</p>
-<p style='margin-left:2em; margin-bottom: 1em'>Joe Pearce from The Wyrmkeep Entertainment Co. for sharing the source of their famous title Inherit the Earth and always prompt replies to our questions.</p>
-<p style='margin-left:2em; margin-bottom: 1em'>Aric Wilmunder, Ron Gilbert, David Fox, Vince Lee, and all those at LucasFilm/LucasArts who made SCUMM the insane mess to reimplement that it is today. Feel free to drop us a line and tell us what you think, guys!</p>
-<p style='margin-left:2em; margin-bottom: 1em'>Alan Bridgman, Simon Woodroffe and everyone at Adventure Soft for sharing the source code of some of their games with us.</p>
-</div></div>
-

Deleted: web/trunk/credits.php
===================================================================
--- web/trunk/credits.php	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/credits.php	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,25 +0,0 @@
-<?php
-
-/*
- * Credits Page for ScummVM
- *
- */
-
-// set this for position of this file relative
-$file_root = ".";
-  global $file_root;
-
-// load libraries
-require($file_root."/include/"."incl.php");
-
-// start of html
-html_page_header('ScummVM :: Credits');
-
-html_content_begin('Credits');
-
-include $file_root."/credits.inc";
-
-html_content_end();
-html_page_footer();
-
-?>

Deleted: web/trunk/demos.php
===================================================================
--- web/trunk/demos.php	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/demos.php	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,498 +0,0 @@
-<?php
-
-/*
- * Links to Demo downloads
- *
- */
-
-// set this for position of this file relative
-$file_root = ".";
-
-// load libraries
-require($file_root."/include/"."incl.php");
-
-// start of html
-html_page_header('ScummVM :: Game Demos');
-
-html_content_begin('Game Demos');
-
-?>
-<div class="par-item">
-  <div class="par-intro">
-  <br>
-       <table border=0>
-	  <tr><td width="35%">
-
-    <div class="navigation">
-       Navigation
-
-       <div class="nav-dots">
-	   
-       </div>
-
-<table border=0>
-
-<?php
-  html_nav_item("#lec", "LucasArts Demos");
-  html_nav_item("#he", "Humongous Entertainment Demos");
-  html_nav_item("#agos", "Adventuresoft/Horrorsoft Demos");
-  html_nav_item("#gob", "Coktel Vision Demos");
-  html_nav_item("#sierra", "Sierra Demos");
-  html_nav_item("#other", "Miscellaneous Demos");
-?>
-
-</table>
-    </div>
-</td>
-<td>
-  This page lists links to demos of various games, please contact us if you have a copy of any demo not listed here,<br><br>
-  Beneath A Steel Sky floppy demos aren't going to be supported for technical reasons.<br><br>
-</td></tr>
-</table>
-
-  <br>
-
-</div>
-
-  <br>
-  <br>
-
-  <div class="par-content">
-
-<?php
-
-$LEC_demos = array(
-	'Day of the Tentacle (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/dott-dos-ni-demo-en.zip', 'tentacle'),
-	'Day of the Tentacle (DOS French demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/dott-dos-ni-demo-fr.zip', 'tentacle'),
-	'Day of the Tentacle (DOS German demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/dott-dos-ni-demo-de.zip', 'tentacle'),
-	'Day of the Tentacle (Macintosh demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/dott-mac-ni-demo-en.zip', 'tentacle'),
-	'Full Throttle (DOS demo)'
-		=> array('http://demos.robertmegone.com/scumm/ft-dos-demo-en.zip', 'ft'),
-	'Full Throttle (Macintosh demo)'
-		=> array('http://demos.robertmegone.com/scumm/ft-mac-demo-en.zip', 'ft'),
-	'Indiana Jones and the Fate of Atlantis (DOS demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/atlantis-dos-demo1-en.zip', 'atlantis'),
-	'Indiana Jones and the Fate of Atlantis (DOS Alternative demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/atlantis-dos-demo2-en.zip', 'atlantis'),
-	'Indiana Jones and the Fate of Atlantis (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/atlantis-dos-ni-demo-en.zip', 'atlantis'),
-	'Indiana Jones and the Fate of Atlantis (FM Towns demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/atlantis-fmtowns-ni-demo-jp.zip', 'atlantis'),
-	'Indiana Jones and the Last Crusade (DOS EGA - Non interactive)'	
-		=> array('http://demos.robertmegone.com/scumm/indy3-ega-ni-demo-en.zip', 'indy3'),
-	'Indiana Jones and the Last Crusade & Loom (FM Towns demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/zak-fmtowns-indyloom-ni-demo.zip', 'zak'),
-	'Indiana Jones and the Last Crusade & Zak McKracken (FM Towns demo - Non interactive)'
-		=>array('http://demos.robertmegone.com/scumm/zak-fmtowns-indyzak-ni-demo.zip', 'zak'),
-	'Loom (DOS EGA - Short Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/loom-dos-short-demo-en.zip', 'loom'),
-	'Loom (DOS EGA - Long Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/loom-dos-long-demo-en.zip', 'loom'),
-	'Maniac Mansion (v1 DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/maniac-dos-v1-ni-demo-en.zip', 'maniac'),
-	'Maniac Mansion (v2 DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/maniac-dos-v2-ni-demo-en.zip', 'maniac'),
-	'Monkey Island 2 (DOS demo - not supported by ScummVM)'
-		=> array('http://demos.robertmegone.com/scumm/monkey2-dos-ni-demo-en.zip', 'monkey2'),
-	'Passport to Adventure (DOS EGA demos of Indiana Jones and the Last Crusade, The Secret of Monkey Island, Loom)'
-		=> array('http://demos.robertmegone.com/scumm/pass-dos-en.zip', 'pass'),
-	'Sam & Max Hit the Road (DOS demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/samnmax-dos-demo-en.zip', 'samnmax'),
-	'Sam & Max Hit the Road (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/samnmax-dos-ni-demo-en.zip', 'samnmax'),
-	'Sam & Max Hit the Road (DOS German demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/samnmax-dos-demo-de.zip', 'samnmax'),
-	'Sam & Max Hit the Road (DOS WIP demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/samnmax-dos-wip-demo-en.zip', 'samnmax'),
-	'Sam & Max Hit the Road (DOS CD demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/samnmax-dos-cd-demo-en.zip', 'samnmax'),
-	'Sam & Max Hit the Road (Macintosh demo - Interactive)'
-		=> array('http://demos.robertmegone.com/scumm/samnmax-mac-demo-en.zip', 'samnmax'),
-	'The Curse of Monkey Island (Windows small demo)'
-		=> array('http://demos.robertmegone.com/scumm/comi-win-small-demo-en.zip', 'comi'),
-	'The Curse of Monkey Island (Windows large demo)'
-		=> array('http://demos.robertmegone.com/scumm/comi-win-large-demo-en.zip', 'comi'),
-	'The Dig (Macintosh demo)'
-		=> array('http://demos.robertmegone.com/scumm/dig-mac-demo-en.zip', 'dig'),
-	'The Dig (DOS demo)'
-		=> array('http://demos.robertmegone.com/scumm/dig-dos-demo-en.zip', 'dig'),
-	'The Secret of Monkey Island (Amiga demo)'	
-		=> array('http://demos.robertmegone.com/scumm/monkey1-amiga-demo-en.zip', 'monkey'),
-	'The Secret of Monkey Island (DOS EGA demo)'	
-		=> array('http://demos.robertmegone.com/scumm/monkey1-dos-ega-demo-en.zip', 'monkey'),
-	'The Secret of Monkey Island (DOS EGA German demo)'	
-		=> array('http://demos.robertmegone.com/scumm/monkey1-dos-ega-demo-de.zip', 'monkey'),
-	'Zak McKracken and the Alien Mindbenders (Atari ST demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/scumm/zak-atari-ni-demo.zip', 'zak'),
-	'Zak McKracken & Loom (FM Towns demo - Non interactive)'
-		=>array('http://demos.robertmegone.com/scumm/zak-fmtowns-zakloom-ni-demo.zip', 'zak')
-	);
-
-$HE_demos = array(
-	'Backyard Baseball (Windows Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/baseball-win-preview1-us.zip', 'baseball'),
-	'Backyard Baseball (Windows Alternative Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/baseball-win-preview2-us.zip', 'baseball'),
-	'Backyard Baseball 2001 (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/baseball2001-win-demo-us.zip', 'baseball2001'),
-	'Backyard Football (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/football-win-demo-us.zip', 'football'),
-	'Big Thinkers Kindergarten (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/thinker1-win-demo-us.zip', 'thinkerk'),
-	'Big Thinkers First Grade (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/thinkerk-win-demo-us.zip', 'thinker1'),
-	'Blue\'s ABC Time (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/BluesABCTime-win-demo1-us.zip', 'BluesABCTime'),
-	'Blue\'s ABC Time (Windows Alternative Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/BluesABCTime-win-demo2-us.zip', 'BluesABCTime'),
-	'Blue\'s ABC Time (Windows Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/BluesABCTime-win-preview-us.zip', 'BluesABCTime'),
-	'Blue\'s Birthday Adventure (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/BluesBirthday-win-demo1-us.zip', 'BluesBirthday'),
-	'Blue\'s Birthday Adventure (Windows Alternative Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/BluesBirthday-win-demo2-us.zip', 'BluesBirthday'),
-	'Blue\'s Birthday Adventure (Windows Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/BluesBirthday-win-preview-us.zip', 'BluesBirthday'),
-	'Fatty Bear\'s Birthday Surprise (DOS demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/fbear-dos-demo-us.zip', 'fbear'),
-	'Fatty Bear\'s Birthday Surprise (Windows demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/fbear-win-demo-us.zip', 'fbear'),
-	'Freddi Fish 1: The Case of the Missing Kelp Seeds (Macintosh Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi-mac-demo_us.zip', 'freddi'),
-	'Freddi Fish 1: The Case of the Missing Kelp Seeds (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi-win-demo-us.zip', 'freddi'),
-	'Freddi Fish 1: The Case of the Missing Kelp Seeds (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi-win-updated-demo-us.zip', 'freddi'),
-	'Freddi Fish 1: The Case of the Missing Kelp Seeds (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi-win-demo-nl.zip', 'freddi'),
-	'Freddi Fish 1: The Case of the Missing Kelp Seeds (Windows French Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi-win-demo-fr.zip', 'freddi'),
-	'Freddi Fish 1: The Case of the Missing Kelp Seeds (Windows German demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi-win-demo-de.zip', 'freddi'),
-	'Freddi Fish 2: The Case of the Haunted Schoolhouse (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi2-win-demo-us.zip', 'freddi2'),
-	'Freddi Fish 2: The Case of the Haunted Schoolhouse (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi2-win-updated-demo-us.zip', 'freddi2'),
-	'Freddi Fish 2: The Case of the Haunted Schoolhouse (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi2-win-demo-nl.zip', 'freddi2'),
-	'Freddi Fish 3: The Case of the Stolen Conch Shell (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi3-win-demo-us.zip', 'freddi3'),
-	'Freddi Fish 3: The Case of the Stolen Conch Shell (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi3-win-demo-nl.zip', 'freddi3'),
-	'Freddi Fish 3: The Case of the Stolen Conch Shell (Windows French Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi3-win-demo-fr.zip', 'freddi3'),
-	'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi4-win-demo-us.zip', 'freddi4'),
-	'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi4-win-updated-demo-us.zip', 'freddi4'),
-	'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi4-win-demo-nl.zip', 'freddi4'),
-	'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Windows German Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi4-win-demo-de.zip', 'freddi4'),
-	'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch (Windows UK Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/freddi4-win-demo-uk.zip', 'freddi4'),
-	'Humongous Catalog demo (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/catalog-win-demo-en.zip', 'catalog'),
-	'Humongous Catalog demo (Windows French Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/catalog-win-preview-fr.zip', 'catalog'),
-	'Humongous Catalog demo (Windows German Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/catalog-win-preview-de.zip', 'catalog'),
-	'Humongous Catalog demo (Windows UK Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/catalog-win-preview-uk.zip', 'catalog'),
-	'Let\'s Explore the Airport with Buzzy (Macintosh Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/airport-mac-demo-us.zip', 'airport'),
-	'Let\'s Explore the Airport with Buzzy (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/airport-win-demo-us.zip', 'airport'),
-	'Let\'s Explore the Airport with Buzzy (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/airport-win-updated-demo1-us.zip', 'airport'),
-	'Let\'s Explore the Airport with Buzzy (Windows Updated Alternative Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/airport-win-updated-demo2-us.zip', 'airport'),
-	'Let\'s Explore the Farm with Buzzy (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/farm-win-demo-us.zip', 'farm'),
-	'Let\'s Explore the Farm with Buzzy (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/farm-win-demo-nl.zip', 'farm'),
-	'Pajama Sam 1: No Need to Hide When It\'s Dark Outside (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama-win-demo-us.zip', 'pajama'),
-	'Pajama Sam 1: No Need to Hide When It\'s Dark Outside (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama-win-updated-demo-us.zip', 'pajama'),
-	'Pajama Sam 1: No Need to Hide When It\'s Dark Outside (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama2-win-demo-nl.zip', 'pajama'),
-	'Pajama Sam 1: No Need to Hide When It\'s Dark Outside (Windows French Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama-win-demo-fr.zip', 'pajama'),
-	'Pajama Sam 2: Thunder and Lightning Aren\'t so Frightening (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama2-win-demo-us.zip', 'pajama2'),
-	'Pajama Sam 2: Thunder and Lightning Aren\'t so Frightening (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama2-win-demo-nl.zip', 'pajama2'),
-	'Pajama Sam 3: You Are What You Eat From Your Head to Your Feet (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama3-win-demo-us.zip', 'pajama3'),
-	'Pajama Sam 3: You Are What You Eat From Your Head to Your Feet (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama3-win-demo-nl.zip', 'pajama3'),
-	'Pajama Sam 3: You Are What You Eat From Your Head to Your Feet (Windows German Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama3-win-demo-de.zip', 'pajama3'),
-	'Pajama Sam 3: You Are What You Eat From Your Head to Your Feet (Windows UK Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/pajama3-win-demo-uk.zip', 'pajama3'),
-	'Pajama Sam\'s Lost & Found (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/lost-win-demo-us.zip', 'lost'),
-	'Putt-Putt Enters the Race (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttrace-win-demo-us.zip', 'puttrace'),
-	'Putt-Putt Enters the Race (Windows Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttrace-win-preview-us.zip', 'puttrace'),
-	'Putt-Putt Enters the Race (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttrace-win-demo-nl.zip', 'puttrace'),
-	'Putt-Putt Enters the Race (Windows Updated Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttrace-win-updated-demo-nl.zip', 'puttrace'),
-	'Putt-Putt Enters the Race (Windows German Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttrace-win-demo-de.zip', 'puttrace'),
-	'Putt-Putt Enters the Race (Windows UK Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttrace-win-demo-uk.zip', 'puttrace'),
-	'Putt-Putt Goes to the Moon (DOS demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttmoon-dos-demo-us.zip', 'puttmoon'),
-	'Putt-Putt Goes to the Moon (Window demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttmoon-win-demo-us.zip', 'puttmoon'),
-	'Putt-Putt Joins the Circus (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttcircus-win-demo-us.zip', 'puttcircus'),
-	'Putt-Putt Joins the Parade (DOS demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttputt-dos-demo-us.zip', 'puttputt'),
-	'Putt-Putt Joins the Parade (Windows demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttputt-win-demo-us.zip', 'puttputt'),
-	'Putt-Putt Saves the Zoo (Macintosh Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttzoo-mac-demo-us.zip', 'puttzoo'),
-	'Putt-Putt Saves the Zoo (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttzoo-win-demo-us.zip', 'puttzoo'),
-	'Putt-Putt Saves the Zoo (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttzoo-win-updated-demo-us.zip', 'puttzoo'),
-	'Putt-Putt Saves the Zoo (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttzoo-win-demo-nl.zip', 'puttzoo'),
-	'Putt-Putt Saves the Zoo (Windows German Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/puttzoo-win-demo-de.zip', 'puttzoo'),
-	'Putt-Putt Travels Through Time (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/putttime-win-demo-us.zip', 'putttime'),
-	'Putt-Putt Travels Through Time (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/putttime-win-updated-demo-us.zip', 'putttime'),
-	'Putt-Putt Travels Through Time (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/putttime-win-demo-nl.zip', 'putttime'),
-	'Putt-Putt Travels Through Time (Windows French Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/putttime-win-demo-fr.zip', 'putttime'),
-	'SPY Fox 1: Dry Cereal (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox-win-demo1-us.zip', 'spyfox'),
-	'SPY Fox 1: Dry Cereal (Windows Alternative Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox-win-demo2-us.zip', 'spyfox'),
-	'SPY Fox 1: Dry Cereal (Windows Updated Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox-win-updated-demo-us.zip', 'spyfox'),
-	'SPY Fox 1: Dry Cereal (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox-win-demo-nl.zip', 'spyfox'),
-	'SPY Fox 1: Dry Cereal (Windows French Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox-win-demo-fr.zip', 'spyfox'),
-	'SPY Fox 2: Some Assembly Required (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox2-win-demo-us.zip', 'spyfox2'),
-	'SPY Fox 2: Some Assembly Required (Windows Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox2-win-preview-us.zip', 'spyfox2'),
-	'SPY Fox 2: Some Assembly Required (Windows Dutch Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox2-win-demo-nl.zip', 'spyfox2'),
-	'SPY Fox 2: Some Assembly Required (Windows German Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox2-win-demo-de.zip', 'spyfox2'),
-	'SPY Fox 2: Some Assembly Required (Windows UK Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyfox2-win-demo-uk.zip', 'spyfox2'),
-	'SPY Fox 3: Operation Ozone (Windows Demo)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyozon-win-demo-us.zip', 'spyozon'),
-	'SPY Fox 3: Operation Ozone (Windows Preview)'
-		=> array('http://demos.robertmegone.com/scumm/he/spyozon-win-preview-us.zip', 'spyozon')
-	);
-
-$AGOS_demos = array(
-	'Elvira - Mistress of Darkness (Amiga demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/agos/elvira1-amiga-ni-demo-en.zip', 'elvira1'),
-	'Elvira - Mistress of Darkness (Atari ST demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/agos/elvira1-atari-ni-demo-en.zip', 'elvira1'),
-	'Elvira - Mistress of Darkness (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/agos/elvira1-dos-ni-demo-en.zip', 'elvira1'),
-	'Personal Nightmare (Atari ST demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/agos/pn-atari-ni-demo-en.zip', 'pn'),
-	'Simon the Sorcerer 1 (Amiga demo)'
-		=> array('http://demos.robertmegone.com/agos/simon1-amiga-floppy-demo-en.zip', 'simon1'),
-	'Simon the Sorcerer 1 (DOS demo)'
-		=> array('http://demos.robertmegone.com/agos/simon1-dos-floppy-demo-en.zip', 'simon1'),
-	'Simon the Sorcerer 1 (Acorn CD demo)'
-		=> array('http://demos.robertmegone.com/agos/simon1-acorn-cd-demo-en.zip', 'simon1'),
-	'Simon the Sorcerer 2 (DOS CD demo)'
-		=> array('http://demos.robertmegone.com/agos/simon2-dos-cd-demo-en.zip', 'simon2'),
-	'Simon the Sorcerer 2 (DOS CD German demo)'
-		=> array('http://demos.robertmegone.com/agos/simon2-dos-cd-demo-de.zip', 'simon2'),
-	'Simon the Sorcerer 2 (DOS CD German demo - Non interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/agos/simon2-dos-cd-ni-demo-de.zip', 'simon2'),
-	'The Feeble Files (DOS demo - Non interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/agos/feeble-dos-ni-demo-en.zip', 'feeble'),
-	'The Feeble Files (DOS German demo - Non interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/agos/feeble-dos-ni-demo-de.zip', 'feeble'),
-	'Waxworks (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/agos/waxworks-dos-ni-demo-en.zip', 'waxworks')
-	);
-
-$GOB_demos = array(
-	'Gobliiins (Amiga demo)'
-		=> array('http://demos.robertmegone.com/gob/gob1-amiga_demo_en.zip', 'gob'),
-	'Gobliiins (DOS demo)'
-		=> array('http://demos.robertmegone.com/gob/gob1-dos-demo1-en.zip', 'gob'),
-	'Gobliiins (DOS Alternative demo)'
-		=> array('http://demos.robertmegone.com/gob/gob1-dos-demo2-en.zip', 'gob'),
-	'Gobliiins (DOS French demo)'
-		=> array('http://demos.robertmegone.com/gob/gob1-dos-demo-fr.zip', 'gob'),
-	'Gobliins 2 (Amiga demo)'
-		=> array('http://demos.robertmegone.com/gob/gob2-amiga-demo-en.zip', 'gob'),
-	'Gobliins 2 (DOS demo)'
-		=> array('http://demos.robertmegone.com/gob/gob2-dos-demo-en.zip', 'gob'),
-	'Gobliins 2 (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/gob/gob2-dos-ni-demo-en.zip', 'gob'),
-	'Goblins Quest 3 (DOS demo)'
-		=> array('http://demos.robertmegone.com/gob/gob3-dos-demo-en.zip', 'gob'),
-	'Goblins Quest 3 (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/gob/gob3-dos-ni-demo-en.zip', 'gob'),
-	'Goblins Quest 3 (DOS French demo)'
-		=> array('http://demos.robertmegone.com/gob/gob3-dos-demo1-fr.zip', 'gob'),
-	'Goblins Quest 3 (DOS French Alternative demo)'
-		=> array('http://demos.robertmegone.com/gob/gob3-dos-demo2-fr.zip', 'gob'),
-	'Inca II: Wiracocha (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/inca2-dos-ni-demo-en.zip', 'gob'),
-	'Lost in Time (DOS demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/gob/lostintime-dos-ni-demo-en.zip', 'gob'),
-	'Playtoons (DOS demos of Playtoon 1 - Uncle Archibald, Playtoon 2 - Spirou, Playtoons 3 - Secret of the Castle) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/archibald-dos-ni-demo1-en.zip', 'gob'),
-	'Playtoon 1 - Uncle Archibald (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/archibald-dos-ni-demo2-en.zip', 'gob'),
-	'Playtoon 1 - Uncle Archibald (DOS Italian demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/archibald-dos-ni-demo-it.zip', 'gob'),
-	'Playtoon 1 - Uncle Archibald (DOS Spanish demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/archibald-dos-ni-demo-sp.zip', 'gob'),
-	'The Bizarre Adventures of Woodruff and the Schnibble (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/woodruff-dos-ni-demo-en.zip', 'gob'),
-	'The Last Dynasty (DOS demo - Non interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/dynasty-win-ni-demo-en.zip', 'gob'),
-	'Urban Runner (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/gob/urban-win-ni-demo-en.zip', 'gob'),
-	'Ween: The Prophecy (DOS demo)'
-		=> array('http://demos.robertmegone.com/gob/ween-dos-demo-en.zip', 'gob')
-	);
-
-$SIERRA_demos = array(
-	'AGI Demo Pack 1 (DOS demos of 3-D Helicopter Sim, Police Quest, Thexder, Space Quest 2, Mixed-up Mother Goose, Leisure Suit Larry)'
-		=> array('http://demos.robertmegone.com/agi/agi-dos-pack1-demo-en.zip', 'agidemo'),
-	'AGI Demo Pack 2 (DOS demos of 3-D Helicopter Sim, Space Quest 2, Thexder, King\'s Quest 3, Mixed- up Mother Goose, King\'s Quest 2, Police Quest, Leisure Suit Larry, Space Quest)'
-		=> array('http://demos.robertmegone.com/agi/agi-dos-pack2-demo-en.zip', 'agidemo'),
-	'AGI Demo Pack 3 (DOS demos of 3-D Helicopter Sim, Space Quest 2, Police Quest, King\'s Quest 3, Mixed-up Mother Goose, Leisure Suit Larry)'
-		=> array('http://demos.robertmegone.com/agi/agi-dos-pack3-demo-en.zip', 'agidemo'),
-	'AGI Demo Pack 4 (DOS demos of Gold Rush!, Manhunter: NewYork, Mixed-up Mother Goose, Police Quest, Space Quest 2, Leisure Suit Larry)'
-		=> array('http://demos.robertmegone.com/agi/agi-dos-pack4-demo-en.zip', 'agidemo'),
-	'AGI Demo Pack 5 (DOS demos of Space Quest, Donald Duck\'s Playground, King\'s Quest 3, Leisure Suit Larry)'
-		=> array('http://demos.robertmegone.com/agi/agi-dos-pack5-demo-en.zip', 'agidemo'),
-	'Conquests of Camelot: King Arthur, Quest for the Grail (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/sci/camelot-dos-ni-demo-en.zip', 'camelot'),
-	'King\'s Quest IV: The Perils of Rosella (DOS demo - Non-interactive)'
-		=> array('http://demos.robertmegone.com/agi/kq4-dos-ni-demo-en.zip', 'kq4'),
-	'Leisure Suit Larry 2: Goes Looking for Love (in Several Wrong Places) (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/sci/lsl2-dos-ni-demo-en.zip', 'lsl2'),
-	'Space Quest III: The Pirates of Pestulon (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/sci/sq3-dos-ni-demo-en.zip', 'sq3'),
-	'Xmas Card (DOS demo)'
-		=> array('http://demos.robertmegone.com/agi/xmascard-dos-en.zip', 'xmascard')
-	);
-
-$MISC_demos = array(
-	'Beneath a Steel Sky (DOS CD Demo)'
-		=> array('http://demos.robertmegone.com/sky/sky-dos-v0365-cd-demo-en.zip', 'sky'),
-	'Broken Sword 1: The Shadow of the Templars (Macintosh Demo)'
-		=> array('http://demos.robertmegone.com/sword1/sword1-mac-demo-en.zip', 'sword1demo'),
-	'Broken Sword 1: The Shadow of the Templars (Windows Demo)'
-		=> array('http://demos.robertmegone.com/sword1/sword1-win-demo-en.zip', 'sword1demo'),
-	'Broken Sword 2: The Smoking Mirror (Windows Demo)'
-		=> array('http://demos.robertmegone.com/sword2/sword2-win-demo-en.zip', 'sword2demo'),
-	'Bud Tucker in Double Trouble (DOS Demo)'
-		=> array('http://demos.robertmegone.com/tucker/tucker-dos-demo.zip', 'tucker'),
-	'Bud Tucker in Double Trouble (DOS demo - Non-interactive)'
-		=> array('http://demos.robertmegone.com/tucker/tucker-dos-ni-demo.zip', 'tucker'),
-	'Flight of the Amazon Queen (Amiga demo)'
-		=> array('http://demos.robertmegone.com/queen/queen-amiga-demo-en.zip', 'queen'),
-	'Flight of the Amazon Queen (Amiga interview demo)'
-		=> array('http://demos.robertmegone.com/queen/queen-amiga-interview-en.zip', 'queen'),
-	'Flight of the Amazon Queen (DOS demo)'
-		=> array('http://demos.robertmegone.com/queen/queen-dos-demo-en.zip', 'queen'),
-	'Flight of the Amazon Queen (DOS PCGAMES demo)'
-		=> array('http://demos.robertmegone.com/queen/queen-dos-pcgames-demo-en.zip', 'queen'),
-	'Flight of the Amazon Queen (DOS interview demo)'
-		=> array('http://demos.robertmegone.com/queen/queen-dos-interview-en.zip', 'queen'),
-	'Future Wars (Amiga demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/cine/fw-amiga-demo-en.zip', 'fw'),
-	'Igor: Objective Uikokahonia (DOS demo)'
-		=> array('http://demos.robertmegone.com/igor/igor-dos-1.0-demo-en.zip', 'igor'),
-	'Igor: Objective Uikokahonia 1.10 (DOS demo)'
-		=> array('http://demos.robertmegone.com/igor/igor-dos-1.1-demo-en.zip', 'igor'),
-	'I Have No Mouth And I Must Scream (DOS demo)'
-		=> array('http://demos.robertmegone.com/saga/ihnm-dos-demo-en.zip', 'ihnm'),
-	'Lands of Lore: The Throne of Chaos (DOS demo - Non-interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/kyra/lol-dos-ni-demo-en.zip', 'lol'),
-	'Nippon Safes (Amiga demo)'
-		=> array('http://demos.robertmegone.com/parallaction/nippon-amiga-demo-en.zip', 'nippon'),
-	'Operation Stealth (Amiga demo - Non interactive)'
-		=> array('http://demos.robertmegone.com/cine/op-amiga-demo-en.zip', 'os'),
-	'Return to Zork (DOS demo - Non interactive) - Requires ScummVM 0.14.0svn'
-		=> array('http://demos.robertmegone.com/made/rtz-dos-ni-demo-en.zip', 'rtz'),
-	'The Legend of Kyrandia (DOS demo - Non-interactive)'
-		=> array('http://demos.robertmegone.com/kyra/kyra1-dos-ni-demo-en.zip', 'kyra1'),
-	'The Legend of Kyrandia: The Hand of Fate (DOS demo)'
-		=> array('http://demos.robertmegone.com/kyra/kyra2-dos-cd-demo-en.zip', 'kyra2'),
-	'The Legend of Kyrandia: The Hand of Fate (DOS demo - Non-interactive)'
-		=> array('http://demos.robertmegone.com/kyra/kyra2-dos-ni-demo1-en.zip', 'kyra2'),
-	'The Legend of Kyrandia: The Hand of Fate (DOS Alternative demo - Non-interactive)'
-		=> array('http://demos.robertmegone.com/kyra/kyra2-dos-ni-demo2-en.zip', 'kyra2'),
-	'Touche: The Adventures of the Fifth Musketeer (DOS Demo)'
-		=> array('http://demos.robertmegone.com/touche/touche-dos-demo-en.zip', 'touche')
-	);
-
-function render_demos($title, $demos) {
-// render the demo list
-echo html_frame_start($title,"90%",2,1,"color4");
-echo html_frame_tr(
-		   html_frame_td("Demo Name / Download Link").
-		   html_frame_td("Game Target"),
-		   "color4"
-
-		  );
-	$c = 0;
-	while (list($name,$array) = each($demos))
-	{	
-		if ($c % 2 == 0) { $color = "color2"; } else { $color = "color0"; }
-		echo html_frame_tr(
-			html_frame_td("<a href=\"$array[0]\">$name</a>").
-		    	html_frame_td($array[1]),
-	  	        $color
-	 	);
-		$c++;
-	}
-
-echo html_frame_end(" ");
-echo "<p> </p>";
-}
-
-echo "<a name='lec'></a>\n";
-render_demos("LucasArts Demos", $LEC_demos);
-echo "<a name='he'></a>\n";
-render_demos("Humongous Entertainment Demos", $HE_demos);
-echo "<a name='agos'></a>\n";
-render_demos("Adventuresoft/Horrorsoft Demos", $AGOS_demos);
-echo "<a name='gob'></a>\n";
-render_demos("Coktel Vision Demos", $GOB_demos);
-echo "<a name='sierra'></a>\n";
-render_demos("Sierra Demos", $SIERRA_demos);
-echo "<a name='other'></a>\n";
-render_demos("Miscellaneous Demos", $MISC_demos);
-
-echo "  </div>\n";
-echo "</div>\n";
-
-html_content_end();
-html_page_footer();
-
-?>

Deleted: web/trunk/documentation.php
===================================================================
--- web/trunk/documentation.php	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/documentation.php	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,104 +0,0 @@
-<?php
-
-/*
- * Documentation Page for ScummVM
- * by Jeremy Newman <jnewman at dracowulf.com>
- *
- */
-
-// set this for position of this file relative
-$file_root = ".";
-
-// load libraries
-require($file_root."/include/"."incl.php");
-
-// start of html
-html_page_header('ScummVM :: Documentation');
-
-html_content_begin('ScummVM Documentation');
-
-echo '<div class="par-item">';
-
-$view = $_GET['view'];
-
-if ($view and file_exists($file_root."/docs/".$view.".xml")) {
-  echo  '  <div class="par-head">';
-  echo display_xml($file_root."/docs/".$view.".xml",'NAME');
-  echo  '  </div>';
-  echo '  <div class="par-content">';
-  // extract the body from the XML file
-  $html = display_xml($file_root."/docs/".$view.".xml",'BODY');
-  // Now evaluate any PHP code embedded into it, and output the result
-  echo eval("?>" . $html . "<?php ");
-  echo "<br>";
-  echo "  </div>\n";
-} else {
-?>
-  <div class="par-intro">
-    <br>
-    Click the title of the section of the documentation you want to read.
-    <br>
-    <br>
-  </div>
-
-  <div class="par-content">
-  <br>
-
-  <!-- Ohloh badge with project metrics -->
-  <SCRIPT type='text/javascript' language='JavaScript' src='http://www.ohloh.net/projects/113;badge_js'></SCRIPT>
-  <br>
-  <br>
-
-  <a href='http://scummvm.svn.sourceforge.net/viewvc/scummvm/scummvm/tags/<?php echo $current_release_tag; ?>/README?view=markup'>README <?php echo $current_release; ?></a><br>
-  The ScummVM README, for version <?php echo $current_release; ?><br><br>
-
-  <a href='http://wiki.scummvm.org/index.php/Documentation'>Documentation on Wiki</a><br>
-    Assorted documentation on our Wiki, several important HOWTO's<br><br>
-
-  <a href='http://wiki.scummvm.org/index.php/Developer_Central'>Developer Central</a><br>
-  Guidelines on how to hack ScummVM. A must read for developers.<br><br>
-<?php
-
-
-  // get list of documentation items
-  $docs = get_files($file_root."/docs","xml");
-  sort($docs);
-    
-  // loop and display docs
-  $c = 0;
-  while (list($key,$item) = each($docs)) {
-    $c++;
-    list($file,$ext) = split("\.",$item,2);
-
-    echo "<a href='?view=$file'>".display_xml($file_root."/docs/".$item,'NAME')."</a><br>\n";
-    echo display_xml($file_root."/docs/".$item,'DESC')."<br><br>\n";
-  } // end of docs loop
-
-?>
-  <a href='http://wiki.scummvm.org/index.php/Datafiles'>Game data files</a><br>
-  This page lists for many supported games which files exactly are needed by ScummVM in order to play that game.<br><br>
-
-  <a href='http://wiki.scummvm.org/index.php/TODO'>ScummVM current areas of focus</a><br>
-  This page is the current TODO list for ScummVM.<br><br>
-
-<?php
-     echo "<a href='http://doxygen.scummvm.org/'>Source code documentation</a><br>\n";
-?>
-  Cross referenced source code documentation for ScummVM, generated using
-  <a href='http://www.doxygen.org'>Doxygen</a>.<br><br>
-
-<?php
-
-  // Hard code link to specs for now...
-  echo "<a href='$file_root/docs/specs/index.php'>The inComplete SCUMM Reference Guide</a><br>\n";
-  echo "being a Partially Complete and Mostly Accurate guide to the SCUMM Engine data file Format for Versions Five and Six (and above)<br><br>\n";
-
-  echo "  </div>\n";
-}
-
-echo "</div>\n";
-
-html_content_end();
-html_page_footer();
-
-?>

Deleted: web/trunk/downloads.css
===================================================================
--- web/trunk/downloads.css	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/downloads.css	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,28 +0,0 @@
-.download-list {
-	list-style-type: none;
-	margin: 3px;
-	padding: 3px;
-	vertical-align: middle;
-}
-
-.download-list a, .download-list a:visited {
-	color: #000;
-	font-weight: normal;
-	font-size: 11px;
-	text-decoration: none;
-}
-
-.download-list a:hover { color: #f00; }
-
-.download-list li {
-	padding: 3px;
-}
-
-.download-list img {
-	vertical-align: middle;
-}
-
-.download-extras {
-	color: #85b132;
-	font-size: 10px;
-}

Deleted: web/trunk/downloads.php
===================================================================
--- web/trunk/downloads.php	2009-05-23 17:33:54 UTC (rev 40811)
+++ web/trunk/downloads.php	2009-05-23 17:43:04 UTC (rev 40812)
@@ -1,521 +0,0 @@
-<?php
-
-/*
- * Downloads Page for ScummVM
- * by Jeremy Newman <jnewman at dracowulf.com>
- *
- */
-
-// set this for position of this file relative
-$file_root = ".";
-
-// load libraries
-require($file_root."/include/"."incl.php");
-
-// start of html
-html_page_header('ScummVM :: Downloads', array("downloads.css"));
-
-html_content_begin('Download ScummVM');
-
-/*
- * Some extra tools
- */
-function startDownloadList() {
-	echo " <ul class='download-list'>";
-}
-
-function endDownloadList() {
-	echo "</ul>";
-}
-
-function addDownloadSeparator() {
-	echo "<li> </li>";
-}
-
-function addDownload($image, $linkText, $desc, $url) {
-	echo "<li>";
-
-	echo "<img src='images/$image.png' alt='' width=24 height=24 style='vertical-align: middle;' >";
-	echo " <a href='$url'>$linkText</a>";
-	echo " <span class='download-extras'>$desc</span>";
-}
-
-?>
-
-  <div class="par-item">
-    <div class="par-head">
-       Downloads for ScummVM <span style="color: #aaaaaa;">version <?php echo $current_release; ?></span>
-    </div>
-
-    <div class="par-intro">
-	<br>
-
-       <table border=0>
-	  <tr><td width="35%">
-
-    <div class="navigation">
-       Navigation
-
-       <div class="nav-dots">
-	   
-       </div>
-
-<table border=0>
-<?php
-  html_nav_item("#stable", $current_release . " Release binaries");
-  html_nav_item("#source", $current_release . " Source Code");
-  html_nav_item("#tools", "$current_tools_release Tools");
-  html_nav_item("#older", "Older versions (unsupported)");
-  html_nav_item("#extras", "Extras, game downloads");
-  html_nav_item("#SVN", "Subversion Builds");
-  html_nav_item("#libs", "Libraries");
-?>
-
-</table>
-    </div>
-
-</td>
-<td>
-	  Downloads are mostly hosted with SourceForge.net. If you have one of the supported systems, you can directly
-	  download the appropriate binary distribution. If you have another system, download the source and read the
-	  <a href="http://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/tags/<?php echo $current_release_tag; ?>/README">README</a>
-	  file for directions on how to build ScummVM.
-	  If you have successfully ported ScummVM to a platform not listed, please drop us a note, telling which OS, etc.
-	  you used.
-
-	<UL>
-		<LI>The latest STABLE release of ScummVM is <?php echo $current_release; ?>, and can be downloaded below
-	under '<A HREF="#stable">Release Binaries</A>'. If you run Windows and are confused,
-	download the 'Windows Installer'</LI>
-
-		<LI>For UNSTABLE experimental versions of ScummVM (for people who know what they
-	are doing), please see the <a href="#SVN">Subversion Builds</a> section, near the end of this page.</LI>
-
-		<LI>Also below are the <a href="#extras">Extras</a>. These currently include four
-	  freeware games 'Beneath a Steel Sky', 'Drascula: The Vampire Strikes Back', 'Flight of the Amazon Queen' and 'Lure of the Temptress', along with
-    cutscene packs recommended for use when playing Broken Sword 1, 2 or Feeble Files under ScummVM</LI>
-	</UL>
-</td></tr>
-</table>
-
-	<br>
-    </div>
-
-	<a name="stable"></a>
-	<br>
-    <?php html_subhead_start($current_release . " Release binaries"); ?>
-
-    <div class="par-subhead-content">
-
-	<p>For a list of changes since the previous version, <a href="http://sourceforge.net/project/shownotes.php?release_id=676818">read the release notes</a>.
-	<BR>
-	0.13.1 is also apt-get'able from Debian unstable (sid).
-	</p>
-
-<?php
-	startDownloadList();
-
-	addDownload("catpl-windows", "<b>Windows Installer</b>", "(2.9M Win32 .exe)", "http://prdownloads.sourceforge.net/scummvm/scummvm-${current_release}-win32.exe?download");
-
-	addDownload("catpl-windows", "Windows zipfile", "(4.1M zipfile)", "http://prdownloads.sourceforge.net/scummvm/scummvm-${current_release}-win32.zip?download");
-
-	addDownload("catpl-fedora", "Fedora 8, 9 and 10 i386 package", "(4.0M RPM)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-1_F8.i386.rpm?download");
-
-	addDownload("catpl-fedora", "Fedora 8, 9 and 10 x86 64bit package", "(4.3M RPM)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-1_F8.x86_64.rpm?download");
-
-	addDownload("catpl-debian", "Debian 5.0 (lenny) i386 package", "(3.7M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_$current_release-lenny.1_i386.deb?download");
-	addDownload("catpl-debian", "Debian 5.0 (lenny) x86 64bit package", "(4.1M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_$current_release-lenny.1_amd64.deb?download");
-
-	addDownload("catpl-ubuntu", "Ubuntu 8.10 (intrepid) i386 package", "(3.7M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_$current_release-intrepid.1_i386.deb?download");
-	addDownload("catpl-ubuntu", "Ubuntu 8.10 (intrepid) x86 64bit package", "(4.1M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_$current_release-intrepid.1_amd64.deb?download");
-
-	addDownload("catpl-ubuntu", "Ubuntu 9.04 (jaunty) i386 package", "(3.7M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_$current_release-jaunty.1_i386.deb?download");
-	addDownload("catpl-ubuntu", "Ubuntu 9.04 (jaunty) x86 64bit package", "(4.1M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_$current_release-jaunty.1_amd64.deb?download");
-
-	addDownload("catpl-slackware", "SlackWare package", "(3.6M .tgz)", "http://prdownloads.sourceforge.net/scummvm/scummvm-".$current_release."_slack-i486-1.tgz?download");
-
-/*
-	addDownload("catpl-mandriva", "Mandriva 2006 package", "(1.3M RPM)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.8.0-1mdk.i586.rpm?download");
-
-*/
-	addDownload("catpl-macos-universal", "Mac OS X Universal Disk Image", "(7.9M disk image)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-macosx.dmg?download");
-
-	addDownload("catpl-ps2", "PlayStation2 package", "(4.6M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-ps2.zip?download");
-
-	addDownload("catpl-psp", "PSP (PlayStation Portable) package", "(8.4M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-psp.zip?download");
-
-	addDownload("catpl-ds", "Nintendo DS package", "(9.5M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-ds.zip?download");
-
-	addDownload("catpl-symbian", "Symbian S60 version 3 binary", "(4.4M .sis)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-s60-v3.sis?download");
-	addDownload("catpl-uiq", "Symbian UIQ 3 binary", "(4.4M .sis)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-uiq3.sis?download");
-
-/*
-	addDownload("catpl-palmos", "PalmOS 5 binary", "(7.8M zipfile)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.1-palmos-os5.zip?download");
-	addDownload("catpl-palmos", "PalmOS Tapwave Zodiac binary", "(8.0M zipfile)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.1-palmos-zodiac.zip?download");
-*/
-
-	addDownload("catpl-wince", "Windows CE ARM package", "(6.1M zipfile)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-WinCE.zip?download");
-
-	addDownload("catpl-iphone", "iPhone package", "(5.8M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-iphone.deb?download");
-
-/*
-	addDownload("catpl-opie", "Opie SDL package <b>Only</b> for iPAQ h1910/h1915 and MyPal 716", "(3.6M .ipk)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.1-opie_arm.ipk?download");
-*/
-
-	addDownload("catpl-maemo", "Maemo package (OS 2006, 2007 and 2008)", "(3.1M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_".$current_release."_armel.deb?download");
-	addDownload("catpl-maemo", "Maemo single click install package for N770/OS2006", "(Most recent version from Maemo Extras repository)", "http://downloads.maemo.org/product/OS2006/scummvm/");
-	addDownload("catpl-maemo", "Maemo single click install package for N800/OS2007", "(Most recent version from Maemo Extras repository)", "http://downloads.maemo.org/product/OS2007/scummvm/");
-	addDownload("catpl-maemo", "Maemo single click install package for N8x0/OS2008", "(Most recent version from Maemo Extras repository)", "http://downloads.maemo.org/product/OS2008/scummvm/");
-
-	addDownload("catpl-dc", "Dreamcast plain files", "(7.0M .tar.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-dreamcast-plainfiles.tar.bz2?download");
-	addDownload("catpl-dc", "Dreamcast Nero Image & Demos", "(11.0M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-dreamcast-nero+demos.zip?download");
-
-	addDownload("catpl-gc", "Nintendo GameCube package", "(3.5M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-gamecube.zip?download");
-	addDownload("catpl-wii", "Wii package", "(3.6M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-wii.zip?download");
-
-	addDownload("catpl-gp2x", "GP2X package", "(4.7M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-gp2x.zip?download");
-
-		addDownload("catpl-solaris", "Solaris 8 and up (Sparc) binary", "(4.8M .tar.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-solaris8-sparc.tar.bz2?download");	
-		addDownload("catpl-solaris", "Solaris 10 (both IA32 and AMD64) binary", "(11.0M .pkg.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-solaris10-x86.pkg.bz2?download");
-
-		addDownload("catpl-beos", "BeOS package", "(4.8M .tgz)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-beos.tgz?download");
-		addDownload("catpl-haiku", "Haiku package", "(4.3M .tgz)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-haiku-gcc4.tgz?download");
-
-		addDownload("catpl-amiga", "AmigaOS 4 package", "(5.3M .lha)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-amigaos4.lha?download");
-
-/*
-		addDownload("catpl-morphos", "MorphOS package", "(4.2M .lha)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.0-morphos.lha?download");
-
-*/
-		addDownload("catpl-freemint", "Atari/FreeMiNT package (68020 and up)", "(4.3M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-atari.zip?download");
-
-		addDownload("catpl-os2", "OS/2 package", "(4.9M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-os2.zip?download");
-
-	endDownloadList();
-?>
-
-    </div>
-
-    <a name="source"></a>
-    <?php html_subhead_start($current_release . " Source Code"); ?>
-
-    <div class="par-subhead-content">
-
-<?php
-	startDownloadList();
-	
-		addDownload("catpl-cpp", "ScummVM - Source .tar.bz2", "(6.8M)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release.tar.bz2?download");
-		addDownload("catpl-cpp", "ScummVM - Source .tar.gz", "(8.2M)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release.tar.gz?download");
-		addDownload("catpl-cpp", "ScummVM - Source .zip", "(10.2M)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release.zip?download");
-		addDownload("catpl-cpp", "ScummVM - Source RPM", "(7.5M RPM)", "http://prdownloads.sourceforge.net/scummvm/scummvm-$current_release-1.src.rpm?download");
-
-	endDownloadList();
-?>
-
-    </div>
-
-    <a name="tools"></a>
-    <?php html_subhead_start("$current_tools_release Tools (mostly unsupported)"); ?>
-
-    <div class="par-subhead-content">
-
-<?php
-	startDownloadList();
-		addDownload("catpl-windows", "Tools - Windows Installer", "(943k Win32 .exe)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-win32.exe?download");
-		addDownload("catpl-windows", "Tools - Windows zipfile", "(3,8M Win32 .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-win32.zip?download");
-
-		addDownload("catpl-fedora", "Tools - Fedora 8, 9 and 10 i386 RPM", "(268k .rpm)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-1_F8.i386.rpm?download");
-		addDownload("catpl-fedora", "Tools - Fedora 8, 9 and 10 x86 64bit RPM", "(303k .rpm)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-1_F8.x86_64.rpm?download");
-
-		addDownload("catpl-macos-universal", "Tools - Mac OS X Universal binaries (10.3.9 and up)", "(9.8M .tar.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-macosx.tar.bz2?download");
-
-		addDownload("catpl-solaris", "Tools - Solaris 8 (Sparc)", "(445k .tar.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-solaris8-sparc.tar.bz2?download");
-		addDownload("catpl-solaris", "Tools - Solaris 10 (both IA32 and AMD64)", "(4.8M .pkg.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-solaris10-x86.pkg.bz2?download");
-
-		addDownload("catpl-amiga", "Tools - AmigaOS 4", "(7.5M .lha)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-amigaos4.lha?download");
-
-		addDownload("catpl-freemint", "Tools - Atari/FreeMiNT (68020 and up)", "(4.4M .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-atari.zip?download");
-
-		addDownload("catpl-beos", "Tools - BeOS", "(1.3M .tgz)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-beos.tgz?download");
-
-		addDownload("catpl-cpp", "Tools - Source .tar.bz2", "(272k .tar.bz2)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release.tar.bz2?download");
-		addDownload("catpl-cpp", "Tools - Source .tar.gz", "(330k .tar.gz)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release.tar.gz?download");
-		addDownload("catpl-cpp", "Tools - Source .zip", "(372k .zip)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release.zip?download");
-
-		addDownload("catpl-cpp", "Tools - Source RPM", "(274k .rpm)", "http://prdownloads.sourceforge.net/scummvm/scummvm-tools-$current_tools_release-1.src.rpm?download");
-
-	endDownloadList();
-?>
-
-    </div>
-   </div>
-
-  <a name="older"></a>
-  <div class="par-item">
-    <div class="par-head">
-       Older versions (unsupported)
-    </div>
-
-    <div class="par-content">
-	<p>
-		In a few cases, we do not (yet) have new binaries of ScummVM
-		and/or the ScummVM tools for some platforms. In these cases, we still
-		have older versions around, for your convenience.
-	</p>
-
-<?php
-	startDownloadList();
-	
-		addDownload("catpl-palmos", "0.11.1 PalmOS 5 binary", "(7.8M zipfile)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.1-palmos-os5.zip?download");
-		addDownload("catpl-palmos", "0.11.1 PalmOS Tapwave Zodiac binary", "(8.0M zipfile)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.1-palmos-zodiac.zip?download");
-
-		addDownload("catpl-opie", "0.11.1 Opie SDL package <b>Only</b> for iPAQ h1910/h1915 and MyPal 716", "(3.6M .ipk)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.1-opie_arm.ipk?download");
-
-		addDownload("catpl-morphos", "0.11.0 MorphOS package", "(4.2M .lha)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.11.0-morphos.lha?download");
-
-		addDownload("catpl-fedora", "0.10.0 Fedora Core 5 and 6 package", "(2.8M RPM)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.10.0-1_FC5.i386.rpm?download");
-
-		addDownload("catpl-fedora", "0.9.1 Fedora Core 2 package", "(1.6M RPM)", "http://prdownloads.sourceforge.net/scummvm/scummvm-0.9.1-1_FC2.i386.rpm?download");
-
-		addDownload("catpl-debian", "0.9.1 Debian 3.1 (sarge) package", "(1.6M .deb)", "http://prdownloads.sourceforge.net/scummvm/scummvm_0.9.1-0.sarge.1_i386.deb?download");
-

@@ Diff output truncated at 100000 characters. @@

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list