You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
(51) |
Apr
(688) |
May
(260) |
Jun
(108) |
Jul
(42) |
Aug
|
Sep
(2) |
Oct
|
Nov
(74) |
Dec
(217) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(3) |
Jun
(6) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
(8) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Lo?c C. <lo...@us...> - 2001-05-28 19:55:53
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian In directory usw-pr-cvs1:/tmp/cvs-serv24789/chat/localization/italian Modified Files: tutorial.loc Log Message: Forgot a sentence Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian/tutorial.loc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** tutorial.loc 2001/05/25 22:29:42 1.9 --- tutorial.loc 2001/05/28 19:55:50 1.10 *************** *** 763,767 **** ?> <p> ! <font size="+1"><a name="banish"><b>Banish an user:</b></a></font> </p> <p> --- 763,767 ---- ?> <p> ! <font size="+1"><a name="banish"><b>Bandire un utente:</b></a></font> </p> <p> |
From: Lo?c C. <lo...@us...> - 2001-05-28 19:55:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv24727/chat Modified Files: whois_popup.php3 Log Message: Just a typo Index: whois_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/whois_popup.php3,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** whois_popup.php3 2001/05/26 14:01:22 1.13 --- whois_popup.php3 2001/05/28 19:55:16 1.14 *************** *** 245,249 **** if ($website) { ! $prefix = (strpos($website,"://")) ? '' : 'http://'; ?> <tr> --- 245,249 ---- if ($website) { ! $prefix = (strpos($website, '://')) ? '' : 'http://'; ?> <tr> |
From: Lo?c C. <lo...@us...> - 2001-05-28 19:54:52
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv24621/chat/lib/index_libs Modified Files: main_index.lib.php3 Log Message: Fixed the security issue Sergei found Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** main_index.lib.php3 2001/05/23 21:40:30 1.32 --- main_index.lib.php3 2001/05/28 19:54:48 1.33 *************** *** 141,145 **** // Unset some variables that may be the cause of security holes ! if ($dbSessionIsNew) { if (isset($exitMessage)) --- 141,146 ---- // Unset some variables that may be the cause of security holes ! if ($dbSessionIsNew ! || !(dbSessionIsRegistered('nick') && dbSessionIsRegistered('roomType') && dbSessionIsRegistered('currentRoom') && dbSessionIsRegistered('jsVersion'))) { if (isset($exitMessage)) *************** *** 149,152 **** --- 150,175 ---- if (isset($reloading)) unset($reloading); + } + else if (isset($newTargetRoom) + && $dbSessionVars['jsVersion'] != 'noJs') + { + if (isset($exitMessage)) + unset($exitMessage); + unset($newTargetRoom); + if (isset($reloading)) + unset($reloading); + if (isset($submitType)) + unset($submitType); + } + else if (isset($reloading) + && $dbSessionVars['jsVersion'] != 'high') + { + if (isset($exitMessage)) + unset($exitMessage); + if (isset($newTargetRoom)) + unset($newTargetRoom); + unset($reloading); + if (isset($submitType)) + unset($submitType); } |
From: Lo?c C. <lo...@us...> - 2001-05-27 15:21:35
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database In directory usw-pr-cvs1:/tmp/cvs-serv2053/chat/install/database Modified Files: pgsql.sql mysql.sql Log Message: Increased security: session id must be associated with the same ip to be true. Index: pgsql.sql =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/pgsql.sql,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** pgsql.sql 2001/05/24 15:15:59 1.4 --- pgsql.sql 2001/05/27 15:21:32 1.5 *************** *** 70,73 **** --- 70,74 ---- CREATE TABLE pmc_sessions ( session_id varchar(32) PRIMARY KEY , + ip varchar(15) NOT NULL DEFAULT '' , last int4 NOT NULL DEFAULT '0' , data text Index: mysql.sql =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/mysql.sql,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** mysql.sql 2001/05/24 15:15:59 1.6 --- mysql.sql 2001/05/27 15:21:32 1.7 *************** *** 69,72 **** --- 69,73 ---- CREATE TABLE pmc_sessions ( session_id varchar(32) NOT NULL DEFAULT '' , + ip varchar(15) NOT NULL DEFAULT '' , last int(11) unsigned NOT NULL DEFAULT '0' , data text , |
From: Lo?c C. <lo...@us...> - 2001-05-27 15:21:34
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv2053/chat/lib Modified Files: db_sessions.lib.php3 Log Message: Increased security: session id must be associated with the same ip to be true. Index: db_sessions.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/db_sessions.lib.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** db_sessions.lib.php3 2001/05/16 20:56:24 1.12 --- db_sessions.lib.php3 2001/05/27 15:21:32 1.13 *************** *** 21,27 **** // | ( | // | session_id varchar(32) NOT NULL, | // | last int(11) unsigned NOT NULL DEFAULT '0', | // | data text, | ! // | PRIMARY KEY (id), | // | KEY last (last) | // | ); | --- 21,28 ---- // | ( | // | session_id varchar(32) NOT NULL, | + // | ip varchar(15) NOT NULL, | // | last int(11) unsigned NOT NULL DEFAULT '0', | // | data text, | ! // | PRIMARY KEY (session_id), | // | KEY last (last) | // | ); | *************** *** 356,359 **** --- 357,395 ---- /** + * Get the ip of the user + * + * This informations is used to ensure the id is not a hacked one + * + * @return string the ip of the user + * + * @access public + * @see dbSessionStart() + */ + function dbSessionGetIp() + { + if (!isset($GLOBALS['REMOTE_ADDR'])) + { + if (isset($GLOBALS['HTTP_ENV_VARS']) + && isset($GLOBALS['HTTP_ENV_VARS']['REMOTE_ADDR'])) + { + return $GLOBALS['HTTP_ENV_VARS']['REMOTE_ADDR']; + } + else if (@getenv('REMOTE_ADDR')) + { + return getenv('REMOTE_ADDR'); + } + else + { + return ''; + } + } + else + { + return $GLOBALS['REMOTE_ADDR']; + } + } // end of the 'dbSessionGetIp()' function + + + /** * Initialize session data * *************** *** 368,372 **** * * @access public ! * @see dbSessionInit() */ function dbSessionStart() --- 404,408 ---- * * @access public ! * @see dbSessionInit(), dbSessionGetIp */ function dbSessionStart() *************** *** 400,404 **** { // The ID exists in the database -> get session data ! $dbSessionDbLink->query("SELECT data FROM $dbSessionDbTable WHERE session_id = '$dbSessionId' LIMIT 1"); if (list($serialized) = $dbSessionDbLink->nextRecord()) { --- 436,440 ---- { // The ID exists in the database -> get session data ! $dbSessionDbLink->query("SELECT data FROM $dbSessionDbTable WHERE session_id = '$dbSessionId' AND ip = '" . dbSessionGetIp() . "' LIMIT 1"); if (list($serialized) = $dbSessionDbLink->nextRecord()) { *************** *** 708,712 **** else { ! $dbSessionDbLink->query("INSERT INTO $dbSessionDbTable (session_id, last, data) VALUES ('$dbSessionId', " . time() . ", '$serialized')"); } --- 744,748 ---- else { ! $dbSessionDbLink->query("INSERT INTO $dbSessionDbTable (session_id, ip, last, data) VALUES ('$dbSessionId', '" . dbSessionGetIp() . "', " . time() . ", '$serialized')"); } |
From: Lo?c C. <lo...@us...> - 2001-05-26 14:01:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv23774/chat Modified Files: whois_popup.php3 Log Message: Moderator status wasn't detected for the first room among the moderated rooms list Index: whois_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/whois_popup.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** whois_popup.php3 2001/04/19 21:05:04 1.12 --- whois_popup.php3 2001/05/26 14:01:22 1.13 *************** *** 134,139 **** break; ! case 'moderator': ! if (pmcIsInto($dbSessionVars['currentRoom'], $rooms) > 0) { $perms = '<i>' . L_WHOIS_MODER . '</i>'; --- 134,139 ---- break; ! case 'moderator': ! if (pmcIsInto($dbSessionVars['currentRoom'], $rooms) >= 0) { $perms = '<i>' . L_WHOIS_MODER . '</i>'; *************** *** 142,146 **** --- 142,148 ---- } else + { $perms = L_WHOIS_USER; + } break; |
From: Lo?c C. <lo...@us...> - 2001-05-26 11:56:01
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/admin In directory usw-pr-cvs1:/tmp/cvs-serv24872/chat/admin Modified Files: admin3.php3 Log Message: Moderator status were removed even for default rooms Index: admin3.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/admin/admin3.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** admin3.php3 2001/05/05 17:42:55 1.2 --- admin3.php3 2001/05/26 11:55:58 1.3 *************** *** 72,76 **** // in 'chat/config/config.lib.php3') if (pmcIsInto($room, $defaultChatRooms) == -1 ! || pmcIsInto($room, $defaultPrivateRooms) == -1) { $dbLink->query("SELECT username, rooms FROM " . C_REG_TBL . " WHERE perms = 'moderator'"); --- 72,76 ---- // in 'chat/config/config.lib.php3') if (pmcIsInto($room, $defaultChatRooms) == -1 ! && pmcIsInto($room, $defaultPrivateRooms) == -1) { $dbLink->query("SELECT username, rooms FROM " . C_REG_TBL . " WHERE perms = 'moderator'"); |
From: Lo?c C. <lo...@us...> - 2001-05-26 11:55:10
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german In directory usw-pr-cvs1:/tmp/cvs-serv24598/chat/localization/german Modified Files: chat.loc Log Message: Updated translation by Torsten Index: chat.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german/chat.loc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** chat.loc 2001/05/21 19:30:04 1.9 --- chat.loc 2001/05/26 11:55:07 1.10 *************** *** 218,223 **** define('L_SMIL_TIT', 'Smilies'); define('L_SMIL_MAX', 'Die <b>maximale Anzahl</b> von grafischen Smilies pro Nachricht ist <b>%s</b>.'); ! define('L_SMIL_CLICK', 'Du kannst auf ein Smilie klicken um den entsprechenden Textcode in Deine NAchricht einzufügen.'); ! define('L_SMIL_MINE', 'Wenn du registriert bist und der Administrator ein eigens Smilie für Dich definiert hat, kannst du dieses mit dem Code \' :mine: \' einfügen.'); // messages frame --- 218,223 ---- define('L_SMIL_TIT', 'Smilies'); define('L_SMIL_MAX', 'Die <b>maximale Anzahl</b> von grafischen Smilies pro Nachricht ist <b>%s</b>.'); ! define('L_SMIL_CLICK', 'Du kannst auf ein Smilie klicken um den entsprechenden Textcode in Deine Nachricht einzufügen.'); ! define('L_SMIL_MINE', 'Wenn du registriert bist und der Administrator ein eigenes Smilie für Dich definiert hat, kannst du dieses mit dem Code \' :mine: \' einfügen.'); // messages frame |
From: Lo?c C. <lo...@us...> - 2001-05-26 11:54:30
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv24346/chat/lib/commands Modified Files: kick.cmd.php3 invite.cmd.php3 banish.cmd.php3 Log Message: Commands success messages are no long stored in $error var but in $success one Index: kick.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/kick.cmd.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** kick.cmd.php3 2001/04/19 21:05:04 1.3 --- kick.cmd.php3 2001/05/26 11:54:25 1.4 *************** *** 86,90 **** $targetCurrentRoom = pmcHandleMagicQuotes($targetCurrentRoom, '', 1, 'del'); if ($targetCurrentRoom != $dbSessionVars['currentRoom']) ! $error = sprintf(L_KICKED, $cmd[1]); $isCommand = true; --- 86,92 ---- $targetCurrentRoom = pmcHandleMagicQuotes($targetCurrentRoom, '', 1, 'del'); if ($targetCurrentRoom != $dbSessionVars['currentRoom']) ! { ! $success = sprintf(L_KICKED, $cmd[1]); ! } $isCommand = true; Index: invite.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/invite.cmd.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** invite.cmd.php3 2001/05/25 22:52:27 1.9 --- invite.cmd.php3 2001/05/26 11:54:25 1.10 *************** *** 41,45 **** else { - $currentTime = time(); $nickForNotifications = pmcSlashSingleQuotes(pmcSpecialChars($slashedNick, $latin1), 2); $roomForNotifications = pmcSlashSingleQuotes(pmcSpecialChars($slashedCurrentRoomName, 0), 2); --- 41,44 ---- *************** *** 61,65 **** . '\'SYS inviteTo\', ' . $latin1 . ', ' ! . $currentTime . ', ' . '\'%ADDRESSEE%\', ' . '\'#666699\', ' --- 60,64 ---- . '\'SYS inviteTo\', ' . $latin1 . ', ' ! . '%TIME%, ' . '\'%ADDRESSEE%\', ' . '\'#666699\', ' *************** *** 69,72 **** --- 68,72 ---- // Get all addressee and insert a message for each one of them + $currentTime = time(); $invitedUsers = explode(',', $cmd[2]); $invitedUsersCnt = count($invitedUsers); *************** *** 77,82 **** if ($invitedUsers[$i] == '') continue; $slashedInvited = pmcSlashSingleQuotes($invitedUsers[$i]); ! $currentQuery = str_replace('%ADDRESSEE%', $slashedInvited, $invitedQuery); $dbLink->query($currentQuery); } --- 77,83 ---- if ($invitedUsers[$i] == '') continue; + $currentQuery = str_replace('%TIME%', $currentTime + $i, $invitedQuery); $slashedInvited = pmcSlashSingleQuotes($invitedUsers[$i]); ! $currentQuery = str_replace('%ADDRESSEE%', $slashedInvited, $currentQuery); $dbLink->query($currentQuery); } *************** *** 84,91 **** // Define the success message for the sender ! $error = sprintf(L_INVITE_DONE, str_replace(',', ', ', $cmd[2])); ! $isCommand = true; ! $doRefreshMessages = true; } --- 85,92 ---- // Define the success message for the sender ! $success = sprintf(L_INVITE_DONE, str_replace(',', ', ', $cmd[2])); ! $isCommand = true; ! $doRefreshMessages = true; } Index: banish.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/banish.cmd.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** banish.cmd.php3 2001/04/21 19:35:33 1.8 --- banish.cmd.php3 2001/05/26 11:54:25 1.9 *************** *** 138,145 **** // from an other room than the current one if ($targetCurrentRoom != $dbSessionVars['currentRoom']) ! $error = sprintf(L_BANISHED, $cmd[2]); ! $isCommand = true; ! $doRefreshMessages = true; } // end of 'banishment allowed' } // end of 'target user is chatting' --- 138,147 ---- // from an other room than the current one if ($targetCurrentRoom != $dbSessionVars['currentRoom']) ! { ! $success = sprintf(L_BANISHED, $cmd[2]); ! } ! $isCommand = true; ! $doRefreshMessages = true; } // end of 'banishment allowed' } // end of 'target user is chatting' |
From: Lo?c C. <lo...@us...> - 2001-05-26 11:54:29
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv24346/chat Modified Files: input.php3 handle_input.php3 Log Message: Commands success messages are no long stored in $error var but in $success one Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** input.php3 2001/05/20 18:56:28 1.35 --- input.php3 2001/05/26 11:54:25 1.36 *************** *** 227,231 **** $msgValue = str_replace('"', '"', $prevMessage); } ! else if (isset($error) && !$isCommand) { $msgValue = str_replace('"', '"', $message); --- 227,231 ---- $msgValue = str_replace('"', '"', $prevMessage); } ! else if (isset($error)) { $msgValue = str_replace('"', '"', $message); *************** *** 235,238 **** --- 235,239 ---- $msgValue = ''; } + // Define the message box size // = (frame width - margins - send button size) / column width *************** *** 276,280 **** { // Error message defined by a command ! if (isset($error) && !$isCommand) { $lowMessage = '<span class="error">' --- 277,281 ---- { // Error message defined by a command ! if (isset($error)) { $lowMessage = '<span class="error">' *************** *** 283,290 **** } // Success message defined by a command ! else if (isset($error)) { $lowMessage = '<span class="success">' ! . str_replace('\\n', '<br />', str_replace('"', '"', $error)) . '</span>'; } --- 284,291 ---- } // Success message defined by a command ! else if (isset($success)) { $lowMessage = '<span class="success">' ! . str_replace('\\n', '<br />', str_replace('"', '"', $success)) . '</span>'; } *************** *** 475,485 **** /** ! * Display a JavaScript alert box with the error message if necessary * * Uses the the 'pmcSlashSingleQuotes()' function from the * 'chat/lib/common.lib.php3' library */ ! if (isset($error)) { ?> <script type="text/javascript" language="javascript"> --- 476,488 ---- /** ! * Display a JavaScript alert box with the error or success message if ! * necessary * * Uses the the 'pmcSlashSingleQuotes()' function from the * 'chat/lib/common.lib.php3' library */ ! if (isset($error) || isset($success)) { + $alertMsg = (isset($error)) ? $error : $success; ?> <script type="text/javascript" language="javascript"> *************** *** 487,491 **** // Display a JavaScript alert box with the error message if necessary window.parent.pmcSetMsgBoxFocus(); ! alert('<?php echo(pmcSlashSingleQuotes($error)); ?>'); // --> </script> --- 490,494 ---- // Display a JavaScript alert box with the error message if necessary window.parent.pmcSetMsgBoxFocus(); ! alert('<?php echo(pmcSlashSingleQuotes($alertMsg)); ?>'); // --> </script> Index: handle_input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/handle_input.php3,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** handle_input.php3 2001/05/23 21:40:30 1.27 --- handle_input.php3 2001/05/26 11:54:25 1.28 *************** *** 192,198 **** // - last submission if it was an erroneous command; // - else nothing. ! $msgValue = ($displayMessage) ? addslashes($prevMessage) : ''; ! if (isset($error) && !($isCommand)) ! $msgValue = addslashes($message); --- 192,207 ---- // - last submission if it was an erroneous command; // - else nothing. ! if ($displayMessage) ! { ! $msgValue = addslashes($prevMessage); ! } ! else if (isset($error)) ! { ! $msgValue = addslashes($message); ! } ! else ! { ! $msgValue = ''; ! } *************** *** 254,269 **** /** ! * Display a JavaScript alert box with the error message if necessary * * The 'pmcSlashSingleQuotes()' function is defined in the * 'chat/lib/common.lib.php3' script */ ! if (isset($error)) { echo("\n"); ?> // Display a JavaScript alert box with the error message if necessary pmcSetMsgBoxFocus(); ! alert('<?php echo(pmcSlashSingleQuotes($error)); ?>'); <?php } --- 263,280 ---- /** ! * Display a JavaScript alert box with the error message or success message if ! * necessary * * The 'pmcSlashSingleQuotes()' function is defined in the * 'chat/lib/common.lib.php3' script */ ! if (isset($error) || isset($success)) { + $alertMsg = (isset($error)) ? $error : $success; echo("\n"); ?> // Display a JavaScript alert box with the error message if necessary pmcSetMsgBoxFocus(); ! alert('<?php echo(pmcSlashSingleQuotes($alertMsg)); ?>'); <?php } |
From: Lo?c C. <lo...@us...> - 2001-05-26 07:08:57
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/install In directory usw-pr-cvs1:/tmp/cvs-serv19106/chat/install Modified Files: setup1.php3 Log Message: Increase the max allowed length forf some parameters ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/install Index: setup1.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/setup1.php3,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** setup1.php3 2001/02/25 18:27:41 1.1.1.1 --- setup1.php3 2001/05/26 07:08:53 1.2 *************** *** 35,39 **** <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_4); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=text NAME="C_DB_HOST" SIZE=11 MAXLENGTH=16 VALUE="<?php echo($C_DB_HOST); ?>"> </TD> </TR> --- 35,39 ---- <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_4); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=text NAME="C_DB_HOST" SIZE=11 MAXLENGTH=30 VALUE="<?php echo($C_DB_HOST); ?>"> </TD> </TR> *************** *** 41,45 **** <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_5); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=text NAME="C_DB_NAME" SIZE=11 MAXLENGTH=16 VALUE="<?php echo($C_DB_NAME); ?>"> <?php echo(S_SETUP1_6); ?> </TD> --- 41,45 ---- <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_5); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=text NAME="C_DB_NAME" SIZE=11 MAXLENGTH=30 VALUE="<?php echo($C_DB_NAME); ?>"> <?php echo(S_SETUP1_6); ?> </TD> *************** *** 48,52 **** <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_7); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=text NAME="C_DB_USER" SIZE=11 MAXLENGTH=16 VALUE="<?php echo($C_DB_USER); ?>"> </TD> </TR> --- 48,52 ---- <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_7); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=text NAME="C_DB_USER" SIZE=11 MAXLENGTH=30 VALUE="<?php echo($C_DB_USER); ?>"> </TD> </TR> *************** *** 54,58 **** <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_8); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=password NAME="C_DB_PASS" SIZE=11 MAXLENGTH=16> </TD> </TR> --- 54,58 ---- <TD ALIGN=RIGHT VALIGN=TOP NOWRAP><?php echo(S_SETUP1_8); ?></TD> <TD VALIGN=TOP> ! <INPUT TYPE=password NAME="C_DB_PASS" SIZE=11 MAXLENGTH=30> </TD> </TR> |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:52:30
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv2687/chat/lib/commands Modified Files: invite.cmd.php3 Log Message: Oups, forgot to remove a commented unecessary line Index: invite.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/invite.cmd.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** invite.cmd.php3 2001/05/25 22:49:22 1.8 --- invite.cmd.php3 2001/05/25 22:52:27 1.9 *************** *** 84,88 **** // Define the success message for the sender - // $error = sprintf(L_INVITE_DONE, str_replace(',', ', ', pmcSpecialChars($cmd[2], 0))); $error = sprintf(L_INVITE_DONE, str_replace(',', ', ', $cmd[2])); --- 84,87 ---- |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:49:26
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv1653/chat/lib/commands Modified Files: join.cmd.php3 invite.cmd.php3 Log Message: Invited success message is locally displayed rather than stored in the db Index: join.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/join.cmd.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** join.cmd.php3 2001/05/24 20:22:35 1.6 --- join.cmd.php3 2001/05/25 22:49:22 1.7 *************** *** 234,242 **** // Delete invitations sent to the current user for the room he is going to // enter in ! $dbLink->query("SELECT m_time FROM " . C_MSG_TBL . " WHERE username = 'SYS inviteTo' AND address = '$slashedNick' AND room = '$slashedTargetRoomName'"); ! while (list($sentTime) = $dbLink->nextRecord()) ! { ! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time = $sentTime AND (username = 'SYS inviteFrom' OR (username = 'SYS inviteTo' AND address = '$slashedNick'))"); ! } // Update session data and enforce a complete refresh of the --- 234,238 ---- // Delete invitations sent to the current user for the room he is going to // enter in ! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE username = 'SYS inviteTo' AND address = '$slashedNick' AND room = '$slashedTargetRoomName'"); // Update session data and enforce a complete refresh of the Index: invite.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/invite.cmd.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** invite.cmd.php3 2001/04/21 19:37:39 1.7 --- invite.cmd.php3 2001/05/25 22:49:22 1.8 *************** *** 45,49 **** $roomForNotifications = pmcSlashSingleQuotes(pmcSpecialChars($slashedCurrentRoomName, 0), 2); $roomForJs = pmcSlashSingleQuotes($roomForNotifications, 4); - $invitedsForNotifications = pmcSlashSingleQuotes(pmcSpecialChars($cmd[2], 0), 3); // Prepares the messages --- 45,48 ---- *************** *** 69,87 **** . ')'; - $theMessage = 'sprintf(L_INVITE_DONE, \\\'' . $invitedsForNotifications . '\\\')'; - - $inviterQuery = 'INSERT INTO ' . C_MSG_TBL . ' ' - . 'VALUES (' - . $currentRoomType . ', ' - . '\'' . $slashedCurrentRoomName . '\', ' - . '\'SYS inviteFrom\', ' - . $latin1 . ', ' - . $currentTime . ', ' - . '\'' . $slashedNick . '\', ' - . '\'#666699\', ' - . '\'' . $theMessage . '\', ' - . '\'' . $theMessage . '\'' - . ')'; - // Get all addressee and insert a message for each one of them $invitedUsers = explode(',', $cmd[2]); --- 68,71 ---- *************** *** 99,104 **** unset($invitedUsers); ! // Insert a message for the sender ! $dbLink->query($inviterQuery); $isCommand = true; --- 83,89 ---- unset($invitedUsers); ! // Define the success message for the sender ! // $error = sprintf(L_INVITE_DONE, str_replace(',', ', ', pmcSpecialChars($cmd[2], 0))); ! $error = sprintf(L_INVITE_DONE, str_replace(',', ', ', $cmd[2])); $isCommand = true; |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:49:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv1653/chat/lib/index_libs Modified Files: do_enter_db_work.lib.php3 Log Message: Invited success message is locally displayed rather than stored in the db Index: do_enter_db_work.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_db_work.lib.php3,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** do_enter_db_work.lib.php3 2001/05/22 20:40:34 1.17 --- do_enter_db_work.lib.php3 2001/05/25 22:49:22 1.18 *************** *** 88,95 **** * Udpates the IP address and the last log. time of the user in the * registered users table if necessary */ if ($isRegUser) { ! $dbLink->query("UPDATE " . C_REG_TBL . " SET reg_time = $currentTime, ip = '$ip' WHERE username = '$slashedNick'"); } --- 88,99 ---- * Udpates the IP address and the last log. time of the user in the * registered users table if necessary + * + * Updating password allows to upgrade to the new phpMyChat system + * (password are no long crypted) */ if ($isRegUser) { ! $slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $password)); ! $dbLink->query("UPDATE " . C_REG_TBL . " SET password = '$slashedPswd', reg_time = $currentTime, ip = '$ip' WHERE username = '$slashedNick'"); } *************** *** 241,249 **** * Deletes invite messages sent to the user for the room he will enter in */ ! $dbLink->query("SELECT m_time FROM " . C_MSG_TBL . " WHERE username = 'SYS inviteTo' AND address = '$slashedNick' AND room = '$slashedTargetRoomName'"); ! while (list($sentTime) = $dbLink->nextRecord()) ! { ! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time = $sentTime AND (username = 'SYS inviteFrom' OR (username = 'SYS inviteTo' AND address = '$slashedNick'))"); ! } ?> --- 245,249 ---- * Deletes invite messages sent to the user for the room he will enter in */ ! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE username = 'SYS inviteTo' AND address = '$slashedNick' AND room = '$slashedTargetRoomName'"); ?> |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:31:06
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/docs In directory usw-pr-cvs1:/tmp/cvs-serv27935/docs Modified Files: changes.txt Log Message: See inside Index: changes.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/docs/changes.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** changes.txt 2001/05/16 08:14:16 1.3 --- changes.txt 2001/05/25 22:31:04 1.4 *************** *** 8,12 **** ! v 0.15.0 - 07/05/2001 """"""""""""""""""""" --- 8,12 ---- ! v 0.15.0 - 26/05/2001 """"""""""""""""""""" *************** *** 30,33 **** --- 30,40 ---- thanks to a piece of code from Tomas Haluza <th...@ki...>. BUG FIXED : many JavaScript bugs have been fixed in this release. + + + v 0.14.4-RC1 - 26/05/2001 + """"""""""""""""""""" + + BUG FIXED : users may be displayed twice at the user frame under PostgreSQL. + ENHANCEMENT : some translations have been completed. |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:30:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/docs In directory usw-pr-cvs1:/tmp/cvs-serv27790/docs Modified Files: credits.txt Log Message: Add Daniele to the list of Italian translators Index: credits.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/docs/credits.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** credits.txt 2001/05/21 19:30:04 1.3 --- credits.txt 2001/05/25 22:30:43 1.4 *************** *** 59,65 **** Greek : Nikos Kyriakidis <nik...@ho...> Icelandic : Andri Óskarsson <an...@bo...> ! Italian : Andrea D'Alessandro <an...@ab...>, Massimo Fubini <ma...@to...> ! Giuliano Yurij Beccaria <yu...@e-...>, Marco Borrini <mar...@tr...>, ! Bartolotta Gioachino <dev...@ro...> & Silvia M. Carrassi <si...@la...> Japanese : Yosuke Hamamoto <yo...@ke...> Korean : Hongki Lee <ge...@ma...> & TaeHwan Bae <bt...@ha...> --- 59,67 ---- Greek : Nikos Kyriakidis <nik...@ho...> Icelandic : Andri Óskarsson <an...@bo...> ! Italian : Andrea D'Alessandro <an...@ab...>, Daniele <da...@ti...>, ! Massimo Fubini <ma...@to...>, Giuliano Yurij Beccaria <yu...@e-...>, ! Marco Borrini <mar...@tr...>, ! Bartolotta Gioachino <dev...@ro...> ! & Silvia M. Carrassi <si...@la...> Japanese : Yosuke Hamamoto <yo...@ke...> Korean : Hongki Lee <ge...@ma...> & TaeHwan Bae <bt...@ha...> |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:29:44
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian In directory usw-pr-cvs1:/tmp/cvs-serv27456/chat/localization/italian Modified Files: tutorial.loc Log Message: Updated translation by Daniele Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian/tutorial.loc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** tutorial.loc 2001/05/07 21:09:51 1.8 --- tutorial.loc 2001/05/25 22:29:42 1.9 *************** *** 15,18 **** --- 15,19 ---- // | Authors: Marco Borrini <mar...@tr...> | // | Silvia M. Carrassi <si...@la...> | + // | Daniele <da...@ti...> | // | Bartolotta Gioachino <dev...@ro...> | // +--------------------------------------------------------------------------+ *************** *** 158,162 **** <a href="#changeroom" class="topLink">Cambiare da una area di chat ad un'altra</a><br /> <a href="#private" class="topLink">Messaggi privati</a><br /> ! <a href="#actions" class="topLink">Actions</a><br /> <a href="#ignore" class="topLink">Ignorare altri utenti</a><br /> <a href="#whois" class="topLink">Ottenere informazioni pubbliche sugli altri utenti</a><br /> --- 159,163 ---- <a href="#changeroom" class="topLink">Cambiare da una area di chat ad un'altra</a><br /> <a href="#private" class="topLink">Messaggi privati</a><br /> ! <a href="#actions" class="topLink">Azioni</a><br /> <a href="#ignore" class="topLink">Ignorare altri utenti</a><br /> <a href="#whois" class="topLink">Ottenere informazioni pubbliche sugli altri utenti</a><br /> *************** *** 286,290 **** </p> <p> ! A sign representing your connection state is dipslayed at the top-right corner of the screen. It may take three forms : </p> <ul> --- 287,291 ---- </p> <p> ! Un segnale che rappresenta lo stato della vostra connessione è situato all'angolo destro in alto dello schermo. Può essere di tre forme: </p> <ul> *************** *** 340,349 **** <ul> <li>Nicolas e' l'amministratore o uno dei moderatori dell'area phpMyChat;<br /><br /></li> ! <!-- To update ! <li>lolo e Jezek2 sono utenti registrati con nessun privilegio extra per la stanza phpMyChat;</li> ! <li>Mary e' un semplice utente non registrato.</li> ! --> ! <li>alien (whose gender is unknown), Jezek2 and Caridad are registered users with no extra "power" for the phpMyChat room;<br /><br /></li> ! <li>lolo is a simple unregistered user.</li> </ul> </td> --- 341,346 ---- <ul> <li>Nicolas e' l'amministratore o uno dei moderatori dell'area phpMyChat;<br /><br /></li> ! <li>alien (il cui genere è sconosciuto), Jezek2 e Caridad sono utenti registrati senza alcun privilegio extra per la stanza phpMyChat;<br /><br /></li> ! <li>lolo è semplicemente un utente non registrato.</li> </ul> </td> *************** *** 651,661 **** <p> ! <font size="+1"><a name="actions"><b>Actions:</b></a></font> </p> <p> ! To describe what you're doing you can use the <b>command "/me action"</b> without quotes. </p> <p> ! <i>For example:</i> If Jack sends the message "/me is smoking a cigarette" the message frame will shown "<b>* Jack</b>" is smoking a cigarette". </p> <p align="right"><a href="#top">Torna all'inizio</a></p> --- 648,658 ---- <p> ! <font size="+1"><a name="actions"><b>Azioni:</b></a></font> </p> <p> ! Per descrivere cosa stai facendo potete usare il <b>comando "/me action"</b> senza virgolette. </p> <p> ! <i>Per esempio:</i> Se Jack manda il messaggio "/me sta fumando una sigaretta" il messaggio che comparirà sarà "<b>* Jack</b> sta fumando una sigaretta". </p> <p align="right"><a href="#top">Torna all'inizio</a></p> |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:29:16
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv27292/chat Modified Files: users_low.php3 users.php3 Log Message: Fixed a bug with PostgreSQL Index: users_low.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_low.php3,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** users_low.php3 2001/05/22 21:15:34 1.18 --- users_low.php3 2001/05/25 22:29:14 1.19 *************** *** 182,186 **** $usersQuery = 'SELECT usr.room, usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_MSG_TBL . ' msg, ' . C_REG_TBL . ' reg ' ! . 'WHERE ' . $roomsToCheck . ' ' . 'UNION ' . 'SELECT usr.room, usr.username, usr.latin1, usr.status, NULL AS gender ' --- 182,186 ---- $usersQuery = 'SELECT usr.room, usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_MSG_TBL . ' msg, ' . C_REG_TBL . ' reg ' ! . 'WHERE ' . $roomsToCheck . ' AND usr.username = reg.username ' . 'UNION ' . 'SELECT usr.room, usr.username, usr.latin1, usr.status, NULL AS gender ' Index: users.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users.php3,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** users.php3 2001/05/22 21:15:34 1.24 --- users.php3 2001/05/25 22:29:14 1.25 *************** *** 181,185 **** $usersQuery = 'SELECT usr.room, usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_MSG_TBL . ' msg, ' . C_REG_TBL . ' reg ' ! . 'WHERE ' . $roomsToCheck . ' ' . 'UNION ' . 'SELECT usr.room, usr.username, usr.latin1, usr.status, NULL AS gender ' --- 181,185 ---- $usersQuery = 'SELECT usr.room, usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_MSG_TBL . ' msg, ' . C_REG_TBL . ' reg ' ! . 'WHERE ' . $roomsToCheck . ' AND usr.username = reg.username ' . 'UNION ' . 'SELECT usr.room, usr.username, usr.latin1, usr.status, NULL AS gender ' |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:24:08
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs In directory usw-pr-cvs1:/tmp/cvs-serv25509/docs Modified Files: changes.txt Log Message: Prepare 0.14.4 ***** Bogus filespec: - ***** Bogus filespec: 0.14/docs Index: changes.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/changes.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** changes.txt 2001/05/15 22:21:09 1.11 --- changes.txt 2001/05/25 22:24:06 1.12 *************** *** 8,11 **** --- 8,18 ---- + v 0.14.4 - 26/05/2001 + """"""""""""""""""""" + + BUG FIXED : users may be displayed twice at the user frame under PostgreSQL. + ENHANCEMENT : some translations have been completed. + + v 0.14.3 - 16/05/2001 """"""""""""""""""""" |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:23:36
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs In directory usw-pr-cvs1:/tmp/cvs-serv25373/docs Modified Files: credits.txt Log Message: Updated italian translation by Daniele ***** Bogus filespec: - ***** Bogus filespec: 0.14/docs Index: credits.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/credits.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** credits.txt 2001/05/06 17:05:19 1.7 --- credits.txt 2001/05/25 22:23:33 1.8 *************** *** 58,64 **** Greek : Nikos Kyriakidis <nik...@ho...> Icelandic : Andri Óskarsson <an...@bo...> ! Italian : Andrea D'Alessandro <an...@ab...>, Massimo Fubini <ma...@to...> ! Giuliano Yurij Beccaria <yu...@e-...>, Marco Borrini <mar...@tr...>, ! Bartolotta Gioachino <dev...@ro...> & Silvia M. Carrassi <si...@la...> Japanese : Yosuke Hamamoto <yo...@ke...> Korean : Hongki Lee <ge...@ma...> & TaeHwan Bae <bt...@ha...> --- 58,66 ---- Greek : Nikos Kyriakidis <nik...@ho...> Icelandic : Andri Óskarsson <an...@bo...> ! Italian : Andrea D'Alessandro <an...@ab...>, Daniele <da...@ti...>, ! Massimo Fubini <ma...@to...>, Giuliano Yurij Beccaria <yu...@e-...>, ! Marco Borrini <mar...@tr...>, ! Bartolotta Gioachino <dev...@ro...> ! & Silvia M. Carrassi <si...@la...> Japanese : Yosuke Hamamoto <yo...@ke...> Korean : Hongki Lee <ge...@ma...> & TaeHwan Bae <bt...@ha...> |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:23:14
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/italian In directory usw-pr-cvs1:/tmp/cvs-serv25277/chat/localization/italian Modified Files: localized.tutorial.php3 Log Message: Updated translation by Daniele ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/italian Index: localized.tutorial.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/italian/localized.tutorial.php3,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** localized.tutorial.php3 2001/04/11 21:12:11 1.4 --- localized.tutorial.php3 2001/05/25 22:23:12 1.5 *************** *** 2,6 **** // File : italian.tutorial.php3 // Translation by Marco Borrini <mar...@tr...> ! // & Bartolotta Gioachino <dev...@ro...> & Silvia M. Carrassi <si...@la...> // Get the names and values for vars sent by the script that called this one --- 2,8 ---- // File : italian.tutorial.php3 // Translation by Marco Borrini <mar...@tr...> ! // & Bartolotta Gioachino <dev...@ro...> ! // & Silvia M. Carrassi <si...@la...> ! // & Daniele <da...@ti...> // Get the names and values for vars sent by the script that called this one *************** *** 105,109 ****     <A HREF="#changeroom" CLASS="topLink">Cambiare da una area di chat ad un'altra</A><BR>     <A HREF="#private" CLASS="topLink">Messaggi privati</A><BR> !     <A HREF="#actions" CLASS="topLink">Actions</A><BR>     <A HREF="#ignore" CLASS="topLink">Ignorare altri utenti</A><BR>     <A HREF="#whois" CLASS="topLink">Ottenere informazioni pubbliche sugli altri utenti</A><BR> --- 107,111 ----     <A HREF="#changeroom" CLASS="topLink">Cambiare da una area di chat ad un'altra</A><BR>     <A HREF="#private" CLASS="topLink">Messaggi privati</A><BR> !     <A HREF="#actions" CLASS="topLink">Azioni</A><BR>     <A HREF="#ignore" CLASS="topLink">Ignorare altri utenti</A><BR>     <A HREF="#whois" CLASS="topLink">Ottenere informazioni pubbliche sugli altri utenti</A><BR> *************** *** 179,188 **** <P> <UL> ! <!-- To update ! <LI>Primo, create un username e una password per voi stessi digitandola negli appositi campi. Lo username che scgliete sarà il nome che verrà automaticamente visualizzato nella stanza di chat. Non può contenere spazi, virgole o backslash (\). ! <?php if (C_NO_SWEAR == "1") echo(" Non può contenere \"parole vietate\"."); ?> ! --> ! <LI>First, create a username<?php if (!C_EMAIL_PASWD) echo(" and a password"); ?> for yourself by typing it into the appropriate boxes. The username you choose is the name that will be automatically displayed in the chat room. It cannot contain space, comma or backslash (\). ! <?php if (C_NO_SWEAR == "1") echo(" It can no more contains \"swear words\"."); ?> <LI>Secondo, inserite il vostro nome, cognome e il vostro indirizzo email. Per far in modo che ci si registri alla chat, tutte queste informazioni devono essere fornite. Potete non specificare il vostro sesso. <LI>Se avete una homepage, potete inserire l'URL in questo campo.. --- 181,186 ---- <P> <UL> ! <LI>Primo, create uno pseudonimo<?php if (!C_EMAIL_PASWD) echo(" e una password"); ?> per voi digitandolo nello spazio appropriato. Lo pseudonimo che sceglierete sarà il nome che comparirà automaticamente nella chat. Non può contenere spazi, virgole o backslash (\). ! <?php if (C_NO_SWEAR == "1") echo(" Non può contenere \"swear words\"."); ?> <LI>Secondo, inserite il vostro nome, cognome e il vostro indirizzo email. Per far in modo che ci si registri alla chat, tutte queste informazioni devono essere fornite. Potete non specificare il vostro sesso. <LI>Se avete una homepage, potete inserire l'URL in questo campo.. *************** *** 219,223 **** <FONT SIZE="+1"><A NAME="connection_state"><B>Understanding connection state:</B></A></FONT> <P> ! A sign representing your connection state is dipslayed at the top-right corner of the screen. It may take three forms : <P> <UL> --- 217,221 ---- <FONT SIZE="+1"><A NAME="connection_state"><B>Understanding connection state:</B></A></FONT> <P> ! Un segnale che rappresenta lo stato della vostra connessione è situato all'angolo destro in alto dello schermo. Può essere di tre forme: <P> <UL> *************** *** 251,258 **** <OL> Sono state definite due aggiunte per la lista degli utenti:<BR> ! <!-- To update ! <LI>una piccola icona (<IMG SRC="images/whoisOff.gif" WIDTH=5 HEIGHT=9 BORDER=0 ALT="icona whois">) e' visualizzata prima del nickname di un utente registrato e cliccando su esso si fara' partire la finestra popup <A HREF="#whois">whois</A> per questo utente, mentre gli utenti non registrati avranno solamente un segno '-' prima del loro nickname;<BR> ! --> ! <LI>a little icon that shows gender is displayed before the nick of a registered user (clicking on it will launch the <A HREF="#whois">whois popup</A> for this user), while unregistered users have nothing but blank spaces displayed before their nick;<BR> <LI>il nome utente di un amministratore o di un moderatore e' in corsivo. </OL> --- 249,253 ---- <OL> Sono state definite due aggiunte per la lista degli utenti:<BR> ! <LI>una piccola icona e' visualizzata prima del nickname di un utente registrato (e cliccando su esso si fara' partire la <A HREF="#whois">finestra popup</A> per questo utente), mentre gli utenti non registrati avranno solamente un segno '-' prima del loro nickname;<BR> <LI>il nome utente di un amministratore o di un moderatore e' in corsivo. </OL> *************** *** 266,275 **** <UL> <LI>Nicolas e' l'amministratore o uno dei moderatori dell'area phpMyChat;<BR><BR> ! <!-- To update ! <LI>lolo e Jezek2 sono utenti registrati con nessun privilegio extra per la stanza phpMyChat;<BR> ! <LI>Mary e' un semplice utente non registrato. ! --> ! <LI>alien (whose gender is unknown), Jezek2 and Caridad are registered users with no extra "power" for the phpMyChat room;<BR><BR> ! <LI>lolo is a simple unregistered user. </UL> </TD> --- 261,266 ---- <UL> <LI>Nicolas e' l'amministratore o uno dei moderatori dell'area phpMyChat;<BR><BR> ! <LI>alien (il cui genere è sconosciuto), Jezek2 e Caridad sono utenti registrati senza alcun privilegio extra per la stanza phpMyChat;<BR><BR> ! <LI>lolo è semplicemente un utente non registrato. </UL> </TD> *************** *** 299,303 **** <FONT SIZE="+1"><A NAME="users_popup"><B>Conoscere chi sta chattando senza essere collegati:</B></A></FONT> <P> ! POtete cliccare sul collegamento che mostra il numero di utenti collegati alla pagina iniziale o, se state chattando, sull'immagine <IMG SRC="images/popup.gif" WIDTH=13 HEIGHT=13 BORDER=0 ALT="Lista degli utenti"> nell'angolo alto a destra dello schermo per aprire una finestra indipendente che mostrerà la lista degli utenti collegati e le stanze in cui stanno in tempo quasi reale.<BR> Il titolo della finestra contiene i nomi utente se sono meno di tre, altrimenti il numero degli utenti e le stanze attive. <P> --- 290,294 ---- <FONT SIZE="+1"><A NAME="users_popup"><B>Conoscere chi sta chattando senza essere collegati:</B></A></FONT> <P> ! Potete cliccare sul collegamento che mostra il numero di utenti collegati alla pagina iniziale o, se state chattando, sull'immagine <IMG SRC="images/popup.gif" WIDTH=13 HEIGHT=13 BORDER=0 ALT="Lista degli utenti"> nell'angolo alto a destra dello schermo per aprire una finestra indipendente che mostrerà la lista degli utenti collegati e le stanze in cui stanno in tempo quasi reale.<BR> Il titolo della finestra contiene i nomi utente se sono meno di tre, altrimenti il numero degli utenti e le stanze attive. <P> *************** *** 518,526 **** <P> ! <FONT SIZE="+1"><A NAME="actions"><B>Actions:</B></A></FONT> <P> ! To describe what you're doing you can use the <B>command "/me action"</B> without quotes. <P> ! <I>For example:</I> If Jack sends the message "/me is smoking a cigarette" the message frame will shown "<B>* Jack</B>" is smoking a cigarette". <BR><P ALIGN="right"><A HREF="#top">Torna all'inizio</A></P> <P> --- 509,517 ---- <P> ! <FONT SIZE="+1"><A NAME="actions"><B>Azioni:</B></A></FONT> <P> ! Per descrivere cosa stai facendo potete usare il <B>comando "/me action"</B> senza virgolette. <P> ! <I>Per esempio:</I> Se Jack manda il messaggio "/me sta fumando una sigaretta" il messaggio che comparirà sarà "<B>* Jack</B>" sta fumando una sigaretta". <BR><P ALIGN="right"><A HREF="#top">Torna all'inizio</A></P> <P> |
From: Lo?c C. <lo...@us...> - 2001-05-25 22:22:43
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat In directory usw-pr-cvs1:/tmp/cvs-serv25131/chat Modified Files: usersL.php3 usersH.php3 Log Message: Fix a bug with PostgreSQL ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat Index: usersL.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/usersL.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** usersL.php3 2001/04/22 11:29:40 1.6 --- usersL.php3 2001/05/25 22:22:40 1.7 *************** *** 76,80 **** $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . $R . '\' ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' --- 76,80 ---- $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . $R . '\' AND usr.username = reg.username ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' *************** *** 147,151 **** $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' --- 147,151 ---- $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' AND usr.username = reg.username ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' Index: usersH.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/usersH.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** usersH.php3 2001/04/22 11:29:40 1.12 --- usersH.php3 2001/05/25 22:22:40 1.13 *************** *** 99,103 **** $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . $R . '\' ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' --- 99,103 ---- $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . $R . '\' AND usr.username = reg.username ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' *************** *** 170,174 **** $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' --- 170,174 ---- $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.room = \'' . addslashes($Other) . '\' AND usr.username = reg.username ' . 'UNION ' . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' |
From: Nicolas H. <nh...@us...> - 2001-05-25 14:48:40
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv12531 Modified Files: smilies.lib.php3 Log Message: add long awaited smiley ... ;) Index: smilies.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/smilies.lib.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** smilies.lib.php3 2001/05/16 20:55:37 1.12 --- smilies.lib.php3 2001/05/25 14:48:38 1.13 *************** *** 62,66 **** ':flower:' => array('flower.gif', 15, 15), ':my2cts:' => array('my2cents.gif', 15, 15), ! ':tux:' => array('tux.gif', 15, 15) ); --- 62,67 ---- ':flower:' => array('flower.gif', 15, 15), ':my2cts:' => array('my2cents.gif', 15, 15), ! ':tux:' => array('tux.gif', 15, 15), ! ':love:' => array('love.gif', 23, 16) ); |
From: Nicolas H. <nh...@us...> - 2001-05-25 14:48:24
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/images/smilies In directory usw-pr-cvs1:/tmp/cvs-serv12440 Added Files: love.gif Log Message: add long awaited smiley ... ;) --- NEW FILE --- GIF89a |
From: Lo?c C. <lo...@us...> - 2001-05-24 20:22:37
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv16864/chat/lib/commands Modified Files: join.cmd.php3 Log Message: Forgotten to clean invitations to the target room Index: join.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/join.cmd.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** join.cmd.php3 2001/05/22 20:40:34 1.5 --- join.cmd.php3 2001/05/24 20:22:35 1.6 *************** *** 232,235 **** --- 232,242 ---- $dbLink->query($queries[$i]); } + // Delete invitations sent to the current user for the room he is going to + // enter in + $dbLink->query("SELECT m_time FROM " . C_MSG_TBL . " WHERE username = 'SYS inviteTo' AND address = '$slashedNick' AND room = '$slashedTargetRoomName'"); + while (list($sentTime) = $dbLink->nextRecord()) + { + $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time = $sentTime AND (username = 'SYS inviteFrom' OR (username = 'SYS inviteTo' AND address = '$slashedNick'))"); + } // Update session data and enforce a complete refresh of the |