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-16 16:45:43
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database
In directory usw-pr-cvs1:/tmp/cvs-serv21772/chat/install/database
Added Files:
pgsql.sql
Log Message:
A theorical dump....
--- NEW FILE ---
#
# Please note that this model is a bit theorical: we don't test it yet.
# If you face some problems with it or have some suggestions to improve it
# please send us an e-mail.
#
#
# Table structure for table 'pmc_ban_users'
#
CREATE TABLE pmc_ban_users (
username varchar(30) NOT NULL DEFAULT '' ,
latin1 int2 NOT NULL DEFAULT '0' ,
ip varchar(16) NOT NULL DEFAULT '' ,
rooms varchar(100) NOT NULL DEFAULT '' ,
ban_until int4 NOT NULL DEFAULT '0' ,
PRIMARY KEY (username),
KEY ip (ip),
KEY ban_until (ban_until)
);
#
# Table structure for table 'pmc_messages'
#
CREATE TABLE pmc_messages (
type int2 NOT NULL DEFAULT '0' ,
room varchar(30) NOT NULL DEFAULT '' ,
username varchar(30) NOT NULL DEFAULT '' ,
latin1 int2 NOT NULL DEFAULT '0' ,
m_time int4 NOT NULL DEFAULT '0' ,
address varchar(30) ,
color varchar(7) NOT NULL DEFAULT '#000000' ,
msg_original text NOT NULL DEFAULT '' ,
msg_enhanced text NOT NULL DEFAULT '' ,
KEY type (type),
KEY m_time (m_time)
);
#
# Table structure for table 'pmc_reg_users'
#
CREATE TABLE pmc_reg_users (
username varchar(30) NOT NULL DEFAULT '' ,
latin1 int2 NOT NULL DEFAULT '0' ,
password varchar(32) NOT NULL DEFAULT '' ,
firstname varchar(64) NOT NULL DEFAULT '' ,
lastname varchar(64) NOT NULL DEFAULT '' ,
country varchar(64) ,
website varchar(64) ,
email varchar(64) NOT NULL DEFAULT '' ,
showemail int2 NOT NULL DEFAULT '0' ,
perms varchar(9) NOT NULL DEFAULT 'user' ,
rooms varchar(128) NOT NULL DEFAULT '' ,
reg_time int4 NOT NULL DEFAULT '0' ,
ip varchar(16) NOT NULL DEFAULT '' ,
gender int2 NOT NULL DEFAULT '0' ,
PRIMARY KEY (username),
KEY reg_time (reg_time),
KEY perms (perms)
);
INSERT INTO c_reg_users VALUES('admin', '', '21232f297a57a5a743894a0e4a801fc3', '', '', '', '', '', 0, 'admin', '', '', '', '');
#
# Table structure for table 'pmc_sessions'
#
CREATE TABLE pmc_sessions (
session_id varchar(32) NOT NULL DEFAULT '' ,
last int4 NOT NULL DEFAULT '0' ,
data text ,
PRIMARY KEY (session_id),
KEY last (last)
);
#
# Table structure for table 'pmc_users'
#
CREATE TABLE pmc_users (
session_id varchar(32) NOT NULL DEFAULT '' ,
u_time int4 NOT NULL DEFAULT '0' ,
room varchar(30) NOT NULL DEFAULT '' ,
username varchar(30) NOT NULL DEFAULT '' ,
latin1 int2 NOT NULL DEFAULT '0' ,
status char(1) NOT NULL DEFAULT 'u' ,
ip varchar(16) NOT NULL DEFAULT '' ,
PRIMARY KEY (session_id),
KEY room_id (room),
KEY status (status),
KEY u_time (u_time)
);
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 16:44:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database
In directory usw-pr-cvs1:/tmp/cvs-serv21588/chat/install/database
Modified Files:
mysql.sql
Log Message:
Add the admin default record (log and password are 'admin' and 'admin')
Index: mysql.sql
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/mysql.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** mysql.sql 2001/04/03 20:14:52 1.2
--- mysql.sql 2001/04/16 16:44:47 1.3
***************
*** 3,7 ****
#
! CREATE TABLE /*!32312 IF NOT EXISTS*/ pmc_ban_users (
username varchar(30) NOT NULL DEFAULT '' ,
latin1 tinyint(1) unsigned NOT NULL DEFAULT '0' ,
--- 3,8 ----
#
! DROP TABLE /*!32312 IF EXISTS*/ pmc_ban_users;
! CREATE TABLE pmc_ban_users (
username varchar(30) NOT NULL DEFAULT '' ,
latin1 tinyint(1) unsigned NOT NULL DEFAULT '0' ,
***************
*** 19,23 ****
#
! CREATE TABLE /*!32312 IF NOT EXISTS*/ pmc_messages (
type tinyint(1) unsigned NOT NULL DEFAULT '0' ,
room varchar(30) NOT NULL DEFAULT '' ,
--- 20,25 ----
#
! DROP TABLE /*!32312 IF EXISTS*/ pmc_messages;
! CREATE TABLE pmc_messages (
type tinyint(1) unsigned NOT NULL DEFAULT '0' ,
room varchar(30) NOT NULL DEFAULT '' ,
***************
*** 57,60 ****
--- 59,63 ----
KEY perms (perms)
);
+ INSERT INTO c_reg_users VALUES('admin', '', '21232f297a57a5a743894a0e4a801fc3', '', '', '', '', '', 0, 'admin', '', '', '', '');
***************
*** 63,67 ****
#
! CREATE TABLE /*!32312 IF NOT EXISTS*/ pmc_sessions (
session_id varchar(32) NOT NULL DEFAULT '' ,
last int(11) unsigned NOT NULL DEFAULT '0' ,
--- 66,71 ----
#
! DROP TABLE /*!32312 IF EXISTS*/ pmc_sessions;
! CREATE TABLE pmc_sessions (
session_id varchar(32) NOT NULL DEFAULT '' ,
last int(11) unsigned NOT NULL DEFAULT '0' ,
***************
*** 76,80 ****
#
! CREATE TABLE /*!32312 IF NOT EXISTS*/ pmc_users (
session_id varchar(32) NOT NULL DEFAULT '' ,
u_time int(11) unsigned NOT NULL DEFAULT '0' ,
--- 80,85 ----
#
! DROP TABLE /*!32312 IF EXISTS*/ pmc_users;
! CREATE TABLE pmc_users (
session_id varchar(32) NOT NULL DEFAULT '' ,
u_time int(11) unsigned NOT NULL DEFAULT '0' ,
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 15:50:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands
In directory usw-pr-cvs1:/tmp/cvs-serv9622/chat/lib/commands
Modified Files:
help.cmd.php3
Log Message:
Fixed a case sensitive typo
Index: help.cmd.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/help.cmd.php3,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** help.cmd.php3 2001/04/05 00:43:50 1.1
--- help.cmd.php3 2001/04/16 15:50:16 1.2
***************
*** 31,35 ****
'window.parent.pmcHelpPopup(' . ((L_CHARSET == 'windows-1256') ? 610 : 10) . ');',
'// -->',
! '</SCRIPT>'
);
--- 31,35 ----
'window.parent.pmcHelpPopup(' . ((L_CHARSET == 'windows-1256') ? 610 : 10) . ');',
'// -->',
! '</script>'
);
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 14:33:09
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29682/chat/lib
Modified Files:
db_sessions.lib.php3
Log Message:
Oups, I forgot to uncomment a line
Index: db_sessions.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/db_sessions.lib.php3,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** db_sessions.lib.php3 2001/04/14 17:51:47 1.7
--- db_sessions.lib.php3 2001/04/16 14:33:05 1.8
***************
*** 426,432 ****
else
{
! // $dbSessionDbLink->close();
header('Location: ' . $dbSessionInitUrl);
! return false;
}
}
--- 426,432 ----
else
{
! $dbSessionDbLink->close();
header('Location: ' . $dbSessionInitUrl);
! exit();
}
}
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 14:18:02
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs In directory usw-pr-cvs1:/tmp/cvs-serv27716/docs Modified Files: feedback.txt Added Files: bug_report.txt Log Message: Add a bug report model... no comment ***** Bogus filespec: - ***** Bogus filespec: 0.14/docs --- NEW FILE --- To report bugs, either do it at the 'Bug Tracking System' from our SourceForge account (http://phpmychat.sorceforge.net/) either fill the form below and send it to the php...@ya... e-mail address. Please be as descriptive as possible. You may think it's something that affects everyone, but a many times it's specific to a browser or operating system. So please be thorough. In the case of Bug Tracking, there is *never* too much information or documentation or description. Thanks for your help, the phpHeaven-team +--------------------------------------------------------------------------+ | phpMyChat version 0.14.3 - beta1 | +--------------------------------------------------------------------------+ | The server side: | | - Operating system and release number: | | - the server name and release number: | | - the php version that is running: | | - the database management system name and release number that is | | running: | | | | The client side: | | - Operating system and release number: | | - the browser name and release number: | +--------------------------------------------------------------------------+ | A brief description of the bug you faced: | | | | | | | +--------------------------------------------------------------------------+ | Details: | | | | | | | | | | | | | | | | | | | | | | | | | +--------------------------------------------------------------------------+ Index: feedback.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/feedback.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** feedback.txt 2001/02/25 18:26:32 1.1.1.1 --- feedback.txt 2001/04/16 14:17:59 1.2 *************** *** 8,16 **** If you have found a bug you can help us! ! ! Please be as descriptive as possible. You may think it's something that ! affects everyone, but a many times it's specific to a browser or ! operating system. So please be thorough. In the case of Bug Tracking, ! there is *never* too much information or documentation or description. --- 8,12 ---- If you have found a bug you can help us! ! Please have a look at the 'docs/bug_report.txt' file. |
|
From: Lo?c C. <lo...@us...> - 2001-04-16 13:45:41
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs
In directory usw-pr-cvs1:/tmp/cvs-serv23222/docs
Modified Files:
changes.txt
Log Message:
Add modifications related to the 0.14.3 release
***** Bogus filespec: -
***** Bogus filespec: 0.14/docs
Index: changes.txt
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/changes.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** changes.txt 2001/02/28 19:07:46 1.3
--- changes.txt 2001/04/16 13:45:38 1.4
***************
*** 8,11 ****
--- 8,27 ----
+ v 0.14.3 - 16/04/2001
+ """""""""""""""""""""
+
+ ENHANCEMENT : clicking on the connection status button (at the 'exit' frame) if it turns
+ to red now frees the submit button at the 'input' frame.
+ ENHANCEMENT : gender of the user is displayed in the users list rather than the whois
+ icon.
+ ENHANCEMENT : some translations have been completed and Malay has been added.
+ BUG FIXED : overlapped chat name rooms with Netscape 4+.
+ BUG FIXED : the 'refresh' header is not a valid one according to RFC specifications:
+ it's actually just an HTML one, then it has been moved back in an HTML meta
+ tag.
+ CHANGE : the 'C_BAD_WORDS' setting has been renamed to 'C_NO_SWEAR' in the
+ configuration file.
+
+
v 0.14.2 - 27/02/2001
"""""""""""""""""""""
***************
*** 182,186 ****
JavaScript1.1+ enabled browsers thanks to
Tomas Haluza <th...@ki...>, else display the drop down list.
! ENHANCEMENT : Added a 'bad words' filter thanks to Gustavo Iwamoto <iw...@za...>
and Fabiano R. Prestes <zo...@po...>
ENHANCEMENT : Added persistent connection mode that allows much faster and non-blinking
--- 198,202 ----
JavaScript1.1+ enabled browsers thanks to
Tomas Haluza <th...@ki...>, else display the drop down list.
! ENHANCEMENT : Added a 'swear words' filter thanks to Gustavo Iwamoto <iw...@za...>
and Fabiano R. Prestes <zo...@po...>
ENHANCEMENT : Added persistent connection mode that allows much faster and non-blinking
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 12:48:32
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv14894/chat
Modified Files:
users_low.php3 users.php3
Log Message:
Fix some bugs that one can faced if a room's name like one of the keywords '%*%'
Index: users_low.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_low.php3,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** users_low.php3 2001/04/14 17:51:47 1.9
--- users_low.php3 2001/04/16 12:48:29 1.10
***************
*** 148,152 ****
. '<span class="small">'
. '<bdo dir="' . $textDirection . '"></bdo>'
! . ' (%NUMROWS%)'
. '</span><br />';
--- 148,152 ----
. '<span class="small">'
. '<bdo dir="' . $textDirection . '"></bdo>'
! . ' (%NUM ROWS%)'
. '</span><br />';
***************
*** 201,205 ****
$usersList[] = '';
$usersList[] = '';
! $usersList[2] = str_replace('%NUMROWS%', $usersCnt, $usersList[2]);
--- 201,205 ----
$usersList[] = '';
$usersList[] = '';
! $usersList[2] = str_replace('%NUM ROWS%', $usersCnt, $usersList[2]);
***************
*** 216,220 ****
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username '
! . 'WHERE usr.room = \'%OTHER%\' '
. 'ORDER BY usr.username';
}
--- 216,220 ----
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. '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';
}
***************
*** 223,231 ****
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg '
! . 'WHERE usr.room = \'%OTHER%\' '
. '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%\' '
. 'ORDER BY usr.username';
}
--- 223,231 ----
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg '
! . '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';
}
***************
*** 234,238 ****
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 '
. 'FROM ' . C_USR_TBL . ' usr '
! . 'WHERE usr.room = \'%OTHER%\' '
. 'ORDER BY usr.username';
}
--- 234,238 ----
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 '
. 'FROM ' . C_USR_TBL . ' usr '
! . 'WHERE usr.room = \'%OTHER ROOM%\' '
. 'ORDER BY usr.username';
}
***************
*** 250,254 ****
$usersDetails = array();
$slashedOther = pmcSlashSingleQuotes($roomName);
! $dbLink->query(str_replace('%OTHER%', $slashedOther, $otherRoomsQuery));
while (list($otherUser, $latin1, $status, $gender) = $dbLink->nextRecord())
{
--- 250,254 ----
$usersDetails = array();
$slashedOther = pmcSlashSingleQuotes($roomName);
! $dbLink->query(str_replace('%OTHER ROOM%', $slashedOther, $otherRoomsQuery));
while (list($otherUser, $latin1, $status, $gender) = $dbLink->nextRecord())
{
***************
*** 276,280 ****
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%';
reset($othersRooms);
--- 276,280 ----
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEW ROOM%';
reset($othersRooms);
***************
*** 288,292 ****
$usersList[] = '<!-- The others rooms currently in use -->';
$usersList[] = '<p>';
! $usersList[] = '<a href="' . str_replace('%NEWROOM%', urlencode($roomName), $joinUrl) . '" target="_parent">' . htmlspecialchars($roomName) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo> '
. '(' . $usersInCnt . ')</span><br />';
--- 288,292 ----
$usersList[] = '<!-- The others rooms currently in use -->';
$usersList[] = '<p>';
! $usersList[] = '<a href="' . str_replace('%NEW ROOM%', urlencode($roomName), $joinUrl) . '" target="_parent">' . htmlspecialchars($roomName) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo> '
. '(' . $usersInCnt . ')</span><br />';
***************
*** 349,353 ****
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%';
$usersList[] = '<!-- The others default and public rooms -->';
--- 349,353 ----
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEW ROOM%';
$usersList[] = '<!-- The others default and public rooms -->';
***************
*** 365,369 ****
$usersList[] = '<p>';
$usersList[] = "\t"
! . '<a href="' . str_replace('%NEWROOM%', urlencode($tmpRoom), $joinUrl) . '" target="_parent">' . htmlspecialchars($tmpRoom) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo>'
. ' (0)</span>';
--- 365,369 ----
$usersList[] = '<p>';
$usersList[] = "\t"
! . '<a href="' . str_replace('%NEW ROOM%', urlencode($tmpRoom), $joinUrl) . '" target="_parent">' . htmlspecialchars($tmpRoom) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo>'
. ' (0)</span>';
Index: users.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users.php3,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** users.php3 2001/04/14 17:51:47 1.13
--- users.php3 2001/04/16 12:48:30 1.14
***************
*** 146,150 ****
. '<span class="small">'
. '<bdo dir="' . $textDirection . '"></bdo>'
! . ' (%NUMROWS%)'
. '</span><br />';
$usersList[] = '<div style="margin-bottom: 10px">';
--- 146,150 ----
. '<span class="small">'
. '<bdo dir="' . $textDirection . '"></bdo>'
! . ' (%NUM ROWS%)'
. '</span><br />';
$usersList[] = '<div style="margin-bottom: 10px">';
***************
*** 200,204 ****
$usersList[] = '';
$usersList[] = '';
! $usersList[1] = str_replace('%NUMROWS%', $usersCnt, $usersList[1]);
--- 200,204 ----
$usersList[] = '';
$usersList[] = '';
! $usersList[1] = str_replace('%NUM ROWS%', $usersCnt, $usersList[1]);
***************
*** 215,219 ****
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. 'FROM ' . C_USR_TBL . ' usr LEFT JOIN ' . C_REG_TBL . ' reg ON usr.username = reg.username '
! . 'WHERE usr.room = \'%OTHER%\' '
. 'ORDER BY usr.username';
}
--- 215,219 ----
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. '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';
}
***************
*** 222,230 ****
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg '
! . 'WHERE usr.room = \'%OTHER%\' '
. '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%\' '
. 'ORDER BY usr.username';
}
--- 222,230 ----
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, reg.gender '
. 'FROM ' . C_USR_TBL . ' usr, ' . C_REG_TBL . ' reg '
! . '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';
}
***************
*** 233,237 ****
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 '
. 'FROM ' . C_USR_TBL . ' usr '
! . 'WHERE usr.room = \'%OTHER%\' '
. 'ORDER BY usr.username';
}
--- 233,237 ----
$otherRoomsQuery = 'SELECT usr.username, usr.latin1, usr.status, 0 '
. 'FROM ' . C_USR_TBL . ' usr '
! . 'WHERE usr.room = \'%OTHER ROOM%\' '
. 'ORDER BY usr.username';
}
***************
*** 249,253 ****
$usersDetails = array();
$slashedOther = pmcSlashSingleQuotes($roomName);
! $dbLink->query(str_replace('%OTHER%', $slashedOther, $otherRoomsQuery));
while (list($otherUser, $latin1, $status, $gender) = $dbLink->nextRecord())
{
--- 249,253 ----
$usersDetails = array();
$slashedOther = pmcSlashSingleQuotes($roomName);
! $dbLink->query(str_replace('%OTHER ROOM%', $slashedOther, $otherRoomsQuery));
while (list($otherUser, $latin1, $status, $gender) = $dbLink->nextRecord())
{
***************
*** 276,280 ****
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%';
reset($othersRooms);
--- 276,280 ----
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEW ROOM%';
reset($othersRooms);
***************
*** 294,298 ****
. '<img name="imEx" src="images/closed.gif" width="9" height="9" border="0" alt="' . L_EXPCOL . '" /></a>'
. ' '
! . '<a href="' . str_replace('%NEWROOM%', urlencode($roomName), $joinUrl) . '" target="_parent">' . htmlspecialchars($roomName) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo> '
. '(' . $usersInCnt . ')</span>';
--- 294,298 ----
. '<img name="imEx" src="images/closed.gif" width="9" height="9" border="0" alt="' . L_EXPCOL . '" /></a>'
. ' '
! . '<a href="' . str_replace('%NEW ROOM%', urlencode($roomName), $joinUrl) . '" target="_parent">' . htmlspecialchars($roomName) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo> '
. '(' . $usersInCnt . ')</span>';
***************
*** 357,361 ****
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%';
$usersList[] = '<!-- The others default and public rooms -->';
--- 357,361 ----
. '?' . dbSessionSID('GET')
. $pmcQueryArgSeparator . 'exitMessage=1'
! . $pmcQueryArgSeparator . 'newTargetRoom=1%NEW ROOM%';
$usersList[] = '<!-- The others default and public rooms -->';
***************
*** 376,380 ****
$usersList[] = '<div id="Parent' . $id . '" class="parent" style="margin-top: 5px; cursor: hand">';
$usersList[] = "\t"
! . '<a href="' . str_replace('%NEWROOM%', urlencode($tmpRoom), $joinUrl) . '" target="_parent">' . htmlspecialchars($tmpRoom) . '</a>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo>'
. ' (0)</span>';
--- 376,380 ----
$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>'
. '<span class="small"><bdo dir="' . $textDirection . '"></bdo>'
. ' (0)</span>';
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 12:31:38
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv12985/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
Oups the previous fix creates a bug...
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** main_index.lib.php3 2001/04/16 12:24:29 1.15
--- main_index.lib.php3 2001/04/16 12:31:36 1.16
***************
*** 101,106 ****
* Defines the language to be used
*/
! if (!dbSessionIsRegistered('lang') || !empty($lang))
! include('./' . _CHAT_PATH . 'localization/languages.lib.' . C_EXTENSION);
require('./' . _CHAT_PATH . 'localization/' . $dbSessionVars['lang'] . '/chat.loc');
--- 101,105 ----
* Defines the language to be used
*/
! require('./' . _CHAT_PATH . 'localization/languages.lib.' . C_EXTENSION);
require('./' . _CHAT_PATH . 'localization/' . $dbSessionVars['lang'] . '/chat.loc');
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 12:24:33
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv12012/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
Fix a security issue
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** main_index.lib.php3 2001/04/14 16:05:06 1.14
--- main_index.lib.php3 2001/04/16 12:24:29 1.15
***************
*** 101,111 ****
* Defines the language to be used
*/
! if (!empty($lang)
! && file_exists('./' . _CHAT_PATH . 'localization/' . $lang . '/chat.loc'))
! {
! $dbSessionVars['lang'] = $lang;
! unset($lang);
! }
! require('./' . _CHAT_PATH . 'localization/languages.lib.' . C_EXTENSION);
require('./' . _CHAT_PATH . 'localization/' . $dbSessionVars['lang'] . '/chat.loc');
--- 101,106 ----
* Defines the language to be used
*/
! if (!dbSessionIsRegistered('lang') || !empty($lang))
! include('./' . _CHAT_PATH . 'localization/languages.lib.' . C_EXTENSION);
require('./' . _CHAT_PATH . 'localization/' . $dbSessionVars['lang'] . '/chat.loc');
***************
*** 381,384 ****
--- 376,385 ----
// Updates tables
include('./' . _CHAT_PATH . 'lib/index_libs/do_enter_db_work.lib.' . C_EXTENSION);
+ $dbSessionDbLink->close();
+ unset($dbSessionDbLink);
+ // The db link below should be closed but this can't be done under
+ // Apache because links id aren't updated :(
+ // $dbLink->close();
+ // unset($dbLink);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "DTD/xhtml1-frameset.dtd">
***************
*** 400,404 ****
</html>
<?php
- $dbLink->close();
exit();
} // end of the case where entering the chat is allowed
--- 401,404 ----
***************
*** 833,837 ****
dbSessionUnregister($toUnregister);
dbSessionSave();
! $dbLink->close();
} // end of the 'pmcStartpageLayout()' function
?>
--- 833,842 ----
dbSessionUnregister($toUnregister);
dbSessionSave();
! $GLOBALS['dbSessionDbLink']->close();
! unset($dbSessionDbLink);
! // The db link below should be closed but this can't be done under Apache
! // because links id aren't updated :(
! //$dbLink->close();
! //unset($dbLink);
} // end of the 'pmcStartpageLayout()' function
?>
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 12:24:33
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization
In directory usw-pr-cvs1:/tmp/cvs-serv12012/chat/localization
Modified Files:
tutorial.lib.php3 languages.lib.php3 admin.lib.php3
Log Message:
Fix a security issue
Index: tutorial.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/tutorial.lib.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tutorial.lib.php3 2001/04/10 16:58:35 1.2
--- tutorial.lib.php3 2001/04/16 12:24:29 1.3
***************
*** 49,55 ****
while ($notFound && list($key, $name) = each($availableTutorials))
{
! // $envType = 1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
// 2 for the 'HTTP_USER_AGENT' one
! if ( ($envType == 1 && eregi('^' . $key . '$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])' . $key . '(;|\]|\))', $str)))
{
--- 49,57 ----
while ($notFound && list($key, $name) = each($availableTutorials))
{
! // $envType = 0 for a simple variable,
! // 1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
// 2 for the 'HTTP_USER_AGENT' one
! if ( ($envType == 0 && strcasecmp($name, $str) == 0)
! || ($envType == 1 && eregi('^' . $key . '$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])' . $key . '(;|\]|\))', $str)))
{
***************
*** 96,104 ****
* Finds the appropriate language file
*/
! // If a language is defined in a cookie, ensures the translation exists
! if (isset($cookieLang)
! && file_exists('./localization/' . $cookieLang . '/tutorial.loc'))
{
! $lang = $cookieLang;
}
--- 98,114 ----
* Finds the appropriate language file
*/
! // No multi-language support -> use the default language
! if (!C_MULTI_LANG)
{
! $lang = C_LANGUAGE;
! }
!
! // A language is defined in a cookie or a variable, ensures the translation
! // exists
! else if (isset($lang) || isset($cookieLang))
! {
! $toCheck = (isset($lang)) ? $lang : $cookieLang;
! $lang = '';
! pmcTutorialDetect($toCheck, 0);
}
Index: languages.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/languages.lib.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** languages.lib.php3 2001/04/10 16:58:35 1.2
--- languages.lib.php3 2001/04/16 12:24:29 1.3
***************
*** 49,55 ****
while ($notFound && list($key, $name) = each($availableLanguages))
{
! // $envType = 1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
// 2 for the 'HTTP_USER_AGENT' one
! if ( ($envType == 1 && eregi('^' . $key . '$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])' . $key . '(;|\]|\))', $str)))
{
--- 49,57 ----
while ($notFound && list($key, $name) = each($availableLanguages))
{
! // $envType = 0 for a simple session value,
! // 1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
// 2 for the 'HTTP_USER_AGENT' one
! if ( ($envType == 0 && strcasecmp($name, $str) == 0)
! || ($envType == 1 && eregi('^' . $key . '$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])' . $key . '(;|\]|\))', $str)))
{
***************
*** 102,117 ****
* Finds the appropriate language file
*/
! // The language is already defined
! if ((dbSessionIsRegistered('lang') && !empty($dbSessionVars['lang']))
! || C_MULTI_LANG == 0)
{
// void
}
!
! // If a language is defined in a cookie, ensures the translation exists
! else if (isset($cookieLang)
! && file_exists('./' . _CHAT_PATH . 'localization/' . $cookieLang . '/chat.loc'))
{
! $dbSessionVars['lang'] = $cookieLang;
}
--- 104,126 ----
* Finds the appropriate language file
*/
! // No multi-language support -> use the default language
! if (!C_MULTI_LANG)
{
+ $dbSessionVars['lang'] = C_LANGUAGE;
+ }
+ // The language is already defined among session data and the user doesn't
+ // want it to be changed -> do nothing
+ else if ((dbSessionIsRegistered('lang') && !empty($dbSessionVars['lang']))
+ && empty($lang))
+ {
// void
}
! // A language is defined in a cookie or a variable, ensures the translation
! // exists
! else if (isset($lang) || isset($cookieLang))
{
! $toCheck = (isset($lang)) ? $lang : $cookieLang;
! unset($lang);
! pmcLangDetect($toCheck, 0);
}
Index: admin.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/admin.lib.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** admin.lib.php3 2001/04/10 16:58:35 1.2
--- admin.lib.php3 2001/04/16 12:24:29 1.3
***************
*** 49,59 ****
while ($notFound && list($key, $name) = each($availableAdmins))
{
! // $envType = 1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
// 2 for the 'HTTP_USER_AGENT' one
! if ( ($envType == 1 && eregi('^' . $key . '$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])' . $key . '(;|\]|\))', $str)))
{
! $lang = $availableAdmins[$key];
! $notFound = false;
}
}
--- 49,61 ----
while ($notFound && list($key, $name) = each($availableAdmins))
{
! // $envType = 0 for a simple cookie value,
! // 1 for the 'HTTP_ACCEPT_LANGUAGE' environment variable,
// 2 for the 'HTTP_USER_AGENT' one
! if ( ($envType == 0 && strcasecmp($name, $str) == 0)
! || ($envType == 1 && eregi('^' . $key . '$', $str))
|| ($envType == 2 && eregi('(\(|\[|;[[:space:]])' . $key . '(;|\]|\))', $str)))
{
! $$dbSessionVars['lang'] = $availableAdmins[$key];
! $notFound = false;
}
}
***************
*** 98,105 ****
*/
// If a language is defined in a cookie, ensures the translation exists
! if (isset($cookieLang)
! && file_exists('./localization/' . $cookieLang . '/admin.loc'))
{
! $lang = $cookieLang;
}
--- 100,106 ----
*/
// If a language is defined in a cookie, ensures the translation exists
! if (isset($cookieLang))
{
! pmcTutorialDetect($cookieLang, 0);
}
***************
*** 120,127 ****
// If no translation has been retained, uses the default one
! if (!isset($lang))
! $lang = (file_exists('./localization/' . C_LANGUAGE . '/admin.loc'))
! ? C_LANGUAGE
! : 'english';
// Clears the table
--- 121,128 ----
// If no translation has been retained, uses the default one
! if (empty($lang))
! $dbSessionVars['lang'] = (file_exists('./localization/' . C_LANGUAGE . '/admin.loc'))
! ? C_LANGUAGE
! : 'english';
// Clears the table
|
|
From: Lo?c C. <lo...@us...> - 2001-04-16 12:24:33
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv12012/chat
Modified Files:
users_popup_low.php3 users_popup.php3 tutorial_popup.php3
Log Message:
Fix a security issue
Index: users_popup_low.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_popup_low.php3,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** users_popup_low.php3 2001/04/14 17:51:47 1.8
--- users_popup_low.php3 2001/04/16 12:24:29 1.9
***************
*** 64,80 ****
* Defines the language to be used
*/
! if (!dbSessionIsRegistered('lang'))
! {
! if (empty($lang)
! || !file_exists('./localization/' . $lang . '/chat.loc'))
! {
! $dbSessionVars['lang'] = '';
! include('./localization/languages.lib.' . C_EXTENSION);
! }
! else
! {
! $dbSessionVars['lang'] = $lang;
! }
! }
require('./localization/' . $dbSessionVars['lang'] . '/chat.loc');
$textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr';
--- 64,70 ----
* Defines the language to be used
*/
! if ( !dbSessionIsRegistered('lang')
! || (isset($lang) && $dbSessionVars['lang'] != $lang))
! include('./localization/languages.lib.' . C_EXTENSION);
require('./localization/' . $dbSessionVars['lang'] . '/chat.loc');
$textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr';
Index: users_popup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_popup.php3,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** users_popup.php3 2001/04/14 17:51:47 1.8
--- users_popup.php3 2001/04/16 12:24:29 1.9
***************
*** 63,79 ****
* Defines the language to be used
*/
! if (!dbSessionIsRegistered('lang'))
! {
! if (empty($lang)
! || !file_exists('./localization/' . $lang . '/chat.loc'))
! {
! $dbSessionVars['lang'] = '';
! include('./localization/languages.lib.' . C_EXTENSION);
! }
! else
! {
! $dbSessionVars['lang'] = $lang;
! }
! }
require('./localization/' . $dbSessionVars['lang'] . '/chat.loc');
$textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr';
--- 63,69 ----
* Defines the language to be used
*/
! if ( !dbSessionIsRegistered('lang')
! || (isset($lang) && $dbSessionVars['lang'] != $lang))
! include('./localization/languages.lib.' . C_EXTENSION);
require('./localization/' . $dbSessionVars['lang'] . '/chat.loc');
$textDirection = (L_CHARSET == 'windows-1256') ? 'rtl' : 'ltr';
Index: tutorial_popup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/tutorial_popup.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tutorial_popup.php3 2001/04/10 16:58:34 1.2
--- tutorial_popup.php3 2001/04/16 12:24:29 1.3
***************
*** 45,54 ****
* Defines the translation to be used
*/
! if (empty($lang)
! || !file_exists('./localization/' . $lang . '/tutorial.loc'))
! {
! $lang = '';
! include('./localization/tutorial.lib.' . C_EXTENSION);
! }
/**
--- 45,49 ----
* Defines the translation to be used
*/
! require('./localization/tutorial.lib.' . C_EXTENSION);
/**
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:26:39
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv10206/chat
Modified Files:
help_popup.php3
Log Message:
Add the new 'img' command
Index: help_popup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/help_popup.php3,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** help_popup.php3 2001/04/12 23:45:34 1.5
--- help_popup.php3 2001/04/15 21:26:37 1.6
***************
*** 255,258 ****
--- 255,263 ----
<td><?php echo(L_HELP_CMD_6); ?></td>
</tr>
+ <tr><th align="<?php echo($cellAlign); ?>" colspan="2"><a href="#" onclick="pmcCmd2Input('/IMG', false); return false" class="sender">/img</a></th></tr>
+ <tr>
+ <td width="10"> </td>
+ <td><?php echo(L_HELP_CMD_21); ?></td>
+ </tr>
<tr><th align="<?php echo($cellAlign); ?>" colspan="2"><a href="#" onclick="pmcCmd2Input('/INVITE', true); return false" class="sender">/invite {<?php echo(L_HELP_USR); ?>}</a></th></tr>
<tr>
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:19:56
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv8755/chat
Modified Files:
profile_reg.php3 profile_del.php3
Log Message:
Some optimization work...
Index: profile_reg.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** profile_reg.php3 2001/04/13 11:21:45 1.6
--- profile_reg.php3 2001/04/15 21:19:54 1.7
***************
*** 209,215 ****
--- 209,220 ----
$dbSessionVars['pwdHash'] = $pwdHash;
dbSessionSave();
+ // The db link should be closed but this can't be done under Apache because
+ // links id aren't updated :(
+ // $dbSessionDbLink->close();
+ // unset($dbSessionDbLink);
}
}
$dbLink->close();
+ unset($dbLink);
}
} // end of the 'do register' work
Index: profile_del.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_del.php3,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** profile_del.php3 2001/04/13 11:21:45 1.5
--- profile_del.php3 2001/04/15 21:19:54 1.6
***************
*** 105,109 ****
$dbLink->query("DELETE FROM " . C_REG_TBL . " WHERE username = '" . pmcSlashSingleQuotes($dbSessionVars['authUsername']) . "'");
$message = L_REG_21;
! $dbLink->close();
dbSessionDestroy();
}
--- 105,112 ----
$dbLink->query("DELETE FROM " . C_REG_TBL . " WHERE username = '" . pmcSlashSingleQuotes($dbSessionVars['authUsername']) . "'");
$message = L_REG_21;
! // The db link should be closed but this can't be done under Apache because
! // links id aren't updated :(
! // $dbLink->close();
! // unset($dbLink);
dbSessionDestroy();
}
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/czech
Modified Files:
tutorial.loc chat.loc
Log Message:
Add the new 'img' command
Index: tutorial.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech/tutorial.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tutorial.loc 2001/04/11 23:06:12 1.2
--- tutorial.loc 2001/04/15 21:18:18 1.3
***************
*** 465,468 ****
--- 465,472 ----
?>
<li>
+ La <b>commande Img</b> permet de basculer l'affichage des émoticons de leur forme graphique à leur forme textuelle et inversement.<br /><br />Tapez "/img" sans les guillemets.
+ <br /><br />
+ </li>
+ <li>
Pøíkaz <b>Notify</b> umo¾òuje pøepínat mezi zapnutím a vypnutím
zobrazování upozornìní, kdy¾ nìjaký jiný u¾ivatel vejde nebo odejde
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/czech/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:12 1.2
--- chat.loc 2001/04/15 21:18:18 1.3
***************
*** 204,207 ****
--- 204,208 ----
define('L_HELP_CMD_19', 'Umo¾ní moderátorovi místnosti nebo administrátorovi zakázat u¾ivateli pøístup do místnosti po administrátorem zvolenou dobu.<br />Administrátor mù¾e zakázat u¾ivateli pøístup ikdy¾ se u¾ivatel zrovna nachází v jiné místnosti. Pou¾itím \'<b> * </b>\' se pøístup u¾ivateli zaká¾e nav¾dy.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
//message frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/chinese_traditional
Modified Files:
tutorial.loc chat.loc
Log Message:
Add the new 'img' command
Index: tutorial.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional/tutorial.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tutorial.loc 2001/04/11 23:06:12 1.2
--- tutorial.loc 2001/04/15 21:18:18 1.3
***************
*** 414,417 ****
--- 414,421 ----
?>
<li>
+ La <b>commande Img</b> permet de basculer l'affichage des émoticons de leur forme graphique à leur forme textuelle et inversement.<br /><br />Tapez "/img" sans les guillemets.
+ <br /><br />
+ </li>
+ <li>
¨Ï¥Î<b>Notify «ü¥O</b>¤Á´«Åã¥Ü©Î¤£Åã¥Ü¨Ï¥ÎªÌ¶i¤J©MÂ÷¶}²á¤Ñ«Çªº°T®§
<br /><br />Áä¤J "/notify" ¤£§tÂù¤Þ¸¹.
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/chinese_traditional/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:12 1.2
--- chat.loc 2001/04/15 21:18:18 1.3
***************
*** 206,209 ****
--- 206,210 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
// messages frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/bosnian
Modified Files:
tutorial.loc chat.loc
Log Message:
Add the new 'img' command
Index: tutorial.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian/tutorial.loc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** tutorial.loc 2001/04/11 23:06:12 1.3
--- tutorial.loc 2001/04/15 21:18:18 1.4
***************
*** 409,412 ****
--- 409,416 ----
?>
<li>
+ La <b>commande Img</b> permet de basculer l'affichage des émoticons de leur forme graphique à leur forme textuelle et inversement.<br /><br />Tapez "/img" sans les guillemets.
+ <br /><br />
+ </li>
+ <li>
<b>Komanda za oznake</b> dopusta vam da ukljucite ili iskljucite opciju vidjenja oznaka kada drugi korisnici udju ili izadju iz chat sobe. By default this option is <?php echo((C_NOTIFY) ? 'on' : 'off'); ?> and the notices <?php echo((C_NOTIFY) ? 'will' : 'won\'t'); ?> be seen.<br /><br />Type "/notify" without quotes.
<br /><br />
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/bosnian/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:12 1.2
--- chat.loc 2001/04/15 21:18:18 1.3
***************
*** 204,207 ****
--- 204,208 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to "banish" an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
// messages frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:50
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/arabic
Modified Files:
tutorial.loc chat.loc
Log Message:
Add the new 'img' command
Index: tutorial.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic/tutorial.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tutorial.loc 2001/04/11 23:06:12 1.2
--- tutorial.loc 2001/04/15 21:18:18 1.3
***************
*** 438,442 ****
}
echo("\n");
!
if (C_NOTIFY)
{
--- 438,447 ----
}
echo("\n");
! ?>
! <li>
! La <b>commande Img</b> permet de basculer l'affichage des émoticons de leur forme graphique à leur forme textuelle et inversement.<br /><br />Tapez "/img" sans les guillemets.
! <br /><br />
! </li>
! <?php
if (C_NOTIFY)
{
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/arabic/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:12 1.2
--- chat.loc 2001/04/15 21:18:18 1.3
***************
*** 203,206 ****
--- 203,207 ----
define('L_HELP_CMD_19', 'ÇáÓãÇÍ áãÓÄæáí ÇáÓÇÍÇÊ æÇáãÑÇÞÈ ÇáÚÇã "ÈÅÈÚÇÏ" Ãí ÔÎÕ ãä ÓÇÍÉ ÇáÍæÇÑ ÍÓÈ ÇáæÞÊ ÇáÐí ÍÏÏå ÇáãÑÇÞÈ ÇáÚÇã.<br />æÈÚÏ ÅäÞÖÇÁ ÇáãÏÉ íÓÊØíÚ ÇáÚÖæ ÇáÏÎæá Çáì ÇáÓÇÍÉ ¡ æááÅÈÚÇÏ Çáßáí íãßä ÅÖÇÝÉ "<b> * </b>" ÚäÏåÇ Óíßæä "ÅÈÚÇÏ ãä ÌãíÚ ÇáÓÇÍÇÊ" æáä íÓÊØíÚ ÇáÏÎæá Çáì Ãí ÓÇÍÉ..');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
// messages frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/thai
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/thai/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:20 1.3
***************
*** 203,206 ****
--- 203,207 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
//message frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/portuguese
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/portuguese/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:20 1.3
***************
*** 204,207 ****
--- 204,208 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
//message frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/swedish
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/swedish/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:20 1.3
***************
*** 204,207 ****
--- 204,208 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
// messages frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/romanian
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/romanian/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:20 1.3
***************
*** 217,220 ****
--- 217,221 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
// messages frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/polish
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/polish/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:20 1.3
***************
*** 204,207 ****
--- 204,208 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
//message frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:25
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/norwegian
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/norwegian/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:20 1.3
***************
*** 204,207 ****
--- 204,208 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
//message frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:24
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/malay
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/malay/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:19 1.3
***************
*** 203,206 ****
--- 203,207 ----
define('L_HELP_CMD_19', 'Benarkan pentadbir sistem borak untuk "menghalang" seseorang pengguna dari memasuki bilik borak untuk sesuatu masa tertentu yang telah ditetapkan oleh pentadbir.<br />Pentadbir juga boleh menghalang seseorang pengguna dari memasuki terus ke semua bilik borak dengan menggunakan \'<b> * </b>\'.');
define('L_HELP_CMD_20', 'Terangkan apa yang anda sedang lakukan tanpa merujuk kepada diri anda sendiri.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
// messages frame
|
|
From: Lo?c C. <lo...@us...> - 2001-04-15 21:18:24
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic
In directory usw-pr-cvs1:/tmp/cvs-serv7923/chat/localization/icelandic
Modified Files:
chat.loc
Log Message:
Add the new 'img' command
Index: chat.loc
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/icelandic/chat.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** chat.loc 2001/04/11 23:06:15 1.2
--- chat.loc 2001/04/15 21:18:19 1.3
***************
*** 205,208 ****
--- 205,209 ----
define('L_HELP_CMD_19', 'Allow the moderator(s) of a room or the administrator to \'banish\' an user from the room for a time defined by the administrator.<br />The later can banish an user chatting in an other room than the one he is into and use the \'<b> * </b>\' setting to banish \'for ever\' an user from the chat as the whole.');
define('L_HELP_CMD_20', 'Describe what you\'re doing without refer yourself.');
+ define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
//message frame
|