Thread: [Phpfreechat-svn] SF.net SVN: phpfreechat: [547] trunk/index.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-07 20:11:15
|
Revision: 547 Author: kerphi Date: 2006-06-05 07:10:42 -0700 (Mon, 05 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=547&view=rev Log Message: ----------- XHTML fixes Modified Paths: -------------- trunk/index.php Modified: trunk/index.php =================================================================== --- trunk/index.php 2006-06-05 14:10:14 UTC (rev 546) +++ trunk/index.php 2006-06-05 14:10:42 UTC (rev 547) @@ -7,77 +7,76 @@ $chat = new phpFreeChat( $params ); ?> - <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> - <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> - <title>phpFreeChat Sources Index</title> - <link rel="stylesheet" title="classic" type="text/css" href="style/generic.css"> - <link rel="stylesheet" title="classic" type="text/css" href="style/header.css"> - <link rel="stylesheet" title="classic" type="text/css" href="style/footer.css"> - <link rel="stylesheet" title="classic" type="text/css" href="style/menu.css"> - <link rel="stylesheet" title="classic" type="text/css" href="style/content.css"> + <head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <title>phpFreeChat Sources Index</title> + <link rel="stylesheet" title="classic" type="text/css" href="style/generic.css" /> + <link rel="stylesheet" title="classic" type="text/css" href="style/header.css" /> + <link rel="stylesheet" title="classic" type="text/css" href="style/footer.css" /> + <link rel="stylesheet" title="classic" type="text/css" href="style/menu.css" /> + <link rel="stylesheet" title="classic" type="text/css" href="style/content.css" /> <?php $chat->printJavascript(); ?> <?php $chat->printStyle(); ?> </head> - <body> - -<div class="header"> - <h1>phpFreeChat - Sources Index</h1> - <img alt="logo bulle" src="style/bulle.png" class="logo2"> -</div> - -<div class="menu"> - <ul> - <li class="sub title">General</li> - <li> - <ul class="sub"> - <li class="item"> - <a href="demo/">Demos</a> - </li> - <li class="item"> - <a href="admin/">Administration</a> - </li> - </ul> - </li> - <li class="sub title">Documentation</li> - <li> - <ul> - <li class="item"> - <a href="README.en">readme [en]</a> - </li> - <li class="item"> - <a href="README.fr">readme [fr]</a> + <body> + +<div class="header"> + <h1>phpFreeChat - Sources Index</h1> + <img alt="logo bulle" src="style/bulle.png" class="logo2" /> +</div> + +<div class="menu"> + <ul> + <li class="sub title">General</li> + <li> + <ul class="sub"> + <li class="item"> + <a href="demo/">Demos</a> </li> - <li class="item"> - <a href="INSTALL.en">install [en]</a> - </li> - <li class="item"> - <a href="INSTALL.fr">install [fr]</a> - </li> - </ul> - </li> - </ul> - <p class="partner"> - <a href="http://www.phpfreechat.net"><img alt="logo big" src="style/logo_88x31.gif"></a> - </p> -</div> - + <li class="item"> + <a href="admin/">Administration</a> + </li> + </ul> + </li> + <li class="sub title">Documentation</li> + <li> + <ul> + <li class="item"> + <a href="README.en">readme [en]</a> + </li> + <li class="item"> + <a href="README.fr">readme [fr]</a> + </li> + <li class="item"> + <a href="INSTALL.en">install [en]</a> + </li> + <li class="item"> + <a href="INSTALL.fr">install [fr]</a> + </li> + </ul> + </li> + </ul> + <p class="partner"> + <a href="http://www.phpfreechat.net"><img alt="logo big" src="style/logo_88x31.gif" /></a> + </p> +</div> + <div class="content"> - <h2>See the quick demo</h2> - <?php $chat->printChat(); ?> -</div> - -<div class="footer"> - <div class="valid"> - <a href="http://validator.w3.org/check?uri=referer"> - <img alt="Valid XHTML 1.0!" src="style/valid-xhtml.png"> - </a> - <a href="http://jigsaw.w3.org/css-validator/check/referer"> - <img alt="Valid CSS!" src="style/valid-css.png"> - </a> - </div> - <p>\xA92006 phpFreeChat</p> - </div> + <h2>See the quick demo</h2> + <?php $chat->printChat(); ?> +</div> + +<div class="footer"> + <div class="valid"> + <a href="http://validator.w3.org/check?uri=referer"> + <img alt="Valid XHTML 1.0!" src="style/valid-xhtml.png" /> + </a> + <a href="http://jigsaw.w3.org/css-validator/check/referer"> + <img alt="Valid CSS!" src="style/valid-css.png" /> + </a> + </div> + <p>\xA92006 phpFreeChat</p> + </div> </body></html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2006-08-01 18:01:26
|
Revision: 660 Author: kerphi Date: 2006-08-01 11:01:18 -0700 (Tue, 01 Aug 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=660&view=rev Log Message: ----------- In the default chat index, everybody is admin in order to test easialy every chat features Modified Paths: -------------- trunk/index.php Modified: trunk/index.php =================================================================== --- trunk/index.php 2006-07-24 12:13:51 UTC (rev 659) +++ trunk/index.php 2006-08-01 18:01:18 UTC (rev 660) @@ -3,6 +3,7 @@ require_once dirname(__FILE__)."/src/phpfreechat.class.php"; $params = array(); $params["nick"] = "guest".rand(1,10); // setup the intitial nickname +$params["isadmin"] = true; // just for debug ;) $params["serverid"] = md5(__FILE__); // calculate a unique id for this chat $chat = new phpFreeChat( $params ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <gpi...@us...> - 2007-08-16 17:46:49
|
Revision: 1127 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1127&view=rev Author: gpinzone Date: 2007-08-16 10:46:48 -0700 (Thu, 16 Aug 2007) Log Message: ----------- Fixed SourceForge image height and width parameters. Modified Paths: -------------- trunk/index.php Modified: trunk/index.php =================================================================== --- trunk/index.php 2007-08-16 13:04:48 UTC (rev 1126) +++ trunk/index.php 2007-08-16 17:46:48 UTC (rev 1127) @@ -95,7 +95,7 @@ </ul> <p class="partner"> <a href="http://www.phpfreechat.net"><img alt="phpfreechat.net" src="style/logo_88x31.gif" /></a><br/> - <a href="http://sourceforge.net/projects/phpfreechat"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=158880&type=1" alt="SourceForge.net Logo" height="31px" width="88px" /></a><br/><br/> + <a href="http://sourceforge.net/projects/phpfreechat"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=158880&type=1" alt="SourceForge.net Logo" height="31" width="88" /></a><br/><br/> <a href="http://www.hotscripts.com/?RID=N452772">hotscripts.com</a><br/> <a href="http://www.jeu-gratuit.net/">jeu-gratuit.net</a><br/> <a href="http://www.pronofun.com/">pronofun.com</a><br/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2008-03-23 20:58:03
|
Revision: 1234 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1234&view=rev Author: kerphi Date: 2008-03-23 13:58:07 -0700 (Sun, 23 Mar 2008) Log Message: ----------- update index links Modified Paths: -------------- trunk/index.php Modified: trunk/index.php =================================================================== --- trunk/index.php 2008-03-23 20:49:52 UTC (rev 1233) +++ trunk/index.php 2008-03-23 20:58:07 UTC (rev 1234) @@ -52,47 +52,44 @@ <li> <ul> <li class="item"> - <a href="http://www.phpfreechat.net/overview.en.html">Overview [en]</a> + <a href="http://www.phpfreechat.net/overview">Overview [en]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/overview.fr.html">Overview [fr]</a> + <a href="http://www.phpfreechat.net/fr/overview">Overview [fr]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/overview.es.html">Overview [es]</a> + <a href="http://www.phpfreechat.net/es/overview">Overview [es]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/overview.ar.html">Overview [zh]</a> + <a href="http://www.phpfreechat.net/zh/overview">Overview [zh]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/overview.ar.html">Overview [ar]</a> + <a href="http://www.phpfreechat.net/ar/overview">Overview [ar]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/install.en.html">Install [en]</a> + <a href="http://www.phpfreechat.net/quickstart">Quickstart [en]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/install.fr.html">Install [fr]</a> + <a href="http://www.phpfreechat.net/fr/quickstart">En avant ! [fr]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/parameters-list.en.html">Parameters list [en]</a> + <a href="http://www.phpfreechat.net/parameters">Parameters list [en]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/faq.en.html">FAQ [en]</a> + <a href="http://www.phpfreechat.net/faq">FAQ [en]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/faq.fr.html">FAQ [fr]</a> + <a href="http://www.phpfreechat.net/fr/faq">FAQ [fr]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/customize.en.html">Customize [en]</a> + <a href="http://www.phpfreechat.net/advanced-configuration">Advanced configuration [en]</a> </li> <li class="item"> - <a href="http://www.phpfreechat.net/customize.fr.html">Customize [fr]</a> - </li> + <a href="http://www.phpfreechat.net/fr/advanced-configuration">Configuration avancée [fr]</a> + </li> <li class="item"> - <a href="http://www.phpfreechat.net/changelog.en.html">ChangeLog [en]</a> + <a href="http://www.phpfreechat.net/customize">Customize [en]</a> </li> - <li class="item"> - <a href="http://www.phpfreechat.net/changelog.fr.html">ChangeLog [fr]</a> - </li> </ul> </li> </ul> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ke...@us...> - 2008-03-27 16:03:02
|
Revision: 1236 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1236&view=rev Author: kerphi Date: 2008-03-27 09:03:04 -0700 (Thu, 27 Mar 2008) Log Message: ----------- do not show the warning message when isadmin parameter is removed Modified Paths: -------------- trunk/index.php Modified: trunk/index.php =================================================================== --- trunk/index.php 2008-03-27 09:33:51 UTC (rev 1235) +++ trunk/index.php 2008-03-27 16:03:04 UTC (rev 1236) @@ -107,7 +107,9 @@ <div class="content"> <?php $chat->printChat(); ?> - <p style="color:red;font-weight:bold;">Warning: because of "isadmin" parameter, everybody is admin. Please modify this script before using it on production servers !</p> + <?php if (isset($params["isadmin"]) && $params["isadmin"]) { ?> + <p style="color:red;font-weight:bold;">Warning: because of "isadmin" parameter, everybody is admin. Please modify this script before using it on production servers !</p> + <?php } ?> </div> </body></html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |