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-11-26 22:48:17
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/argentinian_spanish In directory usw-pr-cvs1:/tmp/cvs-serv31473/chat/localization/argentinian_spanish Modified Files: regex.txt Log Message: Merged patch #460465 - trim added to language detection func. thanks to Eduardo Cintas ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/argentinian_spanish Index: regex.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/argentinian_spanish/regex.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** regex.txt 2001/05/30 19:16:40 1.1 --- regex.txt 2001/11/26 22:48:14 1.2 *************** *** 1 **** ! es[-_]ar --- 1 ---- ! es[-_]ar \ No newline at end of file |
|
From: Lo?c C. <lo...@us...> - 2001-11-26 22:48:17
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization
In directory usw-pr-cvs1:/tmp/cvs-serv31473/chat/localization
Modified Files:
tutorial.lib.php3 languages.lib.php3 admin.lib.php3
Log Message:
Merged patch #460465 - trim added to language detection func. thanks to Eduardo Cintas
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/localization
Index: tutorial.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/tutorial.lib.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** tutorial.lib.php3 2001/05/31 18:06:30 1.4
--- tutorial.lib.php3 2001/11/26 22:48:14 1.5
***************
*** 26,30 ****
while($NotFound && list($key, $name) = each($AvailableTutorials))
{
! if (($From == 1 && eregi("^(".$key.")$",$Str)) || ($From == 2 && eregi("(\(|\[|;[[:space:]])(".$key.")(;|\]|\))",$Str)))
{
$L = $AvailableTutorials[$key];
--- 26,30 ----
while($NotFound && list($key, $name) = each($AvailableTutorials))
{
! if (($From == 1 && eregi("^(".trim($key).")$",$Str)) || ($From == 2 && eregi("(\(|\[|;[[:space:]])(".trim($key).")(;|\]|\))",$Str)))
{
$L = $AvailableTutorials[$key];
Index: languages.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/languages.lib.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** languages.lib.php3 2001/05/31 18:06:30 1.4
--- languages.lib.php3 2001/11/26 22:48:14 1.5
***************
*** 29,33 ****
while($NotFound && list($key, $name) = each($AvailableLanguages))
{
! if (($From == 1 && eregi("^(".$key.")$",$Str)) || ($From == 2 && eregi("(\(|\[|;[[:space:]])(".$key.")(;|\]|\))",$Str)))
{
$L = $AvailableLanguages[$key];
--- 29,33 ----
while($NotFound && list($key, $name) = each($AvailableLanguages))
{
! if (($From == 1 && eregi("^(".trim($key).")$",$Str)) || ($From == 2 && eregi("(\(|\[|;[[:space:]])(".trim($key).")(;|\]|\))",$Str)))
{
$L = $AvailableLanguages[$key];
Index: admin.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/admin.lib.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** admin.lib.php3 2001/05/31 18:06:30 1.4
--- admin.lib.php3 2001/11/26 22:48:14 1.5
***************
*** 26,30 ****
while($NotFound && list($key, $name) = each($AvailableAdmin))
{
! if (($From == 1 && eregi("^(".$key.")$",$Str)) || ($From == 2 && eregi("(\(|\[|;[[:space:]])(".$key.")(;|\]|\))",$Str)))
{
$L = $AvailableAdmin[$key];
--- 26,30 ----
while($NotFound && list($key, $name) = each($AvailableAdmin))
{
! if (($From == 1 && eregi("^(".trim($key).")$",$Str)) || ($From == 2 && eregi("(\(|\[|;[[:space:]])(".trim($key).")(;|\]|\))",$Str)))
{
$L = $AvailableAdmin[$key];
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 22:39:11
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/languages
In directory usw-pr-cvs1:/tmp/cvs-serv29339/chat/install/languages
Modified Files:
languages.setup.php3
Log Message:
Merged patch #459547 - argentinian_spanish thanks to Eduardo Cintas
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/install/languages
Index: languages.setup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/install/languages/languages.setup.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** languages.setup.php3 2001/05/30 19:16:40 1.4
--- languages.setup.php3 2001/11/26 22:39:02 1.5
***************
*** 9,13 ****
"fr([-_][[:alpha:]]{2})?|french" => "french",
"it|italian" => "italian",
! "es[-_]ar" => "argentinian spanish",
"es([-_][[:alpha:]]{2})?|spanish" => "spanish"
);
--- 9,13 ----
"fr([-_][[:alpha:]]{2})?|french" => "french",
"it|italian" => "italian",
! "es[-_]ar" => "argentinian_spanish",
"es([-_][[:alpha:]]{2})?|spanish" => "spanish"
);
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 22:16:11
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv21865/chat/lib/index_libs
Modified Files:
index_validation.lib.php3 do_enter_db_work.lib.php3
Log Message:
Renamed "password" field to "passwd" in the table "pmc_reg_users"
Index: index_validation.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/index_validation.lib.php3,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** index_validation.lib.php3 2001/06/10 14:57:48 1.14
--- index_validation.lib.php3 2001/11/26 22:16:08 1.15
***************
*** 114,118 ****
if ($error1 == '')
{
! $dbLink->query("SELECT password FROM " . C_REG_TBL . " WHERE username = '$slashedNick' LIMIT 1");
$isRegNick = (list($regUserPassword) = $dbLink->nextRecord());
if ($isRegNick)
--- 114,118 ----
if ($error1 == '')
{
! $dbLink->query("SELECT passwd FROM " . C_REG_TBL . " WHERE username = '$slashedNick' LIMIT 1");
$isRegNick = (list($regUserPassword) = $dbLink->nextRecord());
if ($isRegNick)
Index: do_enter_db_work.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_db_work.lib.php3,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** do_enter_db_work.lib.php3 2001/11/26 20:22:16 1.24
--- do_enter_db_work.lib.php3 2001/11/26 22:16:08 1.25
***************
*** 105,109 ****
{
$slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $pmcPassword));
! $dbLink->query("UPDATE " . C_REG_TBL . " SET password = '$slashedPswd', reg_time = $currentTime, ip = '$ip' WHERE username = '$slashedNick'");
}
--- 105,109 ----
{
$slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $pmcPassword));
! $dbLink->query("UPDATE " . C_REG_TBL . " SET passwd = '$slashedPswd', reg_time = $currentTime, ip = '$ip' WHERE username = '$slashedNick'");
}
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 22:16:11
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv21865/chat/lib
Modified Files:
login.lib.php3
Log Message:
Renamed "password" field to "passwd" in the table "pmc_reg_users"
Index: login.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/login.lib.php3,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** login.lib.php3 2001/06/13 17:59:44 1.11
--- login.lib.php3 2001/11/26 22:16:08 1.12
***************
*** 60,64 ****
// Ensures the password is a correct one
$dbLoginLink = new pmcDB;
! $dbLoginLink->query("SELECT password FROM " . C_REG_TBL . " WHERE username = '$slashedAuthUsername' LIMIT 1");
if (list($storedPassword) = $dbLoginLink->nextRecord())
{
--- 60,64 ----
// Ensures the password is a correct one
$dbLoginLink = new pmcDB;
! $dbLoginLink->query("SELECT passwd FROM " . C_REG_TBL . " WHERE username = '$slashedAuthUsername' LIMIT 1");
if (list($storedPassword) = $dbLoginLink->nextRecord())
{
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 22:16:11
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database
In directory usw-pr-cvs1:/tmp/cvs-serv21865/chat/install/database
Modified Files:
pgsql.sql mysql.sql
Log Message:
Renamed "password" field to "passwd" in the table "pmc_reg_users"
Index: pgsql.sql
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/pgsql.sql,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** pgsql.sql 2001/11/26 20:22:15 1.7
--- pgsql.sql 2001/11/26 22:16:08 1.8
***************
*** 51,55 ****
username varchar(30) NOT NULL DEFAULT '' ,
charset varchar(20) NOT NULL DEFAULT 'x-user-defined' ,
! password varchar(32) NOT NULL DEFAULT '' ,
firstname varchar(64) NOT NULL DEFAULT '' ,
lastname varchar(64) NOT NULL DEFAULT '' ,
--- 51,55 ----
username varchar(30) NOT NULL DEFAULT '' ,
charset varchar(20) NOT NULL DEFAULT 'x-user-defined' ,
! passwd varchar(32) NOT NULL DEFAULT '' ,
firstname varchar(64) NOT NULL DEFAULT '' ,
lastname varchar(64) NOT NULL DEFAULT '' ,
Index: mysql.sql
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/mysql.sql,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** mysql.sql 2001/11/26 20:22:15 1.10
--- mysql.sql 2001/11/26 22:16:08 1.11
***************
*** 49,53 ****
username varchar(30) NOT NULL DEFAULT '' ,
charset varchar(20) NOT NULL DEFAULT 'x-user-defined' ,
! password varchar(32) NOT NULL DEFAULT '' ,
firstname varchar(64) NOT NULL DEFAULT '' ,
lastname varchar(64) NOT NULL DEFAULT '' ,
--- 49,53 ----
username varchar(30) NOT NULL DEFAULT '' ,
charset varchar(20) NOT NULL DEFAULT 'x-user-defined' ,
! passwd varchar(32) NOT NULL DEFAULT '' ,
firstname varchar(64) NOT NULL DEFAULT '' ,
lastname varchar(64) NOT NULL DEFAULT '' ,
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 22:16:11
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv21865/chat
Modified Files:
setup.php3 profile_remind.php3 profile_reg.php3
profile_edit.php3
Log Message:
Renamed "password" field to "passwd" in the table "pmc_reg_users"
Index: setup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/setup.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** setup.php3 2001/04/19 08:51:33 1.2
--- setup.php3 2001/11/26 22:16:08 1.3
***************
*** 303,307 ****
$dbLink = new pmcDB;
! $dbLink->query("SELECT password FROM $cRegTbl WHERE username = '" . pmcSlashSingleQuotes($admLog) . "' AND perms != 'admin' LIMIT 1");
if (list($oldPassword) = $dbLink->nextRecord())
{
--- 303,307 ----
$dbLink = new pmcDB;
! $dbLink->query("SELECT passwd FROM $cRegTbl WHERE username = '" . pmcSlashSingleQuotes($admLog) . "' AND perms != 'admin' LIMIT 1");
if (list($oldPassword) = $dbLink->nextRecord())
{
***************
*** 340,344 ****
$admQuery = "UPDATE $cRegTbl SET "
. "username = '" . pmcSlashSingleQuotes($admLog) . "', "
! . "password = '" . $adminPwd . "', "
. "firstname = '" . pmcSlashSingleQuotes($admFname) . "', "
. "lastname = '" . pmcSlashSingleQuotes($admLname) . "', "
--- 340,344 ----
$admQuery = "UPDATE $cRegTbl SET "
. "username = '" . pmcSlashSingleQuotes($admLog) . "', "
! . "passwd = '" . $adminPwd . "', "
. "firstname = '" . pmcSlashSingleQuotes($admFname) . "', "
. "lastname = '" . pmcSlashSingleQuotes($admLname) . "', "
Index: profile_remind.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_remind.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** profile_remind.php3 2001/06/13 17:59:44 1.4
--- profile_remind.php3 2001/11/26 22:16:08 1.5
***************
*** 117,121 ****
$slashedNick = pmcSlashSingleQuotes($pmcProfNick);
$dbLink = new pmcDB;
! $dbLink->query("SELECT charset, password, email FROM " . C_REG_TBL . " WHERE username = '$slashedNick'");
list($theCharset, $thePassword, $theEmail) = $dbLink->nextRecord();
$dbLink->cleanResults();
--- 117,121 ----
$slashedNick = pmcSlashSingleQuotes($pmcProfNick);
$dbLink = new pmcDB;
! $dbLink->query("SELECT charset, passwd, email FROM " . C_REG_TBL . " WHERE username = '$slashedNick'");
list($theCharset, $thePassword, $theEmail) = $dbLink->nextRecord();
$dbLink->cleanResults();
Index: profile_reg.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** profile_reg.php3 2001/11/26 20:23:40 1.19
--- profile_reg.php3 2001/11/26 22:16:08 1.20
***************
*** 224,228 ****
$slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $pmcProfPassword));
$regQuery = 'INSERT INTO ' . C_REG_TBL . ' '
! . '(username, charset, password, firstname, lastname, country, website, email, showemail, reg_time, ip, gender) '
. 'VALUES ('
. "'$slashedNick', '" . L_CHARSET . "', '$slashedPswd', '" . pmcSlashSingleQuotes($pmcProfFirstName) . "', '" . pmcSlashSingleQuotes($pmcProfLastName) . "', '" . pmcSlashSingleQuotes($pmcProfSpokenLang) . "', '$pmcProfWebSite', '$pmcProfEmail', $pmcProfShowEmail, " . time() . ", '$ip', $pmcProfGender"
--- 224,228 ----
$slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $pmcProfPassword));
$regQuery = 'INSERT INTO ' . C_REG_TBL . ' '
! . '(username, charset, passwd, firstname, lastname, country, website, email, showemail, reg_time, ip, gender) '
. 'VALUES ('
. "'$slashedNick', '" . L_CHARSET . "', '$slashedPswd', '" . pmcSlashSingleQuotes($pmcProfFirstName) . "', '" . pmcSlashSingleQuotes($pmcProfLastName) . "', '" . pmcSlashSingleQuotes($pmcProfSpokenLang) . "', '$pmcProfWebSite', '$pmcProfEmail', $pmcProfShowEmail, " . time() . ", '$ip', $pmcProfGender"
Index: profile_edit.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_edit.php3,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** profile_edit.php3 2001/06/13 17:59:44 1.16
--- profile_edit.php3 2001/11/26 22:16:08 1.17
***************
*** 231,235 ****
// Updates the profile and the banishment and rights tables if required
! $dbLink->query("UPDATE " . C_REG_TBL . " SET username = '$slashedNick', charset = '" . L_CHARSET . "', password = '$slashedPswd', firstname='" . pmcSlashSingleQuotes($pmcProfFirstName) . "', lastname = '" . pmcSlashSingleQuotes($pmcProfLastName) . "', country = '" . pmcSlashSingleQuotes($pmcProfSpokenLang) . "', website = '$pmcProfWebSite', email = '$pmcProfEmail', showemail = $pmcProfShowEmail, reg_time = " . time() . ", ip = '$ip', gender = $pmcProfGender WHERE username = '" . pmcSlashSingleQuotes($dbSessionVars['authUsername']) . "'");
if ($pmcProfNick != $dbSessionVars['authUsername'])
{
--- 231,235 ----
// Updates the profile and the banishment and rights tables if required
! $dbLink->query("UPDATE " . C_REG_TBL . " SET username = '$slashedNick', charset = '" . L_CHARSET . "', passwd = '$slashedPswd', firstname='" . pmcSlashSingleQuotes($pmcProfFirstName) . "', lastname = '" . pmcSlashSingleQuotes($pmcProfLastName) . "', country = '" . pmcSlashSingleQuotes($pmcProfSpokenLang) . "', website = '$pmcProfWebSite', email = '$pmcProfEmail', showemail = $pmcProfShowEmail, reg_time = " . time() . ", ip = '$ip', gender = $pmcProfGender WHERE username = '" . pmcSlashSingleQuotes($dbSessionVars['authUsername']) . "'");
if ($pmcProfNick != $dbSessionVars['authUsername'])
{
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 21:52:41
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/azerbaijani In directory usw-pr-cvs1:/tmp/cvs-serv13691 Added Files: regex.txt localized.chat.php3 flag.gif Log Message: New translation thanks to Emin Huseynov ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/azerbaijani --- NEW FILE --- az|azerbaijani --- NEW FILE --- <?php // File : azeri.lang.php3 // Translated by Emin Huseynov www.azersoft.com // extra header for charset $Charset = "windows-1254"; // medium font size in pt. $FontSize = 10; // welcome page define("L_TUTORIAL", "Yardım"); define("L_WEL_1", "Yazılar göstərilən vaxt müddətindən sonra silinəcək-"); define("L_WEL_2", "saat. İstifadəçi adları göstərilən vaxt müddətindən sonra silinəcək:"); define("L_WEL_3", "dəqiqə ..."); define("L_CUR_1", "İstifadəçilərin sayı:"); define("L_CUR_2", "."); define("L_CUR_3", "Ümumi otaqlarda istifadəçilrin sayı:"); define("L_CUR_4", "Şəxsi otaqlarda istifadəçilrin sayı:"); define("L_SET_1", "Lütfən özünüzə ..."); define("L_SET_2", "istifadəçi adı seçin"); define("L_SET_3", "Göstərilən ismarıcların sayı:"); define("L_SET_4", "Səhifə yenilənmələlin müddəti-"); define("L_SET_5", "Otaq seçin ..."); define("L_SET_6", "Əsas otaqlar-"); define("L_SET_7", "Seçiminizi edin ..."); define("L_SET_8", "İstifadəçilər tərəfindən yaradılmış şəxsi otaqlar"); define("L_SET_9", "Otaq yaradın: "); define("L_SET_10", "ümümi"); define("L_SET_11", "şəxsi"); define("L_SET_12", "otaq"); define("L_SET_13", "Söhbətə "); define("L_SET_14", "başla"); define("L_SRC", "bu ünvanda pulsuz əldə edilə bilər:"); define("L_SECS", "saniyə"); define("L_MIN", "dəqiqə"); define("L_MINS", "dəqiqə"); // registration stuff: define("L_REG_1", "parolunuzu daxil edin"); define("L_REG_1r", "<br>(parol yalnız qeydiyyatda olanlar üçün <br>lazımdır, əks halda buranı boş saxlayın)"); define("L_REG_2", "Hesabınıza daxil olun"); define("L_REG_3", "Qeydiyyatdan keç"); define("L_REG_4", "Profilinizə baxın"); define("L_REG_5", "İstifadəçini sil"); define("L_REG_6", "İstifadəçinin qeydiyyatı"); define("L_REG_7", "parol"); define("L_REG_8", "e-mail ünvanınız"); define("L_REG_9", "Qeydiyyatdan uğurla keçdiniz"); define("L_REG_10", "Geri"); define("L_REG_11", "Məlumatın dəyişdirilməsi"); define("L_REG_12", "İstifadəçi haqqında məlumatın dəyişdirilməsi"); define("L_REG_13", "İstifadəçinin ləğv edilməsi"); define("L_REG_14", "İstifadəçi adı:"); define("L_REG_15", "Daxil olun"); define("L_REG_16", "Dəyişin"); define("L_REG_17", "İstifadəçini haqqında məlumat dəyişildi."); define("L_REG_18", "Siz bu otaqdan moderator tərəfindən qovulmusuz!"); define("L_REG_19", "Adınızı doğurdanmı silmək istəyirsiniz?"); define("L_REG_20", " Bəli"); define("L_REG_21", "Adınızı qeydiyyatdan silindi."); define("L_REG_22", "Xeyir"); define("L_REG_25", "Bağla"); define("L_REG_30", "ad"); define("L_REG_31", "soyad"); define("L_REG_32", "VEB"); define("L_REG_33", "e-mail ünvanını başqalarıda görsün"); define("L_REG_34", "İstifadəçini haqqında məlumatın dəyişilməsi"); define("L_REG_35", "İnzibat"); define("L_REG_36", "Dillər"); define("L_REG_37", "Belə <span class=\"error\">*</span> işarəli məlumat mütləq daxil olunmalıdır"); define("L_REG_39", "Olduğunuz otaq Administrator tərəfindən bağlandı."); define("L_REG_45", "cins"); define("L_REG_46", "kişi"); define("L_REG_47", "qadın"); // e-mail validation stuff define("L_EMAIL_VAL_1", "Daxil olmaq üçün parametrlər"); define("L_EMAIL_VAL_2", "Xoş gəldiniz!"); define("L_EMAIL_VAL_Err", "Daxili xəta. Administratorla əlaqə saxlayın.: <a href=\"mailto:%s\">%s</a>."); define("L_EMAIL_VAL_Done", "Parolunuz <br>ünvanınıza göndərildi."); // admin stuff define("L_ADM_1", "%s bu otaqda moderator deyil"); define("L_ADM_2", "Siz qeydiyyatda deyilsiz."); // error messages define("L_ERR_USR_1", "Bu ad artıq istifadə olunur. Başqasını seçin."); define("L_ERR_USR_2", "İstifadəçi adı seçməlisiniz."); define("L_ERR_USR_3", "Bu ad qeydiyyatdadır. Parolu bilirsinizsə daxil edin və ya başqa ad seçin."); define("L_ERR_USR_4", "Parol səhv daxil olunub."); define("L_ERR_USR_5", "İstifadəçi adı daxil olunmalıdır."); define("L_ERR_USR_6", " Parol daxil olunmalıdır."); define("L_ERR_USR_7", "E-mail ünvanı daxil olunmalıdır."); define("L_ERR_USR_8", "E-mail ünvanı düzgün daxil olunmalıdır."); define("L_ERR_USR_9", "İstifadəçi adı artıq istifadə olunur."); define("L_ERR_USR_10", "İstifadəçi adı və ya parol səhvdir."); define("L_ERR_USR_11", "Administrator olmalısınız."); define("L_ERR_USR_12", "Administratoru silmək olmaz."); define("L_ERR_USR_13", "Özünüz otaq yaratmaq istəsəz, gərək qeydiyyatdan keçəsiz."); define("L_ERR_USR_14", "Daxil olmaqdan əvvəl qeydiyyatdan keçməlisiz."); define("L_ERR_USR_15", "Tam adınızı daxil edin."); define("L_ERR_USR_16", "İstifadəçi adında fəza (boşluq), vergül və ya əks kəsr işarəsindən istifadə etmək qadağandır (\)."); define("L_ERR_USR_17", "Bu otaq mövcud deyil, və sizin yeni otaq yaratmaq ixtiyarınız yoxdur."); define("L_ERR_USR_18", "Seçdiyiniz adda qadağan olunmuş söz mövcuddur."); define("L_ERR_USR_19", "Siz eyni zamanda iki otaqda söhbət edə bilməzsiz."); define("L_ERR_USR_20", "Sizə bu otaqa və ya ümumiyyətlə chata giriş qadağan olunub."); define("L_ERR_ROM_1", "Otaq adında vergül və ya əks kəsr işarəsindən istifadə etmək qadağandır."); define("L_ERR_ROM_2", "Yaratmaq istədiyiniz otaq adında qadağan olunmuş söz mövcuddur."); define("L_ERR_ROM_3", "Bu adla otaq artıq mövcuddur və ümumidir."); define("L_ERR_ROM_4", "Seçdiyiniz otaq adı səhvdir."); // users frame or popup define("L_EXIT", "Çıxış."); define("L_DETACH", "Detach"); define("L_EXPCOL_ALL", "Hamısını göstər/gizlət."); define("L_CONN_STATE", "Bağlantı statusu."); define("L_CHAT", "Chat"); define("L_USER", "istifadəçi"); define("L_USERS", "istifadəçi"); define("L_NO_USER", "hal hazırda istifadəçi yoxdur"); define("L_ROOM", "otaq"); define("L_ROOMS", "otaqlar"); define("L_EXPCOL", "Otağı göstər/gizlət."); define("L_BEEP", "İstifadəçi daxil olduqda siqnal olsun və ya olmasın."); define("L_PROFILE", "Şəxsi məlumatı göstər"); define("L_NO_PROFILE", "Şəxsi məlumatı gizlət"); // input frame define("L_HLP", "Yardım"); define("L_BAD_CMD", "Bu cür əmr mövcud deyil!"); define("L_ADMIN", "%s artıq administratordu!"); define("L_IS_MODERATOR", "%s artıq moderatodu!"); define("L_NO_MODERATOR", "Bu əmri yalnız bu otağın moderatoru istifadə edə bilər!"); define("L_MODERATOR", "%s indi bu otaqda moderatordu."); define("L_NONEXIST_USER", "Bu otaqda %s adlı istifadəçi yoxdur."); define("L_NONREG_USER", "%s adlı istifadəçi qeydiyyatdan keçməyib."); define("L_NONREG_USER_IP", "İstifadəçinin IP ünvanı: %s."); define("L_NO_KICKED", " %s moderator və ya administrator olduğundan qovula bilməz."); define("L_KICKED", "%s müvəffəqiyyətlə qovuldu."); define("L_NO_BANISHED", " %s moderator və ya administrator olduğundan girişi qadağan oluna bilməz."); define("L_BANISHED", " %s üçün giriş qadağan olundu."); define("L_SVR_TIME", "Cari vaxt: "); define("L_NO_SAVE", "Saxlamaq üçün heç bir mə`lumat yoxdur.!"); define("L_NO_ADMIN", "Bu əmr yalnız administrator tərəfindən istifadə oluna bilər."); define("L_ANNOUNCE", " E'LAN "); define("L_INVITE", "%s bu otaqa də`vət edir: <a href=\"#\" onClick=\"window.parent.runCmd('%s','%s')\">%s</a> !"); define("L_INVITE_REG", " Bu otağa daxil olmaq üçün qeydiyyatdan keçməlisiniz."); define("L_INVITE_DONE", "%s də`vət olundu."); define("L_OK", "Göndər."); // help popup define("L_HELP_TIT_1", "Təbəssümlər"); define("L_HELP_TIT_2", "İsmarıclar üçün mətn formatı."); define("L_HELP_FMT_1", "Qalın, kursiv və ya altından xətt çəkilmiş mətni yaratmaq üçün bu teqlərdən istifadə etmək olar: <B> </B>, <I> </I> or <U> </U>. Məsələn, <B>bu mətn</B> bu cür görsənəcək<b> bu mətn</b>."); define("L_HELP_FMT_2", "Mətndə İnternet əlaqəsi (URL) yaratmaq üçün heç bir əlavə əməliyyat lazım deyil. Sadəcə ünvanı daxil edin."); define("L_HELP_TIT_3", "Əmrlər"); define("L_HELP_USR", "istifadəçi"); define("L_HELP_MSG", "göndəriş"); define("L_HELP_ROOM", "otaq"); define("L_HELP_CMD_0", "əmrin mütləq hissəsi belə işarə edilir: { } , mütləq olmayan isə belə: [ ]"); define("L_HELP_CMD_1a", "Göstərilən göndərişlərin sayını müəyyən edin, ən azı 5 olmalıdır."); define("L_HELP_CMD_1b", "göndərişlər pəncərələrini yenidən yükləyir və n qədər son göndəriş göstərir (ən azı 5 göndəriş)"); define("L_HELP_CMD_2a", "göndərişlərin yenilənmə intervalını müəyyən edir (saniyələrlə).<br>müəyyən edilməyibsə və ya 3dən azdırsa yenilənmə yerinə yetirilmir və ya interval 10 saniyə olur."); define("L_HELP_CMD_2b", "göndərişlərin və isifadəçi siyahısının yenilənmə intervalını müəyyən edir (saniyələrlə).<br>müəyyən edilməyibsə və ya 3dən azdırsa yenilənmə yerinə yetirilmir və ya interval 10 saniyə olur."); define("L_HELP_CMD_3", "göndərişləri əks qayda ilə düzür"); define("L_HELP_CMD_4", "başqa otağa keçir, bu adla otaq olmasa yenisini yaradır (buna icazəniz varsa)<br>n rəqəmi şəxsi otaqlar üçün 0 , ümümi otaqlar üçün isə 1 olmalıdı (n verilmədikdə 1`ə bərabər olur)"); define("L_HELP_CMD_5", "Chat`ı xüsusi (qeyri-mütləq) ismarıc yazmaqla tərk etmək üçün."); define("L_HELP_CMD_6", "İstifadəçi adı verilibsə həmin istifadəçidən göndəriş gəlmir.<BR>İstifadəçi adı və "-" verilibsə həmin istifadəçidən, yalnız "-" olarsa bütün istifadəçilərdən göndəriş gəlməsinə icazə verilir.<BR>Komanda əlavə parametrsiz yazıldıqda bütün göndərişləri qadağan olunmuş istifadəçilərin siyahısı verilir."); define("L_HELP_CMD_7", "Əvvəl yazılmış göndəriş və ya əmri bərpa edir."); define("L_HELP_CMD_8", "Göndərişlərin vaxtını göstərmək/gizlətmək."); define("L_HELP_CMD_9", "İstifadəçini otaqdan qovmaq. Yalnız moderator tərəfindən verilə bilər."); define("L_HELP_CMD_10", "İstifadəçiyə şəxsi göndəriş (başqaları bu göndərişi görmür)."); define("L_HELP_CMD_11", "İstifadəçi haqqda mə`lumat verir."); define("L_HELP_CMD_12", "Şəxsi mə`lumatı dəyişmək üçün pəncərəni açır."); define("L_HELP_CMD_13", "İstifadəçilər girib-çıxdıqda məlumat verilsin/verilməsin."); define("L_HELP_CMD_14", "Bu otaqda administrator və ya moderatora başqalarınıda moderator etməyə icazə verir."); define("L_HELP_CMD_15", "Son 5 göndərişdən başqa hamısını silir."); define("L_HELP_CMD_16", "Son n göndərişi (sistem xəbərdarlıqlarından başqa) ayrıca HTML fayla yazır. n verilməsə bütün göndərişlər yazılır."); define("L_HELP_CMD_17", "Administratora bütün otaqlarda ümümi e`lan göndərilməsi icazə verilsin."); define("L_HELP_CMD_18", "Başqa otaqda olan istifadəçini cari otağa d`vət edir."); define("L_HELP_CMD_19", "Moderator və ya administrator tərəfindən istifadəçinin otağa girməyini müəyyən vaxt ərzində qadağan olunmasına icazə verilsin.<br>Sonradan həmin istifadəçiyə başqa bir otağa və ulduz işarəsini (<b>*</b>) istifadə etməklə bütün otaqlara giriş qadağan edilə bilər."); define("L_HELP_CMD_20", "Nə etdiyinizi izah edin."); // messages frame define("L_NO_MSG", "Hal hazırda göndəriş yoxdur...."); define("L_TODAY_DWN", "Bu günkü göndərişlər bu sətirdən aşağı yerləşir."); define("L_TODAY_UP", "Bu günkü göndərişlər bu sətirdən yuxarı yerləşir."); // message colors $TextColors = array( "Qara" => "#000000", "Qırmızı" => "#FF0000", "Yaşıl" => "#009900", "Göy" => "#0000FF", "Moruğu" => "#9900FF", "Tünd qırmızı" => "#990000", "Tünd yaşıl" => "#006600", "Tünd göy" => "#000099", "Lap tünd qırmızı" => "#996633", "Dəniz rəngi" => "#006699", "Kök rəngi" => "#FF6600"); // ignored popup define("L_IGNOR_TIT", "Bu istifadəçidən göndəriş qadağan olunub."); define("L_IGNOR_NON", "Heç bir istifadəçidən göndəriş qadağan olunmayıb."); // whois popup define("L_WHOIS_ADMIN", "Administrator"); define("L_WHOIS_MODER", "Moderator"); define("L_WHOIS_USER", "İstifadəçi"); // Notification messages of user entrance/exit define("L_ENTER_ROM", "%s chat'a daxil oldu"); define("L_EXIT_ROM", "%s chat'ı tərk etdi"); ?> --- NEW FILE --- GIF89a Dȹ§9À(ø¹t(N²j} AÖ´Í*Ù³.pP ´p~Kwn êê+w¯ß¿}ÿ ¦{°°a |
|
From: Lo?c C. <lo...@us...> - 2001-11-26 21:51:42
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/azerbaijani In directory usw-pr-cvs1:/tmp/cvs-serv13344/azerbaijani Log Message: Directory /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/azerbaijani added to the repository ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/localization/azerbaijani |
|
From: Lo?c C. <lo...@us...> - 2001-11-26 21:50:31
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/azerbaijani
In directory usw-pr-cvs1:/tmp/cvs-serv12934
Added Files:
regex.txt flag.gif chat.loc
Log Message:
New translation thanks to Emin Huseynov
--- NEW FILE ---
az|azerbaijani
--- NEW FILE ---
GIF89a
Dȹ§9À(ø¹t(N²j} AÖ´Í*Ù³.pP ´p~Kwn
êê+w¯ß¿}ÿ
¦{°°a
--- NEW FILE ---
<?php
//
// +--------------------------------------------------------------------------+
// | phpMyChat version 0.15.0 |
// +--------------------------------------------------------------------------+
// | Copyright (c) 2000-2001 The phpHeaven-team & the author |
// +--------------------------------------------------------------------------+
// | License: GNU/GPL - http://www.gnu.org/copyleft/gpl.html |
// +--------------------------------------------------------------------------+
// | Azeri translation of phpMyChat. |
// +--------------------------------------------------------------------------+
// | From the phpMyChat project: |
// | http://www.phpheaven.net/projects/phpMyChat/ |
// | |
// | Author: Emin Huseynov <em...@ba...> (www.azersoft.com) |
// +--------------------------------------------------------------------------+
//
// $Id: chat.loc,v 1.1 2001/11/26 21:50:28 loic1 Exp $
//
// extra header for charset
define('L_CHARSET', 'windows-1254');
// medium font size in pt.
define('L_FONT_SIZE', 10);
// welcome page
define('L_TUTORIAL', 'Yardım');
define('L_WEL_1', 'Yazılar göstərilən vaxt müddətindən sonra silinəcək-');
define('L_WEL_2', 'saat. İstifadəçi adları göstərilən vaxt müddətindən sonra silinəcək:');
define('L_WEL_3', 'dəqiqə ...');
define('L_CUR_1', 'İstifadəçilərin sayı:');
define('L_CUR_2', '.');
define('L_CUR_3', 'Ümumi otaqlarda istifadəçilrin sayı:');
define('L_CUR_4', 'Şəxsi otaqlarda istifadəçilrin sayı:');
define('L_SET_1', 'Lütfən özünüzə ...');
define('L_SET_2', 'istifadəçi adı seçin');
define('L_SET_3', 'Göstərilən ismarıcların sayı:');
define('L_SET_4', 'Səhifə yenilənmələlin müddəti-');
define('L_SET_5', 'Otaq seçin ...');
define('L_SET_6', 'Əsas otaqlar-');
define('L_SET_7', 'Seçiminizi edin ...');
define('L_SET_8', 'İstifadəçilər tərəfindən yaradılmış şəxsi otaqlar');
define('L_SET_9', 'Otaq yaradın: ');
define('L_SET_10', 'ümümi');
define('L_SET_11', 'şəxsi');
define('L_SET_12', 'otaq');
define('L_SET_13', 'Söhbətə ');
define('L_SET_14', 'başla');
define('L_SRC', 'bu ünvanda pulsuz əldə edilə bilər:');
define('L_SECS', 'saniyə');
define('L_MIN', 'dəqiqə');
define('L_MINS', 'dəqiqə');
// registration stuff:
define('L_REG_1', 'parolunuzu daxil edin');
define('L_REG_1r', '<br />(parol yalnız qeydiyyatda olanlar üçün<br />lazımdır, əks halda buranı boş saxlayın)');
define('L_REG_2', 'Hesabınıza daxil olun');
define('L_REG_3', 'Qeydiyyatdan keç');
define('L_REG_4', 'Profilinizə baxın');
define('L_REG_5', 'İstifadəçini sil');
define('L_REG_6', 'İstifadəçinin qeydiyyatı');
define('L_REG_7', 'parol');
define('L_REG_8', 'e-mail ünvanınız');
define('L_REG_9', 'Qeydiyyatdan uğurla keçdiniz');
define('L_REG_10', 'Geri');
define('L_REG_11', 'Məlumatın dəyişdirilməsi');
define('L_REG_12', 'İstifadəçi haqqında məlumatın dəyişdirilməsi');
define('L_REG_13', 'İstifadəçinin ləğv edilməsi');
define('L_REG_14', 'İstifadəçi adı:');
define('L_REG_15', 'Daxil olun');
define('L_REG_16', 'Dəyişin');
define('L_REG_17', 'İstifadəçini haqqında məlumat dəyişildi.');
define('L_REG_18', 'Siz bu otaqdan moderator tərəfindən qovulmusuz!');
define('L_REG_19', 'Adınızı doğurdanmı silmək istəyirsiniz?');
define('L_REG_20', ' Bəli');
define('L_REG_21', 'Adınızı qeydiyyatdan silindi.');
define('L_REG_22', 'Xeyir');
define('L_REG_25', 'Bağla');
define('L_REG_30', 'ad');
define('L_REG_31', 'soyad');
define('L_REG_32', 'VEB');
define('L_REG_33', 'e-mail ünvanını başqalarıda görsün');
define('L_REG_34', 'İstifadəçini haqqında məlumatın dəyişilməsi');
define('L_REG_35', 'İnzibat');
define('L_REG_36', 'Dillər');
define('L_REG_37', 'Belə <span class="error">*</span> işarəli məlumat mütləq daxil olunmalıdır');
define('L_REG_39', 'Olduğunuz otaq Administrator tərəfindən bağlandı.');
define('L_REG_45', 'cins');
define('L_REG_46', 'kişi');
define('L_REG_47', 'qadın');
define('L_REG_48', 'Password reminder');
define('L_REG_49', 'No user registered this nick!');
// e-mail validation stuff
define('L_EMAIL_VAL_1', 'Daxil olmaq üçün parametrlər');
define('L_EMAIL_VAL_2', 'Xoş gəldiniz!');
define('L_EMAIL_VAL_Err', 'Daxili xəta. Administratorla əlaqə saxlayın.: <a href="mailto:%s">%s</a>.');
define('L_EMAIL_VAL_Done', 'Parolunuz<br />ünvanınıza göndərildi.');
// admin stuff
define('L_ADM_1', '%s bu otaqda moderator deyil');
define('L_ADM_2', 'Siz qeydiyyatda deyilsiz.');
// error messages
define('L_ERR_USR_1', 'Bu ad artıq istifadə olunur. Başqasını seçin.');
define('L_ERR_USR_2', 'İstifadəçi adı seçməlisiniz.');
define('L_ERR_USR_3', 'Bu ad qeydiyyatdadır. Parolu bilirsinizsə daxil edin və ya başqa ad seçin.');
define('L_ERR_USR_4', 'Parol səhv daxil olunub.');
define('L_ERR_USR_5', 'İstifadəçi adı daxil olunmalıdır.');
define('L_ERR_USR_6', ' Parol daxil olunmalıdır.');
define('L_ERR_USR_7', 'E-mail ünvanı daxil olunmalıdır.');
define('L_ERR_USR_8', 'E-mail ünvanı düzgün daxil olunmalıdır.');
define('L_ERR_USR_9', 'İstifadəçi adı artıq istifadə olunur.');
define('L_ERR_USR_10', 'İstifadəçi adı və ya parol səhvdir.');
define('L_ERR_USR_11', 'Administrator olmalısınız.');
define('L_ERR_USR_12', 'Administratoru silmək olmaz.');
define('L_ERR_USR_13', 'Özünüz otaq yaratmaq istəsəz, gərək qeydiyyatdan keçəsiz.');
define('L_ERR_USR_14', 'Daxil olmaqdan əvvəl qeydiyyatdan keçməlisiz.');
define('L_ERR_USR_15', 'Tam adınızı daxil edin.');
define('L_ERR_USR_16', 'İstifadəçi adında fəza (boşluq), vergül və ya əks kəsr işarəsindən istifadə etmək qadağandır (\).');
define('L_ERR_USR_17', 'Bu otaq mövcud deyil, və sizin yeni otaq yaratmaq ixtiyarınız yoxdur.');
define('L_ERR_USR_18', 'Seçdiyiniz adda qadağan olunmuş söz mövcuddur.');
define('L_ERR_USR_19', 'Siz eyni zamanda iki otaqda söhbət edə bilməzsiz.');
define('L_ERR_USR_20', 'Sizə bu otaqa və ya ümumiyyətlə chata giriş qadağan olunub.');
define('L_ERR_USR_21', 'The maximum inactivity delay has been reached.');
define('L_ERR_ROM_1', 'Otaq adında vergül və ya əks kəsr işarəsindən istifadə etmək qadağandır.');
define('L_ERR_ROM_2', 'Yaratmaq istədiyiniz otaq adında qadağan olunmuş söz mövcuddur.');
define('L_ERR_ROM_3', 'Bu adla otaq artıq mövcuddur və ümumidir.');
define('L_ERR_ROM_4', 'Seçdiyiniz otaq adı səhvdir.');
define('L_ERR_ROM_5', 'The maximum number of connected users is reached.');
// users frame or popup
define('L_EXIT', 'Çıxış.');
define('L_DETACH', 'Detach');
define('L_EXPCOL_ALL', 'Hamısını göstər/gizlət.');
define('L_CONN_STATE', 'Bağlantı statusu.');
define('L_CHAT', 'Chat');
define('L_USER', 'istifadəçi');
define('L_USERS', 'istifadəçi');
define('L_NO_USER', 'hal hazırda istifadəçi yoxdur');
define('L_ROOM', 'otaq');
define('L_ROOMS', 'otaqlar');
define('L_EXPCOL', 'Otağı göstər/gizlət.');
define('L_BEEP', 'İstifadəçi daxil olduqda siqnal olsun və ya olmasın.');
define('L_PROFILE', 'Şəxsi məlumatı göstər');
define('L_NO_PROFILE', 'Şəxsi məlumatı gizlət');
// input frame
define('L_HLP', 'Yardım');
define('L_BAD_CMD', 'Bu cür əmr mövcud deyil!');
define('L_ADMIN', '%s artıq administratordu!');
define('L_IS_MODERATOR', '%s artıq moderatodu!');
define('L_NO_MODERATOR', 'Bu əmri yalnız bu otağın moderatoru istifadə edə bilər!');
define('L_MODERATOR', '%s indi bu otaqda moderatordu.');
define('L_NONEXIST_USER', 'Bu otaqda %s adlı istifadəçi yoxdur.');
define('L_NONREG_USER', '%s adlı istifadəçi qeydiyyatdan keçməyib.');
define('L_NONREG_USER_IP', 'İstifadəçinin IP ünvanı: %s.');
define('L_NO_KICKED', ' %s moderator və ya administrator olduğundan qovula bilməz.');
define('L_KICKED', '%s müvəffəqiyyətlə qovuldu.');
define('L_NO_BANISHED', ' %s moderator və ya administrator olduğundan girişi qadağan oluna bilməz.');
define('L_BANISHED', ' %s üçün giriş qadağan olundu.');
define('L_SVR_TIME', 'Cari vaxt: ');
define('L_NO_SAVE', 'Saxlamaq üçün heç bir mə`lumat yoxdur.!');
define('L_NO_ADMIN', 'Bu əmr yalnız administrator tərəfindən istifadə oluna bilər.');
define('L_ANNOUNCE', ' E\'LAN ');
define('L_INVITE', '%s bu otaqa də`vət edir: <a href="%s" target="_parent" onclick="window.parent.pmcRunCmd(\'%s\', \'%s\'); return false">%s</a> !');
define('L_INVITE_REG', ' Bu otağa daxil olmaq üçün qeydiyyatdan keçməlisiniz.');
define('L_INVITE_DONE', '%s də`vət olundu.');
define('L_OK', 'Göndər.');
// help popup
define('L_HELP_TIT_1', 'İsmarıclar üçün mətn formatı.');
define('L_HELP_FMT_1', 'Qalın, kursiv və ya altından xətt çəkilmiş mətni yaratmaq üçün bu teqlərdən istifadə etmək olar: <b> </b>, <i> <i> or <u> </u>. Məsələn, <b>bu mətn</b> bu cür görsənəcək<b> bu mətn</b>.');
define('L_HELP_FMT_2', 'Mətndə İnternet əlaqəsi (URL) yaratmaq üçün heç bir əlavə əməliyyat lazım deyil. Sadəcə ünvanı daxil edin.');
define('L_HELP_TIT_2', 'Əmrlər');
define('L_HELP_USR', 'istifadəçi');
define('L_HELP_MSG', 'göndəriş');
define('L_HELP_ROOM', 'otaq');
define('L_HELP_CMD_0', 'əmrin mütləq hissəsi belə işarə edilir: { } , mütləq olmayan isə belə: [ ]');
define('L_HELP_CMD_1a', 'Göstərilən göndərişlərin sayını müəyyən edin, ən azı 5 olmalıdır.');
define('L_HELP_CMD_1b', 'göndərişlər pəncərələrini yenidən yükləyir və n qədər son göndəriş göstərir (ən azı 5 göndəriş)');
define('L_HELP_CMD_2a', 'göndərişlərin yenilənmə intervalını müəyyən edir (saniyələrlə).<br />müəyyən edilməyibsə və ya 3dən azdırsa yenilənmə yerinə yetirilmir və ya interval 10 saniyə olur.');
define('L_HELP_CMD_2b', 'göndərişlərin və isifadəçi siyahısının yenilənmə intervalını müəyyən edir (saniyələrlə).<br />müəyyən edilməyibsə və ya 3dən azdırsa yenilənmə yerinə yetirilmir və ya interval 10 saniyə olur.');
define('L_HELP_CMD_3', 'göndərişləri əks qayda ilə düzür');
define('L_HELP_CMD_4', 'başqa otağa keçir, bu adla otaq olmasa yenisini yaradır (buna icazəniz varsa)<br />n rəqəmi şəxsi otaqlar üçün 0 , ümümi otaqlar üçün isə 1 olmalıdı (n verilmədikdə 1`ə bərabər olur)');
define('L_HELP_CMD_5', 'Chat`ı xüsusi (qeyri-mütləq) ismarıc yazmaqla tərk etmək üçün.');
define('L_HELP_CMD_6', 'İstifadəçi adı verilibsə həmin istifadəçidən göndəriş gəlmir.<br />İstifadəçi adı və "-" verilibsə həmin istifadəçidən, yalnız "-" olarsa bütün istifadəçilərdən göndəriş gəlməsinə icazə verilir.<br />Komanda əlavə parametrsiz yazıldıqda bütün göndərişləri qadağan olunmuş istifadəçilərin siyahısı verilir.');
define('L_HELP_CMD_7', 'Əvvəl yazılmış göndəriş və ya əmri bərpa edir.');
define('L_HELP_CMD_8', 'Göndərişlərin vaxtını göstərmək/gizlətmək.');
define('L_HELP_CMD_9', 'İstifadəçini otaqdan qovmaq. Yalnız moderator tərəfindən verilə bilər.');
define('L_HELP_CMD_10', 'İstifadəçiyə şəxsi göndəriş (başqaları bu göndərişi görmür).');
define('L_HELP_CMD_11', 'İstifadəçi haqqda mə`lumat verir.');
define('L_HELP_CMD_12', 'Şəxsi mə`lumatı dəyişmək üçün pəncərəni açır.');
define('L_HELP_CMD_13', 'İstifadəçilər girib-çıxdıqda məlumat verilsin/verilməsin.');
define('L_HELP_CMD_14', 'Bu otaqda administrator və ya moderatora başqalarınıda moderator etməyə icazə verir.');
define('L_HELP_CMD_15', 'Son 5 göndərişdən başqa hamısını silir.');
define('L_HELP_CMD_16', 'Son n göndərişi (sistem xəbərdarlıqlarından başqa) ayrıca HTML fayla yazır. n verilməsə bütün göndərişlər yazılır.');
define('L_HELP_CMD_17', 'Administratora bütün otaqlarda ümümi e`lan göndərilməsi icazə verilsin.');
define('L_HELP_CMD_18', 'Başqa otaqda olan istifadəçini cari otağa d`vət edir.');
define('L_HELP_CMD_19', 'Moderator və ya administrator tərəfindən istifadəçinin otağa girməyini müəyyən vaxt ərzində qadağan olunmasına icazə verilsin.<br />Sonradan həmin istifadəçiyə başqa bir otağa və ulduz işarəsini (<b> * </b>) istifadə etməklə bütün otaqlara giriş qadağan edilə bilər.');
define('L_HELP_CMD_20', 'Nə etdiyinizi izah edin.');
define('L_HELP_CMD_21', 'Enable/disable graphical smilies mode.');
define('L_HELP_CMD_22', 'Tell the other users you\'re not paying attention to the chat ou set you being back. You can also send a message with this command.');
// smilies popup
define('L_SMIL_TIT', 'Təbəssümlər');
define('L_SMIL_MAX', 'The <b>maximum number</b> of graphical smilies per message is <b>%s</b>.');
define('L_SMIL_CLICK', 'You can click on a smiley to insert the related text code inside your message.');
define('L_SMIL_MINE', 'If you are a registered user and if the administrator had defined a personnal smiley for you, you may insert the later in your message with the code \' :mine: \'.');
// messages frame
define('L_NO_MSG', 'Hal hazırda göndəriş yoxdur....');
define('L_TODAY_DWN', 'Bu günkü göndərişlər bu sətirdən aşağı yerləşir.');
define('L_TODAY_UP', 'Bu günkü göndərişlər bu sətirdən yuxarı yerləşir.');
// message colors
$textColors = array( 'Qara' => '#000000',
'Qırmızı' => '#FF0000',
'Yaşıl' => '#009900',
'Göy' => '#0000FF',
'Moruğu' => '#9900FF',
'Tünd qırmızı' => '#990000',
'Tünd yaşıl' => '#006600',
'Tünd göy' => '#000099',
'Lap tünd qırmızı' => '#996633',
'Dəniz rəngi' => '#006699',
'Kök rəngi' => '#FF6600');
// ignored popup
define('L_IGNOR_TIT', 'Bu istifadəçidən göndəriş qadağan olunub.');
define('L_IGNOR_NON', 'Heç bir istifadəçidən göndəriş qadağan olunmayıb.');
// whois popup
define('L_WHOIS_ADMIN', 'Administrator');
define('L_WHOIS_MODER', 'Moderator');
define('L_WHOIS_USER', 'İstifadəçi');
// Notification messages of user entrance/exit
define('L_ENTER_ROM', '%s chat\'a daxil oldu');
define('L_EXIT_ROM', '%s chat\'ı tərk etdi');
define('L_WELCOME', 'Welcome to our chat. Please obey the net etiquette while chatting: <i>try to be pleasant and polite</i>.');
?>
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 21:49:34
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/azerbaijani In directory usw-pr-cvs1:/tmp/cvs-serv12559/azerbaijani Log Message: Directory /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/azerbaijani added to the repository |
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:23:43
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv12503/chat
Modified Files:
profile_reg.php3
Log Message:
beautified the script
Index: profile_reg.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** profile_reg.php3 2001/09/17 09:32:11 1.18
--- profile_reg.php3 2001/11/26 20:23:40 1.19
***************
*** 185,189 ****
$ip = pmcGetIp();
! // Defines the password
if (C_EMAIL_PASWD)
{
--- 185,190 ----
$ip = pmcGetIp();
! // Defines the password and sends it to the e-mail address if
! // required
if (C_EMAIL_PASWD)
{
***************
*** 191,195 ****
$pmcProfPassword = pmcGenPassword();
- // Sends the password to the e-mail address if required
$recipient = array($pmcProfEmail => array($pmcProfNick, L_CHARSET));
$subject = '[' . APP_NAME . '] ' . L_EMAIL_VAL_1;
--- 192,195 ----
***************
*** 223,231 ****
{
$slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $pmcProfPassword));
! $regQuery = 'INSERT INTO ' . C_REG_TBL . ' '
! . '(username, charset, password, firstname, lastname, country, website, email, showemail, reg_time, ip, gender) '
! . 'VALUES ('
! . "'$slashedNick', '" . L_CHARSET . "', '$slashedPswd', '" . pmcSlashSingleQuotes($pmcProfFirstName) . "', '" . pmcSlashSingleQuotes($pmcProfLastName) . "', '" . pmcSlashSingleQuotes($pmcProfSpokenLang) . "', '$pmcProfWebSite', '$pmcProfEmail', $pmcProfShowEmail, " . time() . ", '$ip', $pmcProfGender"
! . ')';
$dbLink->query($regQuery);
$success = L_REG_9;
--- 223,231 ----
{
$slashedPswd = pmcSlashSingleQuotes(str_replace('\\', '\\\\', $pmcProfPassword));
! $regQuery = 'INSERT INTO ' . C_REG_TBL . ' '
! . '(username, charset, password, firstname, lastname, country, website, email, showemail, reg_time, ip, gender) '
! . 'VALUES ('
! . "'$slashedNick', '" . L_CHARSET . "', '$slashedPswd', '" . pmcSlashSingleQuotes($pmcProfFirstName) . "', '" . pmcSlashSingleQuotes($pmcProfLastName) . "', '" . pmcSlashSingleQuotes($pmcProfSpokenLang) . "', '$pmcProfWebSite', '$pmcProfEmail', $pmcProfShowEmail, " . time() . ", '$ip', $pmcProfGender"
! . ')';
$dbLink->query($regQuery);
$success = L_REG_9;
***************
*** 233,238 ****
$dbSessionVars['nick'] = $pmcProfNick;
! $dbSessionVars['password'] = (C_EMAIL_PASWD) ? "" : $pmcProfPassword;
!
dbSessionSave();
// The db link should be closed but this can't be done under Apache because
--- 233,239 ----
$dbSessionVars['nick'] = $pmcProfNick;
! // sigo: Add pmcProfPassword to session data only when don't
! // used "send password by email".
! $dbSessionVars['password'] = (C_EMAIL_PASWD) ? '' : $pmcProfPassword;
dbSessionSave();
// The db link should be closed but this can't be done under Apache because
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:23:17
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv12363/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
* added m_id in the pmc_messages table to fix messages loss in the message frame
* fix a bad display with ie6
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -r1.40 -r1.41
*** main_index.lib.php3 2001/09/17 08:29:03 1.40
--- main_index.lib.php3 2001/11/26 20:23:13 1.41
***************
*** 116,120 ****
* library
*/
! pmcHttpHeaders(L_CHARSET, true);
--- 116,120 ----
* library
*/
! pmcHttpHeaders(L_CHARSET, TRUE);
***************
*** 334,341 ****
$pmcPassword = '';
}
! $isRegUser = false;
$wasInRoom = '';
$previousId = '';
! $isCreateRoom = false;
--- 334,341 ----
$pmcPassword = '';
}
! $isRegUser = FALSE;
$wasInRoom = '';
$previousId = '';
! $isCreateRoom = FALSE;
***************
*** 353,357 ****
$targetRoom = $createRoomName;
$roomType = $createRoomType;
! $isCreateRoom = true;
}
// Room is among other public ones
--- 353,357 ----
$targetRoom = $createRoomName;
$roomType = $createRoomType;
! $isCreateRoom = TRUE;
}
// Room is among other public ones
***************
*** 532,536 ****
$isRegUser = ($dbSessionVars['status'] > 0);
$status = pmcRightLevel();
! $isRegUser = false;
}
else
--- 532,536 ----
$isRegUser = ($dbSessionVars['status'] > 0);
$status = pmcRightLevel();
! $isRegUser = FALSE;
}
else
***************
*** 599,603 ****
* @access public
*/
! function pmcStartpageHeaders($putTitle = true, $useIcon = true)
{
echo("\n");
--- 599,603 ----
* @access public
*/
! function pmcStartpageHeaders($putTitle = TRUE, $useIcon = TRUE)
{
echo("\n");
***************
*** 842,846 ****
// Horizontal alignement for cells topic
! $cellAlign = (L_CHARSET == 'windows-1256') ? 'left' : 'right';
echo("\n");
--- 842,847 ----
// Horizontal alignement for cells topic
! $cellAlign = (L_CHARSET == 'windows-1256') ? 'left' : 'right';
! $cellAlignInv = (L_CHARSET == 'windows-1256') ? 'right' : 'left';
echo("\n");
***************
*** 852,856 ****
<tr class="chatCell">
<td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td>
! <td valign="top" class="chatCell">
<input id="testSize" type="text" name="pmcNick" size="11" maxlength="20" value="<?php echo(htmlspecialchars($layoutNick)); ?>" class="chatBox" />
</td>
--- 853,857 ----
<tr class="chatCell">
<td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_SET_2); ?> :</td>
! <td align="<?php echo($cellAlignInv); ?>" valign="top" class="chatCell">
<input id="testSize" type="text" name="pmcNick" size="11" maxlength="20" value="<?php echo(htmlspecialchars($layoutNick)); ?>" class="chatBox" />
</td>
***************
*** 858,862 ****
<tr class="chatCell">
<td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_REG_1); ?> :</td>
! <td valign="top" class="chatCell" nowrap="nowrap">
<input type="password" name="pmcPassword" size="11" maxlength="20" class="chatBox" />
<?php
--- 859,863 ----
<tr class="chatCell">
<td align="<?php echo($cellAlign); ?>" valign="top" class="chatCell" nowrap="nowrap"><?php echo(L_REG_1); ?> :</td>
! <td align="<?php echo($cellAlignInv); ?>" valign="top" class="chatCell" nowrap="nowrap">
<input type="password" name="pmcPassword" size="11" maxlength="20" class="chatBox" />
<?php
***************
*** 943,947 ****
<?php
// Displays default rooms in the drop down list
! $defaultRoomFound = false;
$defaultRoomsString = '';
$prevRoom = $layoutRoom;
--- 944,948 ----
<?php
// Displays default rooms in the drop down list
! $defaultRoomFound = FALSE;
$defaultRoomsString = '';
$prevRoom = $layoutRoom;
***************
*** 962,966 ****
{
echo(' selected="selected"');
! $defaultRoomFound = true;
}
echo('>' . htmlspecialchars($tmpRoom) . '</option>');
--- 963,967 ----
{
echo(' selected="selected"');
! $defaultRoomFound = TRUE;
}
echo('>' . htmlspecialchars($tmpRoom) . '</option>');
***************
*** 988,992 ****
echo("\n");
! $dbLink->query("SELECT DISTINCT msg.room FROM " . C_MSG_TBL . " msg, " . C_ROOM_TBL . " rm WHERE (msg.room = rm.room_name AND rm.room_type = 1) AND msg.username NOT LIKE 'SYS %' ORDER BY room");
while (list($room) = $dbLink->nextRecord())
{
--- 989,993 ----
echo("\n");
! $dbLink->query("SELECT DISTINCT msg.room FROM " . C_MSG_TBL . " msg, " . C_ROOM_TBL . " rm WHERE msg.m_time > 0 AND msg.username NOT LIKE 'SYS %' AND (msg.room = rm.room_name AND rm.room_type = 1) ORDER BY room");
while (list($room) = $dbLink->nextRecord())
{
***************
*** 999,1003 ****
{
echo(' selected="selected"');
! $defaultRoomFound = true;
}
echo('>' . htmlspecialchars($room) . '</option>');
--- 1000,1004 ----
{
echo(' selected="selected"');
! $defaultRoomFound = TRUE;
}
echo('>' . htmlspecialchars($room) . '</option>');
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:22:20
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/admin
In directory usw-pr-cvs1:/tmp/cvs-serv12055/chat/admin
Modified Files:
admin3.php3
Log Message:
added m_id in the pmc_messages table to fix messages loss in the message frame
Index: admin3.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/admin/admin3.php3,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** admin3.php3 2001/06/10 14:59:13 1.5
--- admin3.php3 2001/11/26 20:22:15 1.6
***************
*** 80,84 ****
$dbLink->query("DELETE FROM " . C_USR_TBL . " WHERE room = '$room'");
$dbLink->query("DELETE FROM " . C_ROOM_TBL . " WHERE room_name = '$room'");
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE room = '$room'");
}// end ot the function 'cleanRoom()'
--- 80,84 ----
$dbLink->query("DELETE FROM " . C_USR_TBL . " WHERE room = '$room'");
$dbLink->query("DELETE FROM " . C_ROOM_TBL . " WHERE room_name = '$room'");
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_id > 0 AND room = '$room'");
}// end ot the function 'cleanRoom()'
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:22:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands
In directory usw-pr-cvs1:/tmp/cvs-serv12055/chat/lib/commands
Modified Files:
join.cmd.php3 save.cmd.php3
Log Message:
added m_id in the pmc_messages table to fix messages loss in the message frame
Index: join.cmd.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/join.cmd.php3,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** join.cmd.php3 2001/06/30 20:42:31 1.11
--- join.cmd.php3 2001/11/26 20:22:15 1.12
***************
*** 219,223 ****
// m_time and rooms aren't null to enforce the use of existing indexes)
$queries[] = 'DELETE FROM ' . C_MSG_TBL . ' '
! . "WHERE m_time != '' AND room != '' AND address = '$slashedNick' AND username = 'SYS welcome'";
$queries[] = 'INSERT INTO ' . C_MSG_TBL . ' '
. '(room, username, m_time, address, color, msg_original, msg_enhanced) '
--- 219,223 ----
// m_time and rooms aren't null to enforce the use of existing indexes)
$queries[] = 'DELETE FROM ' . C_MSG_TBL . ' '
! . "WHERE m_id > 0 AND room > '' AND address = '$slashedNick' AND username = 'SYS welcome'";
$queries[] = 'INSERT INTO ' . C_MSG_TBL . ' '
. '(room, username, m_time, address, color, msg_original, msg_enhanced) '
***************
*** 233,237 ****
// Delete invitations sent to the current user (check if m_time isn't null
// to enforce the use of existing indexes)
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time != '' AND room = '\\\*\\\' AND address = '$slashedNick' AND username = 'SYS inviteTo'");
// 2. Rooms table
--- 233,237 ----
// Delete invitations sent to the current user (check if m_time isn't null
// to enforce the use of existing indexes)
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_id > 0 AND room = '\\\*\\\' AND address = '$slashedNick' AND username = 'SYS inviteTo'");
// 2. Rooms table
Index: save.cmd.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/commands/save.cmd.php3,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** save.cmd.php3 2001/06/10 14:57:48 1.6
--- save.cmd.php3 2001/11/26 20:22:16 1.7
***************
*** 54,60 ****
$getMessagesQuery = 'SELECT COUNT(*) FROM ' . C_MSG_TBL . ' '
. 'WHERE '
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address != '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
--- 54,61 ----
$getMessagesQuery = 'SELECT COUNT(*) FROM ' . C_MSG_TBL . ' '
. 'WHERE '
+ . "m_id > 0 AND "
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address > '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:22:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv12055/chat/lib/index_libs
Modified Files:
do_enter_db_work.lib.php3
Log Message:
added m_id in the pmc_messages table to fix messages loss in the message frame
Index: do_enter_db_work.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/do_enter_db_work.lib.php3,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** do_enter_db_work.lib.php3 2001/06/30 20:42:31 1.23
--- do_enter_db_work.lib.php3 2001/11/26 20:22:16 1.24
***************
*** 158,162 ****
// if m_time and rooms aren't null to enforce the use of existing
// indexes)
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time != '' AND room != '' AND address = '$slashedNick' AND username = 'SYS welcome'");
$aQuery = 'INSERT INTO ' . C_MSG_TBL . ' '
. '(room, username, m_time, address, color, msg_original, msg_enhanced) '
--- 158,162 ----
// if m_time and rooms aren't null to enforce the use of existing
// indexes)
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_id > 0 AND room > '' AND address = '$slashedNick' AND username = 'SYS welcome'");
$aQuery = 'INSERT INTO ' . C_MSG_TBL . ' '
. '(room, username, m_time, address, color, msg_original, msg_enhanced) '
***************
*** 201,205 ****
// Deletes the old welcome messages sent to the current user (check if
// m_time and rooms aren't null to enforce the use of existing indexes)
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time != '' AND room != '' AND address = '$slashedNick' AND username = 'SYS welcome'");
$aQuery = 'INSERT INTO ' . C_MSG_TBL . ' '
. '(room, username, m_time, address, color, msg_original, msg_enhanced) '
--- 201,205 ----
// Deletes the old welcome messages sent to the current user (check if
// m_time and rooms aren't null to enforce the use of existing indexes)
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_id > 0 AND room > '' AND address = '$slashedNick' AND username = 'SYS welcome'");
$aQuery = 'INSERT INTO ' . C_MSG_TBL . ' '
. '(room, username, m_time, address, color, msg_original, msg_enhanced) '
***************
*** 264,268 ****
* enforce the use of existing indexes)
*/
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_time != '' AND room = '\\\*\\\' AND address = '$slashedNick' AND username = 'SYS inviteTo'");
?>
--- 264,268 ----
* enforce the use of existing indexes)
*/
! $dbLink->query("DELETE FROM " . C_MSG_TBL . " WHERE m_id > 0 AND room = '\\\*\\\' AND address = '$slashedNick' AND username = 'SYS inviteTo'");
?>
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:22:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv12055/chat
Modified Files:
loader.php3 messages_low.php3 save.php3 users_popup.php3
users_popup_low.php3
Log Message:
added m_id in the pmc_messages table to fix messages loss in the message frame
Index: loader.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/loader.php3,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** loader.php3 2001/06/15 21:04:33 1.23
--- loader.php3 2001/11/26 20:22:15 1.24
***************
*** 160,170 ****
$cutoffClause = ($isInitLoad)
! ? ''
! : 'm_time > ' . $lastMsgLoad . ' AND ';
$limitClause = ($isInitLoad && (C_DB_TYPE == 'mysql' || C_DB_TYPE == 'pgsql'))
? ' LIMIT ' . $dbSessionVars['msgNumber']
: '';
! $getMessagesQuery = 'SELECT username, latin1, m_time, address, color, msg_' . $dbSessionVars['msgKind'] . ' '
. 'FROM ' . C_MSG_TBL . ' '
. 'WHERE '
--- 160,170 ----
$cutoffClause = ($isInitLoad)
! ? 'm_id > 0 AND '
! : 'm_id > ' . $lastMsgLoad . ' AND ';
$limitClause = ($isInitLoad && (C_DB_TYPE == 'mysql' || C_DB_TYPE == 'pgsql'))
? ' LIMIT ' . $dbSessionVars['msgNumber']
: '';
! $getMessagesQuery = 'SELECT m_id, username, latin1, m_time, address, color, msg_' . $dbSessionVars['msgKind'] . ' '
. 'FROM ' . C_MSG_TBL . ' '
. 'WHERE '
***************
*** 172,176 ****
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address != '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
--- 172,176 ----
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address > '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
***************
*** 182,188 ****
$grabedMessages = array();
$dbLink->query($getMessagesQuery);
! while (list($sender, $senderLatin1, $sentTime, $addressee, $msgColor, $message) = $dbLink->nextRecord())
{
! $grabedMessages[] = array( pmcHandleMagicQuotes($sender, '', 1, 'del'),
$senderLatin1,
$sentTime,
--- 182,189 ----
$grabedMessages = array();
$dbLink->query($getMessagesQuery);
! while (list($msgId, $sender, $senderLatin1, $sentTime, $addressee, $msgColor, $message) = $dbLink->nextRecord())
{
! $grabedMessages[] = array( $msgId,
! pmcHandleMagicQuotes($sender, '', 1, 'del'),
$senderLatin1,
$sentTime,
***************
*** 224,233 ****
for ($k = 0; $k < $grabedMessagesCnt; $k++)
{
! $sender = $grabedMessages[$k][0];
! $senderLatin1 = $grabedMessages[$k][1];
! $sentTime = $grabedMessages[$k][2];
! $addressee = $grabedMessages[$k][3];
! $msgColor = $grabedMessages[$k][4];
! $message = $grabedMessages[$k][5];
// Skip the oldest message if the day seperator has been added
--- 225,235 ----
for ($k = 0; $k < $grabedMessagesCnt; $k++)
{
! $msgId = $grabedMessages[$k][0];
! $sender = $grabedMessages[$k][1];
! $senderLatin1 = $grabedMessages[$k][2];
! $sentTime = $grabedMessages[$k][3];
! $addressee = $grabedMessages[$k][4];
! $msgColor = $grabedMessages[$k][5];
! $message = $grabedMessages[$k][6];
// Skip the oldest message if the day seperator has been added
***************
*** 293,299 ****
$newMessages[] = $aMessage;
! if ($sentTime > $lastMsgLoad)
{
! $lastMsgLoad = $sentTime;
}
}
--- 295,301 ----
$newMessages[] = $aMessage;
! if ($msgId > $lastMsgLoad)
{
! $lastMsgLoad = $msgId;
}
}
Index: messages_low.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/messages_low.php3,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** messages_low.php3 2001/06/15 21:04:33 1.20
--- messages_low.php3 2001/11/26 20:22:15 1.21
***************
*** 127,137 ****
$cutoffClause = (isset($firstMsgToLoad))
! ? 'm_time > ' . $firstMsgToLoad . ' AND '
! : '';
$limitClause = (C_DB_TYPE == 'mysql' || C_DB_TYPE == 'pgsql')
? ' LIMIT ' . $dbSessionVars['msgNumber']
: '';
! $getMessagesQuery = 'SELECT username, latin1, m_time, address, color, msg_' . $dbSessionVars['msgKind'] . ' '
. 'FROM ' . C_MSG_TBL . ' '
. 'WHERE '
--- 127,137 ----
$cutoffClause = (isset($firstMsgToLoad))
! ? 'm_id > ' . $firstMsgToLoad . ' AND '
! : 'm_id > 0 AND ';
$limitClause = (C_DB_TYPE == 'mysql' || C_DB_TYPE == 'pgsql')
? ' LIMIT ' . $dbSessionVars['msgNumber']
: '';
! $getMessagesQuery = 'SELECT m_id, username, latin1, m_time, address, color, msg_' . $dbSessionVars['msgKind'] . ' '
. 'FROM ' . C_MSG_TBL . ' '
. 'WHERE '
***************
*** 139,143 ****
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address != '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
--- 139,143 ----
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address > '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
***************
*** 150,156 ****
$dbLink = new pmcDB;
$dbLink->query($getMessagesQuery);
! while (list($sender, $senderLatin1, $sentTime, $addressee, $msgColor, $message) = $dbLink->nextRecord())
{
! $grabedMessages[] = array( pmcHandleMagicQuotes($sender, '', 1, 'del'),
$senderLatin1,
$sentTime,
--- 150,157 ----
$dbLink = new pmcDB;
$dbLink->query($getMessagesQuery);
! while (list($msgId, $sender, $senderLatin1, $sentTime, $addressee, $msgColor, $message) = $dbLink->nextRecord())
{
! $grabedMessages[] = array( $msgId,
! pmcHandleMagicQuotes($sender, '', 1, 'del'),
$senderLatin1,
$sentTime,
***************
*** 189,198 ****
for ($k = 0; $k < $grabedMessagesCnt; $k++)
{
! $sender = $grabedMessages[$k][0];
! $senderLatin1 = $grabedMessages[$k][1];
! $sentTime = $grabedMessages[$k][2];
! $addressee = $grabedMessages[$k][3];
! $msgColor = $grabedMessages[$k][4];
! $message = $grabedMessages[$k][5];
// Skip the oldest message if the day seperator has been added
--- 190,200 ----
for ($k = 0; $k < $grabedMessagesCnt; $k++)
{
! $msgId = $grabedMessages[$k][0];
! $sender = $grabedMessages[$k][1];
! $senderLatin1 = $grabedMessages[$k][2];
! $sentTime = $grabedMessages[$k][3];
! $addressee = $grabedMessages[$k][4];
! $msgColor = $grabedMessages[$k][5];
! $message = $grabedMessages[$k][6];
// Skip the oldest message if the day seperator has been added
***************
*** 263,267 ****
} // end of formatting new messages
unset($grabedMessages);
! $firstMsgToLoad = $sentTime - 1;
--- 265,269 ----
} // end of formatting new messages
unset($grabedMessages);
! $firstMsgToLoad = $msgId - 1;
Index: save.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/save.php3,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** save.php3 2001/06/10 14:56:06 1.8
--- save.php3 2001/11/26 20:22:15 1.9
***************
*** 98,104 ****
$getMessagesQuery = 'SELECT username, latin1, m_time, address, color, msg_original FROM ' . C_MSG_TBL . ' '
. 'WHERE '
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address != '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
--- 98,105 ----
$getMessagesQuery = 'SELECT username, latin1, m_time, address, color, msg_original FROM ' . C_MSG_TBL . ' '
. 'WHERE '
+ . 'm_id > 0 AND '
. "room IN ('$slashedCurrentRoomName', '\\\*\\\') AND "
. '('
! . "(address > '' AND username = '$slashedNick') OR "
. "((address = '' OR address = '$slashedNick')$ignoredSendersList)"
. ') '
Index: users_popup.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_popup.php3,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** users_popup.php3 2001/06/10 14:56:06 1.19
--- users_popup.php3 2001/11/26 20:22:15 1.20
***************
*** 115,121 ****
$beepQuery = 'SELECT msg.m_time FROM ' . C_ROOM_TBL . ' rm, ' . C_MSG_TBL . ' msg '
. ' WHERE '
. "msg.username = 'SYS enter' AND "
! . "(rm.room_name = msg.room AND $roomToCheck) AND "
! . "msg.m_time > $lastCheck "
. 'LIMIT 1';
$dbLink->query($beepQuery);
--- 115,121 ----
$beepQuery = 'SELECT msg.m_time FROM ' . C_ROOM_TBL . ' rm, ' . C_MSG_TBL . ' msg '
. ' WHERE '
+ . "msg.m_time > $lastCheck AND "
. "msg.username = 'SYS enter' AND "
! . "(msg.room = rm.room_name AND $roomToCheck) "
. 'LIMIT 1';
$dbLink->query($beepQuery);
Index: users_popup_low.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users_popup_low.php3,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** users_popup_low.php3 2001/06/10 14:56:06 1.16
--- users_popup_low.php3 2001/11/26 20:22:15 1.17
***************
*** 116,122 ****
$beepQuery = 'SELECT msg.m_time FROM ' . C_ROOM_TBL . ' rm, ' . C_MSG_TBL . ' msg '
. ' WHERE '
. "msg.username = 'SYS enter' AND "
! . "(rm.room_name = msg.room AND $roomToCheck) AND "
! . "msg.m_time > $lastCheck "
. 'LIMIT 1';
$dbLink->query($beepQuery);
--- 116,122 ----
$beepQuery = 'SELECT msg.m_time FROM ' . C_ROOM_TBL . ' rm, ' . C_MSG_TBL . ' msg '
. ' WHERE '
+ . "msg.m_time > $lastCheck AND "
. "msg.username = 'SYS enter' AND "
! . "(msg.room = rm.room_name AND $roomToCheck) "
. 'LIMIT 1';
$dbLink->query($beepQuery);
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:22:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv12055/chat/lib
Modified Files:
get_user_infos.lib.php3
Log Message:
added m_id in the pmc_messages table to fix messages loss in the message frame
Index: get_user_infos.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/get_user_infos.lib.php3,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** get_user_infos.lib.php3 2001/06/10 14:57:48 1.3
--- get_user_infos.lib.php3 2001/11/26 20:22:15 1.4
***************
*** 261,265 ****
// users entrance/exit) or containing only 'system' message but an
// user is currently logged in, status will be 'user'
! $dbLink->query("SELECT COUNT(*) FROM " . C_MSG_TBL . " WHERE room = '$slashedTargetRoomName' AND username NOT LIKE 'SYS %' LIMIT 1");
list($isTrueMsg) = $dbLink->nextRecord();
$tmpUserPerm = ($isTrueMsg == 0) ? 5 : 1;
--- 261,265 ----
// users entrance/exit) or containing only 'system' message but an
// user is currently logged in, status will be 'user'
! $dbLink->query("SELECT COUNT(*) FROM " . C_MSG_TBL . " WHERE m_time > 0 AND username NOT LIKE 'SYS %' AND room = '$slashedTargetRoomName' LIMIT 1");
list($isTrueMsg) = $dbLink->nextRecord();
$tmpUserPerm = ($isTrueMsg == 0) ? 5 : 1;
|
|
From: Lo?c C. <lo...@us...> - 2001-11-26 20:22:19
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database
In directory usw-pr-cvs1:/tmp/cvs-serv12055/chat/install/database
Modified Files:
mysql.sql pgsql.sql
Log Message:
added m_id in the pmc_messages table to fix messages loss in the message frame
Index: mysql.sql
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/mysql.sql,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** mysql.sql 2001/06/10 21:02:06 1.9
--- mysql.sql 2001/11/26 20:22:15 1.10
***************
*** 26,29 ****
--- 26,30 ----
DROP TABLE /*!32200 IF EXISTS*/ pmc_messages;
CREATE TABLE pmc_messages (
+ m_id int unsigned NOT NULL AUTO_INCREMENT ,
room varchar(30) NOT NULL DEFAULT '' ,
username varchar(30) NOT NULL DEFAULT '' ,
***************
*** 34,40 ****
msg_original text NOT NULL DEFAULT '' ,
msg_enhanced text NOT NULL DEFAULT '' ,
! PRIMARY KEY (username, room, m_time),
! INDEX idx1 (m_time, room, address, username),
! INDEX idx2 (m_time, username)
);
--- 35,41 ----
msg_original text NOT NULL DEFAULT '' ,
msg_enhanced text NOT NULL DEFAULT '' ,
! PRIMARY KEY (m_id) ,
! INDEX idx1 (m_id, room, address, username) ,
! INDEX idx2 (m_time, username, room)
);
Index: pgsql.sql
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/install/database/pgsql.sql,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** pgsql.sql 2001/06/10 21:02:33 1.6
--- pgsql.sql 2001/11/26 20:22:15 1.7
***************
*** 27,31 ****
--- 27,33 ----
#
+ CREATE SEQUENCE pmc_messages_m_id;
CREATE TABLE pmc_messages (
+ m_id int4 NOT NULL DEFAULT nextval('pmc_messages_m_id') ,
room varchar(30) NOT NULL DEFAULT '' ,
username varchar(30) NOT NULL DEFAULT '' ,
***************
*** 36,43 ****
msg_original text NOT NULL DEFAULT '' ,
msg_enhanced text NOT NULL DEFAULT '' ,
! PRIMARY KEY (username, room, m_time)
);
! CREATE INDEX idx1 ON pmc_messages (m_time, room, address, username);
! CREATE INDEX idx2 ON pmc_messages (m_time, username);
--- 38,45 ----
msg_original text NOT NULL DEFAULT '' ,
msg_enhanced text NOT NULL DEFAULT '' ,
! PRIMARY KEY (m_id)
);
! CREATE INDEX idx1 ON pmc_messages (m_id, room, address, username);
! CREATE INDEX idx2 ON pmc_messages (m_time, username, room);
|
|
From: Sergei I. G. <si...@us...> - 2001-09-17 09:32:13
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv30374/chat
Modified Files:
profile_reg.php3
Log Message:
Add pmcProfPassword to session data only when don't used "send password by email".
Index: profile_reg.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/profile_reg.php3,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** profile_reg.php3 2001/06/13 18:13:29 1.17
--- profile_reg.php3 2001/09/17 09:32:11 1.18
***************
*** 190,198 ****
include('./lib/gen_password.lib.' . C_EXTENSION);
$pmcProfPassword = pmcGenPassword();
- }
// Sends the password to the e-mail address if required
- if (C_EMAIL_PASWD)
- {
$recipient = array($pmcProfEmail => array($pmcProfNick, L_CHARSET));
$subject = '[' . APP_NAME . '] ' . L_EMAIL_VAL_1;
--- 190,195 ----
***************
*** 236,240 ****
$dbSessionVars['nick'] = $pmcProfNick;
! $dbSessionVars['password'] = $pmcProfPassword;
dbSessionSave();
// The db link should be closed but this can't be done under Apache because
--- 233,238 ----
$dbSessionVars['nick'] = $pmcProfNick;
! $dbSessionVars['password'] = (C_EMAIL_PASWD) ? "" : $pmcProfPassword;
!
dbSessionSave();
// The db link should be closed but this can't be done under Apache because
|
|
From: Sergei I. G. <si...@us...> - 2001-09-17 08:29:06
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs
In directory usw-pr-cvs1:/tmp/cvs-serv22712/chat/lib/index_libs
Modified Files:
main_index.lib.php3
Log Message:
Security: avoid creation new rooms by change parameters in input form.
Index: main_index.lib.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** main_index.lib.php3 2001/06/16 10:20:14 1.39
--- main_index.lib.php3 2001/09/17 08:29:03 1.40
***************
*** 362,366 ****
}
// Room is among other public ones
! else if (!empty($enterDefaultRoomName))
{
$targetRoom = $enterDefaultRoomName;
--- 362,366 ----
}
// Room is among other public ones
! else if (!empty($enterDefaultRoomName) && (pmcIsInto($enterDefaultRoomName, $defaultChatRooms) > 0))
{
$targetRoom = $enterDefaultRoomName;
|
|
From: Lo?c C. <lo...@us...> - 2001-07-05 19:53:30
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/docs
In directory usw-pr-cvs1:/tmp/cvs-serv26188/docs
Modified Files:
changes.txt
Log Message:
Updated with 0.14.5 & 0.14.6-dev releases informations
Index: changes.txt
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/docs/changes.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** changes.txt 2001/06/13 18:09:09 1.8
--- changes.txt 2001/07/05 19:53:27 1.9
***************
*** 8,12 ****
! v 0.15.0 - 13/06/2001
"""""""""""""""""""""
--- 8,12 ----
! v 0.15.0 - 05/07/2001
"""""""""""""""""""""
***************
*** 40,53 ****
! v 0.14.5-RC1 - 12/06/2001
"""""""""""""""""""""""""
BUG FIXED : two security issues has been fixed thanks to
Alexei Shalin <hap...@to...>.
BUG FIXED : nicks containing dot characters can't be deleted/banished/updated
in the administration sheets
! BUG FIXED : when registered users used the '/join' command or on the link in an
! invitation messages they may loose their rights or be kicked off
! because of a wrong password encoding.
Bug fixed thanks to Tinou <ti...@ti...>.
ENHANCEMENT : some translations have been completed.
--- 40,60 ----
! v 0.14.6-dev - 05/07/2001
"""""""""""""""""""""""""
+ ENHANCEMENT : iso-8859-2 charsets uses the same font faces than iso-8859-1.
+ ENHANCEMENT : some translations have been completed.
+
+
+ v 0.14.5 - 02/07/2001
+ """""""""""""""""""""
+
BUG FIXED : two security issues has been fixed thanks to
Alexei Shalin <hap...@to...>.
BUG FIXED : nicks containing dot characters can't be deleted/banished/updated
in the administration sheets
! BUG FIXED : when registered users used the '/join' command or clicked on the
! link in an invitation messages they may loose their rights or be
! kicked off because of a wrong password encoding.
Bug fixed thanks to Tinou <ti...@ti...>.
ENHANCEMENT : some translations have been completed.
|
|
From: Lo?c C. <lo...@us...> - 2001-07-05 19:52:49
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/config
In directory usw-pr-cvs1:/tmp/cvs-serv25888/chat/config
Modified Files:
style.css.php3 start_page.css.php3 admin.css.php3
Log Message:
iso-8859-2 charset uses the same font faces than iso-8859-1
Index: style.css.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/style.css.php3,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** style.css.php3 2001/06/10 15:14:54 1.6
--- style.css.php3 2001/07/05 19:52:46 1.7
***************
*** 47,51 ****
<?php
}
! else if ($charset == 'iso-8859-1')
{
echo("\n");
--- 47,51 ----
<?php
}
! else if ($charset == 'iso-8859-1' || $charset == 'iso-8859-2')
{
echo("\n");
Index: start_page.css.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/start_page.css.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** start_page.css.php3 2001/04/19 21:05:04 1.4
--- start_page.css.php3 2001/07/05 19:52:46 1.5
***************
*** 46,50 ****
$specialFont = 1;
}
! else if ($charset == 'iso-8859-1')
{
$fontFace = 'font-family: helvetica, arial, geneva, sans-serif;';
--- 46,50 ----
$specialFont = 1;
}
! else if ($charset == 'iso-8859-1' || $charset == 'iso-8859-2')
{
$fontFace = 'font-family: helvetica, arial, geneva, sans-serif;';
Index: admin.css.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/admin.css.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** admin.css.php3 2001/04/19 21:05:04 1.4
--- admin.css.php3 2001/07/05 19:52:46 1.5
***************
*** 48,52 ****
<?php
}
! else if ($charset == 'iso-8859-1')
{
echo("\n");
--- 48,52 ----
<?php
}
! else if ($charset == 'iso-8859-1' || $charset == 'iso-8859-2')
{
echo("\n");
|
|
From: Lo?c C. <lo...@us...> - 2001-07-05 19:39:52
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/docs In directory usw-pr-cvs1:/tmp/cvs-serv20189/docs Modified Files: changes.txt Log Message: iso-8859-1 charset uses the same font faces than iso-8859-1 ***** Bogus filespec: - ***** Bogus filespec: 0.14/docs Index: changes.txt =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/docs/changes.txt,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** changes.txt 2001/07/02 19:54:19 1.19 --- changes.txt 2001/07/05 19:39:49 1.20 *************** *** 8,11 **** --- 8,18 ---- + v 0.14.6-dev - 05/07/2001 + """"""""""""""""""""""""" + + ENHANCEMENT : iso-8859-2 charsets uses the same font faces than iso-8859-1. + ENHANCEMENT : some translations have been completed. + + v 0.14.5 - 02/07/2001 """"""""""""""""""""" |
|
From: Lo?c C. <lo...@us...> - 2001-07-05 19:39:32
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/czech
In directory usw-pr-cvs1:/tmp/cvs-serv20060/chat/localization/czech
Modified Files:
localized.tutorial.php3 localized.chat.php3
localized.admin.php3
Log Message:
Font faces are taken into account in the CSS files
***** Bogus filespec: -
***** Bogus filespec: 0.14/chat/localization/czech
Index: localized.tutorial.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/czech/localized.tutorial.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** localized.tutorial.php3 2001/07/05 14:00:45 1.4
--- localized.tutorial.php3 2001/07/05 19:39:29 1.5
***************
*** 286,296 ****
<OL>
Byly definovány dvì jednoduchá pravidla pro seznam u¾ivatelù:<BR>
- <!-- To update
- <LI>malá ikona (<IMG SRC="images/whoisOff.gif" WIDTH=5 HEIGHT=9 BORDER=0 ALT="whois icon">)
- je zobrazena pøed jménem registrovaného u¾ivatele a kliknutím na tuto
- ikonu vyvoláte <A HREF="#whois">okno s informacemi o u¾ivateli</A>
- pro tohoto u¾ivatele. Nezaregistrovaní u¾ivatelé mají pøed svým jménem
- jen pomlèku;<BR>
- -->
<LI>pøed jménem registrovaného u¾ivatele je malá ikona, která znázoròuje
jeho pohlaví (kliknutím na ní se otevøe <A HREF="#whois">okno s informacemi
--- 286,289 ----
Index: localized.chat.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/czech/localized.chat.php3,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** localized.chat.php3 2001/07/04 22:52:53 1.4
--- localized.chat.php3 2001/07/05 19:39:29 1.5
***************
*** 9,14 ****
$FontSize = 10;
- $FontName = "helvetica, arial, geneva";
-
// welcome page
define("L_TUTORIAL", "Návod");
--- 9,12 ----
Index: localized.admin.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat - 0.14/chat/localization/czech/localized.admin.php3,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** localized.admin.php3 2001/07/04 22:52:53 1.2
--- localized.admin.php3 2001/07/05 19:39:29 1.3
***************
*** 9,14 ****
$FontSize = 10;
- $FontName = "helvetica, arial, geneva";
-
// Top frame
define("A_MENU_0", "Administrace %s");
--- 9,12 ----
|