<?php
/****m*
* NAME
* TTcontents.php --- Workarea of the TT Site application
*
* DESCRIPTION
* Show the main contents (HTML)
*
* AUTHOR
* Oscar van Eijk, Oveas Functionality Provider
*
* COPYRIGHT
* (c) 2003-2005 by Oscar van Eijk/Oveas Functionality Provider
***/
/*
* This module is part of Terra-Terra, the Virtual Operating System
* http://terra-terra.com
* ------------------------------------------------------------------------
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License,
* or any later version.
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* ------------------------------------------------------------------------
* $Id: TTcontents.php,v 1.3 2005/07/26 17:27:07 tt_oscar Exp $
*/
if (!defined ('TT_MASTER_PROCESS')) {
if (function_exists ('version_compare')) {
$__TTroot = $_COOKIE['TTroot'];
} else {
$__TTroot = $HTTP_COOKIE_VARS['TTroot'];
}
require_once ($__TTroot . '/kernel/TTinit.pinc');
}
echo (TT_header());
?>
<h2>Welcome at the Terra-Terra.com preview page</h2>
<p>This is the Welcome schreen of this preview. Logging in is currently not possible, but you can play around with the workareas a bit.<br />
More information can be found at the <a href="http://sourceforge.net/projects/terra-terra" target="_top">SourceForge</a> project page.</p>
<p>The "Help" area on this Terra-Terra WorkSpace explains a bit about the use of this preview.</p>
<?
echo ('</table>');
echo (TT_footer());
?>