[Tux4kids-commits] r1095 - in tux4kids-web/htdocs: . newsitetest/tux4kids/images oldsite

Matthew McSpadden mmcspadden-guest at alioth.debian.org
Fri Jun 26 21:42:44 UTC 2009


Author: mmcspadden-guest
Date: 2009-06-26 21:42:44 +0000 (Fri, 26 Jun 2009)
New Revision: 1095

Added:
   tux4kids-web/htdocs/dev.php
   tux4kids-web/htdocs/howto.php
   tux4kids-web/htdocs/mail.php
   tux4kids-web/htdocs/newsitetest/tux4kids/images/logo.png
   tux4kids-web/htdocs/newsitetest/tux4kids/images/pow-fusionforge.png
   tux4kids-web/htdocs/newsitetest/tux4kids/images/tm_title.png
   tux4kids-web/htdocs/newsitetest/tux4kids/images/tp_title.png
   tux4kids-web/htdocs/newsitetest/tux4kids/images/tt_title.png
   tux4kids-web/htdocs/oldsite/
   tux4kids-web/htdocs/oldsite/index.php
   tux4kids-web/htdocs/oldsite/tuxmath.php
   tux4kids-web/htdocs/projects.php
   tux4kids-web/htdocs/svn.php
Log:
Trying to fix the svn issue so that you all can see the same web documents that I can.

