[Scummvm-cvs-logs] CVS: web credits.php,NONE,1.1 contact.php,1.25,1.26

Max Horn fingolfin at users.sourceforge.net
Mon May 12 03:47:09 CEST 2003


Update of /cvsroot/scummvm/web
In directory sc8-pr-cvs1:/tmp/cvs-serv8360

Modified Files:
	contact.php 
Added Files:
	credits.php 
Log Message:
split credits and contact into two seperate pages

--- NEW FILE: credits.php ---
<?

/*
 * Credits Page for ScummVM
 *
 */

// set this for position of this file relative
$file_root = ".";

// load libraries
require($file_root."/include/"."incl.php");

// Function to insert people in the list of developers
function add_person ($name, $nick, $desc)
{
	echo "<tr>";
	echo "<td>".$name."</td>";
	if ($nick != "")
		echo "<td>[ ".$nick." ]</td>";
	else
		echo "<td></td>";
	echo "<td>- ".$desc."</td>";
	return do_indent("<b>$str</b><br>\n".html_line());
}


// start of html
html_header("ScummVM :: Credits");
sidebar_start();

//display welcome table
echo html_round_frame_start("Credits","98%","",20);

?>
	<p>
	  <big><b>Credits</b></big><br>
	  <? echo html_line(); ?>
	</p>
    
	<blockquote>
	<table border=0 cellpadding=5 cellspacing=0>
	  
      <tr><td colspan=3><b>The ScummVM team:</b><? echo html_line(); ?></td></tr>
      
	  <?php
	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=2715" target="_blank">James Brown</a>',
	  			 '<a href="http://www.enderboi.com/">endy</a>',
	  			 "Lead developer");
	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=12935" target="_blank">Max Horn</a>',
	  			 'fingolfin', "Lead developer");
	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=339357" target="_blank">Jeremy Newman</a>',
	  			 '<a href="http://www.dracowulf.com/">laxdragon</a>', "Webmaster");
	  add_person("Jonathan Gray", "khalek", "Engine: SCUMM");
	  add_person("Robert Göffringmann", "lavosspawn", "Engine: Beneath a Steel Sky");
	  add_person("Oliver Kiehl", "olki", "Engine: Beneath a Steel Sky, Simon");
	  add_person("Pawel Kolodziejski", "aquadran", "Engine: SCUMM (Codecs, iMUSE, Smush, etc.)");
	  add_person("Joost Peters", "joostp", "Engine: Beneath a Steel Sky");
	  add_person("Chris Apers ", "chrilith ", "Port:   PalmOS");
	  add_person("Nicolas Bacca", "arisme", "Port:   PocketPC/WinCE");
	  add_person("Marcus Comstedt", "", "Port:   DreamCast");
	  add_person("Ruediger Hanke", "", "Port:   MorphOS");
	  add_person("Travis Howell", "Kirben", "Port:   Win32, Engine: Simon");
	  add_person("Peter Moraliyski", "ph0x", "Port:   GP32");
	  add_person("Lionel Ulmer", "bbrox", "Port:   X11");
	  add_person("Torbjörn Andersson", "eriktorbjorn", "Generic Bugfixer and Patch Submitter");
	  add_person("Jamieson Christian", "jamieson630", "iMuse, MIDI, all things musical");
	  ?>
  
      <tr><td colspan=3> </td></tr>
      <tr><td colspan=3><b>Retired Team Members:</b><? echo html_line(); ?></td></tr>
      
	  <?php
	  add_person("Ralph Brorsen", "painelf", "Help with GUI Implementation");
	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=345958" target="_blank">Vincent Hamm</a>',
	  			 'yazoo', "Co-Founder");
	  add_person("Felix Jakschitsch", "yot", "Zak256 reverse engineering");
	  add_person("Mutwin Kraus", "mutle", "Original MacOS Porter");
	  add_person('Ludvig Strigeus', 'ludde', "Original ScummVM and SimonVM Author");
	  ?>

      <tr><td colspan=3> </td></tr>
      <tr><td colspan=3><b>Contributors:</b><? echo html_line(); ?></td></tr>

	  <?php
	  add_person("Janne Huttunen", "", "V3 actor mask support, Dig/FT SMUSH audio");
	  add_person("Kovács Endre János", "", "Several fixes for Simon1");
	  add_person("Jeroen Janssen", "", "Numerous readability and bugfix patches");
	  add_person("Claudio Matsuoka", "", 'Provided aily Linux/BeOS builds in the past');
	  add_person("Gregory Montoir", "", "AdvanceMAME Scale-2X, TV 2x and Dot Matrix implementation");
	  add_person("Mikesch Nepomuk", "", "MI1 VGA Floppy patches");
	  add_person("Nicolas Noble", "pixels", "Config file and ALSA support");
	  add_person("Edward Rudd", "", "Fixes for playing MP3 versions of MI1/Loom Audio");
	  add_person("Daniel Schepler", "", "Final MI1 CD music support/ Initial Ogg Vorbis support");
	  add_person("André Souza", "", "SDL-based OpenGL renderer");
	  add_person("Tim ???", "realmz", "Initial MI1 CD music support");
	  ?>

      <tr><td colspan=3> </td></tr>
      <tr><td colspan=3>And to all the contributors, users, and beta testers we've missed. Thanks!</td></tr>
      
      <tr><td colspan=3> </td></tr>
      <tr><td colspan=3><b>Special thanks to:</b><? echo html_line(); ?></td></tr>
      
	  <?php
	  add_person("Sander Buskens", "", "For his work on the initial reversing of Monkey2");
	  add_person("Kevin Carnes", "", "For Scumm16, the basis of ScummVM's older gfx codecs");
	  add_person("Jimmi Thøgersen", "", "For ScummRev, and much obscure code/documentation");
	  ?>

      <tr><td colspan=3> </td></tr>
      <tr><td colspan=3>
        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!        
      </td></tr>

	</table>
	</blockquote>

