Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv25349
Added Files:
blank.htm link.php3
Log Message:
First drafts for the 0.15 release
--- NEW FILE ---
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<!--
//
// +--------------------------------------------------------------------------+
// | phpMyChat version 0.15.0 |
// +--------------------------------------------------------------------------+
// | Copyright (c) 2000-2001 The phpHeaven-team |
// +--------------------------------------------------------------------------+
// | An empty page that will be dynamically filled. |
// +--------------------------------------------------------------------------+
// | From the phpMyChat project: |
// | http://www.phpheaven.net/projects/phpMyChat/ |
// | |
// | Authors: the phpHeaven-team <php...@ya...> |
// +--------------------------------------------------------------------------+
//
// $Id: blank.htm,v 1.1 2001/03/30 06:39:08 loic1 Exp $
//
// An empty page that will be dynamically filled.
-->
<head>
<title>Blank title</title>
</head>
<body>
<!-- Not a blank document ;) -->
</body>
</html>
--- NEW FILE ---
<?php
//
// +--------------------------------------------------------------------------+
// | phpMyChat version 0.15.0 |
// +--------------------------------------------------------------------------+
// | Copyright (c) 2000-2001 The phpHeaven-team |
// +--------------------------------------------------------------------------+
// | The bottom-right frame with the phpHeaven icon. |
// +--------------------------------------------------------------------------+
// | From the phpMyChat project: |
// | http://www.phpheaven.net/projects/phpMyChat/ |
// | |
// | Authors: the phpHeaven-team <php...@ya...> |
// +--------------------------------------------------------------------------+
//
// $Id: link.php3,v 1.1 2001/03/30 06:39:08 loic1 Exp $
//
// The bottom-right frame with the phpHeaven icon.
/**
* Gets the extension for the php scripts
*/
if (!isset($PHP_SELF))
$PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];
define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php');
/**
* Displays the frame
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Blank title</title>
<link rel="stylesheet" href="config/style.css.<?php echo(C_EXTENSION); ?>" type="text/css" />
</head>
<body class="frame">
<center>
<a href="http://www.phpheaven.net/" target="_blank"><img src="images/icon.gif" width="88" height="31" border="0" /></a>
</center>
</body>
</html>
|