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-21 14:35:44
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv24000/chat Modified Files: users_low.php3 users.php3 Log Message: Improve bd queries and add first draft for oci8 outer join Index: users_low.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_low.php3,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** users_low.php3 2001/04/19 20:24:53 1.12 --- users_low.php3 2001/04/21 14:35:42 1.13 *************** *** 123,145 **** . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY usr.username'; } ! else if (C_DB_TYPE == 'pgsql') { $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY usr.username'; } else { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY usr.username'; } --- 123,153 ---- . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY username'; } ! else if (C_DB_TYPE == 'oci8') // not yet validated { + $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' + . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' + . 'WHERE usr.username = reg.username (+) ' + . 'AND usr.room = \'' . $slashedCurrentRoomName . '\' ' + . 'ORDER BY username'; + } + else if (C_DB_TYPE == 'pgsql') // Not yet validated + { $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY username'; } else { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY username'; } *************** *** 221,227 **** . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY usr.username'; } ! else if (C_DB_TYPE == 'pgsql') { $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' --- 229,243 ---- . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; ! } ! else if (C_DB_TYPE == 'oci8') // Not yet validated ! { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' ! . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.username = reg.username (+) ' ! . 'AND usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; } ! else if (C_DB_TYPE == 'pgsql') // Not yet validated { $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' *************** *** 229,243 **** . 'WHERE usr.room = \'%OTHER ROOM%\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, 0 ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY usr.username'; } else { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY usr.username'; } --- 245,259 ---- . 'WHERE usr.room = \'%OTHER ROOM%\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; } else { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; } Index: users.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users.php3,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** users.php3 2001/04/19 20:24:53 1.17 --- users.php3 2001/04/21 14:35:42 1.18 *************** *** 122,144 **** . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY usr.username'; } ! else if (C_DB_TYPE == 'pgsql') { $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY usr.username'; } else { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY usr.username'; } --- 122,152 ---- . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY username'; } ! else if (C_DB_TYPE == 'oci8') // not yet validated { + $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' + . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' + . 'WHERE usr.username = reg.username (+) ' + . 'AND usr.room = \'' . $slashedCurrentRoomName . '\' ' + . 'ORDER BY username'; + } + else if (C_DB_TYPE == 'pgsql') // Not yet validated + { $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY username'; } else { ! $currentRoomQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'' . $slashedCurrentRoomName . '\' ' ! . 'ORDER BY username'; } *************** *** 220,226 **** . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY usr.username'; } ! else if (C_DB_TYPE == 'pgsql') { $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' --- 228,242 ---- . 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; ! } ! else if (C_DB_TYPE == 'oci8') // Not yet validated ! { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' ! . 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg ' ! . 'WHERE usr.username = reg.username (+) ' ! . 'AND usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; } ! else if (C_DB_TYPE == 'pgsql') // Not yet validated { $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender ' *************** *** 228,242 **** . 'WHERE usr.room = \'%OTHER ROOM%\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, 0 ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY usr.username'; } else { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY usr.username'; } --- 244,258 ---- . 'WHERE usr.room = \'%OTHER ROOM%\' ' . 'UNION ' ! . 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.username NOT IN (SELECT reg.username FROM ' . C_REG_TBL . ' reg) AND usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; } else { ! $otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, NULL AS gender ' . 'FROM ' . C_USR_TBL . ' usr ' . 'WHERE usr.room = \'%OTHER ROOM%\' ' ! . 'ORDER BY username'; } *************** *** 294,298 **** $firstOtherRoom = 'Parent' . $id; $usersList[] = '<!-- The others rooms currently in use -->'; ! $usersList[] = '<div id="Parent' . $id . '" class="parent" style="margin-top: 5px; cursor: hand">'; $usersList[] = "\t" . '<a href="#" onclick="window.parent.pmcExpandRoom(\'' . $id . '\'); return false">' . '<img name="imEx" id="imEx' . $id . '" src="images/closed.gif" width="9" height="9" border="0" alt="' . L_EXPCOL . '" /></a>' --- 310,314 ---- $firstOtherRoom = 'Parent' . $id; $usersList[] = '<!-- The others rooms currently in use -->'; ! $usersList[] = '<div id="Parent' . $id . '" class="parent" style="margin-top: 10px; cursor: hand">'; $usersList[] = "\t" . '<a href="#" onclick="window.parent.pmcExpandRoom(\'' . $id . '\'); return false">' . '<img name="imEx" id="imEx' . $id . '" src="images/closed.gif" width="9" height="9" border="0" alt="' . L_EXPCOL . '" /></a>' *************** *** 383,387 **** $firstOtherRoom = 'Parent' . $id; ! $usersList[] = '<div id="Parent' . $id . '" class="parent" style="margin-top: 5px; cursor: hand">'; $usersList[] = "\t" . '<a href="' . str_replace('%NEW ROOM%', urlencode($tmpRoom), $joinUrl) . '" target="_parent">' . htmlspecialchars($tmpRoom) . '</a>' --- 399,403 ---- $firstOtherRoom = 'Parent' . $id; ! $usersList[] = '<div id="Parent' . $id . '" class="parent" style="margin-top: 10px; cursor: hand">'; $usersList[] = "\t" . '<a href="' . str_replace('%NEW ROOM%', urlencode($tmpRoom), $joinUrl) . '" target="_parent">' . htmlspecialchars($tmpRoom) . '</a>' |
From: Lo?c C. <lo...@us...> - 2001-04-21 11:03:27
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv29399/chat/lib/index_libs Modified Files: users.lib.js Log Message: Fix a bad reference Index: users.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/users.lib.js,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** users.lib.js 2001/04/19 20:29:00 1.6 --- users.lib.js 2001/04/21 11:03:23 1.7 *************** *** 232,236 **** { parentElts[parentEl.id] = 1; ! currentImg = document.getElementById('imEx' + currentId); currentImg.src = jsImgOpened.src; } --- 232,236 ---- { parentElts[parentEl.id] = 1; ! currentImg = jsUsersFrame.document.getElementById('imEx' + currentId); currentImg.src = jsImgOpened.src; } |
From: Lo?c C. <lo...@us...> - 2001-04-21 09:45:38
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv20902 Modified Files: do_enter_js_work.lib.php3 Added Files: msg_colors.lib.js Removed Files: set_msg_color.lib.js Log Message: Rename 'set_msg_color.lib.js' to 'msg_colors.lib.js' --- NEW FILE --- // // +--------------------------------------------------------------------------+ // | phpMyChat version 0.15.0 | // +--------------------------------------------------------------------------+ // | Copyright (c) 2000-2001 The phpHeaven-team | // +--------------------------------------------------------------------------+ // | License: GNU/GPL - http://www.gnu.org/copyleft/gpl.html | // +--------------------------------------------------------------------------+ // | Modifies the color picker at the 'input' frame according to the value of | // | the color to be used for messages. | // | | // | This library is called by the 'chat/lib/index_libs/main_index.lib.php3' | // | script. | // +--------------------------------------------------------------------------+ // | From the phpMyChat project: | // | http://www.phpheaven.net/projects/phpMyChat/ | // | | // | Authors: the phpHeaven-team <te...@ph...> | // +--------------------------------------------------------------------------+ // // $Id: msg_colors.lib.js,v 1.1 2001/04/21 09:45:36 loic1 Exp $ // // Handles the color picker. // var jsSelectedColor = null; var jsImgColor1 = new Image(4,20); jsImgColor1.src = jsChatPath + 'images/unsel_color.gif'; var jsImgColor2 = new Image(4,20); jsImgColor2.src = jsChatPath + 'images/sel_color.gif'; /** * Prepares the color picker * * @param string hex value of the current color * * @return boolean always true * * @access public */ function pmcSetColorPicker(theCurrentColor) { var jsTextColors = new Array('#000000', '#ffffff'); var i = 1; // Defines the list of available colors (red ones are only valid for the // administrator or the moderators of the current room) for (var x = 0; x < 360; x += 6) { var redDec = Math.ceil(126 * (Math.cos((x * 2 * Math.PI) / 360) + 1)); var greenDec = Math.ceil(126 * (Math.cos(((x + 240) * 2 * Math.PI) / 360) + 1)); var blueDec = Math.ceil(126 * (Math.cos(((x + 120) * 2 * Math.PI) / 360) + 1)); if (!(redDec > 128 && greenDec < 128 && blueDec < 128 && !jsIsModerator)) { var redHex = '0' + redDec.toString(16); var greenHex = '0' + greenDec.toString(16); var blueHex = '0' + blueDec.toString(16); i++; jsTextColors[i] = '#' + redHex.substr(redHex.length - 2) + greenHex.substr(greenHex.length - 2) + blueHex.substr(blueHex.length - 2); } } // Buffers the color picker jsColorPicker = new Array(); jsColorPicker[0] = '<table border="0" cellpadding="0" cellspacing="0">'; jsColorPicker[1] = '<tr>'; for (var i = 0; i < jsTextColors.length; i++) { if (theCurrentColor == jsTextColors[i]) { var jsWichImage = 'sel_color.gif'; jsSelectedColor = 'C' + (i + 1); } else { var jsWichImage = 'unsel_color.gif'; } jsColorPicker[i+2] = '<td bgcolor="' + jsTextColors[i] + '"><a href="#" onclick="window.parent.pmcChangeColor(\'' + jsTextColors[i] + '\', \'C' + (i + 1) + '\'); return false"><img src="images/' + jsWichImage + '" alt="' + jsTextColors[i] + '" name="C' + (i + 1) + '" id="C' + (i + 1) + '" border="0" width="2" height="20" /></a></td>'; } jsColorPicker[i+2] = '<\/tr>'; jsColorPicker[i+3] = '<\/table>'; jsTextColors = null; return true; } // end of the 'pmcSetColorPicker()' function /** * Modifies the color picker * * @param string hex value of the selected color * @param string rank of the color inside the color picker * * @return boolean always true * * @access public */ function pmcChangeColor(colorVal, colorRank) { if (jsSelectedColor != colorRank) { var inputDoc = window.frames['input'].window.document; // DOM enabled browser if (typeof(document.getElementById) != 'undefined') { var obj1 = inputDoc.getElementById(jsSelectedColor); var obj2 = inputDoc.getElementById(colorRank); } // IE else if (typeof(document.all) != 'undefined') { var obj1 = inputDoc.all[jsSelectedColor]; var obj2 = inputDoc.all[colorRank]; } // NS else if (typeof(document.images) != 'undefined') { var obj1 = inputDoc.images[jsSelectedColor]; var obj2 = inputDoc.images[colorRank]; } else return false; if (jsSelectedColor != null) { obj1.src = jsImgColor1.src; } jsSelectedColor = colorRank; inputDoc.forms['inputForm'].elements['color'].value = colorVal; obj2.src = jsImgColor2.src; } inputDoc.forms['inputForm'].elements['message'].focus(); return true; } // end of the function 'pmcChangeColor()' Index: do_enter_js_work.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_js_work.lib.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** do_enter_js_work.lib.php3 2001/04/20 19:54:13 1.6 --- do_enter_js_work.lib.php3 2001/04/21 09:45:36 1.7 *************** *** 88,93 **** ! <!-- Gets the library that allows to modify the color picker --> ! <script src="<?php echo(_CHAT_PATH); ?>lib/index_libs/set_msg_color.lib.js" type="text/javascript" language="javascript1.1"></script> --- 88,93 ---- ! <!-- Gets the library that allows to display and modify the color picker --> ! <script src="<?php echo(_CHAT_PATH); ?>lib/index_libs/msg_colors.lib.js" type="text/javascript" language="javascript1.1"></script> --- set_msg_color.lib.js DELETED --- |
From: Lo?c C. <lo...@us...> - 2001-04-21 09:44:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv20722/chat/lib/commands Modified Files: order.cmd.php3 clear.cmd.php3 Log Message: Better handdling of commands Index: order.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/order.cmd.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** order.cmd.php3 2001/04/19 21:05:04 1.3 --- order.cmd.php3 2001/04/21 09:43:59 1.4 *************** *** 28,40 **** * Just modify some variables */ ! if ($dbSessionVars['jsVersion'] != 'high') ! { ! $dbSessionVars['msgOrder'] = 1 - $dbSessionVars['msgOrder']; ! // cookie expires in one year ! setcookie('cookieMsgOrder', $dbSessionVars['msgOrder'], time() + 60*60*24*365); ! $isCommand = true; ! $enforceFirstLoad = 1; ! $doRefreshMessages = true; ! } ?> --- 28,37 ---- * Just modify some variables */ ! $dbSessionVars['msgOrder'] = 1 - $dbSessionVars['msgOrder']; ! // cookie expires in one year ! setcookie('cookieMsgOrder', $dbSessionVars['msgOrder'], time() + 60*60*24*365); ! $isCommand = true; ! $enforceFirstLoad = 1; ! $doRefreshMessages = true; ?> Index: clear.cmd.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/clear.cmd.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** clear.cmd.php3 2001/04/19 21:05:04 1.3 --- clear.cmd.php3 2001/04/21 09:43:59 1.4 *************** *** 28,38 **** * Just modify some variables */ ! if ($dbSessionVars['jsVersion'] == 'high') ! { ! $dbSessionVars['msgNumber'] = 5; ! $isCommand = true; ! $enforceFirstLoad = 1; ! $doRefreshMessages = true; ! } ?> --- 28,35 ---- * Just modify some variables */ ! $dbSessionVars['msgNumber'] = 5; ! $isCommand = true; ! $enforceFirstLoad = 1; ! $doRefreshMessages = true; ?> |
From: Lo?c C. <lo...@us...> - 2001-04-21 09:44:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv20722/chat/lib Modified Files: commands.lib.php3 Log Message: Better handdling of commands Index: commands.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands.lib.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** commands.lib.php3 2001/04/19 21:05:04 1.6 --- commands.lib.php3 2001/04/21 09:43:59 1.7 *************** *** 25,47 **** ! if (eregi('^\/!$', $message, $cmd) ! && (isset($prevMessage) && $prevMessage != '')) { include('./lib/commands/history.cmd.' . C_EXTENSION); } ! else if (eregi('^\/announce[[:space:]](.*)?$', $message, $cmd)) { include('./lib/commands/announce.cmd.' . C_EXTENSION); } ! else if (C_BANISH != 0 && eregi('^\/ban[[:space:]](\*[[:space:]])?(.{1,30})$', $message, $cmd)) { include('./lib/commands/banish.cmd.' . C_EXTENSION); } ! else if (eregi('^\/clear$', $message)) { include('./lib/commands/clear.cmd.' . C_EXTENSION); } ! else if (eregi('^\/(help|\?)$', $message)) { include('./lib/commands/help.cmd.' . C_EXTENSION); --- 25,49 ---- ! if ('/!' == $message ! && !empty($prevMessage)) { include('./lib/commands/history.cmd.' . C_EXTENSION); } ! else if (eregi('^\/announce[[:space:]](.+)$', $message, $cmd)) { include('./lib/commands/announce.cmd.' . C_EXTENSION); } ! else if (C_BANISH && eregi('^\/ban[[:space:]](\*[[:space:]])?(.{1,30})$', $message, $cmd)) { include('./lib/commands/banish.cmd.' . C_EXTENSION); } ! else if (strcasecmp('/clear', $message) == 0 ! && $dbSessionVars['jsVersion'] == 'high') { include('./lib/commands/clear.cmd.' . C_EXTENSION); } ! else if ('/?' == $message ! || strcasecmp('/help', $message) == 0) { include('./lib/commands/help.cmd.' . C_EXTENSION); *************** *** 51,55 **** include('./lib/commands/ignore.cmd.' . C_EXTENSION); } ! else if (eregi('^\/img$', $message)) { include('./lib/commands/img.cmd.' . C_EXTENSION); --- 53,57 ---- include('./lib/commands/ignore.cmd.' . C_EXTENSION); } ! else if (strcasecmp('/img', $message) == 0) { include('./lib/commands/img.cmd.' . C_EXTENSION); *************** *** 59,63 **** include('./lib/commands/invite.cmd.' . C_EXTENSION); } ! else if (C_VERSION > 0 && eregi('^\/join[[:space:]]((0|1)[[:space:]])?#(.{1,30})$', $message, $cmd)) { --- 61,65 ---- include('./lib/commands/invite.cmd.' . C_EXTENSION); } ! else if (0 < C_VERSION && eregi('^\/join[[:space:]]((0|1)[[:space:]])?#(.{1,30})$', $message, $cmd)) { *************** *** 68,72 **** include('./lib/commands/kick.cmd.' . C_EXTENSION); } ! else if (eregi('^\/me[[:space:]](.*)?$', $message, $cmd)) { include('./lib/commands/me.cmd.' . C_EXTENSION); --- 70,74 ---- include('./lib/commands/kick.cmd.' . C_EXTENSION); } ! else if (eregi('^\/me[[:space:]](.+)$', $message, $cmd)) { include('./lib/commands/me.cmd.' . C_EXTENSION); *************** *** 76,88 **** include('./lib/commands/priv_msg.cmd.' . C_EXTENSION); } ! else if (eregi('^\/notify$', $message)) { include('./lib/commands/notify.cmd.' . C_EXTENSION); } ! else if (eregi('^\/order$', $message)) { include('./lib/commands/order.cmd.' . C_EXTENSION); } ! else if (eregi('^\/profile$', $message)) { include('./lib/commands/profile.cmd.' . C_EXTENSION); --- 78,91 ---- include('./lib/commands/priv_msg.cmd.' . C_EXTENSION); } ! else if (strcasecmp('/notify', $message) == 0) { include('./lib/commands/notify.cmd.' . C_EXTENSION); } ! else if (strcasecmp('/order', $message) == 0 ! && $dbSessionVars['jsVersion'] != 'high') { include('./lib/commands/order.cmd.' . C_EXTENSION); } ! else if (strcasecmp('/profile', $message) == 0) { include('./lib/commands/profile.cmd.' . C_EXTENSION); *************** *** 100,104 **** include('./lib/commands/refresh.cmd.' . C_EXTENSION); } ! else if (C_SAVE && eregi('^\/save([[:space:]]([[:digit:]]*))?$', $message, $cmd) && ($cmd[2] == '' OR $cmd[2] > 0)) --- 103,107 ---- include('./lib/commands/refresh.cmd.' . C_EXTENSION); } ! else if ('0' != C_SAVE && eregi('^\/save([[:space:]]([[:digit:]]*))?$', $message, $cmd) && ($cmd[2] == '' OR $cmd[2] > 0)) *************** *** 110,114 **** include('./lib/commands/show.cmd.' . C_EXTENSION); } ! else if (eregi('^\/timestamp$', $message)) { include('./lib/commands/timestamp.cmd.' . C_EXTENSION); --- 113,117 ---- include('./lib/commands/show.cmd.' . C_EXTENSION); } ! else if (strcasecmp('/timestamp', $message) == 0) { include('./lib/commands/timestamp.cmd.' . C_EXTENSION); *************** *** 118,121 **** --- 121,127 ---- include('./lib/commands/whois.cmd.' . C_EXTENSION); } + + if (!($isCommand) && !isset($error)) + $error = L_BAD_CMD; ?> |
From: Lo?c C. <lo...@us...> - 2001-04-21 09:44:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv20722/chat/lib/index_libs Modified Files: msg_validation.lib.js Log Message: Better handdling of commands Index: msg_validation.lib.js =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/msg_validation.lib.js,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** msg_validation.lib.js 2001/04/20 19:54:13 1.1 --- msg_validation.lib.js 2001/04/21 09:43:59 1.2 *************** *** 30,34 **** validCmds[1] = /^\/announce (.+)$/i; validCmds[2] = /^\/ban (\* )?(.{1,30})$/i; ! validCmds[3] = /^\/clear$/i; validCmds[4] = /^\/(help|\?)$/i; validCmds[5] = /^\/ignore( -)?( (.+))?$/i; --- 30,34 ---- validCmds[1] = /^\/announce (.+)$/i; validCmds[2] = /^\/ban (\* )?(.{1,30})$/i; ! validCmds[3] = (jsIsVersion4) ? /^\/clear$/i : ''; validCmds[4] = /^\/(help|\?)$/i; validCmds[5] = /^\/ignore( -)?( (.+))?$/i; *************** *** 40,44 **** validCmds[11] = /^\/(msg|to) ([^ ]{1,30}) (.+)$/i; validCmds[12] = /^\/notify$/i; ! validCmds[13] = /^\/order$/i; validCmds[14] = /^\/profile$/i; validCmds[15] = /^\/promote (.{1,30})$/i; --- 40,44 ---- validCmds[11] = /^\/(msg|to) ([^ ]{1,30}) (.+)$/i; validCmds[12] = /^\/notify$/i; ! validCmds[13] = (jsIsVersion4) ? '' : /^\/order$/i; validCmds[14] = /^\/profile$/i; validCmds[15] = /^\/promote (.{1,30})$/i; *************** *** 63,67 **** for (i = 0; i < validCmds.length; i++) { ! if (validCmds[i].test(theMessage)) return true; } --- 63,67 ---- for (i = 0; i < validCmds.length; i++) { ! if (validCmds[i] != '' && validCmds[i].test(theMessage)) return true; } |
From: Lo?c C. <lo...@us...> - 2001-04-21 09:44:03
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv20722/chat Modified Files: input.php3 handle_input.php3 Log Message: Better handdling of commands Index: input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/input.php3,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** input.php3 2001/04/19 21:05:04 1.22 --- input.php3 2001/04/21 09:43:59 1.23 *************** *** 134,140 **** { include('./lib/commands.lib.' . C_EXTENSION); ! if (!($isCommand) && !isset($error)) ! $error = L_BAD_CMD; ! } // end of handle commands // Tests for 'true' messages --- 134,138 ---- { include('./lib/commands.lib.' . C_EXTENSION); ! } // end of handdling commands // Tests for 'true' messages *************** *** 229,233 **** // Put the session id in an hidden field echo("\t" . dbSessionSID('POST') . "\n"); ! ?> <!-- Whether a message has been sent or not (used to avoid multiple submission) --> <input type="hidden" name="sent" value="0" /> --- 227,231 ---- // Put the session id in an hidden field echo("\t" . dbSessionSID('POST') . "\n"); ! ?> <!-- Whether a message has been sent or not (used to avoid multiple submission) --> <input type="hidden" name="sent" value="0" /> Index: handle_input.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/handle_input.php3,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** handle_input.php3 2001/04/19 21:05:04 1.18 --- handle_input.php3 2001/04/21 09:43:59 1.19 *************** *** 133,139 **** { include('./lib/commands.lib.' . C_EXTENSION); ! if (!($isCommand) && !isset($error)) ! $error = L_BAD_CMD; ! } // end of handle commands // Tests for 'true' messages --- 133,137 ---- { include('./lib/commands.lib.' . C_EXTENSION); ! } // end of handdling commands // Tests for 'true' messages |
From: Lo?c C. <lo...@us...> - 2001-04-20 21:17:11
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv25374/chat/lib Modified Files: db_sessions.lib.php3 common.lib.php3 Log Message: The 'ini_get()' function is disabled by some ISP -> avoid error messages Index: db_sessions.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/db_sessions.lib.php3,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** db_sessions.lib.php3 2001/04/19 21:05:04 1.10 --- db_sessions.lib.php3 2001/04/20 21:17:09 1.11 *************** *** 342,346 **** else { ! $dbSessionLifeTime = (empty($theLifeTime)) ? ini_get('session.gc_maxlifetime') : $theLifeTime; } --- 342,348 ---- else { ! $dbSessionLifeTime = (empty($theLifeTime) && @ini_get('session.gc_maxlifetime')) ! ? @ini_get('session.gc_maxlifetime') ! : $theLifeTime; } Index: common.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/common.lib.php3,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** common.lib.php3 2001/04/19 21:05:04 1.7 --- common.lib.php3 2001/04/20 21:17:09 1.8 *************** *** 52,56 **** if ($pmcIsPhp4) { ! $pmcQueryArgSeparator = (ini_get('arg_separator')) ? ini_get('arg_separator') : '&'; } else --- 52,56 ---- if ($pmcIsPhp4) { ! $pmcQueryArgSeparator = (@ini_get('arg_separator')) ? @ini_get('arg_separator') : '&'; } else *************** *** 136,140 **** // The 'register_globals' option is enabled for php4 -> skip else if ($pmcIsPhp4 ! && (ini_get('register_globals') == 1 || strtolower(ini_get('register_globals')) == 'on')) { return false; --- 136,140 ---- // The 'register_globals' option is enabled for php4 -> skip else if ($pmcIsPhp4 ! && (@ini_get('register_globals') == 1 || strtolower(@ini_get('register_globals')) == 'on')) { return false; |
From: Lo?c C. <lo...@us...> - 2001-04-20 21:14:47
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv24876/chat/lib Modified Files: welcome.lib.php3 Log Message: Oups, new comments intoduced a parse error Index: welcome.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/welcome.lib.php3,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** welcome.lib.php3 2001/04/20 20:42:46 1.6 --- welcome.lib.php3 2001/04/20 21:14:44 1.7 *************** *** 32,37 **** * If no translation fits the language of the user the default case at the end * of the switch will get a default welcome message from the translation file ! * this user has required (ie a 'chat/localization/*/chat.loc' file). You may ! * bypass this feature by specifying a true message in the default case below. */ switch ($dbSessionVars['lang']) --- 32,38 ---- * If no translation fits the language of the user the default case at the end * of the switch will get a default welcome message from the translation file ! * this user has required (ie a 'chat/localization/????/chat.loc' file). You ! * may bypass this feature by specifying a true message in the default case ! * below. */ switch ($dbSessionVars['lang']) |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:57
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/spanish In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/spanish Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/spanish/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 20:31:16 1.4 --- tutorial.loc 2001/04/20 20:44:53 1.5 *************** *** 202,206 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Banderas para la selección de idiomas" /> </p> <p align="right"><a href="#top">Volver al comienzo</a></p> --- 202,206 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Banderas para la selección de idiomas" /> </p> <p align="right"><a href="#top">Volver al comienzo</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:57
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/images/tutorials_imgs In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/images/tutorials_imgs Modified Files: flags.gif Log Message: New languages list... widely increased, isn't it? :)) Index: flags.gif =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/images/tutorials_imgs/flags.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvsyK3PjD and /tmp/cvs425bC6 differ |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:57
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/italian Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/italian/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 20:31:16 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 202,206 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Bandiere per la scelta della lingua" /> </p> <p align="right"><a href="#top">Torna all'inizio</a></p> --- 202,206 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Bandiere per la scelta della lingua" /> </p> <p align="right"><a href="#top">Torna all'inizio</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/slovak Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/slovak/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 20:31:16 1.4 --- tutorial.loc 2001/04/20 20:44:53 1.5 *************** *** 204,208 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Zástavky pre výber jazyka" /> </p> <p align="right"><a href="#top">Spä nahor</a></p> --- 204,208 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Zástavky pre výber jazyka" /> </p> <p align="right"><a href="#top">Spä nahor</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/turkish Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/turkish/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 20:31:16 1.4 --- tutorial.loc 2001/04/20 20:44:53 1.5 *************** *** 200,204 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Bayraklar" /> </p> <p align="right"><a href="#top">geri dön</a></p> --- 200,204 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Bayraklar" /> </p> <p align="right"><a href="#top">geri dön</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/german Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/german/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 20:31:15 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 202,206 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Fahnen zur Benutzerauswahl" /> </p> <p align="right"><a href="#top">Zurück nach oben</a></p> --- 202,206 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Fahnen zur Benutzerauswahl" /> </p> <p align="right"><a href="#top">Zurück nach oben</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/korean Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/korean/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** tutorial.loc 2001/04/19 20:31:16 1.5 --- tutorial.loc 2001/04/20 20:44:52 1.6 *************** *** 200,204 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="¾ð¾î ¼±ÅÃÀ» À§ÇÑ ±¹±â" /> </p> <p align="right"><a href="#top">¸ÇÀ§·Î</a></p> --- 200,204 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="¾ð¾î ¼±ÅÃÀ» À§ÇÑ ±¹±â" /> </p> <p align="right"><a href="#top">¸ÇÀ§·Î</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/russian Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/russian/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 20:31:16 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 202,206 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Ôëàãè äëÿ âûáîðà ÿçûêà" /> </p> <p align="right"><a href="#top"> íà÷àëî</a></p> --- 202,206 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Ôëàãè äëÿ âûáîðà ÿçûêà" /> </p> <p align="right"><a href="#top"> íà÷àëî</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/japanese Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/japanese/tutorial.loc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** tutorial.loc 2001/04/15 21:18:18 1.3 --- tutorial.loc 2001/04/20 20:44:52 1.4 *************** *** 199,203 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="¸À¸ì¤ÎÀßÄê" /> </p> <p align="right"><a href="#top">¥È¥Ã¥×¤ËÌá¤ë</a></p> --- 199,203 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="¸À¸ì¤ÎÀßÄê" /> </p> <p align="right"><a href="#top">¥È¥Ã¥×¤ËÌá¤ë</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french_canadian In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/french_canadian Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french_canadian/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 09:05:10 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 200,204 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Drapeau de sélection de langue" /> </p> <p align="right"><a href="#top">Début de la page</a></p> --- 200,204 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Drapeau de sélection de langue" /> </p> <p align="right"><a href="#top">Début de la page</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/czech Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 09:05:09 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 203,207 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Vlajky pro výbìr jazyka" /> </p> <p align="right"><a href="#top">Zpìt nahoru</a></p> --- 203,207 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Vlajky pro výbìr jazyka" /> </p> <p align="right"><a href="#top">Zpìt nahoru</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:55
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/arabic Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 09:05:09 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 202,206 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="ÅÎÊíÇÑ ÇáÃÚáÇã áÊÍÏíÏ ÇááÛÉ" /> </p> <p align="right"><a href="#top">ÇáÚæÏÉ Çáì ÇáÞÇÆãÉ ÇáÑÆíÓíÉ</a></p> --- 202,206 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="ÅÎÊíÇÑ ÇáÃÚáÇã áÊÍÏíÏ ÇááÛÉ" /> </p> <p align="right"><a href="#top">ÇáÚæÏÉ Çáì ÇáÞÇÆãÉ ÇáÑÆíÓíÉ</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:55
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/finnish In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/finnish Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/finnish/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 09:05:10 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 200,204 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Liput kielen valintaan" /> </p> <p align="right"><a href="#top">Takaisin alkuun</a></p> --- 200,204 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Liput kielen valintaan" /> </p> <p align="right"><a href="#top">Takaisin alkuun</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:55
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/english In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/english Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/english/tutorial.loc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** tutorial.loc 2001/04/19 20:31:16 1.5 --- tutorial.loc 2001/04/20 20:44:52 1.6 *************** *** 209,213 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Flags for language selection" /> </p> <p align="right"><a href="#top">Back to the top</a></p> --- 209,213 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Flags for language selection" /> </p> <p align="right"><a href="#top">Back to the top</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:55
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/chinese_traditional Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 09:05:09 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 200,204 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="»y¨¥°ê§O¿ï¾Ü" /> </p> <p align="right"><a href="#top">¦^¶º</a></p> --- 200,204 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="»y¨¥°ê§O¿ï¾Ü" /> </p> <p align="right"><a href="#top">¦^¶º</a></p> |
From: Lo?c C. <lo...@us...> - 2001-04-20 20:44:55
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french In directory usw-pr-cvs1:/tmp/cvs-serv18855/chat/localization/french Modified Files: tutorial.loc Log Message: New languages list... widely increased, isn't it? :)) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/04/19 09:05:10 1.4 --- tutorial.loc 2001/04/20 20:44:52 1.5 *************** *** 200,204 **** </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="44" width="424" alt="Drapeau de sélection de langue" /> </p> <p align="right"><a href="#top">Début de la page</a></p> --- 200,204 ---- </p> <p align="center"> ! <img src="images/tutorials_imgs/flags.gif" height="66" width="431" alt="Drapeau de sélection de langue" /> </p> <p align="right"><a href="#top">Début de la page</a></p> |