<?

echo html_round_frame_end(" ");

// end of html
echo html_p();
sidebar_end();
html_footer();

?>

Index: contact.php
===================================================================
RCS file: /cvsroot/scummvm/web/contact.php,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- contact.php	12 May 2003 04:34:26 -0000	1.25
+++ contact.php	12 May 2003 10:46:42 -0000	1.26
@@ -12,20 +12,6 @@
 // load libraries
 require($file_root."/include/"."incl.php");
 
-// Function to insert people in the list of developers
-function add_person ($name, $nick, $desc)
-{
-	echo "<tr>";
-	echo "<td>".$name."</td>";
-	if ($nick != "")
-		echo "<td>[ ".$nick." ]</td>";
-	else
-		echo "<td></td>";
-	echo "<td>- ".$desc."</td>";
-	return do_indent("<b>$str</b><br>\n".html_line());
-}
-
-
 // start of html
 html_header("ScummVM :: Contact");
 sidebar_start();
@@ -35,95 +21,50 @@
 
 ?>
 	<p>
-	  <big><b>Contacts and Credits</b></big><br>
+	  <big><b>Contact</b></big><br>
 	  <? echo html_line(); ?>
 	</p>
 	<p>
-      <b>Please do not contact the team for questions about using ScummVM. Use the forums or bug reporting system instead!</b><br>
-      Feel free to stop by our #scummvm IRC channel on
-      <a href="http://freenode.net/irc_servers.shtml">irc.freenode.net</a>.
-    </p>
-    
-	<blockquote>
-	<table border=0 cellpadding=5 cellspacing=0>
-	  
-      <tr><td colspan=3><b>The ScummVM team:</b><? echo html_line(); ?></td></tr>
-      
-	  <?php
-	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=2715" target="_blank">James Brown</a>',
-	  			 '<a href="http://www.enderboi.com/">endy</a>',
-	  			 "Lead developer");
-	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=12935" target="_blank">Max Horn</a>',
-	  			 'fingolfin', "Lead developer");
-	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=339357" target="_blank">Jeremy Newman</a>',
-	  			 '<a href="http://www.dracowulf.com/">laxdragon</a>', "Webmaster");
-	  add_person("Jonathan Gray", "khalek", "Engine: SCUMM");
-	  add_person("Robert Göffringmann", "lavosspawn", "Engine: Beneath a Steel Sky");
-	  add_person("Oliver Kiehl", "olki", "Engine: Beneath a Steel Sky, Simon");
-	  add_person("Pawel Kolodziejski", "aquadran", "Engine: SCUMM (Codecs, iMUSE, Smush, etc.)");
-	  add_person("Joost Peters", "joostp", "Engine: Beneath a Steel Sky");
-	  add_person("Chris Apers ", "chrilith ", "Port:   PalmOS");
-	  add_person("Nicolas Bacca", "arisme", "Port:   PocketPC/WinCE");
-	  add_person("Marcus Comstedt", "", "Port:   DreamCast");
-	  add_person("Ruediger Hanke", "", "Port:   MorphOS");
-	  add_person("Travis Howell", "Kirben", "Port:   Win32, Engine: Simon");
-	  add_person("Peter Moraliyski", "ph0x", "Port:   GP32");
-	  add_person("Lionel Ulmer", "bbrox", "Port:   X11");
-	  add_person("Torbjörn Andersson", "eriktorbjorn", "Generic Bugfixer and Patch Submitter");
-	  add_person("Jamieson Christian", "jamieson630", "iMuse, MIDI, all things musical");
-	  ?>
-  
-      <tr><td colspan=3> </td></tr>
-      <tr><td colspan=3><b>Retired Team Members:</b><? echo html_line(); ?></td></tr>
-      
-	  <?php
-	  add_person("Ralph Brorsen", "painelf", "Help with GUI Implementation");
-	  add_person('<a href="http://sourceforge.net/sendmessage.php?touser=345958" target="_blank">Vincent Hamm</a>',
-	  			 'yazoo', "Co-Founder");
-	  add_person("Felix Jakschitsch", "yot", "Zak256 reverse engineering");
-	  add_person("Mutwin Kraus", "mutle", "Original MacOS Porter");
-	  add_person('Ludvig Strigeus', 'ludde', "Original ScummVM and SimonVM Author");
-	  ?>
-
-      <tr><td colspan=3> </td></tr>
-      <tr><td colspan=3><b>Contributors:</b><? echo html_line(); ?></td></tr>
-
-	  <?php
-	  add_person("Janne Huttunen", "", "V3 actor mask support, Dig/FT SMUSH audio");
-	  add_person("Kovács Endre János", "", "Several fixes for Simon1");
-	  add_person("Jeroen Janssen", "", "Numerous readability and bugfix patches");
-	  add_person("Claudio Matsuoka", "", 'Daily Linux/BeOS builds (<a href="http://scummvm.sourceforge.net/daily/">http://scummvm.sourceforge.net/daily/</a>)');
-	  add_person("Gregory Montoir", "", "AdvanceMAME Scale-2X, TV 2x and Dot Matrix implementation");
-	  add_person("Mikesch Nepomuk", "", "MI1 VGA Floppy patches");
-	  add_person("Nicolas Noble", "pixels", "Config file and ALSA support");
-	  add_person("Edward Rudd", "", "Fixes for playing MP3 versions of MI1/Loom Audio");
-	  add_person("Daniel Schepler", "", "Final MI1 CD music support/ Initial Ogg Vorbis support");
-	  add_person("André Souza", "", "SDL-based OpenGL renderer");
-	  add_person("Tim ???", "realmz", "Initial MI1 CD music support");
-	  ?>
-
-      <tr><td colspan=3> </td></tr>
-      <tr><td colspan=3>And to all the contributors, users, and beta testers we've missed. Thanks!</td></tr>
-      
-      <tr><td colspan=3> </td></tr>
-      <tr><td colspan=3><b>Special thanks to:</b><? echo html_line(); ?></td></tr>
-      
-	  <?php
-	  add_person("Sander Buskens", "", "For his work on the initial reversing of Monkey2");
-	  add_person("Kevin Carnes", "", "For Scumm16, the basis of ScummVM's older gfx codecs");
-	  add_person("Jimmi Thøgersen", "", "For ScummRev, and much obscure code/documentation");
-	  ?>
-
-      <tr><td colspan=3> </td></tr>
-      <tr><td colspan=3>
-        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!        
-      </td></tr>
+		<b>Please do not contact the team for questions about using ScummVM. Instead use the
+		<a href="http://sourceforge.net/forum/?group_id=37116">forums</a> or the
+		<a href="http://sourceforge.net/tracker/?group_id=37116&atid=418820">bug reporting system</a>!</b><br>
+	</p>
 
-	</table>
-	</blockquote>
+	<br><b>IRC channel</b><? echo html_line(); ?>
+	<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><b>Forums</b><? echo html_line(); ?>
+	<p>
+	We offer two <a href="http://sourceforge.net/forum/?group_id=37116">forums</a> hosted by SourceForge.net.
+	Use the <a href="http://sourceforge.net/forum/forum.php?forum_id=115757">help forum</a> if you encounter problems using ScummVM.
+	The <a href="http://sourceforge.net/forum/forum.php?forum_id=115756">open discussion forum</a> is, as the name suggests,
+	meant for open discussion of any topics somehow related to ScummVM.
+	</p>
+	
+	<br><b>Bug reports, feature requests, patches</b><? echo html_line(); ?>
+	<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><b>Mailing list</b><? echo html_line(); ?>
+	<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>
+	
 
 <?
 





More information about the Scummvm-git-logs mailing list