[Tux4kids-commits] r1572 - tux4kids-web/htdocs
Matthew McSpadden
mmcspadden-guest at alioth.debian.org
Tue Oct 6 15:24:25 UTC 2009
Author: mmcspadden-guest
Date: 2009-10-06 15:24:24 +0000 (Tue, 06 Oct 2009)
New Revision: 1572
Added:
tux4kids-web/htdocs/tuxmath.php
tux4kids-web/htdocs/tuxpaint.php
tux4kids-web/htdocs/tuxtyping.php
Removed:
tux4kids-web/htdocs/maillist.php
tux4kids-web/htdocs/projects.php
Modified:
tux4kids-web/htdocs/dev.php
tux4kids-web/htdocs/index.php
tux4kids-web/htdocs/mail.php
tux4kids-web/htdocs/svn.php
Log:
Corrections to the website
Modified: tux4kids-web/htdocs/dev.php
===================================================================
--- tux4kids-web/htdocs/dev.php 2009-10-06 13:13:43 UTC (rev 1571)
+++ tux4kids-web/htdocs/dev.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -1,84 +1,86 @@
<?php include ('includes/pageheader.php');?>
<title>Tux4kids - Developers</title>
</head>
- <body>
+<body>
<div align="center">
<div class="box">
<div class="col1">
<ul class="menu">
- <li><a href="index.php" class="active"><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="index.php"><span>Home</span></a></li>
+ <li><a href="tuxmath.php"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php"><span>TuxTyping</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 />
+ <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>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>
--<?php include ('includes/header.php');?>
-- </div>
-- </div>
--</body>
--</html>
\ No newline at end of file
+ <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>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>
+<?php include ('includes/header.php');?>
+ </div>
+ </div>
+</body>
+</html>
\ No newline at end of file
Modified: tux4kids-web/htdocs/index.php
===================================================================
--- tux4kids-web/htdocs/index.php 2009-10-06 13:13:43 UTC (rev 1571)
+++ tux4kids-web/htdocs/index.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -7,14 +7,16 @@
<div class="col1">
<ul class="menu">
<li><a href="index.php" class="active"><span>Home</span></a></li>
- <li><a href="projects.php"><span>Projects</span></a></li>
+ <li><a href="tuxmath.php"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php"><span>TuxTyping</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 />
+ <br /><br /><br /><br /><br />
<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
</div>
<div class="col2">
@@ -83,7 +85,7 @@
</tr>
</table>
</div>
-<?php include ('includes/header.php');?>
+ <?php include ('includes/header.php');?>
</div>
</div>
</body>
Modified: tux4kids-web/htdocs/mail.php
===================================================================
--- tux4kids-web/htdocs/mail.php 2009-10-06 13:13:43 UTC (rev 1571)
+++ tux4kids-web/htdocs/mail.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -1,26 +1,22 @@
-<!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>
- <link rel="stylesheet" media="all" type="text/css" href="css/layout.css" />
- <link rel="stylesheet" type="text/css" media="screen" href="css/stylesheet.css" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tux4kids - Mailing Lists</title>
+<?php include ('includes/pageheader.php');?>
+ <title>Tux4Kids - Mailing Lists</title>
</head>
<body>
<div align="center">
<div class="box">
-
<div class="col1">
<ul class="menu">
- <li><a href="index.php" class="active"><span>Home</span></a></li>
- <li><a href="projects.php"><span>Projects</span></a></li>
+ <li><a href="index.php"><span>Home</span></a></li>
+ <li><a href="tuxmath.php"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php"><span>TuxTyping</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="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 />
+ <br /><br /><br /><br /><br />
<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
</div>
<div class="col2">
@@ -67,16 +63,9 @@
</ul>
</div>
- <div class="header">
- <table>
- <tr>
- <td style="width: 850px;"><a href="http://tux4kids.alioth.debian.org/"><img src="images/title.png" alt="Tux4Kids logo" /></a><br>
- High Quality Educational Software Alternatives</td>
- <td><img src="images/tux.png" alt="Tux" /></td>
-
- </tr>
- </table>
- </div> </div>
+ </div>
+<?php include ('includes/header.php');?>
+ </div>
</div>
</body>
</html>
\ No newline at end of file
Deleted: tux4kids-web/htdocs/maillist.php
===================================================================
--- tux4kids-web/htdocs/maillist.php 2009-10-06 13:13:43 UTC (rev 1571)
+++ tux4kids-web/htdocs/maillist.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -1,82 +0,0 @@
-<!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>
- <link rel="stylesheet" media="all" type="text/css" href="css/layout.css" />
- <link rel="stylesheet" type="text/css" media="screen" href="css/stylesheet.css" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tux4kids - Mailing Lists</title>
- </head>
-<body>
- <div align="center">
- <div class="box">
-
- <div class="col1">
- <ul class="menu">
- <li><a href="index.php" class="active"><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>
- <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">
- Mailing lists are the best way to keep up with what is going on with the Tux4Kids projects. Tux4Kids has 11 active mailing
- lists. Different mailing lists are used for different purposes. Please pick the appropriate mailing list below.<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>
- <div class="header">
- <table>
- <tr>
- <td style="width: 850px;"><a href="http://tux4kids.alioth.debian.org/"><img src="images/title.png" alt="Tux4Kids logo" /></a><br>
- High Quality Educational Software Alternatives</td>
- <td><img src="images/tux.png" alt="Tux" /></td>
-
- </tr>
- </table>
- </div> </div>
- </div>
-</body>
-</html>
\ No newline at end of file
Deleted: tux4kids-web/htdocs/projects.php
===================================================================
--- tux4kids-web/htdocs/projects.php 2009-10-06 13:13:43 UTC (rev 1571)
+++ tux4kids-web/htdocs/projects.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -1,56 +0,0 @@
-<?php include ('includes/pageheader.php');?>
- <title>Tux4Kids - Projects</title>
- </head>
-<body>
- <div align="center">
- <div class="box">
- <div class="col1">
- <ul class="menu">
- <li><a href="index.php" class="active"><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>
- <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, lets kids hone their arithmetic
- skills while they defend penguins from incoming comets, or offers them a chance to explore the asteroid belt with only their factoring abilities
- to bring them through safely!
- </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 remarkable drawing program
- empowers kids to be creative in an environment complete with magic tools and 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>
- <a href="http://tux4kids.alioth.debian.org/tuxtype/index.php">TuxTyping</a> Tux the penguin is hungry, and loves to eat fish. But Tux
- can only catch the fish if you type the right letters in time! Can you help Tux?
- </td>
- </tr>
- </table>
- </div>
-<?php include ('includes/header.php');?>
- </div>
- </div>
-</body>
-</html>
\ No newline at end of file
Modified: tux4kids-web/htdocs/svn.php
===================================================================
--- tux4kids-web/htdocs/svn.php 2009-10-06 13:13:43 UTC (rev 1571)
+++ tux4kids-web/htdocs/svn.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -6,15 +6,17 @@
<div class="box">
<div class="col1">
<ul class="menu">
- <li><a href="index.php" class="active"><span>Home</span></a></li>
- <li><a href="projects.php"><span>Projects</span></a></li>
+ <li><a href="index.php"><span>Home</span></a></li>
+ <li><a href="tuxmath.php"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php"><span>TuxTyping</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="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 />
+ <br /><br /><br /><br /><br />
<img src="images/pow-fusionforge.png" alt="Fusion Forge" />
</div>
<div class="col2">
Added: tux4kids-web/htdocs/tuxmath.php
===================================================================
--- tux4kids-web/htdocs/tuxmath.php (rev 0)
+++ tux4kids-web/htdocs/tuxmath.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -0,0 +1,40 @@
+<?php include ('includes/pageheader.php');?>
+ <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="tuxmath.php" class="active"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php"><span>TuxTyping</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 />
+ <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, lets kids hone their arithmetic
+ skills while they defend penguins from incoming comets, or offers them a chance to explore the asteroid belt with only their factoring abilities
+ to bring them through safely!
+ </td>
+ </tr>
+ </table>
+ </div>
+<?php include ('includes/header.php');?>
+ </div>
+ </div>
+</body>
+</html>
\ No newline at end of file
Added: tux4kids-web/htdocs/tuxpaint.php
===================================================================
--- tux4kids-web/htdocs/tuxpaint.php (rev 0)
+++ tux4kids-web/htdocs/tuxpaint.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -0,0 +1,39 @@
+<?php include ('includes/pageheader.php');?>
+ <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="tuxmath.php"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php" class="active"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php"><span>TuxTyping</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 />
+ <img src="images/pow-fusionforge.png" alt="Fusion Forge" />
+ </div>
+ <div class="col2">
+ <table>
+ <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 remarkable drawing program
+ empowers kids to be creative in an environment complete with magic tools and sound effects.
+ </td>
+ </tr>
+ </table>
+ </div>
+<?php include ('includes/header.php');?>
+ </div>
+ </div>
+</body>
+</html>
\ No newline at end of file
Added: tux4kids-web/htdocs/tuxtyping.php
===================================================================
--- tux4kids-web/htdocs/tuxtyping.php (rev 0)
+++ tux4kids-web/htdocs/tuxtyping.php 2009-10-06 15:24:24 UTC (rev 1572)
@@ -0,0 +1,39 @@
+<?php include ('includes/pageheader.php');?>
+ <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="tuxmath.php"><span>TuxMath</span></a></li>
+ <li><a href="tuxpaint.php"><span>TuxPaint</span></a></li>
+ <li><a href="tuxtyping.php" class="active"><span>TuxTyping</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 />
+ <img src="images/pow-fusionforge.png" alt="Fusion Forge" />
+ </div>
+ <div class="col2">
+ <table>
+ <tr>
+ <td>
+ <a href="http://tux4kids.alioth.debian.org/tuxtype/index.php"><img src="images/tt_title.png" /></a>
+ </td>
+ <td>
+ <a href="http://tux4kids.alioth.debian.org/tuxtype/index.php">TuxTyping</a> Tux the penguin is hungry, and loves to eat fish. But Tux
+ can only catch the fish if you type the right letters in time! Can you help Tux?
+ </td>
+ </tr>
+ </table>
+ </div>
+<?php include ('includes/header.php');?>
+ </div>
+ </div>
+</body>
+</html>
\ No newline at end of file
More information about the Tux4kids-commits
mailing list