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-04-29 14:27:09
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv27665/chat/lib/index_libs Modified Files: connect_state.lib.js Log Message: Fixed a bug if the script tries to update the connection status while the user is leaving the chat Index: connect_state.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/connect_state.lib.js,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** connect_state.lib.js 2001/04/27 18:27:22 1.7 --- connect_state.lib.js 2001/04/29 14:27:06 1.8 *************** *** 54,62 **** function pmcConnecting(numTry) { - var exitFrm = window.frames['exit']; - if (jsIsConnecting) clearTimeout(jsIsConnecting); jsConnect = numTry; if (numTry == 1 || numTry == 2) --- 54,64 ---- function pmcConnecting(numTry) { if (jsIsConnecting) clearTimeout(jsIsConnecting); jsConnect = numTry; + + var exitFrm = window.frames['exit']; + if (typeof(exitFrm.document) == 'undefined') + return; if (numTry == 1 || numTry == 2) |
From: Lo?c C. <lo...@us...> - 2001-04-29 14:25:49
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv27400/chat/lib Modified Files: users_popup.lib.js Log Message: Fixed a ns bug and optimized a bit Index: users_popup.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/users_popup.lib.js,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** users_popup.lib.js 2001/04/19 21:05:04 1.5 --- users_popup.lib.js 2001/04/29 14:25:46 1.6 *************** *** 117,122 **** function pmcGetIndex(el) { ! var ind = null; ! for (var i = 0; i < document.layers.length; i++) { var whichEl = document.layers[i]; --- 117,123 ---- function pmcGetIndex(el) { ! var ind = null; ! var layersCnt = document.layers.length; ! for (var i = 0; i < layersCnt; i++) { var whichEl = document.layers[i]; *************** *** 140,145 **** if (jsFirstInd != null) { ! var nextY = document.layers[jsFirstInd].pageY + document.layers[jsFirstInd].document.height; ! for (var i = jsFirstInd + 1; i < document.layers.length; i++) { var whichEl = document.layers[i]; --- 141,147 ---- if (jsFirstInd != null) { ! var nextY = document.layers[jsFirstInd].pageY + document.layers[jsFirstInd].document.height; ! var layersCnt = document.layers.length; ! for (var i = jsFirstInd + 1; i < layersCnt; i++) { var whichEl = document.layers[i]; *************** *** 203,208 **** if (jsIsDOM) { ! divColl = document.getElementsByTagName('div'); ! for (var i = 0; i < divColl.length; i++) { var whichEl = divColl[i]; --- 205,211 ---- if (jsIsDOM) { ! divColl = document.getElementsByTagName('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { var whichEl = divColl[i]; *************** *** 232,237 **** else if (jsIsIE4) { ! divColl = document.all.tags('div'); ! for (var i = 0; i < divColl.length; i++) { var whichEl = divColl[i]; --- 235,241 ---- else if (jsIsIE4) { ! divColl = document.all.tags('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { var whichEl = divColl[i]; *************** *** 252,256 **** { parentElts[parentEl.id] = 1; ! parentEl.all.tags('IMG').item('imEx').src = jsImgOpened.src; } } --- 256,260 ---- { parentElts[parentEl.id] = 1; ! parentEl.all.tags('img').item('imEx').src = jsImgOpened.src; } } *************** *** 260,264 **** else if (jsIsNS4) { ! for (var i = 0; i < document.layers.length; i++) { var whichEl = document.layers[i]; --- 264,269 ---- else if (jsIsNS4) { ! var layersCnt = document.layers.length; ! for (var i = 0; i < layersCnt; i++) { var whichEl = document.layers[i]; *************** *** 380,385 **** if (jsIsDOM) { ! var divColl = document.getElementsByTagName('div'); ! for (var i = 0; i < divColl.length; i++) { if (divColl[i].className == 'child') --- 385,391 ---- if (jsIsDOM) { ! var divColl = document.getElementsByTagName('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { if (divColl[i].className == 'child') *************** *** 392,396 **** if (imColl) { ! for (var i = 0; i < imColl.length; i++) { imColl[i].src = newSrc; --- 398,403 ---- if (imColl) { ! var imCollCnt = imColl.length; ! for (var i = 0; i < imCollCnt; i++) { imColl[i].src = newSrc; *************** *** 400,405 **** else if (jsIsIE4) { ! var divColl = document.all.tags('div'); ! for (var i = 0; i < divColl.length; i++) { if (divColl[i].className == 'child') --- 407,413 ---- else if (jsIsIE4) { ! var divColl = document.all.tags('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { if (divColl[i].className == 'child') *************** *** 410,419 **** if (imColl) { ! for (var i = 0; i < imColl.length; i++) { imColl[i].src = newSrc; } ! if (!imColl.length) ! document.imEx.src = newSrc; } } // end of the IE4 case --- 418,428 ---- if (imColl) { ! var imCollCnt = imColl.length; ! for (var i = 0; i < imCollCnt; i++) { imColl[i].src = newSrc; } ! if (!imCollCnt) ! imColl.src = newSrc; } } // end of the IE4 case *************** *** 423,429 **** if (jsFirstInd != null) { ! if (document.layers.length) { ! for (var i = jsFirstInd; i < document.layers.length; i++) { var whichEl = document.layers[i]; --- 432,439 ---- if (jsFirstInd != null) { ! var layersCnt = document.layers.length; ! if (layersCnt) { ! for (var i = jsFirstInd; i < layersCnt; i++) { var whichEl = document.layers[i]; |
From: Lo?c C. <lo...@us...> - 2001-04-29 14:25:24
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv27313/chat/lib/index_libs Modified Files: users.lib.js Log Message: Optimized a bit Index: users.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/users.lib.js,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** users.lib.js 2001/04/21 11:03:23 1.7 --- users.lib.js 2001/04/29 14:25:16 1.8 *************** *** 128,133 **** function pmcGetIndex(el) { ! var ind = null; ! for (var i = 0; i < jsUsersFrame.document.layers.length; i++) { var whichEl = jsUsersFrame.document.layers[i]; --- 128,134 ---- function pmcGetIndex(el) { ! var ind = null; ! var layersCnt = jsUsersFrame.document.layers.length; ! for (var i = 0; i < layersCnt; i++) { var whichEl = jsUsersFrame.document.layers[i]; *************** *** 151,156 **** if (jsUsersFrame.jsFirstInd != null) { ! var nextY = jsUsersFrame.document.layers[jsUsersFrame.jsFirstInd].pageY + jsUsersFrame.document.layers[jsUsersFrame.jsFirstInd].document.height; ! for (var i = jsUsersFrame.jsFirstInd + 1; i < jsUsersFrame.document.layers.length; i++) { var whichEl = jsUsersFrame.document.layers[i]; --- 152,158 ---- if (jsUsersFrame.jsFirstInd != null) { ! var nextY = jsUsersFrame.document.layers[jsUsersFrame.jsFirstInd].pageY + jsUsersFrame.document.layers[jsUsersFrame.jsFirstInd].document.height; ! var layersCnt = jsUsersFrame.document.layers.length; ! for (var i = jsUsersFrame.jsFirstInd + 1; i < layersCnt; i++) { var whichEl = jsUsersFrame.document.layers[i]; *************** *** 215,220 **** if (jsIsDOM) { ! divColl = jsUsersFrame.document.getElementsByTagName('div'); ! for (var i = 0; i < divColl.length; i++) { var whichEl = divColl[i]; --- 217,223 ---- if (jsIsDOM) { ! var divColl = jsUsersFrame.document.getElementsByTagName('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { var whichEl = divColl[i]; *************** *** 245,250 **** else if (jsIsIE4) { ! divColl = jsUsersFrame.document.all.tags('div'); ! for (var i = 0; i < divColl.length; i++) { var whichEl = divColl[i]; --- 248,254 ---- else if (jsIsIE4) { ! var divColl = jsUsersFrame.document.all.tags('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { var whichEl = divColl[i]; *************** *** 262,266 **** { parentElts[parentEl.id] = 1; ! parentEl.all.tags('IMG').item('imEx').src = jsImgOpened.src; } } --- 266,270 ---- { parentElts[parentEl.id] = 1; ! parentEl.all.tags('img').item('imEx').src = jsImgOpened.src; } } *************** *** 274,278 **** else if (jsIsNS4) { ! for (var i = 0; i < jsUsersFrame.document.layers.length; i++) { var whichEl = jsUsersFrame.document.layers[i]; --- 278,283 ---- else if (jsIsNS4) { ! var layersCnt = jsUsersFrame.document.layers.length; ! for (var i = 0; i < layersCnt; i++) { var whichEl = jsUsersFrame.document.layers[i]; *************** *** 406,411 **** if (jsIsDOM) { ! var divColl = jsUsersFrame.document.getElementsByTagName('div'); ! for (var i = 0; i < divColl.length; i++) { if (divColl[i].className == 'child') --- 411,417 ---- if (jsIsDOM) { ! var divColl = jsUsersFrame.document.getElementsByTagName('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { if (divColl[i].className == 'child') *************** *** 419,423 **** if (imColl) { ! for (var i = 0; i < imColl.length; i++) { imColl[i].src = newSrc; --- 425,430 ---- if (imColl) { ! var imCollCnt = imColl.length; ! for (var i = 0; i < imCollCnt; i++) { imColl[i].src = newSrc; *************** *** 427,432 **** else if (jsIsIE4) { ! var divColl = jsUsersFrame.document.all.tags('div'); ! for (var i = 0; i < divColl.length; i++) { if (divColl[i].className == 'child') --- 434,440 ---- else if (jsIsIE4) { ! var divColl = jsUsersFrame.document.all.tags('div'); ! var divCollCnt = divColl.length; ! for (var i = 0; i < divCollCnt; i++) { if (divColl[i].className == 'child') *************** *** 440,449 **** if (imColl) { ! for (var i = 0; i < imColl.length; i++) { imColl[i].src = newSrc; } ! if (!imColl.length) ! jsUsersFrame.document.imEx.src = newSrc; } } // end of the IE4 case --- 448,458 ---- if (imColl) { ! var imCollCnt = imColl.length; ! for (var i = 0; i < imCollCnt; i++) { imColl[i].src = newSrc; } ! if (!imCollCnt) ! imColl.src = newSrc; } } // end of the IE4 case *************** *** 453,462 **** if (jsUsersFrame.jsFirstInd != null) { ! if (jsUsersFrame.document.layers.length) { ! for (var i = jsUsersFrame.jsFirstInd; i < jsUsersFrame.document.layers.length; i++) { var whichEl = jsUsersFrame.document.layers[i]; ! if (whichEl.id.indexOf('Parent') != -1) whichEl.document.images['imEx'].src = newSrc; if (whichEl.id.indexOf('Child') != -1) --- 462,473 ---- if (jsUsersFrame.jsFirstInd != null) { ! var layersCnt = jsUsersFrame.document.layers.length; ! if (layersCnt) { ! for (var i = jsUsersFrame.jsFirstInd; i < layersCnt; i++) { var whichEl = jsUsersFrame.document.layers[i]; ! if (whichEl.id.indexOf('Parent') != -1 ! && typeof(whichEl.document.images['imEx']) != 'undefined') whichEl.document.images['imEx'].src = newSrc; if (whichEl.id.indexOf('Child') != -1) |
From: Lo?c C. <lo...@us...> - 2001-04-29 11:06:31
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv24862/chat Modified Files: input.php3 Log Message: The '/!' command is no long stored as the previous message to be retained Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** input.php3 2001/04/28 15:41:23 1.27 --- input.php3 2001/04/29 11:06:27 1.28 *************** *** 231,236 **** <input type="hidden" name="sent" value="0" /> <!-- Last sent message or command (used for the '/!' command) --> ! <input type="hidden" name="prevMessage" value="<?php echo(isset($message) ? str_replace('"', '"', $message) : ''); ?>" /> <!-- Addressee that will be filled when the user click on a nick at the users frame --> --- 231,250 ---- <input type="hidden" name="sent" value="0" /> + <?php + // Get the last submission to be retained: + // - nothing at first load; + // - the submission before the last if the '/!' command was the last one; + // - the last submission itself else. + if (!isset($message)) + { + $newPrevMessage = ''; + } + else + { + $newPrevMessage = str_replace('"', '"', (($displayMessage) ? $prevMessage : $message)); + } + ?> <!-- Last sent message or command (used for the '/!' command) --> ! <input type="hidden" name="prevMessage" value="<?php echo($newPrevMessage); ?>" /> <!-- Addressee that will be filled when the user click on a nick at the users frame --> |
From: Lo?c C. <lo...@us...> - 2001-04-29 10:44:58
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv22003/chat/lib Modified Files: common.lib.php3 Log Message: Improve a bit the cache control function Index: common.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/common.lib.php3,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** common.lib.php3 2001/04/27 18:28:53 1.9 --- common.lib.php3 2001/04/29 10:44:55 1.10 *************** *** 64,68 **** * * @param string string to search for ! * @param mixed list or array to search inside * * @return integer the rank of the $toFind string in the array or '-1' if it --- 64,68 ---- * * @param string string to search for ! * @param mixed list or array to search inside * * @return integer the rank of the $toFind string in the array or '-1' if it *************** *** 256,261 **** function pmcHttpHeaders($theCharset = '', $noCache = true) { - pmcGrabGlobals('HTTP_USER_AGENT'); - // Avoids using cache if ($noCache) --- 256,259 ---- *************** *** 264,276 **** header('Expires: ' . $now); header('Last-Modified: ' . $now); ! if (ereg('MSIE [56789]', $GLOBALS['HTTP_USER_AGENT'])) ! { ! header('Cache-Control: no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); ! } ! else ! { ! header('Cache-Control: no-cache, must-revalidate'); ! } ! header('Pragma: no-cache'); } // end of the 'no cache' case --- 262,268 ---- header('Expires: ' . $now); header('Last-Modified: ' . $now); ! header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1 ! header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1 ! header('Pragma: no-cache'); // HTTP/1.0 } // end of the 'no cache' case |
From: Lo?c C. <lo...@us...> - 2001-04-29 08:57:38
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv5364/chat Modified Files: save.php3 Log Message: Fix some awfull html bugs and improve a bit http headers Index: save.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/save.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** save.php3 2001/04/19 21:05:04 1.5 --- save.php3 2001/04/29 08:57:35 1.6 *************** *** 41,50 **** /** ! * Gets the session Id variable sent to this script * * Uses the 'pmcGrabGlobals()' function defined in the * 'chat/lib/common.lib.php3' library. */ ! pmcGrabGlobals('dbSessionId'); /** --- 41,51 ---- /** ! * Gets the session Id variable sent to this script and the browser 'signature' * * Uses the 'pmcGrabGlobals()' function defined in the * 'chat/lib/common.lib.php3' library. */ ! $toGrab = array('dbSessionId', 'HTTP_USER_AGENT'); ! pmcGrabGlobals($toGrab); /** *************** *** 186,191 **** if ($messagesCnt > 0) { ! // Save messages to a file ! header('Content-Type: application/octetstream'); header('Content-Disposition: attachement; filename="chat_save_' . date('mdY') . '.htm"'); ?> --- 187,196 ---- if ($messagesCnt > 0) { ! // Save messages to a file ('application/octet-stream' is the registered ! // IANA type but MSIE only knows 'application/octetstream') ! $contentType = (ereg('MSIE [56789]', $HTTP_USER_AGENT)) ! ? 'application/octetstream' ! : 'application/octet-stream'; ! header('Content-Type: ' . $contentType); header('Content-Disposition: attachement; filename="chat_save_' . date('mdY') . '.htm"'); ?> *************** *** 195,199 **** <head> <title><?php echo(APP_NAME . ' - ' . htmlspecialchars($dbSessionVars['currentRoom']) . ' - ' . date('F j, Y')); ?></title> ! <style> <?php if (defined('L_FONT_NAME') && L_FONT_NAME != '') --- 200,204 ---- <head> <title><?php echo(APP_NAME . ' - ' . htmlspecialchars($dbSessionVars['currentRoom']) . ' - ' . date('F j, Y')); ?></title> ! <style type="text/css"> <?php if (defined('L_FONT_NAME') && L_FONT_NAME != '') *************** *** 217,221 **** echo("\n"); ?> ! BODY.mainFrame { background-color: #CCCCFF; --- 222,226 ---- echo("\n"); ?> ! body.mainFrame { background-color: #CCCCFF; *************** *** 226,230 **** } ! A { text-decoration: underline; --- 231,235 ---- } ! a { text-decoration: underline; *************** *** 233,237 **** } ! A:hover, A:active { color: #FF9900; --- 238,242 ---- } ! a:hover, a:active { color: #FF9900; *************** *** 263,267 **** } </style> ! <head> <body class="mainFrame"> --- 268,272 ---- } </style> ! </head> <body class="mainFrame"> |
From: Lo?c C. <lo...@us...> - 2001-04-29 08:16:30
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv31726/chat/lib/index_libs Modified Files: main_index.lib.php3 Log Message: The 'autocomplete' param. of the form was skipping the user's choice, so it has been removed. Also the 'do_enter_js_work' library is now included only if the browser support js Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** main_index.lib.php3 2001/04/28 21:04:20 1.25 --- main_index.lib.php3 2001/04/29 08:16:26 1.26 *************** *** 396,401 **** <?php // Gets the JavaScript instructions ! echo("\n"); ! include('./' . _CHAT_PATH . 'lib/index_libs/do_enter_js_work.lib.' . C_EXTENSION); echo("\n"); ?> --- 396,404 ---- <?php // Gets the JavaScript instructions ! if ($dbSessionVars['jsVersion'] != 'noJs') ! { ! echo("\n"); ! include('./' . _CHAT_PATH . 'lib/index_libs/do_enter_js_work.lib.' . C_EXTENSION); ! } echo("\n"); ?> *************** *** 602,606 **** <!-- The main form --> ! <form action="<?php echo($action); ?>" method="post" autocomplete="off" name="startingForm" onsubmit="pmcDefineVerField(); return pmcIndexValidate(<?php echo(C_REQUIRE_REGISTER); ?>);"> <?php // Put the session id in an hidden field --- 605,609 ---- <!-- The main form --> ! <form action="<?php echo($action); ?>" method="post" name="startingForm" onsubmit="pmcDefineVerField(); return pmcIndexValidate(<?php echo(C_REQUIRE_REGISTER); ?>);"> <?php // Put the session id in an hidden field |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/spanish In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/spanish Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/spanish/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/slovak Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/turkish Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/korean Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean/tutorial.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/russian Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/japanese Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/italian Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:46
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/german Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/french Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** tutorial.loc 2001/04/20 20:44:52 1.5 --- tutorial.loc 2001/04/28 21:05:42 1.6 *************** *** 160,164 **** <a href="#whois" class="topLink">Afficher les informations relatives à un autre utilisateur</a><br /> <?php ! if (C_SAVE != 0) { ?> --- 160,164 ---- <a href="#whois" class="topLink">Afficher les informations relatives à un autre utilisateur</a><br /> <?php ! if (C_SAVE) { ?> *************** *** 694,698 **** <?php ! if (C_SAVE != 0) { ?> --- 694,698 ---- <?php ! if (C_SAVE) { ?> |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french_canadian In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/french_canadian Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french_canadian/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/finnish In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/finnish Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/finnish/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/english In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/english Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/english/tutorial.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/czech Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:45
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/chinese_traditional Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:44
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/arabic Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:05:44
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian In directory usw-pr-cvs1:/tmp/cvs-serv15501/chat/localization/bosnian Modified Files: tutorial.loc Log Message: 'C_SAVE' could be the sign '*' Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian/tutorial.loc,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 |
From: Lo?c C. <lo...@us...> - 2001-04-28 21:04:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv15231/chat/lib/index_libs Modified Files: main_index.lib.php3 Log Message: Fix a bug with the javascript url argument separator Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** main_index.lib.php3 2001/04/28 15:42:02 1.24 --- main_index.lib.php3 2001/04/28 21:04:20 1.25 *************** *** 455,459 **** var jsFrom = '<?php echo($GLOBALS['dbSessionVars']['from']); ?>'; var jsLang = '<?php echo($GLOBALS['dbSessionVars']['lang']); ?>'; ! var jsUrlArgSeparator = '<?php echo($GLOBALS['pmcQueryArgSeparator']); ?>'; var jsIsDOM = (typeof(document.getElementById) != 'undefined') ? 1 : 0; --- 455,459 ---- var jsFrom = '<?php echo($GLOBALS['dbSessionVars']['from']); ?>'; var jsLang = '<?php echo($GLOBALS['dbSessionVars']['lang']); ?>'; ! var jsUrlArgSeparator = '<?php echo(($GLOBALS['pmcQueryArgSeparator'] == '&') ? '&' : $GLOBALS['pmcQueryArgSeparator']); ?>'; var jsIsDOM = (typeof(document.getElementById) != 'undefined') ? 1 : 0; |
From: Lo?c C. <lo...@us...> - 2001-04-28 20:31:20
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv6132/chat Modified Files: help_popup.php3 Log Message: Some others word case problems... Index: help_popup.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/help_popup.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** help_popup.php3 2001/04/28 20:20:07 1.12 --- help_popup.php3 2001/04/28 20:31:18 1.13 *************** *** 187,191 **** <table border="0" cellpadding="3" width="574" class="table"> <tr> ! <th class="tabtitle" colspan="<?php echo($smiliesCnt); ?>"><?php echo(L_HELP_TIT_1); ?></th> </tr> <?php --- 187,191 ---- <table border="0" cellpadding="3" width="574" class="table"> <tr> ! <th class="tabTitle" colspan="<?php echo($smiliesCnt); ?>"><?php echo(L_HELP_TIT_1); ?></th> </tr> <?php *************** *** 218,222 **** <!-- Text formatting help --> <table border="0" cellpadding="3" width="574" class="table"> ! <tr><td align="center" class="tabtitle"><?php echo(L_HELP_TIT_2); ?></td></tr> <tr><td align="<?php echo($cellAlign); ?>"><?php echo(L_HELP_FMT_1); ?></td></tr> <tr><td align="<?php echo($cellAlign); ?>"><?php echo(L_HELP_FMT_2); ?></td></tr> --- 218,222 ---- <!-- Text formatting help --> <table border="0" cellpadding="3" width="574" class="table"> ! <tr><td align="center" class="tabTitle"><?php echo(L_HELP_TIT_2); ?></td></tr> <tr><td align="<?php echo($cellAlign); ?>"><?php echo(L_HELP_FMT_1); ?></td></tr> <tr><td align="<?php echo($cellAlign); ?>"><?php echo(L_HELP_FMT_2); ?></td></tr> *************** *** 230,234 **** <!-- Commands help --> <table border="0" cellpadding="3" width="574" class="table"> ! <tr><th align="center" class="tabtitle" colspan="2"><?php echo(L_HELP_TIT_3); ?></th></tr> <tr><th align="center" colspan="2"><?php echo(L_HELP_CMD_0); ?></th></tr> <tr><th align="<?php echo($cellAlign); ?>" colspan="2"><a href="#" onclick="pmcCmd2Input('/!', false); return false" class="sender">/!</a></th></tr> --- 230,234 ---- <!-- Commands help --> <table border="0" cellpadding="3" width="574" class="table"> ! <tr><th align="center" class="tabTitle" colspan="2"><?php echo(L_HELP_TIT_3); ?></th></tr> <tr><th align="center" colspan="2"><?php echo(L_HELP_CMD_0); ?></th></tr> <tr><th align="<?php echo($cellAlign); ?>" colspan="2"><a href="#" onclick="pmcCmd2Input('/!', false); return false" class="sender">/!</a></th></tr> |