Added: tux4kids-web/htdocs/dev.php
===================================================================
--- tux4kids-web/htdocs/dev.php	                        (rev 0)
+++ tux4kids-web/htdocs/dev.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,77 @@
+<?php
+include ('includes/pageheader.php');
+echo'
+	<title>Tux4kids - Developers</title>
+	</head>
+<body>
+	<div align="center">
+		<div class="box">
+			<div class="col1">
+				<ul class="menu">
+					<li><a href="index.php"><span>Home</span></a></li>
+					<li><a href="projects.php"><span>Projects</span></a></li>
+					<li><a href="dev.php" class="active"><span>For Developers</span></a></li>
+					<li><a href="mail.php"><span>Mailing Lists</span></a></li>
+					<li><a href="svn.php"><span>SVN Repository</span></a></li>
+					<li><a href="https://alioth.debian.org/forum/?group_id=31080"><span>Forums</span></a></li>
+				</ul>
+				<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
+				<br /><br /><br /><br /><br /><br /><br /><br />
+				<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
+			</div>
+			<div class="col2">
+			<b>General information</b><br />
+			Tux4Kids programs are written in C and use Simple DirectMedia Layer (SDL) for the graphics. The programs are portable, running on Linux, Windows, Mac OSX, and BeOS. They are internationalized into many languages, and developers should keep the needs of non-English speakers in mind.<br />
+			Most development happens on Linux, and the tools for development are readily available on any modern Linux distribution. However, it should also be possible to develop on other platforms.<br />
+			<br />
+			
+			<b>Documentation for major tools and libraries</b><br />
+			<a href="http://www.libsdl.org/">SDL</a> (see in particular the DocWiki link)<br />
+			<font style="font-size: 10px;">We also use SDL_image (graphics files), SDL_mixer (sound), SDL_ttf (fonts), and will soon add SDL_net (network). Documentation for these is available on the DocWiki.</font><br /> 
+			<a href="http://svnbook.red-bean.com/">Subversion</a> (see in particular Chapter 2, "Basic Usage")<br />
+			<a href="http://www.gnu.org/software/gettext/">libintl/gettext</a> (for internationalization, aka translation)<br />
+			<a href="http://www.gnu.org/software/automake/">Automake</a> (build system)<br />
+			<a href="http://www.cmake.org/cmake/help/documentation.html">CMake</a> (an alternative build system, used especially for our Mac OSX releases of TuxMath but working on other platforms, too)<br />
+			<br />
+			
+			<b>SVN checkout (TuxMath and TuxTyping)</b><br />
+			The SVN site is hosted on <a href="http://tux4kids.alioth.debian.org/">Alioth</a> (please do not download the SourceForge SVN tree, it could be out of date). You can do an "anonymous" checkout in the following way:<br />
+			<kbd>svn co svn://svn.debian.org/tux4kids/</kbd><br />
+			This will get you the source code, but you won\'t be able to check in your modifications, because you need to have an account on Alioth.<br /><br />
+			To get a fully-functional SVN checkout, <a href="http://alioth.debian.org">apply for an Alioth account</a> and wait for administrator approval. Once you have approval, do the checkout in the following way:<br />
+			<kbd>svn co svn+ssh://fred-guest@svn.debian.org/svn/tux4kids</kbd><br />
+			assuming your user name is "fred-guest". You will have to supply your password (perhaps more than once; note you can upload an SSH key to Alioth and bypass the requirement to type the password each time you make a commit).<br />
+			With this checkout, you can use the full functionality of SVN and distribute your improvements to all the developers. If you started developing with an anonymous checkout, you can manually copy any changes over to the new directory created with your Alioth account and check them in.<br />
+			<br />
+
+               <b>Copyright</b><br />
+               Tux4kids software is released under the GPL2. By commiting your code you agree to distribute your work under this license as well. Please state so in the headers of the source files, including svg images. Thanks!
+               <br />
+			<br />
+			
+			<b>Mailing lists</b><br />
+			In addition to the mailing lists available from the link to the left, note that the TuxMath mailing list is hosted <a href="https://lists.sourceforge.net/lists/listinfo/tuxmath-devel">here</a>.<br />
+			<br />
+			
+			<b>Development and coding tips</b><br />
+			<ul>
+			<li>Installing the required libraries (from distributor packages on Linux): be sure to install the "dev" versions as well, so that you have the header files.</li>
+			<li>Documentation about compiling is available in the "doc" directory in trunk.</li>
+			<li>SVN branches: if your work is "disruptive" (meaning it\'s a fairly large change in core aspects of the code), consider working in a branch.  You can then make regular commits without disrupting trunk.<br />
+			However, it is dangerous to work for very long in a branch:  odds are high that your work will be incompatible (in either small or large ways) with other ongoing development, your work will not get the kind of oversight that trunk gets, and in any event your work is not useful until you merge to trunk.  For these reasons you should merge to trunk at any available opportunity.<br />
+			If your work is not disruptive, it may be advisable to work directly in trunk.</li>
+			<li>Please keep the changelog (in the doc/ directory) updated!</li>
+			<li>For information about preparing strings appropriately for internationalization, see
+			<a href="http://www.gnu.org/software/gettext/manual/html_node/Preparing-Strings.html#Preparing-Strings">these</a> <a href="http://techbase.kde.org/Development/Tutorials/Localization/i18n_Mistakes#Pitfall_.232:_Word_Puzzles">tips</a>. TuxMath now has built-in linebreaking code (adopted from gettext) in the "linewrap" source file.</li>
+			</ul>
+			
+			<b>Graphics</b><br />
+			Because of the impending support for <a href="http://en.wikipedia.org/wiki/Scalable_Vector_Graphics">SVG</a>, we <i>strongly</i> prefer that any new graphics files be created in SVG format. We can generate PNG files as needed from the SVGs.
+			</div>';
+include ('includes/header.php');
+echo'
+		</div>
+	</div>
+</body>
+</html>';
+?>

Added: tux4kids-web/htdocs/howto.php
===================================================================
--- tux4kids-web/htdocs/howto.php	                        (rev 0)
+++ tux4kids-web/htdocs/howto.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,81 @@
+<?php
+include ('includes/pageheader.php');
+
+echo'
+	<title>Tux4kids - Home</title>';
+
+include ('includes/header.php');
+
+echo'
+			<div class="col1">
+				<ul class="menu">
+					<li><a href="index.php"><span>Home</span></a></li>
+					<li><a href="projects.php"><span>Projects</span></a></li>
+					<li><a href="dev.php"><span>For Developers</span></a></li>
+					<li><a href="mail.php"><span>Mailing Lists</span></a></li>
+					<li><a href="svn.php"><span>SVN Repository</span></a></li>
+					<li><a href="https://alioth.debian.org/forum/?group_id=31080"><span>Forums</span></a></li>
+				</ul>
+			</div>
+			<div class="col2">
+				<font style="font-size: 14px;">This is not a tutorial on webdesign, if you want to actually learn, check out <a href="http://www.w3schools.com/">w3schools</a>,
+				they have some good info. This is just to help the developers know the syntax and basics to put content on the pages
+				without messing up the rest of the page.<br />
+				<br />
+				
+				<font style="font-size: 10px;">Note - Please DO NOT use a WYSIWYG program. Those add bloat to the code and
+				they would not work well with what I\'ve
+				written into the site so far.</font><br />
+				<br />
+				We are using PHP to generate the xhtml code. Because of this please note that any use of the \' in text must be
+				preceeded by a \ to display properly. Watch for the contractions. Also, unless you are running a web server
+				with php enabled, you will need to upload it to test it, since a browser cannot handle php on it\'s own. Also
+				for the record, most of the formatting is done by CSS in the css directory.<br />
+				<br />
+				
+				You will need a text editor of some kind to open the files. I am partial to <a href="http://www.scintilla.org/SciTE.html">SciTE</a>,
+				which gives color highlighting for different languages, and has a windows version that can read unix/linux line breaks.<br />
+				<br />
+				
+				Open the php file you want to modify. Find these tags:<br />
+					&lt;div class=&quot;col2&quot;&gt;<br />
+					<br />
+					&lt;/div&gt;<br />
+					<br /><br />
+				All the content that you want to add will go between those.<br />
+				<br />
+				<b>How to add text:</b><br />
+				Copy and paste between the two tags. That will get it up there. If you want to format it you will need
+				to add some tags around what you want formatted. <br />
+				&lt;br /&gt; Line break<br />
+				&lt;b&gt;&lt;/b&gt; Bold<br />
+				&lt;i&gt;&lt;/i&gt; Italics<br />
+				&lt;u&gt;&lt;/u&gt; Underline<br />
+				&lt;font style=&quot;font-size: 12px;&quot;&gt;&lt;/font&gt; Font size <br />
+				There are many many others, but those should at least get you going.<br />
+				<br />
+				
+				<b>Creating a link:</b><br />
+				This - &lt;a href=&quot;index.php&quot;&gt;Click Here!&lt;/a&gt; - becomes <a href="index.php">Click Here!</a><br />
+				<br />
+				The href points to the file and anything between the tags becomes a link. Text will turn blue and underlined,
+				and pictures will let you click on them. You can use a relative file path or an asolute file path here, relative
+				is prefered. If you do not know what a relative file path is, please don\'t change anything on the website, 
+				just email me what you want up there. <br />
+				<br />
+				
+				<b>Adding a picture (other than screenshots:)</b><br />
+				Just copy this code and change the file name.<br />
+				&lt;img src=&quot;images/imagename.jpg&quot; /&gt;<br />
+				<br />
+				img obviously tells that it is an image, and the src is where the image is.<br />
+				<br />
+				
+				<b>Adding a screenshot from Tux Type or TuxMath:</b><br />
+				Coming Soon.</font>
+			</div>
+		</div>
+	</div>
+</body>
+</html>';
+?>
\ No newline at end of file

Added: tux4kids-web/htdocs/mail.php
===================================================================
--- tux4kids-web/htdocs/mail.php	                        (rev 0)
+++ tux4kids-web/htdocs/mail.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,64 @@
+<?php
+include ('includes/pageheader.php');
+echo'
+	<title>Tux4kids - Mailing Lists</title>
+	</head>
+<body>
+	<div align="center">
+		<div class="box">
+			<div class="col1">
+				<ul class="menu">
+					<li><a href="index.php"><span>Home</span></a></li>
+					<li><a href="projects.php"><span>Projects</span></a></li>
+					<li><a href="dev.php"><span>For Developers</span></a></li>
+					<li><a href="mail.php" class="active"><span>Mailing Lists</span></a></li>
+					<li><a href="svn.php"><span>SVN Repository</span></a></li>
+					<li><a href="https://alioth.debian.org/forum/?group_id=31080"><span>Forums</span></a></li>
+				</ul>
+				<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
+				<br /><br /><br /><br /><br /><br /><br /><br />
+				<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
+			</div>
+			<div class="col2">
+				Tux4Kids has 11 active mailing lists. Different mailing lists are used for different purposes.<br />
+				<br />
+				<b>General Tux4Kids List: (not project-specific)</b>
+				<ul>
+					<li><a href="http://lists.alioth.debian.org/mailman/listinfo/tux4kids-discuss">Tux4kids-discuss</a> - Discussion mailing list for the Tux4kids project</li>
+				</ul>
+				<b>Tux Typing Lists:</b>
+				<ul>
+					<li><a href="http://lists.alioth.debian.org/mailman/listinfo/tux4kids-tuxtype-dev">Tux4kids-tuxtype-dev</a> - Development list for tuxtype</li>
+				</ul>
+				<b>Tux Paint Lists:</b>
+				<ul>
+					<li>For Users:</li>
+					<ul>
+						<li><a href="http://tuxpaint.org/cgi-bin/mailman/listinfo/tuxpaint-news">Tuxpaint-news</a> - Release announcements (not a discussion list)</li>
+						<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxpaint-users">Tuxpaint-users</a> - For parents/teachers/users</li>
+					</ul>
+					<li>For Developers:</li>
+					<ul>
+						<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxpaint-devel">Tuxpaint-devel</a> - Code and general dev. discussion</li>
+						<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxpaint-i18n">Tuxpaint-i18n</a> - Translation work discussion</li>
+						<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxpaint-stamps">Tuxpaint-stamps</a> - Stamp artwork discussion</li>
+						<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxpaint-docs">Tuxpaint-docs</a> - Documentation creation discussion</li>
+					</ul>
+				</ul>
+				<b>TuxMath Lists:</b>
+				<ul>
+					<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxmath-devel">Tuxmath-devel</a> - Tuxmath developers list</li>
+				</ul>
+				<b>Code commit logs: (not discussion lists)</b>
+				<ul>
+					<li><a href="http://lists.alioth.debian.org/mailman/listinfo/tux4kids-commits">Tux4kids-commits</a> - CVG commit logs</li>
+					<li><a href="https://lists.sourceforge.net/lists/listinfo/tuxpaint-cvs">Tuxpaint-cvs</a> - CVS commit logs for Tux Paint project</li>
+				</ul>
+			</div>';
+include ('includes/header.php');
+echo'
+		</div>
+	</div>
+</body>
+</html>';
+?>
\ No newline at end of file

Added: tux4kids-web/htdocs/newsitetest/tux4kids/images/logo.png
===================================================================
(Binary files differ)


Property changes on: tux4kids-web/htdocs/newsitetest/tux4kids/images/logo.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: tux4kids-web/htdocs/newsitetest/tux4kids/images/pow-fusionforge.png
===================================================================
(Binary files differ)


Property changes on: tux4kids-web/htdocs/newsitetest/tux4kids/images/pow-fusionforge.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: tux4kids-web/htdocs/newsitetest/tux4kids/images/tm_title.png
===================================================================
(Binary files differ)


Property changes on: tux4kids-web/htdocs/newsitetest/tux4kids/images/tm_title.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: tux4kids-web/htdocs/newsitetest/tux4kids/images/tp_title.png
===================================================================
(Binary files differ)


Property changes on: tux4kids-web/htdocs/newsitetest/tux4kids/images/tp_title.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: tux4kids-web/htdocs/newsitetest/tux4kids/images/tt_title.png
===================================================================
(Binary files differ)


Property changes on: tux4kids-web/htdocs/newsitetest/tux4kids/images/tt_title.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: tux4kids-web/htdocs/oldsite/index.php
===================================================================
--- tux4kids-web/htdocs/oldsite/index.php	                        (rev 0)
+++ tux4kids-web/htdocs/oldsite/index.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,298 @@
+<?php
+ 
+$domain=ereg_replace('[^\.]*\.(.*)$','\1',$_SERVER['HTTP_HOST']);
+$group_name=ereg_replace('([^\.]*)\..*$','\1',$_SERVER['HTTP_HOST']);
+
+echo '<?xml version="1.0" encoding="UTF-8"?>';
+?>
+<!DOCTYPE html
+	PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en   ">
+
+  <head>
+	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+	<title><?php echo $project_name; ?></title>
+	<script language="JavaScript" type="text/javascript">
+	<!--
+	function help_window(helpurl) {
+		HelpWin = window.open( helpurl,'HelpWindow','scrollbars=yes,resizable=yes,toolbar=no,height=400,width=400');
+	}
+	// -->
+		</script>
+
+<style type="text/css">
+	<!--
+	BODY {
+		margin-top: 3;
+		margin-left: 3;
+		margin-right: 3;
+		margin-bottom: 3;
+		background: #01004e;
+	}
+	ol,ul,p,body,td,tr,th,form { font-family: verdana,arial,helvetica,sans-serif; font-size:small;
+		color: #333333; }
+
+	h1 { font-size: x-large; font-family: verdana,arial,helvetica,sans-serif; }
+	h2 { font-size: large; font-family: verdana,arial,helvetica,sans-serif; }
+	h3 { font-size: medium; font-family: verdana,arial,helvetica,sans-serif; }
+	h4 { font-size: small; font-family: verdana,arial,helvetica,sans-serif; }
+	h5 { font-size: x-small; font-family: verdana,arial,helvetica,sans-serif; }
+	h6 { font-size: xx-small; font-family: verdana,arial,helvetica,sans-serif; }
+
+	pre,tt { font-family: courier,sans-serif }
+
+	a:link { text-decoration:none }
+	a:visited { text-decoration:none }
+	a:active { text-decoration:none }
+	a:hover { text-decoration:underline; color:red }
+
+	.titlebar { color: black; text-decoration: none; font-weight: bold; }
+	a.tablink { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tablink:visited { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tablink:hover { text-decoration: none; color: black; font-weight: bold; font-size: x-small; }
+	a.tabsellink { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tabsellink:visited { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tabsellink:hover { text-decoration: none; color: black; font-weight: bold; font-size: x-small; }
+	-->
+</style>
+
+</head>
+
+<body>
+
+<table border="0" width="100%" cellspacing="0" cellpadding="0">
+
+	<tr>
+		<td><a href="/"><img src="http://<?php echo $domain; ?>/themes/gforge/images/logo.png" border="0" alt="" width="198" height="52" /></a></td>
+	</tr>
+
+</table>
+
+<table border="0" width="100%" cellspacing="0" cellpadding="0">
+
+	<tr>
+		<td>&nbsp;</td>
+		<td colspan="3">
+
+
+
+		<!-- start tabs -->
+
+	<tr>
+		<td align="left" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topleft.png" height="9" width="9" alt="" /></td>
+		<td bgcolor="#E0E0E0" width="30"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="30" height="1" alt="" /></td>
+		<td bgcolor="#E0E0E0"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+		<td bgcolor="#E0E0E0" width="30"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="30" height="1" alt="" /></td>
+		<td align="right" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topright.png" height="9" width="9" alt="" /></td>
+	</tr>
+
+	<tr>
+
+		<!-- Outer body row -->
+
+		<td bgcolor="#E0E0E0"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="10" height="1" alt="" /></td>
+		<td valign="top" width="99%" bgcolor="#E0E0E0" colspan="3">
+
+			<!-- Inner Tabs / Shell -->
+
+			<table border="0" width="100%" cellspacing="0" cellpadding="0">
+			<tr>
+				<td align="left" bgcolor="#ffffff" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topleft-inner.png" height="9" width="9" alt="" /></td>
+				<td bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+				<td align="right" bgcolor="#ffffff" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topright-inner.png" height="9" width="9" alt="" /></td>
+			</tr>
+
+			<tr>
+				<td bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="10" height="1" alt="" /></td>
+				<td valign="top" width="99%" bgcolor="white">
+
+	<!-- whole page table -->
+<table width="100%" cellpadding="5" cellspacing="0" border="0">
+<tr><td width="65%" valign="top">
+<?php if ($handle=fopen('http://'.$domain.'/export/projtitl.php?group_name='.$group_name,'r')){
+$contents = '';
+while (!feof($handle)) {
+	$contents .= fread($handle, 8192);
+}
+fclose($handle);
+echo $contents; } ?>
+<p>Welcome to the current home page for <b><i>Tux Typing</i></b> and 
+<b><i>Tux, Of Math Command</i></b>.  Both projects are actively being developed,
+and downloads are available at this site (see below).</p> 
+<p>Here you can see <a href="tuxmath.php">screenshots of TuxMath</a> in action!</p>
+<p>For <b><i>Tux Paint</i></b>
+please follow the link to the excellent <a href="http://www.tuxpaint.org" target="_blank">Tux Paint homepage</a>.
+</p>
+<hr>
+<h4>Tuxmath and Tuxtype</h4>
+<p>As you likely can tell, we 
+ need someone with some time and web development skills to work on this page.  Our
+ efforts have been going into development of the programs themselves.  If you are
+interested in helping, please contact us via the mailing lists below.
+</p>
+<p>
+If you run Debian simply run
+<pre>aptitude install tuxmath tuxtype tuxtype-data-nonfree</pre>
+</p>
+
+<p>Downloads of source releases and Windows and MacOSX binaries are 
+available from the <i>released files</i> link in the project summary on the right.
+</p>  
+<hr>
+
+<h5>News</h5>
+<p><b><i>NEWS, 2009-03-19: </i>Tux4Kids accepted for GSoC 2009!</b>
+Tux4Kids has been accepted as a participating organization for this year's Google Summer of Code. We are very excited about another phase of productive coding.  All three Tux4Kids programs (Tux Paint, Tux Math and Tux Typing) will take part again this year.  The <a href="http://socghop.appspot.com/">GSoC site</a> has full information, including the list of particating organizations and their applications for students.  The list of "Ideas" for Tux4Kids is on the GSoC site. The student application period is 23 March to 03 April.</p>
+
+<p><b><i>NEWS, 2009-03-14: </i>Tux4Kids planning to participate in GSoC 2009</b>
+Tux4Kids has submitted its application to participate in Google's Summer of Code again for 2009. We will be informed on March 18 whether our application has been accepted. Further information will be posted at that time.</p>
+
+<p><b><i>NEWS, 2009-03-14: </i>New releases of TuxMath and TuxType </b>
+TuxMath 1.7.2 and Tux Typing 1.7.4 are available for download on our File Releases page as source tarballs and Win32 installer builds.  RPM packages for most GNU/Linux distributions can be found via this <a href="http://software.opensuse.org/search">search page </a>. For Mac users, the new packages should be in MacPorts shortly, and dmg files will be posted here when built. These releases mostly reflect underlying code cleanup in advance of this year's Google Summer of Code, with only minor user-visible changes.</p>
+
+<p><i><b>NEWS, 2009-02-26: </i>Current RPMs available for multiple distros! </b>Tux4Kids is now an active participant in the <a href="http://build.opensuse.org">OpenSUSE Build Service</a>, which provides the infrastructure for automated package building 
+for most linux distributions.  Tuxmath and Tuxtype packages can be located through the build service <a href="http://software.opensuse.org/search">search page </a>. This search page will locate both the most recent stable
+ releases, located in the OpenSUSE Education project, as well as "preview" releases, located in my home project but available 
+to anyone.  The "preview" packages are now generated almost automatically and will track the status of the Subversion repository quite closely.</p>
+<p>Currently supported distributions include OpenSUSE (10.3, 11.0, 11.1, Factory); Fedora 9 and 10; and Mandriva 2008 and 2009.  All of these packages have been built for both i586 and x86_64 architectures.  Testing is needed for all of the preview packages - please report any issues to <a href="mailto:tuxmath-devel at lists.sourceforge.net">tuxmath-devel at lists.sourceforge.net</a>.  The Build System also supports .deb packaging for recent Debian and Ubuntu releases, but these builds have not yet been implemented.</p>
+
+<p><i><b>NEWS, 2008-12-08: </i>Updated releases of TuxMath and Tux Typing </b>TuxMath 1.7.1 and Tux Typing 1.7.2 are available for download. Tux Typing 1.7.2 addresses several important issues with the previous release. It has been tested on several Linux distros and on Windows XP, and the recent problems appear to be resolved. Anyone who tried unsuccessfully to use the 1.7.0 release of Tux Typing should definitely check this one out.  For TuxMath, 1.7.1 includes a number of less critical fixes and enhancements. The most important change is correction of many of the lesson files so they should now reliably generate the intended questions.</p>
+
+<p><i><b>NEWS, 2008-12-08: </i>Tux Typing 1.7.0 Released!</b>The Tux4Kids team is pleased to announce the release of TuxType 1.7.0! The usual source tarball and Win32 installer are available for download as of this writing. This release reflects a great deal of work by our Google Summer of Code students, Mobin Mohan and Sreyas Kurumanghat, as their mentors and the rest of the Tux Typing contributors. The most important enhancements are listed below.  Also, themes and translations for several additional Indic languages have been added.</p>
+
+<p><i><b>NEWS, 2008-12-08: </i>TuxMath 1.7.0 Released!</b>Source tar.gz archives and executable Win32 installer for TuxMath 1.7.0 are available for download on our <a href="http://alioth.debian.org/project/showfiles.php?group_id=31080">Released Files</a> page. See below for a description of the new features.  Tux Typing 1.7.0 should be released within the next day or so.</p>
+
+<p><i><b>NEWS, 2008-12-02: </i>TuxMath 1.7.0 and TuxType 1.7.0 Coming Soon!</b> The Google Summer of Code was highly productive for Tux4Kids, with major enhancements to both programs courtesy of Brendan Luchen (TuxMath), Jesus Mager (TuxMath), Sreyas Kurumanghat (Tux Typing), and Mobin Mohan (Tux Typing), as well as their respective mentors.  Both programs now run fullscreen at the native resolution from the operating system, rather than just 640x480.  This greatly improves the appearance, especially on small devices like the OLPC XO laptop.  TuxMath features an entirely new game activity, "Factoroids", which provides fun review of factorization and reduction of fractions while clearing away rocks floating in space.  There also is a new, more flexible question-generation engine that allows questions with multiple operands for order-of-operations review.  Some of the individual lessons are linked together in "Campaign Mode" that places Tux's efforts in an overall story line.  For Tux Typing, enhancements include a completely reworked phrase practice activity, with graphic keyboard hints and on-screen display of accuracy and typing speed.  Tux Typing also now uses GNU gettext for internationalization, making it easier to add translations.</p>
+
+<p>The programs are currently in "string freeze", meaning that the displayed text will not be changed before the next release.  This is the time for translators to update the po files, and also is a good time to add new translations if you are so motivated.  Go to the <a href="http://svn.debian.org/wsvn/tux4kids" target="_blank">browsable subversion repository</a> and navigate to the po directory, (e.g. tuxmath/trunk/po) to find the po files for each language, as well as the po template file (e.g. tuxmath.pot) to be used for new translations.  The updated files can be sent our lists at <a href="mailto:tuxmath-devel at lists.sourceforge.net?&subject=TuxMath%20Translation">tuxmath-devel at lists.sourceforge.net</a> and <a href="mailto:tux4kids-tuxtype-dev at lists.alioth.debian.org  
+?&subject=TuxType%20Translation">tux4kids-tuxtype-dev at lists.alioth.debian.org  
+</a>.</p>
+
+<p>Source and binary releases for TuxMath 1.7.0 and TuxType 1.7.0 will be posted here on Monday, 9 December 2008.  Given the amount of new code, we do not expect them to be bug-free, but should be very usable.  We expect to make another release or two fairly shortly thereafter following some bug-squashing.</p>
+
+<p><i><b>NEWS, 2008-07-06: </i></b>A <a href="http://www.youtube.com/watch?v=D20yCEDye2Q" target="_blank">video of a kid playing tuxmath</a> is available on the web. Fun!</p>
+
+<p><i><b>NEWS, 2008-05-19: </i>TuxMath 1.6.3 has been released,</b> with much more extensive internationalization. The Linux build now uses SDL_Pango to allow right-to-left rendering for Arabic and Hebrew, and font selection for display of Asian and Eastern European characters.  Many additional translations have been added, mostly from Ubuntu's Launchpad project.  Under Linux, TuxMath now supports 21 languages!  However, we do not yet have SDL_Pango functioning in the Windows or MacOSX build.  We do, however, have GNU Gettext itself working on all platforms, meaning that Western European translations work in Windows and the Mac.</p>
+
+<p><i><b>NEWS, 2008-05-01: </i>TuxMath 1.6.2 has been released.</b> The most important advance is a MacOSX disk image (.dmg) binary file.  This should work on both Intel- and PPC-based Macs running OSX 10.4 or 10.5.  For now, internationalization is not supported in the Mac build.  For Linux and Windows, the release includes new translations for Spanish, Hungarian, and Swedish.  (Note that the source package *does* build correctly on OSX if you have the needed libraries, and Gettext works correctly).  This release also fixes an annoying crash-on-exit bug.</p>
+
+<p><i><b>NEWS, 2008-03-30: </i>TuxType won FOSS india award</b>
+
+Like last year, Tux4Kids is participating in the Google Summer of Code. Last year's project, the addition of Indic language support to TuxType, <a href="http://mobin-m.livejournal.com/4705.html">won the FOSS India 2008</a> award. Congratulationss to the team writing this code!</p>
+
+<p><i><b>NEWS, 2008-03-29: </i>TuxType 1.5.17 has been released - the first TuxType release in a few months.</b> This release includes a new Nepali theme (contributed by Vikal Acharya and Shakeel Shrestha), as well as some visual enhancements to the menu interface.</p>
+
+<p>For Mac users, also of note is that TuxMath has been added to the excellent <a href="http://www.macports.org" target="_blank">MacPorts</a> project. Users of MacPorts can install TuxMath with a simple "sudo port install tuxmath" at the command line. Work is ongoing to add TuxType to MacPorts as well, and to get an automated binary build process for both programs on OS-X.</p>
+
+<p><i><b>NEWS, 2008-02-04:</i> Improved MacOSX Support!</b> (but still not perfect).  TuxMath 1.6.1 is now available for download as a <a href="http://alioth.debian.org/frs/download.php/2310/tuxmath_w_fonts-1.6.1.tar.gz" target="_blank">gzipped tar source archive</a> and as an <a href="http://alioth.debian.org/frs/download.php/2309/tuxmath-1.6.1-win32-installer.exe" target="_blank">executable Win32 installer</a>.</p>
+
+<p>For Unix-y MacOSX users, the good news is that the source archive now builds and installs correctly on MacOSX 10.5 (Leopard) with a simple "./configure; make; sudo make install", as long as you have the required libraries.  For "the rest of us", we hope to have a simple MacOSX .dmg image file in the near future.</p>
+
+<p>Native language support via Gnu Gettext works correctly on MacOSX, as well as Windows and Linux. New human-language translations are welcome, of course. Email us at <a href="mailto:tuxmath-devel at lists.sourceforge.net?&subject=TuxMath%20Translation">tuxmath-devel at lists.sourceforge.net</a> if interested.</p>
+
+<p>On the TuxType front, we now offer current binary builds of TuxType 1.5.16 for <a href="http://alioth.debian.org/frs/download.php/2301/tuxtype_w_fonts-1.5.16-MACOSX10.4+.dmg" target="_blank">Intel-</a> and <a href="http://alioth.debian.org/frs/download.php/2300/Tuxtype_w_fonts-1.5.16-MACOS10.3PPC.dmg" target="_blank">PPC-</a>based Macs, thanks to the efforts of Alex Shorthouse.</p>
+
+
+<hr> 
+
+<p>For users of Debian 
+and its derivatives, recent TuxMath (1.6.3) and TuxType (1.5.17) 
+packages are now available in the "Sid/Unstable" branch.
+</p>
+
+
+<!-- ?php if ($handle=fopen('http://'.$domain.'/export/projnews.php?group_name='.$group_name,'r')){
+$contents = '';
+while (!feof($handle)) {
+	$contents .= fread($handle, 8192);
+}
+fclose($handle);
+$contents=str_replace('href="/','href="http://'.$domain.'/',$contents);
+echo $contents; } ? -->
+
+</td>
+
+<td width="35%" valign="top">
+
+		<table cellspacing="0" cellpadding="1" width="100%" border="0" bgcolor="#d5d5d7">
+		<tr><td>
+			<table cellspacing="0" cellpadding="2" width="100%" border="0" bgcolor="#eaecef">
+				<tr style="background-color:#d5d5d7" align="center">
+					<td colspan="2"><span class="titlebar">Project Summary</span></td>
+				</tr>
+				<tr align="left">
+					<td colspan="2">
+
+<?php if($handle=fopen('http://'.$domain.'/export/projhtml.php?group_name='.$group_name,'r')){
+$contents = '';
+while (!feof($handle)) {
+	$contents .= fread($handle, 8192);
+}
+fclose($handle);
+$contents=str_replace('href="/','href="http://'.$domain.'/',$contents);
+$contents=str_replace('src="/','src="http://'.$domain.'/',$contents);
+echo $contents; } ?>
+
+					</td>
+				</tr>
+				<table border=0 width="100%"><tr><td bgcolor="#EAECEF">
+					<ul><li>SVN repository for tuxtype and tuxmath: 
+					  <ul>
+					   <li><a href="http://svn.debian.org/wsvn/tux4kids">browsable</a></li>
+					   <li><a href="svn://svn.debian.org/tux4kids/">svn://svn.debian.org/tux4kids/</a></li>
+					  </ul>
+					 </li>
+					</ul>
+				<hr size="1" />
+				 <ul>
+				  <li>browsable archive of the <a href="http://sourceforge.net/mailarchive/forum.php?forum_name=tuxmath-devel">tuxmath-devel mailinglist</a></li>
+				  <li>(see above for more mailinglists)</li>
+				 </ul>
+				<hr size="1" />
+				<ul>
+				  <li><a href="http://bugs.debian.org/tuxtype">Bugs in the Debian BTS against tuxtype</a></li>
+				  <li><a href="http://bugs.debian.org/tuxtype-data-nonfree">Bugs in the Debian BTS against tuxtype-data-non-free</a></li>
+				  <li><a href="http://bugs.debian.org/tuxmath">Bugs in the Debian BTS against tuxmath</a></li>
+				</ul>
+				</td></tr></table>
+			</table>
+		</td></tr>
+		</table><p>&nbsp;</p>
+</td></tr></table>
+			&nbsp;<p>
+			<!-- end main body row -->
+
+
+				</td>
+				<td width="10" bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="2" height="1" alt="" /></td>
+			</tr>
+			<tr>
+				<td align="left" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomleft-inner.png" height="11" width="11" alt="" /></td>
+				<td bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+				<td align="right" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomright-inner.png" height="11" width="11" alt="" /></td>
+			</tr>
+			</table>
+
+		<!-- end inner body row -->
+
+		</td>
+		<td width="10" bgcolor="#E0E0E0"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="2" height="1" alt="" /></td>
+	</tr>
+	<tr>
+		<td align="left" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomleft.png" height="9" width="9" alt="" /></td>
+		<td bgcolor="#E0E0E0" colspan="3"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+		<td align="right" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomright.png" height="9" width="9" alt="" /></td>
+	</tr>
+</table>
+
+<!-- PLEASE LEAVE "Powered By GForge" on your site -->
+<br />
+<center>
+<a href="http://gforge.org/"><img src="http://gforge.org/images/pow-gforge.png" alt="Powered By GForge Collaborative Development Environment" border="0" /></a>
+</center>
+
+
+</body>
+</html>

Added: tux4kids-web/htdocs/oldsite/tuxmath.php
===================================================================
--- tux4kids-web/htdocs/oldsite/tuxmath.php	                        (rev 0)
+++ tux4kids-web/htdocs/oldsite/tuxmath.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,273 @@
+<?php
+
+$domain=ereg_replace('[^\.]*\.(.*)$','\1',$_SERVER['HTTP_HOST']);
+$group_name=ereg_replace('([^\.]*)\..*$','\1',$_SERVER['HTTP_HOST']);
+
+echo '<?xml version="1.0" encoding="UTF-8"?>';
+?>
+<!DOCTYPE html
+	PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en   ">
+
+  <head>
+	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+	<title><?php echo $project_name; ?></title>
+	<script language="JavaScript" type="text/javascript">
+	<!--
+	function help_window(helpurl) {
+		HelpWin = window.open( helpurl,'HelpWindow','scrollbars=yes,resizable=yes,toolbar=no,height=400,width=400');
+	}
+	// -->
+		</script>
+
+<style type="text/css">
+	<!--
+	BODY {
+		margin-top: 3;
+		margin-left: 3;
+		margin-right: 3;
+		margin-bottom: 3;
+		background: #01004e;
+	}
+	ol,ul,p,body,td,tr,th,form { font-family: verdana,arial,helvetica,sans-serif; font-size:small;
+		color: #333333; }
+
+	h1 { font-size: x-large; font-family: verdana,arial,helvetica,sans-serif; }
+	h2 { font-size: large; font-family: verdana,arial,helvetica,sans-serif; }
+	h3 { font-size: medium; font-family: verdana,arial,helvetica,sans-serif; }
+	h4 { font-size: small; font-family: verdana,arial,helvetica,sans-serif; }
+	h5 { font-size: x-small; font-family: verdana,arial,helvetica,sans-serif; }
+	h6 { font-size: xx-small; font-family: verdana,arial,helvetica,sans-serif; }
+
+	pre,tt { font-family: courier,sans-serif }
+
+	a:link { text-decoration:none }
+	a:visited { text-decoration:none }
+	a:active { text-decoration:none }
+	a:hover { text-decoration:underline; color:red }
+
+	.titlebar { color: black; text-decoration: none; font-weight: bold; }
+	a.tablink { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tablink:visited { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tablink:hover { text-decoration: none; color: black; font-weight: bold; font-size: x-small; }
+	a.tabsellink { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tabsellink:visited { color: black; text-decoration: none; font-weight: bold; font-size: x-small; }
+	a.tabsellink:hover { text-decoration: none; color: black; font-weight: bold; font-size: x-small; }
+	-->
+</style>
+
+</head>
+
+<body>
+
+<table border="0" width="100%" cellspacing="0" cellpadding="0">
+
+	<tr>
+		<td><a href="/"><img src="http://<?php echo $domain; ?>/themes/gforge/images/logo.png" border="0" alt="" width="198" height="52" /></a></td>
+	</tr>
+
+</table>
+
+<table border="0" width="100%" cellspacing="0" cellpadding="0">
+
+	<tr>
+		<td>&nbsp;</td>
+		<td colspan="3">
+
+
+
+		<!-- start tabs -->
+
+	<tr>
+		<td align="left" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topleft.png" height="9" width="9" alt="" /></td>
+		<td bgcolor="#E0E0E0" width="30"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="30" height="1" alt="" /></td>
+		<td bgcolor="#E0E0E0"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+		<td bgcolor="#E0E0E0" width="30"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="30" height="1" alt="" /></td>
+		<td align="right" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topright.png" height="9" width="9" alt="" /></td>
+	</tr>
+
+	<tr>
+
+		<!-- Outer body row -->
+
+		<td bgcolor="#E0E0E0"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="10" height="1" alt="" /></td>
+		<td valign="top" width="99%" bgcolor="#E0E0E0" colspan="3">
+
+			<!-- Inner Tabs / Shell -->
+
+			<table border="0" width="100%" cellspacing="0" cellpadding="0">
+			<tr>
+				<td align="left" bgcolor="#ffffff" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topleft-inner.png" height="9" width="9" alt="" /></td>
+				<td bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+				<td align="right" bgcolor="#ffffff" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/topright-inner.png" height="9" width="9" alt="" /></td>
+			</tr>
+
+			<tr>
+				<td bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="10" height="1" alt="" /></td>
+				<td valign="top" width="99%" bgcolor="white">
+
+	<!-- whole page table -->
+<table width="100%" cellpadding="5" cellspacing="0" border="0">
+<tr><td width="65%" valign="top">
+<?php if ($handle=fopen('http://'.$domain.'/export/projtitl.php?group_name='.$group_name,'r')){
+$contents = '';
+while (!feof($handle)) {
+	$contents .= fread($handle, 8192);
+}
+fclose($handle);
+echo $contents; } ?>
+<p>
+<b>TuxMath</b> is an arcade game that helps kids practice their math facts. The main 
+goal is to make it effective and fun!
+</p>
+<p>
+Your mission is to protect your penguin's igloos from the math 
+problem "comets" that drop out of the sky:
+<img src="images/tuxmath/game_play.jpg">
+</p>
+<p>
+
+TuxMath contains a help system that teaches new players how to stop those 
+pesky comets:
+<img src="images/tuxmath/help.jpg">
+</p>
+<p>
+
+TuxMath lets you choose from "Training Academy" lessons that focus on a 
+particular set of facts, or choose "Arcade Games" that test your skills:
+<img src="images/tuxmath/menu.jpg">
+<img src="images/tuxmath/lessons.jpg">
+</p>
+<p>
+The Training Academy lessons allow the players to pause the game and control 
+its speed, and offer a chance to build confidence with new facts. Players 
+earn gold stars as they complete particular lessons. With the arcade games, 
+the players have to answer problems more and more quickly, with only their 
+math skills to save them!
+</p>
+<p>
+
+For the arcade games, players can compete to earn a place on a high score 
+table:
+<img src="images/tuxmath/highscores.jpg">
+</p>
+<p>
+
+Tuxmath is available in several different languages, including some that have right-to-left text:
+<img src="images/tuxmath/intl.jpg">
+</p>
+<p>
+
+Optionally, you can configure TuxMath so that multiple users can have their 
+own account:
+<img src="images/tuxmath/login.jpg">
+</p>
+<p>
+This feature may be especially useful for schools.
+</p>
+<hr>
+<p>
+<a href="index.php">Back to the tux4kids homepage</a>
+</p>
+
+<!-- ?php if ($handle=fopen('http://'.$domain.'/export/projnews.php?group_name='.$group_name,'r')){
+$contents = '';
+while (!feof($handle)) {
+	$contents .= fread($handle, 8192);
+}
+fclose($handle);
+$contents=str_replace('href="/','href="http://'.$domain.'/',$contents);
+echo $contents; } ? -->
+
+</td>
+
+<td width="35%" valign="top">
+
+		<table cellspacing="0" cellpadding="1" width="100%" border="0" bgcolor="#d5d5d7">
+		<tr><td>
+			<table cellspacing="0" cellpadding="2" width="100%" border="0" bgcolor="#eaecef">
+				<tr style="background-color:#d5d5d7" align="center">
+					<td colspan="2"><span class="titlebar">Project Summary</span></td>
+				</tr>
+				<tr align="left">
+					<td colspan="2">
+					<ul><li><a ref="index.php">Project homepage</a></li></ul>
+	                                <hr size="1" />
+					</td>
+				</tr>
+				<tr align="left">
+					<td colspan="2">
+
+<?php if($handle=fopen('http://'.$domain.'/export/projhtml.php?group_name='.$group_name,'r')){
+$contents = '';
+while (!feof($handle)) {
+	$contents .= fread($handle, 8192);
+}
+fclose($handle);
+$contents=str_replace('href="/','href="http://'.$domain.'/',$contents);
+$contents=str_replace('src="/','src="http://'.$domain.'/',$contents);
+echo $contents; } ?>
+
+					</td>
+				</tr>
+				<table border=0 width="100%"><tr><td bgcolor="#EAECEF">
+					<ul><li>SVN repository for tuxtype and tuxmath: 
+					  <ul>
+					   <li><a href="http://svn.debian.org/wsvn/tux4kids">browsable</a></li>
+					   <li><a href="svn://svn.debian.org/tux4kids/">svn://svn.debian.org/tux4kids/</a></li>
+					  </ul>
+					 </li>
+					</ul>
+				<hr size="1" />
+				 <ul>
+				  <li>browsable archive of the <a href="http://sourceforge.net/mailarchive/forum.php?forum_name=tuxmath-devel">tuxmath-devel mailinglist</a></li>
+				  <li>(see above for more mailinglists)</li>
+				 </ul>
+				<hr size="1" />
+				<ul>
+				  <li><a href="http://bugs.debian.org/tuxtype">Bugs in the Debian BTS against tuxtype</a></li>
+				  <li><a href="http://bugs.debian.org/tuxtype-data-nonfree">Bugs in the Debian BTS against tuxtype-data-non-free</a></li>
+				  <li><a href="http://bugs.debian.org/tuxmath">Bugs in the Debian BTS against tuxmath</a></li>
+				</ul>
+				</td></tr></table>
+			</table>
+		</td></tr>
+		</table><p>&nbsp;</p>
+</td></tr></table>
+			&nbsp;<p>
+			<!-- end main body row -->
+
+
+				</td>
+				<td width="10" bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="2" height="1" alt="" /></td>
+			</tr>
+			<tr>
+				<td align="left" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomleft-inner.png" height="11" width="11" alt="" /></td>
+				<td bgcolor="#ffffff"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+				<td align="right" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomright-inner.png" height="11" width="11" alt="" /></td>
+			</tr>
+			</table>
+
+		<!-- end inner body row -->
+
+		</td>
+		<td width="10" bgcolor="#E0E0E0"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="2" height="1" alt="" /></td>
+	</tr>
+	<tr>
+		<td align="left" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomleft.png" height="9" width="9" alt="" /></td>
+		<td bgcolor="#E0E0E0" colspan="3"><img src="http://<?php echo $domain; ?>/themes/gforge/images/clear.png" width="1" height="1" alt="" /></td>
+		<td align="right" bgcolor="#E0E0E0" width="9"><img src="http://<?php echo $domain; ?>/themes/gforge/images/tabs/bottomright.png" height="9" width="9" alt="" /></td>
+	</tr>
+</table>
+
+<!-- PLEASE LEAVE "Powered By GForge" on your site -->
+<br />
+<center>
+<a href="http://gforge.org/"><img src="http://gforge.org/images/pow-gforge.png" alt="Powered By GForge Collaborative Development Environment" border="0" /></a>
+</center>
+
+
+</body>
+</html>

Added: tux4kids-web/htdocs/projects.php
===================================================================
--- tux4kids-web/htdocs/projects.php	                        (rev 0)
+++ tux4kids-web/htdocs/projects.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,59 @@
+<?php
+include ('includes/pageheader.php');
+echo'
+	<title>Tux4kids - Projects</title>
+	</head>
+<body>
+	<div align="center">
+		<div class="box">
+			<div class="col1">
+				<ul class="menu">
+					<li><a href="index.php"><span>Home</span></a></li>
+					<li><a href="projects.php" class="active"><span>Projects</span></a></li>
+					<li><a href="dev.php"><span>For Developers</span></a></li>
+					<li><a href="mail.php"><span>Mailing Lists</span></a></li>
+					<li><a href="svn.php"><span>SVN Repository</span></a></li>
+					<li><a href="https://alioth.debian.org/forum/?group_id=31080"><span>Forums</span></a></li>
+				</ul>
+				<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
+				<br /><br /><br /><br /><br /><br /><br /><br />
+				<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
+			</div>
+			<div class="col2">
+				<table>
+					<tr>
+						<td align="center">
+							<a href="http://tux4kids.alioth.debian.org/tuxmath/index.php"><img src="images/tm_title.png" /></a>
+						</td>
+						<td>
+							<a href="http://tux4kids.alioth.debian.org/tuxmath/index.php">Tux, of Math Command</a>, AKA TuxMath, is 
+							a great program that uses several different playing styles on two different games to help teach kids math skills in a fun way.
+						</td>
+					</tr>
+					<tr>
+						<td>
+							<a href="http://www.tuxpaint.org/"><img src="images/tp_title.png" /></a>
+						</td>
+						<td>
+							Partnering with New Breed Software, Tux4Kids helps bring you <a href="http://www.tuxpaint.org/">Tux Paint</a>. This fun drawing game 
+							encourages kids to be creative and creates a fun environment complete with sound effects. 							
+						</td>
+					</tr>
+					<tr>
+						<td>
+							<a href="http://tux4kids.alioth.debian.org/tuxtype/index.php"><img src="images/tt_title.png" /></a>
+						</td>
+						<td>
+							Tux4Kids also works on a typing game called <a href="http://tux4kids.alioth.debian.org/tuxtype/index.php">TuxTyping</a>.
+							This educational game comes with two different games for practicing your typing, and having a great time doing it. 
+						</td>
+					</tr>
+				</table>
+			</div>';
+include ('includes/header.php');
+echo'
+		</div>
+	</div>
+</body>
+</html>';
+?>
\ No newline at end of file

Added: tux4kids-web/htdocs/svn.php
===================================================================
--- tux4kids-web/htdocs/svn.php	                        (rev 0)
+++ tux4kids-web/htdocs/svn.php	2009-06-26 21:42:44 UTC (rev 1095)
@@ -0,0 +1,49 @@
+<?php
+include ('includes/pageheader.php');
+echo'
+	<title>Tux4kids - SVN</title>
+	</head>
+<body>
+	<div align="center">
+		<div class="box">
+			<div class="col1">
+				<ul class="menu">
+					<li><a href="index.php"><span>Home</span></a></li>
+					<li><a href="projects.php"><span>Projects</span></a></li>
+					<li><a href="dev.php"><span>For Developers</span></a></li>
+					<li><a href="mail.php"><span>Mailing Lists</span></a></li>
+					<li><a href="svn.php" class="active"><span>SVN Repository</span></a></li>
+					<li><a href="https://alioth.debian.org/forum/?group_id=31080"><span>Forums</span></a></li>
+				</ul>
+				<br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
+				<br /><br /><br /><br /><br /><br /><br /><br />
+				<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
+			</div>
+			<div class="col2">
+				<b>Viewing the Repository</b><br />
+				To check out the repository without making any changes, check out the browsable svn below. If all you need is the url for the svn, here it is as well. 
+				<ul>
+					<li><a href="http://svn.debian.org/wsvn/tux4kids">browsable</a></li>
+					<li><a href="svn://svn.debian.org/tux4kids/">svn://svn.debian.org/tux4kids/</a></li>
+				</ul><br />
+				<b>Working with the Repository</b><br />
+				The SVN site is hosted on <a href="http://tux4kids.alioth.debian.org/">Alioth</a> (please do not download the SourceForge SVN tree, it could be out of date).
+				You can do an "anonymous" checkout in the following way:<br /><br />
+				<kbd>svn co svn://svn.debian.org/tux4kids/</kbd><br /><br />
+				This will get you the source code, but you won\'t be able to check in your modifications, because you need to have an account on Alioth.<br /><br />
+				To get a fully-functional SVN checkout, <a href="http://alioth.debian.org">apply for an Alioth account</a> and wait for administrator approval. Once you
+				have approval, do the checkout in the following way:<br /><br />
+				<kbd>svn co svn+ssh://fred-guest@svn.debian.org/svn/tux4kids</kbd><br /><br />
+				assuming your user name is "fred-guest". You will have to supply your password (perhaps more than once; note you can upload an SSH key to Alioth and
+				bypass the requirement to type the password each time you make a commit).<br />
+				With this checkout, you can use the full functionality of SVN and distribute your improvements to all the developers. If you started developing with an
+				anonymous checkout, you can manually copy any changes over to the new directory created with your Alioth account and check them in.<br />
+				<br />
+			</div>';
+include ('includes/header.php');
+echo'
+		</div>
+	</div>
+</body>
+</html>';
+?>
\ No newline at end of file




More information about the Tux4kids-commits mailing list