From: SVN by r. <sv...@ca...> - 2009-02-18 23:21:56
|
Author: ronald Date: 2009-02-18 23:19:47 +0100 (Wed, 18 Feb 2009) New Revision: 373 Modified: src/www/index.php Log: update website Modified: src/www/index.php =================================================================== --- src/www/index.php 2009-02-18 22:09:42 UTC (rev 372) +++ src/www/index.php 2009-02-18 22:19:47 UTC (rev 373) @@ -1,4 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>SQLShell</title> @@ -10,59 +10,66 @@ <body> <div class="logo"></div> <div class="menu"> - <a href="#" onClick="showTab('Home')">Home</a> | <a href="#" onClick="showTab('FAQ')">FAQ</a> - | <a href="#" onClick="showTab('Screenshots')">Screenshots</a> | <a href="#" onClick="showTab('Download')">Download</a> - | <a href="#" onClick="showTab('Contact')">Contact</a> -</div> -<div class="content"> - <div id="Home" class="page"> - <h1>SQLShell: </h1> - <p>A fully functional smart textual database frontend with features like tabcompletion - and command history.<br> - All the missing unix tool features in sqlplus or servercommandline are include - in sqlshell. </p> + <a href="#" onClick="showTab('Home')">Home</a> | <a href="#" onClick="showTab('FAQ')">FAQ</a> + | <a href="#" onClick="showTab('Screenshots')">Screenshots</a> | <a href="#" onClick="showTab('Download')">Download</a> + | <a href="#" onClick="showTab('Contact')">Contact</a> +</div> +<div class="content"> + + <div id="Home" class="page"> + <h1>SQLShell:</h1> + <p> + <?php + $page = "home"; + include "include/loadContent.php"; + ?> + </p> <p> </p> - <h1>News</h1> - <ul> - <?php include "include/news.php"; ?> - </ul> + <h1>News</h1> + <ul> + <?php include "include/news.php"; ?> + </ul> </div> - <div id="FAQ" class="page"> - <h1 align="left">FAQ</h1> - <?php include "include/faq.php"; ?> + + <div id="FAQ" class="page"> + <h1 align="left">FAQ</h1> + <p> + <?php + $page = "faq"; + include "include/loadContent.php"; + ?> + </p> </div> - <div id="Screenshots" class="page"> + + <div id="Screenshots" class="page"> <h1>Screenshots</h1> - <img src="content/screenshots/help.jpg" name="screenshot_large" width="514" height="406" align="left"> - <div class="screenshot"> <img src="content/screenshots/help.jpg" onClick="showScreenshot(this)" width="140" height="110"><br> - overview of commands available shown in help </div> + <?php + $page = "screenshots"; + include "include/loadContent.php"; + ?> + </div> - <div class="screenshot"> <img src="content/screenshots/choose_columnname.jpg" onClick="showScreenshot(this)" width="140" height="110"><br> - a popup dialog for choosing column names </div> - <div class="screenshot"><img src="content/screenshots/multiple_values_possible.jpg" onClick="showScreenshot(this)" width="140" height="110"><br> - a popup dialog shows up when no single value is possible </div> - </div> - <div id="Download" class="page"> + <div id="Download" class="page"> <h1>Download</h1> - <p>download <a href="#">here</a> the last version</p> - <h2>Installation</h2> - Minimum (tested) requirements: SUN Java 6 and a working operating system for - javacurses (http://sf.net/projects/javacurses) - <h2>Source </h2> - <p>Download <a href="http://sourceforge.net/project/showfiles.php?group_id=204538" target="_blank">releases - from Sourceforge </a> </p> + <?php + $page = "download"; + include "include/loadContent.php"; + ?> <?php // <h2>SVN</h2> // <p>svn co svn://dev.cable2000.nl/devel sqlclient </p> ?> <h2> </h2> </div> - <div id="Contact" class="page"> + + <div id="Contact" class="page"> <h1>Contact</h1> - <p>hglteam at users.sourceforge.net </p> - <p> vdkuil at users.sourceforge.net </p> - <p> srotman at users.sourceforge.net </p> + <?php + $page = "contact"; + include "include/loadContent.php"; + ?> </div> +<a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=204538&type=3" width="125" height="37" border="0" alt="SourceForge.net Logo" /></a> </div> </body> </html> |