You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: OryNider <ory...@us...> - 2007-06-07 20:07:51
|
Update of /cvsroot/mxbb/mx_smartor/cgi-bin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6152/cgi-bin Log Message: Directory /cvsroot/mxbb/mx_smartor/cgi-bin added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 20:07:51
|
Update of /cvsroot/mxbb/mx_smartor/jupload In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6152/jupload Log Message: Directory /cvsroot/mxbb/mx_smartor/jupload added to the repository |
|
From: Jon O. <jon...@us...> - 2007-06-07 20:00:23
|
Update of /cvsroot/mxbb In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30811 Removed Files: bugsBT.pak bugsbt.php db_install.php db_uninstall.php db_upgrade.php index.htm mx_install_readme.htm Log Message: removed --- bugsbt.php DELETED --- --- db_uninstall.php DELETED --- --- mx_install_readme.htm DELETED --- --- db_upgrade.php DELETED --- --- db_install.php DELETED --- --- bugsBT.pak DELETED --- --- index.htm DELETED --- |
|
From: Jon O. <jon...@us...> - 2007-06-07 19:58:39
|
Update of /cvsroot/mxbb/mx_bugsbt In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv29913 Added Files: bugsBT.pak bugsbt.php db_uninstall.php db_upgrade.php index.htm mx_install_readme.htm Log Message: lost files... --- NEW FILE: bugsbt.php --- <?php /** * * @package mxBB Portal Module - mx_bugsbt * @version $Id: bugsbt.php,v 1.1 2007/06/07 19:58:33 jonohlsson Exp $ * @copyright (c) 2002-2006 [Jon Ohlsson, Cezary Tomczak] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ if( !defined('IN_PORTAL') || !is_object($mx_block)) { die("Hacking attempt"); } // // Read Block Settings (default mode) // $title = !empty( $mx_block->block_info['block_title'] ) ? $mx_block->block_info['block_title'] : $lang['bugsbt_title']; $desc = $mx_block->block_info['block_desc']; $block_size = ( isset( $block_size ) && !empty( $block_size ) ? $block_size : '100%' ); // ------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------- // Start // ------------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------------------------------------------------------------------------------- // =================================================== // Include the common file // =================================================== include_once( $module_root_path . 'bugsbt/bugsbt_common.' . $phpEx ); // =================================================== // Get mode variables, otherwise set it to the main // =================================================== $mode = $mx_request_vars->request('mode', MX_TYPE_NO_TAGS, 'index'); // =================================================== // Is admin? // =================================================== $is_admin = ( ( $userdata['user_level'] == ADMIN ) && $userdata['session_logged_in'] ) ? true : 0; // =================================================== // if the database disabled give them a nice message // =================================================== if ( intval( $bugsbt_config['module_enable'] ) ) { mx_message_die( GENERAL_MESSAGE, $lang['bugsbt_disable'] ); } // =================================================== // an array of all expected actions // =================================================== $actions = array( 'index' => 'index', ); // =================================================== // Lets Build the page // =================================================== $mx_bugsbt->module( $actions[$mode] ); $mx_bugsbt->modules[$actions[$mode]]->main( $mode ); // // load module header // //$mx_bugsbt_functions->page_header(); // // Some general template vars // $template->assign_vars( array( 'U_PORTAL' => $mx_root_path, 'L_PORTAL' => "<<", 'U_BUGSBT' => append_sid( $mx_bugsbt->this_mxurl() ), 'L_BUGSBT' => $lang['bugsbt_title'] ) ); $template->pparse( 'body' ); // // load module footer // $mx_bugsbt_functions->page_footer(); ?> --- NEW FILE: db_uninstall.php --- <?php /** * * @package mxBB Portal Module - mx_bugsbt * @version $Id: db_uninstall.php,v 1.1 2007/06/07 19:58:33 jonohlsson Exp $ * @copyright (c) 2002-2006 [Jon Ohlsson, Cezary Tomczak] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ define( 'IN_PORTAL', true ); if ( !defined( 'IN_ADMIN' ) ) { $mx_root_path = './../../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include( $mx_root_path . 'common.' . $phpEx ); // Start session management $mx_user->init($user_ip, PAGE_INDEX); if ( !$userdata['session_logged_in'] ) { die( "Hacking attempt(1)" ); } if ( $userdata['user_level'] != ADMIN ) { die( "Hacking attempt(2)" ); } // End session management } // For compatibility with core 2.7.+ define( 'MXBB_27x', file_exists( $mx_root_path . 'mx_login.php' ) ); if ( MXBB_27x ) { include_once( $mx_root_path . 'modules/mx_kb/includes/functions_kb_mx.' . $phpEx ); } $sql = array( "DROP TABLE " . $mx_table_prefix . "kb_articles ", "DROP TABLE " . $mx_table_prefix . "kb_categories ", "DROP TABLE " . $mx_table_prefix . "kb_config ", "DROP TABLE " . $mx_table_prefix . "kb_types ", //"DROP TABLE " . $mx_table_prefix . "kb_wordlist ", //"DROP TABLE " . $mx_table_prefix . "kb_results ", //"DROP TABLE " . $mx_table_prefix . "kb_wordmatch ", "DROP TABLE " . $mx_table_prefix . "kb_votes ", "DROP TABLE " . $mx_table_prefix . "kb_custom ", "DROP TABLE " . $mx_table_prefix . "kb_comments ", "DROP TABLE " . $mx_table_prefix . "kb_customdata " ); echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . mx_do_install_upgrade( $sql ) . "</span></td></tr>"; echo "</table><br />"; ?> --- NEW FILE: mx_install_readme.htm --- <html> <head> <title>Mx Portal installation - readme</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <!-- link rel="stylesheet" href="templates/subSilver/subSilver.css" type="text/css" --> <style type="text/css"> <!-- /* The original subSilver Theme for phpBB version 2+ Created by subBlue design http://www.subBlue.com NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2 theme administration centre. When you have finalised your style you could cut the final CSS code and place it in an external file, deleting this section to save bandwidth. */ /* General page style. The scroll bar colours only visible in IE5.5+ */ body { background-color: #E5E5E5; scrollbar-face-color: #DEE3E7; scrollbar-highlight-color: #FFFFFF; scrollbar-shadow-color: #DEE3E7; scrollbar-3dlight-color: #D1D7DC; scrollbar-arrow-color: #006699; scrollbar-track-color: #EFEFEF; scrollbar-darkshadow-color: #98AAB1; } /* General font families for common tags */ font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif } a:link,a:active,a:visited { color : #006699; } a:hover { text-decoration: underline; color : #DD6900; } hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;} /* This is the border line & background colour round the entire page */ .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } /* This is the outline round the main forum tables */ .forumline { background-color: #FFFFFF; border: 2px #006699 solid; } /* Main table cell colours and backgrounds */ td.row1 { background-color: #EFEFEF; } td.row2 { background-color: #DEE3E7; } td.row3 { background-color: #D1D7DC; } /* This is for the table cell above the Topics, Post & Last posts on the index.php page By default this is the fading out gradiated silver background. However, you could replace this with a bitmap specific for each forum */ td.rowpic { background-color: #FFFFFF; background-image: url(../../install/templates/subSilver/images/cellpic2.jpg); background-repeat: repeat-y; } /* Header cells - the blue and silver gradient backgrounds */ th { color: #FFA34F; font-size: 11px; font-weight : bold; background-color: #006699; height: 25px; background-image: url(../../install/templates/subSilver/images/cellpic3.gif); } td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom { background-image: url(../../install/templates/subSilver/images/cellpic1.gif); background-color:#D1D7DC; border: #FFFFFF; border-style: solid; height: 28px; } /* Setting additional nice inner borders for the main table cells. The names indicate which sides the border will be on. Don't worry if you don't understand this, just ignore it :-) */ td.cat,td.catHead,td.catBottom { height: 29px; border-width: 0px 0px 0px 0px; } th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR { font-weight: bold; border: #FFFFFF; border-style: solid; height: 28px; } td.row3Right,td.spaceRow { background-color: #D1D7DC; border: #FFFFFF; border-style: solid; } th.thHead,td.catHead { font-size: 12px; border-width: 1px 1px 0px 1px; } th.thSides,td.catSides,td.spaceRow { border-width: 0px 1px 0px 1px; } th.thRight,td.catRight,td.row3Right { border-width: 0px 1px 0px 0px; } th.thLeft,td.catLeft { border-width: 0px 0px 0px 1px; } th.thBottom,td.catBottom { border-width: 0px 1px 1px 1px; } th.thTop { border-width: 1px 0px 0px 0px; } th.thCornerL { border-width: 1px 0px 0px 1px; } th.thCornerR { border-width: 1px 1px 0px 0px; } /* The largest text used in the index page title and toptic title etc. */ .maintitle { font-weight: bold; font-size: 22px; font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif; text-decoration: none; line-height : 120%; color : #000000; } /* General text */ .gen { font-size : 12px; } .genmed { font-size : 11px; } .gensmall { font-size : 10px; } .gen,.genmed,.gensmall { color : #000000; } a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; } a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; } /* The register, login, search etc links at the top of the page */ .mainmenu { font-size : 11px; color : #000000 } a.mainmenu { text-decoration: none; color : #006699; } a.mainmenu:hover{ text-decoration: underline; color : #DD6900; } /* Forum category titles */ .cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699} a.cattitle { text-decoration: none; color : #006699; } a.cattitle:hover{ text-decoration: underline; } /* Forum title: Text and link to the forums used in: index.php */ .forumlink { font-weight: bold; font-size: 12px; color : #006699; } a.forumlink { text-decoration: none; color : #006699; } a.forumlink:hover{ text-decoration: underline; color : #DD6900; } /* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */ .nav { font-weight: bold; font-size: 11px; color : #000000;} a.nav { text-decoration: none; color : #006699; } a.nav:hover { text-decoration: underline; } /* titles for the topics: could specify viewed link colour too */ .topictitle,h1,h2 { font-weight: bold; font-size: 11px; color : #000000; } a.topictitle:link { text-decoration: none; color : #006699; } a.topictitle:visited { text-decoration: none; color : #5493B4; } a.topictitle:hover { text-decoration: underline; color : #DD6900; } /* Name of poster in viewmsg.php and viewtopic.php and other places */ .name { font-size : 11px; color : #000000;} /* Location, number of posts, post date etc */ .postdetails { font-size : 10px; color : #000000; } /* The content of the posts (body of text) */ .postbody { font-size : 12px; line-height: 18px} a.postlink:link { text-decoration: none; color : #006699 } a.postlink:visited { text-decoration: none; color : #5493B4; } a.postlink:hover { text-decoration: underline; color : #DD6900} /* Quote & Code blocks */ .code { font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600; background-color: #FAFAFA; border: #D1D7DC; border-style: solid; border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } .quote { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #444444; line-height: 125%; background-color: #FAFAFA; border: #D1D7DC; border-style: solid; border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px } /* Copyright and bottom info */ .copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #444444; letter-spacing: -1px;} a.copyright { color: #444444; text-decoration: none;} a.copyright:hover { color: #000000; text-decoration: underline;} /* Form elements */ input,textarea, select { color : #000000; font: normal 11px Verdana, Arial, Helvetica, sans-serif; border-color : #000000; } /* The text input fields background colour */ input.post, textarea.post, select { background-color : #FFFFFF; } input { text-indent : 2px; } /* The buttons used for bbCode styling in message post */ input.button { background-color : #EFEFEF; color : #000000; font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; } /* The main submit button option */ input.mainoption { background-color : #FAFAFA; font-weight : bold; } /* None-bold submit button */ input.liteoption { background-color : #FAFAFA; font-weight : normal; } /* This is the line in the posting page which shows the rollover help line. This is actually a text box, but if set to be the same colour as the background no one will know ;) */ .helpline { background-color: #DEE3E7; border-style: none; } /* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */ @import url("templates/subSilver/formIE.css"); --> </style> <script language="Javascript" type="text/javascript"> <!-- if ( 0 ) { window.open('privmsg.php?mode=newpm', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');; } //--> </script> </head> <body bgcolor="#FFFFFF" text="#000000"> <table> <tr> <td colspan="2"><p><b><font size="5">mxBB</font><font size="5"> Module - Knowledge Base <br> <font size="2">v. 2.0.2</font></font></b></p> <p><span style="font-weight: bold"><span style="font-size: 16px; line-height: normal">Module</span></span> <br /> - for Mx Portal v. 2.7.5+ (with some notes, see below)</p> <p><strong>Author</strong><br /> Haplo<br /> <br /> <span style="font-weight: bold">Description</span> <br /> The mxBB Module is an addon product for the mxBB Portal.</p> <p><strong>Features</strong> <br /> Easy to use and install/uninstall module.</p> <p> <br /> I. <a href="#install">Installation instructions</a> <br /> <br /> II. <a href="#themes">Additional styles</a> <br /> <br /> III. <a href="#languages">Additional languages</a><br /> <br /> <a href="http://www.mx-system.com" target="_blank" class="postlink">DEMO </a> <br /> <br /> <a href="http://www.mx-system.com/index.php?page=4" target="_blank" class="postlink"> DOWNLOAD </a> <br /> <br /><a name="install"> <br /> <span style="font-weight: bold">I. Installation Instructions</span> <br /> To install this module, follow these instructions. If you encounter any problems during install, visit the <a href="http://www.mx-system.com/forum/viewforum.php?f=20" target="_blank" class="postlink"> module support forum</a>. </p> <p>All install notes are maintained at www.mx-system.com, <a href="http://www.mx-system.com/forum/viewforum.php?f=11">here</a>.<br> <br> <i>To summarize:</i></p> <ul> <li> If installing from scratch, use the "install module" option in the AdminCP - Modules</li> <li> If upgrading, use the "upgrade module" option in the AdminCP - Modules</li> <li> If uninstalling, use the "delete module" feature in the AdminCP - Modules</li> </ul> <p><i>Note:</i> If upgrading, do NOT delete module prior to upgrading, or else you'll lose all module data!</p> <p><i>Note also:</i> Since this module is developed for next generation mxBB core, you have to patch your core 2.7.5 portal if downloaded prior to this module release. If using latest core this patch is already included.</p> <p>OPEN admin/admin_mx_module.php</p> <p>FIND</p> <table width="100%" border="1" cellpadding="2"> <tr> <td><font size="1">// <br> // Generate safe object identifiers for the target DB<br> // where this module pack is going to be imported...<br> // </font></td> </tr> </table> <p>BEFORE ADD</p> <table width="100%" border="1" cellpadding="2"> <tr> <td><font size="1">// Start - For compatibility with mxBB modules 2.x<br> $fcontents_temp = array();<br> for($i = 0; $i < count($fcontents); $i++) {<br> $module_data = explode($delimeter, trim($fcontents[$i]));<br> <br> if ( $module_data[0] != 'New_function' && $module_data[4] != 'endoflist' )<br> {<br> $fcontents_temp[] = implode($delimeter, $module_data);<br> }<br> }<br> $fcontents = $fcontents_temp;<br> // End - mxBB modules 2.x code patch</font></td> </tr> </table> <p><br /> <a href="#top"> Back to Top</a> <br /> <br /> <a name="themes"> <br /> <span style="font-weight: bold">II. Additional Styles</span> <br /> This module is compatible with any theme/style. <br /> <br /> <a href="#top"> Back to Top</a> <br /> <br /> <a name="languages"> <br /> <span style="font-weight: bold">III. Additional Languages</span> <br /> First check to see if your language is already translated. <br /> <br /> Translated languages are downloaded <a href="http://www.mx-system.com/index.php?page=4&action=category&cat_id=5" target="_blank" class="postlink"> here</a>. <br /> <br /> If exists, download and install in the modules/mx_modulename/language folder. If not, duplicate (copy and paste) any included language file, rename to match your language, translate using any texteditor, save and upload. <br /> <br /> <a href="#top"> Back to Top</a> </p> <p> /mxBB Team</p> </td> </tr> </table> </body> </html> --- NEW FILE: db_upgrade.php --- <?php /** * * @package mxBB Portal Module - mx_bugsbt * @version $Id: db_upgrade.php,v 1.1 2007/06/07 19:58:33 jonohlsson Exp $ * @copyright (c) 2002-2006 [Jon Ohlsson, Cezary Tomczak] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ define( 'IN_PORTAL', true ); if ( !defined( 'IN_ADMIN' ) ) { $mx_root_path = './../../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include( $mx_root_path . 'common.' . $phpEx ); // Start session management $mx_user->init($user_ip, PAGE_INDEX); if ( !$userdata['session_logged_in'] ) { die( "Hacking attempt(1)" ); } if ( $userdata['user_level'] != ADMIN ) { die( "Hacking attempt(2)" ); } // End session management } $mx_module_version = '1.0.0'; $mx_module_copy = 'Designed for mxBB by <a href="http://www.mxbb-portal.com" target="_blank">Jon</a>'; $sql = array(); // Precheck if ( $result = $db->sql_query( "SELECT config_name from " . $mx_table_prefix . "bugsbt_config" ) ) { if(false) { } else { $message .= "<b>Nothing to upgrade...</b><br/><br/>"; } $sql[] = "UPDATE " . $mx_table_prefix . "module" . " SET module_version = '" . $mx_module_version . "', module_copy = '" . $mx_module_copy . "' WHERE module_id = '" . $mx_module_id . "'"; $message .= mx_do_install_upgrade( $sql ); // // Empty module cache // include_once( $mx_root_path . 'includes/mx_functions_tools.' . $phpEx ); $module_cache = new module_cache($mx_root_path . 'modules/mx_bugsbt/bugsbt/'); $module_cache->tidy(); $module_cache->save(); } else { // If not installed $message = "<b>Module is not installed...and thus cannot be upgraded ;)</b><br/><br/>"; } echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; ?> --- NEW FILE: bugsBT.pak --- module=+:41=+:BugsBT=+:modules/mx_bugsbt/=+:mxBB BugTracker module=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:41=+:42=+:BugsBT - Main=+:mxBB BugTracker module=+:bugsbt.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:Demo - BugsBT=+:Demo block=+:42=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: OryNider <ory...@us...> - 2007-06-07 00:11:37
|
Update of /cvsroot/mxbb/mx_pjirc/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15472 Added Files: pjirc_chat.tpl pjirc_faq.tpl pjirc_front.tpl Log Message: --- NEW FILE: pjirc_chat.tpl --- <html> <head> <CENTER><u><h2><title>{CHAT_NAME}</title></h2></u></CENTER> <style type="text/css"> <!-- td.taburlo{ margin:5px; padding:5px; border: 0; } .tdblock { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; border: 0; margin: 2px; } --> </style> </head> <body BGCOLOR={UI_BACKGROUND}> <table width="100%" align="center" border="0" cellspacing="0" cellpadding="0" class="forumline"> <tr> <td class="row1" width="100%"><img src="images/spacer.gif" height="10"></td> </tr> <tr> <td align="center" class="row1" width="100%"> <applet codebase="pjirc" name="pjirc" code="IRCApplet.class" archive="irc.jar,pixx.jar,config.jar,javabot.jar" width=780 height=400> <param name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab,config.cab,javabot.cab" /> <param name="plugin1" value="config.Config" /> <param name="nick" value="{USERNAME}" /> <param name="alternatenick" value="{PREFIX_USERNAME}{USERNAME}" /> <param name="name" value="{USERNAME}" /> <param name="host" value="{SERVER}" /> <param name="port" value="{PORT}" /> <param name="smileys" value="true"> <param name="gui" value="pixx" /> <param name="command1" value="/join {CHANNEL}" /> <param name="pixx:language" value="pixx-{LANG}" /> <param name="config:language" value="config-{LANG}" /> <param name="config:lngextension" value="lng" /> <param name="pixx:helppage" value="{HELP}" /> <param name="language" value="{LANG}" /> <param name="quitmessage" value="{QUIT_MESSAGE}" /> <param name="asl" value="true" /> <param name="useinfo" value="false" /> <param name="style:bitmapsmileys" value="true" /> <param name="style:smiley1" value=":)) img/laf.gif" /> <param name="style:smiley2" value=":) img/smile.gif" /> <param name="style:smiley3" value=":-) img/smile.gif" /> <param name="style:smiley4" value=":D img/biggrin.gif" /> <param name="style:smiley5" value=":-D img/haha.gif" /> <param name="style:smiley6" value=":-O img/OH-2.gif" /> <param name="style:smiley7" value=":o img/OH-1.gif" /> <param name="style:smiley8" value=":-P img/prrr.gif" /> <param name="style:smiley9" value=":P img/razz.gif" /> <param name="style:smiley10" value=";-) img/occ.gif" /> <param name="style:smiley11" value=";) img/wink.gif" /> <param name="style:smiley12" value=":-( img/triste.gif" /> <param name="style:smiley13" value=":(( img/cry.gif" /> <param name="style:smiley14" value=":( img/triste.gif" /> <param name="style:smiley15" value=":-| img/neutral.gif" /> <param name="style:smiley16" value=":| img/neutral.gif" /> <param name="style:smiley17" value=":'( img/frigna.gif" /> <param name="style:smiley18" value=":ghgh: img/ghgh.gif" /> <param name="style:smiley19" value=":gh: img/ghgh.gif" /> <param name="style:smiley20" value="(H) img/dito.gif" /> <param name="style:smiley21" value="(h) img/dito.gif" /> <param name="style:smiley22" value=":-@ img/inca.gif" /> <param name="style:smiley23" value=":@ img/inca.gif" /> <param name="style:smiley24" value=":dito: img/dito.gif" /> <param name="style:smiley25" value=":clap: img/clap.gif" /> <param name="style:smiley26" value=":ciao: img/ciao.gif" /> <param name="style:smiley27" value=":argh: img/inca.gif" /> <param name="style:smiley28" value=":porc: img/porc.gif" /> <param name="style:smiley29" value=":maiale: img/porc.gif" /> <param name="style:smiley30" value=":lol: img/lol.gif" /> <param name="style:smiley31" value=":haha: img/haha.gif" /> <param name="style:smiley32" value=":lov: img/love.gif" /> <param name="style:smiley33" value=":amore: img/love.gif" /> <param name="style:smiley34" value=":love: img/love.gif" /> <param name="style:smiley35" value=":nono: img/nono.gif" /> <param name="style:smiley36" value=":no: img/nono.gif" /> <param name="style:smiley37" value=":ko: img/ko.gif" /> <param name="style:smiley38" value=":tvb: img/abbra.gif" /> <param name="style:smiley39" value=":ubria: img/ubria.gif" /> <param name="style:smiley40" value=":beer: img/ubria.gif" /> <param name="style:smiley41" value=":kiss: img/bacio.gif" /> <param name="style:smiley42" value=":bacio: img/bacio.gif" /> <param name="style:smiley43" value=":perdono: img/perdono.gif" /> <param name="style:smiley44" value=":ing: img/perdono.gif" /> <param name="style:smiley45" value=":abbra: img/abbra.gif" /> <param name="style:smiley46" value=":prrr: img/prrr.gif" /> <param name="style:smiley47" value=":fuma: img/fuma.gif" /> <param name="style:smiley48" value=":smoke: img/fuma.gif" /> <param name="style:smiley49" value=":frigna: img/frigna.gif" /> <param name="style:smiley50" value=":inca: img/inca.gif" /> <param name="style:smiley51" value=":piange: img/frigna.gif" /> <param name="style:smiley52" value=":amen: img/amen.gif" /> <param name="style:smiley53" value="X( img/enerve1.gif" /> <param name="style:smiley54" value="X-( img/enerve2.gif" /> <param name="style:smiley55" value=">:) img/diable.gif" /> <param name="soundbeep" value="snd/bell2.au" /> <param name="soundquery" value="snd/ding.au" /> <param name="style:backgroundimage" value="{BACKGROUND_IMAGE_ON}" /> <param name="style:backgroundimage1" value="all all 0 background.jpg" /> <param name="style:sourcefontrule1" value="all all Serif 12" /> <param name="style:floatingasl" value="true" /> <param name="pixx:timestamp" value="true" /> <param name="pixx:highlight" value="true" /> <param name="pixx:highlightnick" value="true" /> <param name="pixx:highlightcolor" value="DFE6EF" /> <param name="pixx:highlightwords" value="hi ciao salut sal saluti hello buongiorno buonanotte cazzo meo kim ..." /> <param name="pixx:nickfield" value="true" /> <param name="pixx:styleselector" value="true" /> <param name="pixx:setfontonstyle" value="true" /> <param name="pixx:showabout" value="true" /> <param name="pixx:showstatus" value="{SHOW_STATUS}" /> <param name="pixx:showdock" value="{SHOW_DOCK}" /> <param name="pixx:showconnect" value="{SHOW_CONNECT}" /> <param name="pixx:showchanlist" value="{SHOW_CHANLIST}" /> <param name="pixx:color0" value="{BUTTON_SURROUND}" /> <param name="pixx:color1" value="{3D_BUTTON_HIGHLIGHT}" /> <param name="pixx:color2" value="{3D_BUTTON_SHADOW}" /> <param name="pixx:color3" value="{SCROLLBAR_TOP/BOTTOM}" /> <param name="pixx:color4" value="{SCROLLBAR_HIGHLIGHT}" /> <param name="pixx:color5" value="{BUTTON_BACKGROUND}" /> <param name="pixx:color6" value="{UI_BACKGROUND}" /> <param name="pixx:color7" value="{WINDOW_BUTTON_BACKGROUND}" /> <param name="pixx:color8" value="FF0000" /> <param name="pixx:color9" value="{MDI_BUTTONS_BACKGROUND}" /> <param name="pixx:color10" value="{USER_STATE_BUTTON}" /> <param name="pixx:color11" value="FF0000" /> <param name="pixx:color12" value="{ALERT_UPDATE_CHANNEL}" /> <param name="pixx:color13" value="00FFFF" /> <param name="pixx:color14" value="FF0000" /> <param name="pixx:color15" value="{USER_BUTTONS}" /> <param name="fingerreply" value="Mx_PJIRC v1.0.0" /> <param name="pixx:nickprefix" value="«" /> <param name="pixx:nickpostfix" value="»\s" /> <param name="pixx:prefixops" value="true" /> <param name="pixx:prefixvops" value="true" /> <param name="pixx:prefixbold" value="true" /> <param name="pixx:prefixsopfg" value="4" /> <param name="pixx:prefixsopbg" value="0" /> <param name="pixx:prefixpopfg" value="4" /> <param name="pixx:prefixpopbg" value="0" /> <param name="pixx:prefixopfg" value="5" /> <param name="pixx:prefixopbg" value="8" /> <param name="pixx:prefixhopfg" value="6" /> <param name="pixx:prefixhopbg" value="3" /> <param name="pixx:prefixvopfg" value="3" /> <param name="pixx:prefixvopbg" value="2" /> <param name="javabot:alias1" value="P" /> <param name="javabot:alias2" value="N" /> <param name="javabot:alias3" value="j" /> <param name="javabot:alias4" value="hop" /> <param name="javabot:alias5" value="W" /> <param name="javabot:alias6" value="Q" /> <param name="javabot:aliascommand1_1" value="/part $-" /> <param name="javabot:aliascommand2_1" value="/nick $1" /> <param name="javabot:aliascommand3_1" value="/join #$1" /> <param name="javabot:aliascommand4_1" value="/part #$1" /> <param name="javabot:aliascommand4_2" value="/join #$1" /> <param name="javabot:aliascommand5_1" value="/whois $1" /> <param name="javabot:aliascommand6_1" value="/query $1" /> </applet> </td> </tr> <tr> <td valign="top" class="taburlo"> <table width="100%" border="0"> <tr> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/ciao.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':ciao:');document.pjirc.requestSourceFocus()" alt=":ciao:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/inca.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':inca:');document.pjirc.requestSourceFocus()" alt=":inca:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/wink.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+';)');document.pjirc.requestSourceFocus()" alt=";)" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/dito.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':dito:');document.pjirc.requestSourceFocus()" alt=":dito:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/clap.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':clap:');document.pjirc.requestSourceFocus()" alt=":clap:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/porc.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':porc:');document.pjirc.requestSourceFocus()" alt=":porc:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/nono.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':nono:');document.pjirc.requestSourceFocus()" alt=":nono:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/haha.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':haha:');document.pjirc.requestSourceFocus()" alt=":haha:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/love.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':love:');document.pjirc.requestSourceFocus()" alt=":love:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/ko.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':ko:');document.pjirc.requestSourceFocus()" alt=":ko:" /></a></div></td> </tr> <tr> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/smile.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':)');document.pjirc.requestSourceFocus()" alt=":)" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/triste.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':(');document.pjirc.requestSourceFocus()" alt=":(" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/abbra.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':abbra:');document.pjirc.requestSourceFocus()" alt=":abbra:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/ghgh.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':ghgh:');document.pjirc.requestSourceFocus()" alt=":ghgh:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/ubria.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':ubria:');document.pjirc.requestSourceFocus()" alt=":ubria:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/bacio.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':bacio:');document.pjirc.requestSourceFocus()" alt=":bacio:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/perdono.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':perdono:');document.pjirc.requestSourceFocus()" alt=":perdono:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/prrr.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':prrr:');document.pjirc.requestSourceFocus()" alt=":prrr:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/fuma.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':fuma:');document.pjirc.requestSourceFocus()" alt=":fuma:" /></a></div></td> <td class="tdblock"><div align="center"><a href="#{CHAT_NAME}"><img src="pjirc/img/frigna.gif" border="0" onclick="document.pjirc.setFieldText(document.pjirc.getFieldText()+':frigna:');document.pjirc.requestSourceFocus()" alt=":frigna:" /></a></div></td> </tr> </table> </td> <tr> <td class="row1" align="center" width="100%">{SERVER} :: {PORT} :: {CHANNEL}</td> </tr> <tr> <td class="row1"><img src="images/spacer.gif" height="10"></td> </tr> </table> --- NEW FILE: pjirc_faq.tpl --- <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> <tr> <td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td> </tr> </table> <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center"> <tr> <th class="thHead">{L_FAQ_TITLE}</th> </tr> <tr> <td class="row1"> <!-- BEGIN faq_block_link --> <span class="gen"><b>{faq_block_link.BLOCK_TITLE}</b></span><br /> <!-- BEGIN faq_row_link --> <span class="gen"><a href="{faq_block_link.faq_row_link.U_FAQ_LINK}" class="postlink">{faq_block_link.faq_row_link.FAQ_LINK}</a></span><br /> <!-- END faq_row_link --> <br /> <!-- END faq_block_link --> </td> </tr> <tr> <td class="catBottom" height="28"> </td> </tr> </table> <br clear="all" /> <!-- BEGIN faq_block --> <table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0" align="center"> <tr> <td class="catHead" height="28" align="center"><span class="cattitle">{faq_block.BLOCK_TITLE}</span></td> </tr> <!-- BEGIN faq_row --> <tr> <td class="{faq_block.faq_row.ROW_CLASS}" align="left" valign="top"><span class="postbody"><a name="{faq_block.faq_row.U_FAQ_ID}"></a><b>{faq_block.faq_row.FAQ_QUESTION}</b></span><br /><span class="postbody">{faq_block.faq_row.FAQ_ANSWER}<br /><a href="#top" onclick="window.scrollTo(0,0); return false">{L_BACK_TO_TOP}</a></span></td> </tr> <tr> <td class="spaceRow" height="1"><img src="{U_PHPBB_ROOT_PATH}templates/subSilver/images/spacer.gif" alt="" width="1" height="1" /></td> </tr> <!-- END faq_row --> </table> <br clear="all" /> <!-- END faq_block --> <table width="100%" cellspacing="2" border="0" align="center"> <tr> <td align="right" valign="middle" nowrap="nowrap"><span class="gensmall">{S_TIMEZONE}</span><br /><br />{JUMPBOX}</td> </tr> </table> --- NEW FILE: pjirc_front.tpl --- <table width="{BLOCK_SIZE}" cellpadding="0" cellspacing="0" border="0" class="forumline"> <tr> <th class="thHead" align="center"> {L_TITLE} </th> </tr> <tr> <td> <table width="100%" cellpadding="0" cellspacing="1" border="0" class="forumline" style="border:none; padding:4px;"> <tr> <!-- BEGIN switch_chatters_list_on --> <td class="row1" align="center" valign="middle" rowspan="3"> <!-- END switch_chatters_list_on --> <!-- BEGIN switch_chatters_list_off --> <td class="row1" align="center" valign="middle" rowspan="2"> <!-- END switch_chatters_list_off --> <img src="{CHAT_IMG}" alt="{L_VERSION}" border="0" /> </td> <!-- <td class="row1" align="left"> <span class="gensmall">{TOTAL_CHATTERS_ONLINE}</span> </td> --> </tr> <tr> <td class="row1" align="left"> <span class="gensmall"> <!-- BEGIN switch_user_logged_out --> [ {L_LOGIN_TO_JOIN_CHAT} ] <!-- END switch_user_logged_out --> <!-- BEGIN switch_user_logged_in --> [ <a href="javascript:void(0);" onClick="window.open('{S_JOIN_CHAT}','','scrollbars=no,resizable=no,width=800,height=540')">{L_CLICK_TO_JOIN_CHAT}</a> ] <!-- END switch_user_logged_in --> <!-- BEGIN switch_user_chatting --> [ {L_ALREADY_CHATTING} ] <!-- END switch_user_chatting --> </span> </td> </tr> <!-- BEGIN switch_chatters_list_on --> <tr> <td class="row1" align="left"> <span class="gensmall">{CHATTERS_LIST}</span> </td> </tr> <!-- END switch_chatters_list_on --> </table> </td> </tr> </table> <br clear="all" /> |
|
From: OryNider <ory...@us...> - 2007-06-07 00:11:37
|
Update of /cvsroot/mxbb/mx_pjirc/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15472/admin Added Files: pjirc_config_body.tpl Log Message: --- NEW FILE: pjirc_config_body.tpl --- <center><h1>{L_PJIRC_SETTINGS}</h1> <p>{L_PJIRC_SETTINGS_EXPLAIN}<br /></p></center> <form enctype="multipart/form-data" action="{S_ACTION}" method=post> <table width="640" cellpadding="4" cellspacing="1" border="0" align="center" class="forumline"> <tr> <th class="thHead" colspan="2">{L_PJIRC_SETTINGS}</th> </tr> <tr> <td class="row1"><p><b>{L_CHAT}:</b><br></p></td> <td class="row2"><input type="text" maxlength="64" size="32" name="chat_name" value="{CHAT_NAME}" /></td> </tr> <tr> <td class="row1"><p><b>{L_PREFIX_USERNAME}:</b><br><span class="gensmall">{L_PREFIX_USERNAME_EXPLAIN}</span></p></td> <td class="row2"><input type="text" maxlength="16" size="16" name="prefix_username" value="{PREFIX_USERNAME}" /></td> </tr> <tr> <td class="row1"><p><b>{L_SERVER}:</b><br></p></td> <td class="row2"><input type="text" maxlength="64" size="32" name="irc_server" value="{IRC_SERVER}" /></td> </tr> <tr> <td class="row1"><p><b>{L_PORT}:</b><br></p></td> <td class="row2"><input type="text" maxlength="5" size="5" name="irc_port" value="{IRC_PORT}" /></td> </tr> <tr> <td class="row1"><p><b>{L_CHANNEL}:</b><br></p></td> <td class="row2"><input type="text" maxlength="32" size="16" name="irc_channel" value="{IRC_CHANNEL}" /></td> </tr> <tr> <td class="row1"><p><b>{L_CHECK_PERIOD}:</b><br><span class="gensmall">{L_CHECK_PERIOD_EXPLAIN}</span></p></td> <td class="row2"><input type="text" maxlength="16" size="16" name="check_period" value="{CHECK_PERIOD}" /></td> </tr> <tr> <td class="row1"><p><b>{L_QUIT_MESSAGE}:</b><br></p></td> <td class="row2"><textarea cols=64 name="irc_quit" row=3 />{IRC_QUIT}</textarea></td> </tr> <tr> <td class="catBottom" colspan="2" align="center">{S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /> </td> </tr> </table> <br> <table width="640" cellpadding="4" cellspacing="1" border="0" align="center" class="forumline"> <tr> <th class="thHead" colspan="2">{L_BUTTON_SETTINGS}</th> </tr> <tr> <td class="row1"><p><b>{L_SHOW_STATUS}:</b><br></p></td> <td class="row2">{SHOW_STATUS}</td></td> </tr> <tr> <td class="row1"><p><b>{L_SHOW_DOCK}:</b><br></p></td> <td class="row2">{SHOW_DOCK}</td></td> </tr> <tr> <td class="row1"><p><b>{L_SHOW_CONNECT}:</b><br></p></td> <td class="row2">{SHOW_CONNECT}</td></td> </tr> <tr> <td class="row1"><p><b>{L_SHOW_CHANLIST}:</b><br></p></td> <td class="row2">{SHOW_CHANLIST}</td></td> </tr> </table> <br> <table width="640" cellpadding="4" cellspacing="1" border="0" align="center" class="forumline"> <tr> <th class="thHead" colspan="2">{L_PJIRC_COLORS}</th> </tr> <tr> <td class="row1"><p><b>{L_BUTTON_SURROUND}:</b><br></p></td> <td class="row2"><select name="button_surround">{BUTTON_SURROUND}</select></td> </tr> <tr> <td class="row1"><p><b>{L_3D_BUTTON_HIGHLIGHT}:</b></p></td> <td class="row2"><select name="3d_button_highlight">{3D_BUTTON_HIGHLIGHT}</select></td> </tr> <tr> <td class="row1"><p><b>{L_3D_BUTTON_SHADOW}:</b><br></p></td> <td class="row2"><select name="3d_button_shadow">{3D_BUTTON_SHADOW}</select></td> </tr> <tr> <td class="row1"><p><b>{L_SCROLLBAR_TOP-BOTTOM}:</b><br></p></td> <td class="row2"><select name="scrollbar_top-bottom">{SCROLLBAR_TOP-BOTTOM}</select></td> </tr> <tr> <td class="row1"><p><b>{L_SCROLLBAR_HIGHLIGHT}:</b><br></p></td> <td class="row2"><select name="scrollbar_highlight">{SCROLLBAR_HIGHLIGHT}</select></td> </tr> <tr> <td class="row1"><p><b>{L_BUTTON_BACKGROUND}:</b><br></p></td> <td class="row2"><select name="button_background">{BUTTON_BACKGROUND}</select></td> </tr> <tr> <td class="row1"><p><b>{L_UI_BACKGROUND}:</b><br></p></td> <td class="row2"><select name="ui_background">{UI_BACKGROUND}</select></td> </tr> <tr> <td class="row1"><p><b>{L_WINDOW_BUTTON_BACKGROUND}:</b><br></p></td> <td class="row2"><select name="window_button_background">{WINDOW_BUTTON_BACKGROUND}</select></td> </tr> <tr> <td class="row1"><p><b>{L_USER_STATE_BUTTON}:</b><br></p></td> <td class="row2"><select name="user_state_button">{USER_STATE_BUTTON}</select></td> </tr> <tr> <td class="row1"><p><b>{L_MDI_BUTTONS_BACKGROUND}:</b><br></p></td> <td class="row2"><select name="mdi_buttons_background">{MDI_BUTTONS_BACKGROUND}</select></td> </tr> <tr> <td class="row1"><p><b>{L_ALERT_UPDATE_CHANNEL}:</b><br></p></td> <td class="row2"><select name="alert_update_channel">{ALERT_UPDATE_CHANNEL}</select></td> </tr> <tr> <td class="row1"><p><b>{L_USER_BUTTONS}:</b><br></p></td> <td class="row2"><select name="user_buttons"/>{USER_BUTTONS}</select></td> </tr> <tr> <td class="row1"><p><b>{L_BACKGROUND_IMAGE}:</b><br><span class="gensmall">{L_BACKGROUND_IMAGE_EXPLAIN}</span></p></td> <td class="row2"><input type="hidden" name="MAX_FILE_SIZE" value="200000" /><input type="file" name="background_image" class="post" />{BG_IMAGE_ON_OFF}</td></td> </tr> <tr> <td class="catBottom" colspan="2" align="center">{S_HIDDEN_FIELDS} <input type="submit" name="submit" value="{L_SUBMIT}" class="mainoption" /> <input type="reset" value="{L_RESET}" class="liteoption" /> </td> </tr> </table> </form> <br clear="all" /> |
Update of /cvsroot/mxbb/mx_pjirc/pjirc/img In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14900/img Added Files: OH-1.gif OH-2.gif OH-3.gif abbra.gif amen.gif ange.gif arbre.gif argh.gif att.gif bacio.gif ballon.gif biere.gif biggrin.gif bombe.gif bouche.gif bouqin.gif cadeau.gif candel.gif chien.gif ciao.gif clap.gif clin-oeuil-langue.gif clin-oeuil.gif coeur-brise.gif coeur.gif comprends-pas.gif content.gif cool.gif cry.gif diable.gif dito.gif dwchat.gif enerve1.gif enerve2.gif femme.gif fille.gif fleur.gif frigna.gif fuma.gif fume.gif garcon.gif ghgh.gif grognon.gif hack_addict.gif haha.gif halloween.gif hamburger.gif homme.gif icon_guitar.gif icon_headphones.gif icon_karate.gif icon_mick.gif icon_walking.gif idea.gif inca.gif ko.gif laf.gif langue.gif lettre.gif lit.gif lol.gif love.gif lune.gif mecontent.gif neutral.gif newbie.gif nono.gif occ.gif ordi.gif perdono.gif pere-noel.gif pleure.gif poisson.gif pomme.gif porc.gif portable.gif pouce-non.gif pouce-oui.gif prrr.gif question.gif razz.gif roll-eyes.gif rouge.gif sapin.gif sleep.gif smile.gif soleil.gif sourire.gif terre.gif triste.gif ubria.gif verre-eau.gif verre-vin.gif wink.gif yinyang.gif Log Message: --- NEW FILE: nono.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pouce-oui.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: prrr.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: terre.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: perdono.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: femme.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: hack_addict.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ciao.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clin-oeuil.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: idea.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: coeur.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ko.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: question.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arbre.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: abbra.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: grognon.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: soleil.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: neutral.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dito.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: candel.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: OH-3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: amen.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pere-noel.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: portable.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: diable.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clin-oeuil-langue.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rouge.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: halloween.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ghgh.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: homme.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_guitar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: argh.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ballon.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fleur.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: comprends-pas.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_karate.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: chien.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sapin.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bouche.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bouqin.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: triste.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bacio.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: biere.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pouce-non.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: laf.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mecontent.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: verre-vin.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sourire.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lol.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: content.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: biggrin.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: love.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_headphones.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: inca.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cry.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: OH-2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: roll-eyes.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: occ.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sleep.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: razz.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: porc.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: OH-1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bombe.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dwchat.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cadeau.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: enerve1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: langue.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clap.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: hamburger.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lune.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pleure.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: coeur-brise.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: verre-eau.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: smile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wink.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: haha.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pomme.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: poisson.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_walking.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: att.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fuma.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: newbie.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mick.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: yinyang.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fille.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ubria.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: frigna.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: enerve2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ordi.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lettre.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: garcon.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ange.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cool.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fume.gif --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-06-07 00:11:28
|
Update of /cvsroot/mxbb/mx_pjirc/pjirc/snd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14900/snd Added Files: bell2.au ding.au Log Message: --- NEW FILE: bell2.au --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ding.au --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-06-07 00:10:38
|
Update of /cvsroot/mxbb/mx_pjirc/language/lang_romanian In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14635/lang_romanian Added Files: lang_admin.php lang_faq.php lang_main.php Log Message: --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * common.php * ---------- * begin : July, 2003 * copyright : (c) 2003 Marc Ferran; Eric; Amo * email : markus_petrux at phpmix dot com ; am...@ho... * module : mx_pjirc * file contents : Main module strings. * language : English * translated by : * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ $lang['Chat'] = "Chat"; $lang['How_Many_Chatters'] = "There are <b>%d</b> user(s) on Chat now"; $lang['Who_Are_Chatting' ] = "Who's on Chat: <b>%s</b>"; $lang['Click_to_join_chat'] = "Click to join Chat"; $lang['log_out_chat'] = "You have successfully logged out from Chat on "; $lang['Login_to_join_chat'] = "Login to join Chat"; $lang['Already_chatting'] = "You are chatting"; $lang['Please_Login_to_chat'] = "Please, login to join Chat."; $lang['About_Pjirc'] = "About Pjirc"; $lang['Pjirc_Options'] = "Pjirc Options"; $lang['About'] = "About"; $lang['Options'] = "Options"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php * ---------- * begin : december, 2003 * copyright : Eric; Amo * email : am...@ho... * module : mx_pjirc * file contents : Admin module strings. * language : English * translated by : * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ $lang['Pjirc_Settings'] = "Pjirc Settings"; $lang['Pjirc_Settings_explain'] = "Use the form below to configure your Pjirc Settings"; $lang['Pjirc_Settings_updated'] = "Pjirc Settings Updated Sucessfully."; $lang['Pjirc_Settings_return'] = "Click %sHere%s to return to Pjirc Settings."; $lang['Chat_name'] = "Chat name"; $lang['Prefix_username'] = "Prefix name"; $lang['Prefix_username_explain'] = "In order to avoid username conflict in servers.<br>Eexemple : "; $lang['Prefix_username_explain'] .=" the prefix is MX_ and amo join the chat,<br> his username "; $lang['Prefix_username_explain'] .="on the chat will be \"MX_amo\" if \"amo\" is already used"; $lang['Quit_message'] = "Quit message"; $lang['IRC_channel'] = "IRC channel"; $lang['IRC_port'] = "IRC port"; $lang['IRC_server'] = "IRC server"; $lang['Check_period'] = "Check period (seconds)"; $lang['Check_period_explain'] = "For exemple : Check who is chatting every 120 seconds"; $lang['Reset'] = "Reset"; $lang['Submit'] = "Submit"; $lang['Pjirc_style'] = "Pjirc style"; $lang['Button_surround'] = "Button surround"; $lang['3D_button_highlight'] = "3D button highlight"; $lang['3D_button_shadow'] = "3D button shadow"; $lang['Scrollbar_top-bottom'] = "Scrollbar top-bottom"; $lang['Scrollbar_highlight'] = "Scrollbar highlight"; $lang['Button_background'] = "Button background"; $lang['UI_background'] = "UI background"; $lang['Window_button_background'] = "Window button background"; $lang['User_state_button'] = "User state button"; $lang['MDI_buttons_background'] = "MDI buttons background"; $lang['Alert_update_channel'] = "Alert update channel"; $lang['User_buttons'] = "User buttons"; $lang['Background_image'] = "Background image"; $lang['Background_image_explain'] = "recomended : 350px/350px"; $lang['Button_settings'] = "Button's settings"; $lang['Show_status'] = "Show status"; $lang['Show_connect'] = "Show Connect Button"; $lang['Show_dock'] = "Show Dock Button"; $lang['Show_chanlist'] = "Show Channel List Button"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_faq.php --- <?php /*************************************************************************** * faq.php * ---------- * begin : december, 2003 * copyright : Eric; Amo * email : am...@ho... * module : mx_pjirc * file contents : FAQ module strings. * language : English * translated by : * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ //PIRC Chat MOD FAQ by Eric $faq[] = array("--", "PIRC Questions"); $faq[] = array("I can't Log in!", "If you are using Sun Java Virtual Machine instead of the Microsoft one, go to the control panel, then \"java plugin\", then \"browser\", and uncheck \"Internet Explorer\" checkbox.<br /><br />If you aren't using Sun Java and you still can't log in, make sure you are saying yes to the Sercurity Warning that Pops up. If you don't it won't let you log in.<br /><br />If you still can't log in this is a problem with PIRC. This is taken from their FAQ: \"...if you want pjirc to work correctly, you MUST install your irc server on the same server than the one running your website. This website may only contains pjirc files while the rest of the \"real\" website is on any other host, that's not a problem. But the pjirc files ARE to be on the irc server.\""); $faq[] = array("What if my name is being used?", "If your name is being used by someone else on the server then it will have a message pop up where you can change your name. Try adding numbers to the end of your name. Spaces aren't allowed in your name!"); $faq[] = array("What are the smilies?", "The smilies are the same ones that are on the board."); ?> |
|
From: OryNider <ory...@us...> - 2007-06-07 00:10:34
|
Update of /cvsroot/mxbb/mx_pjirc/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14635/lang_english Added Files: lang_admin.php lang_faq.php lang_main.php Log Message: --- NEW FILE: lang_main.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: lang_main.php,v 1.1 2007/06/07 00:10:30 orynider Exp $ * @copyright (c) 2003-2006 [Florin Bodin] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ $lang['Chat'] = "Chat"; $lang['How_Many_Chatters'] = "There are <b>%d</b> user(s) on Chat now"; $lang['Who_Are_Chatting' ] = "Who's on Chat: <b>%s</b>"; $lang['Click_to_join_chat'] = "Click to join Chat"; $lang['log_out_chat'] = "You have successfully logged out from Chat on "; $lang['Login_to_join_chat'] = "Login to join Chat"; $lang['Already_chatting'] = "You are chatting"; $lang['Please_Login_to_chat'] = "Please, login to join Chat."; $lang['About_Pjirc'] = "About Pjirc"; $lang['Pjirc_Options'] = "Pjirc Options"; $lang['About'] = "About"; $lang['Options'] = "Options"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: lang_admin.php,v 1.1 2007/06/07 00:10:26 orynider Exp $ * @copyright (c) 2003-2006 [Florin Bodin] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ $lang['Pjirc_Settings'] = "Pjirc Settings"; $lang['Pjirc_Settings_explain'] = "Use the form below to configure your Pjirc Settings"; $lang['Pjirc_Settings_updated'] = "Pjirc Settings Updated Sucessfully."; $lang['Pjirc_Settings_return'] = "Click %sHere%s to return to Pjirc Settings."; $lang['Chat_name'] = "Chat name"; $lang['Prefix_username'] = "Prefix name"; $lang['Prefix_username_explain'] = "In order to avoid username conflict in servers.<br>Eexemple : "; $lang['Prefix_username_explain'] .=" the prefix is MX_ and amo join the chat,<br> his username "; $lang['Prefix_username_explain'] .="on the chat will be \"MX_amo\" if \"amo\" is already used"; $lang['Quit_message'] = "Quit message"; $lang['IRC_channel'] = "IRC channel"; $lang['IRC_port'] = "IRC port"; $lang['IRC_server'] = "IRC server"; $lang['Check_period'] = "Check period (seconds)"; $lang['Check_period_explain'] = "For exemple : Check who is chatting every 120 seconds"; $lang['Reset'] = "Reset"; $lang['Submit'] = "Submit"; $lang['Pjirc_style'] = "Pjirc style"; $lang['Button_surround'] = "Button surround"; $lang['3D_button_highlight'] = "3D button highlight"; $lang['3D_button_shadow'] = "3D button shadow"; $lang['Scrollbar_top-bottom'] = "Scrollbar top-bottom"; $lang['Scrollbar_highlight'] = "Scrollbar highlight"; $lang['Button_background'] = "Button background"; $lang['UI_background'] = "UI background"; $lang['Window_button_background'] = "Window button background"; $lang['User_state_button'] = "User state button"; $lang['MDI_buttons_background'] = "MDI buttons background"; $lang['Alert_update_channel'] = "Alert update channel"; $lang['User_buttons'] = "User buttons"; $lang['Background_image'] = "Background image"; $lang['Background_image_explain'] = "recomended : 350px/350px"; $lang['Button_settings'] = "Button's settings"; $lang['Show_status'] = "Show status"; $lang['Show_connect'] = "Show Connect Button"; $lang['Show_dock'] = "Show Dock Button"; $lang['Show_chanlist'] = "Show Channel List Button"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_faq.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: lang_faq.php,v 1.1 2007/06/07 00:10:29 orynider Exp $ * @copyright (c) 2003-2006 [Florin Bodin] mxBB Development Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ //PIRC Chat MOD FAQ by Eric $faq[] = array("--", "PIRC Questions"); $faq[] = array("I can't Log in!", "If you are using Sun Java Virtual Machine instead of the Microsoft one, go to the control panel, then \"java plugin\", then \"browser\", and uncheck \"Internet Explorer\" checkbox.<br /><br />If you aren't using Sun Java and you still can't log in, make sure you are saying yes to the Sercurity Warning that Pops up. If you don't it won't let you log in.<br /><br />If you still can't log in this is a problem with PIRC. This is taken from their FAQ: \"...if you want pjirc to work correctly, you MUST install your irc server on the same server than the one running your website. This website may only contains pjirc files while the rest of the \"real\" website is on any other host, that's not a problem. But the pjirc files ARE to be on the irc server.\""); $faq[] = array("What if my name is being used?", "If your name is being used by someone else on the server then it will have a message pop up where you can change your name. Try adding numbers to the end of your name. Spaces aren't allowed in your name!"); $faq[] = array("What are the smilies?", "The smilies are the same ones that are on the board."); ?> |
|
From: OryNider <ory...@us...> - 2007-06-07 00:10:16
|
Update of /cvsroot/mxbb/mx_pjirc/doc/.xvpics In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv13949 Added Files: buttons.jpg settings.jpg style.jpg Log Message: --- NEW FILE: settings.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: style.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: buttons.jpg --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_pjirc/pjirc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032/pjirc Added Files: Dutch.lng IRCApplet.class background.jpg config-dutch.lng config-english.lng config-french.lng config-german.lng config-hungarian.lng config-italian.lng config-romanian.lng config.cab config.jar danish.lng english.lng estonian.txt french.lng german.lng hungarian.lng irc-unsigned.jar irc.cab irc.jar italian.lng italiano.lng javabot.cab javabot.jar korean.lng pixx-dutch.lng pixx-english.lng pixx-english.txt pixx-estonian.lng pixx-french.lng pixx-german.lng pixx-hungarian.lng pixx-italian.lng pixx-italiano.lng pixx-korean.lng pixx-pt_br.lng pixx-readme.txt pixx-romanian.lng pixx-spanish.lng pixx.cab pixx.jar pjirc.cfg prefix-pixx-readme.txt readme.txt romanian.lng securedirc-unsigned.cab securedirc.cab spanish.lng thanks.txt versions.txt Log Message: --- NEW FILE: italiano.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # #------------------------------------------------------------------------- # # Traduzione italiana per PJIRC 2.0 a cura di: # Riccardo "Zenigata" Marzi # # Ultima revisione: 12/11/03 # # #Contatti: http://www.zenigata.it isp...@ze... ICQ:6031644 # #------------------------------------------------------------------------- # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 0001 [INTERPRETOR_NOT_ON_CHANNEL] Non sul canale 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : sottocomando dcc sconosciuto 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : parametri insufficienti 0004 [INTERPRETOR_BAD_CONTEXT] %1 : impossibile eseguirlo nel contesto corrente 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] Non puoi inviare codici CTCP via chat DCC 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : sottocomando di configurazione sconosciuto 0007 [INTERPRETOR_TIMESTAMP_ON] Indicazione orario attivata 0008 [INTERPRETOR_TIMESTAMP_OFF] Indicazione orario disattivata 0009 [INTERPRETOR_SMILEYS_ON] Faccine grafiche abilitate 000a [INTERPRETOR_SMILEYS_OFF] Faccine grafiche disabilitate 000b [INTERPRETOR_IGNORE_ON] Ora stai ignorando %1 000c [INTERPRETOR_IGNORE_OFF] Non stai piu' ignorando %1 000d [INTERPRETOR_MULTISERVER_DISABLED] Il supporto multiserver e' disabilitato 0101 [DCC_WAITING_INCOMING] Sto attendendo la connessione in entrata... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] Impossibile stabilire la connessione : %1 0103 [DCC_CONNECTION_ESTABLISHED] Connessione DCC stabilita 0104 [DCC_CONNECTION_CLOSED] Connesione chiusa 0105 [DCC_ERROR] Errore : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : impossibile inviare a %2 0107 [DCC_BAD_CONTEXT] Impossibile eseguire un comando dal seguente contesto 0108 [DCC_NOT_CONNECTED] Non connesso 0109 [DCC_UNABLE_PASSIVE_MODE] Impossibile inizializzare il modo passivo 010a [CTCP_PING_REPLY] [%1 risposta PING] : %2 seconds 010b [DCC_STREAM_CLOSED] Flusso chiuso 0201 [IDENT_FAILED_LAUNCH] Impossibile lanciare il server ident : %1 0202 [IDENT_REQUEST] Richiesta di ident da %1 0203 [IDENT_ERROR] Si e' verificato un errore 0204 [IDENT_REPLIED] Risponde %1 0205 [IDENT_DEFAULT_USER] utente predefinito 0206 [IDENT_NO_USER] Nessun utente per la risposta 0207 [IDENT_RUNNING_ON_PORT] Il server ident e' attivo sulla porta %1 0208 [IDENT_LEAVING] Il server ident sta chiudendo : %1 0209 [IDENT_NONE] niente 020a [IDENT_UNKNOWN] sconoscoiuto 020b [IDENT_UNDEFINED] Risultato indefinito 0301 [FILE_SAVEAS] Salva come 0401 [ABOUT_ABOUT] Info 0402 [ABOUT_PROGRAMMING] Programmazione 0403 [ABOUT_DESIGN] Design 0404 [ABOUT_THANKS] Un grazie a 0405 [ABOUT_SUPPORT] per il supporto, le idee ed il test 0406 [ABOUT_GPL] Questo programma e' distrubuito sotto la licenza GPL 0501 [SERVER_UNABLE_TO_CONNECT] Impossibile connettersi : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] Impossibile connettersi a %1 : Tantativo di connessione a %2 0503 [SERVER_DISCONNECTING] Disconnesione da %1 0504 [SERVER_CONNECTING] Connessione... 0505 [SERVER_NOT_CONNECTED] Non connesso 0506 [SERVER_LOGIN] Ok, sto entrando... 0507 [SERVER_DISCONNECTED] Disconnesso da %1 0508 [SERVER_ERROR] Errore : %1 071a [GUI_CHANGE_NICK] Cambia il nick in 071b [GUI_COPY_WINDOW] Copia il testo 0801 [ASL_MALE] Ragazzo, %1 anni, %2 0802 [ASL_FEMALE] Ragazza, %1 anni, %2 0803 [ASL_UNKNOWN] %1 anni da %2 ffff [ERROR_NOT_DEFINED] Stringa non definita --- NEW FILE: config-english.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2004 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. d001 [CONFIG_NO_EXT_MSG] No external messages d002 [CONFIG_OPS_SET_TOPIC] Only ops change topic d003 [CONFIG_INVITE_ONLY] Invite only d004 [CONFIG_CHAN_KEY] Channel key d005 [CONFIG_MODERATED] Moderated d006 [CONFIG_PRIVATE] Private d007 [CONFIG_SECRET] Secret d008 [CONFIG_MAX_USERS] Maximum users d009 [CONFIG_NO_NICKCHANGE] No Nick Change d00a [CONFIG_NO_CTCPS] No CTCPs d00b [CONFIG_SWEARFILTER] Swear Filter d00c [CONFIG_AUDITORIUM] Auditorium d00d [CONFIG_TITLE] configuration d00E [CONFIG_TOPIC] Topic ffff [ERROR_NOT_DEFINED] Undefined string --- NEW FILE: romanian.lng --- # Translated by dj50 [http://www.dj50.ro] 0001 [INTERPRETOR_NOT_ON_CHANNEL] Nu e canal 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : subcomanda dcc necunoscuta 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : parametrii insuficienti 0004 [INTERPRETOR_BAD_CONTEXT] %1 : imposibil de efectuat in acest context 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] Nu pot trimite coduri CTCP in Chat DCC 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : subcomanda de configurare necunoscuta 0007 [INTERPRETOR_TIMESTAMP_ON] Timestamp activ 0008 [INTERPRETOR_TIMESTAMP_OFF] Timestamp inactiv 0009 [INTERPRETOR_SMILEYS_ON] Smiles activi 000a [INTERPRETOR_SMILEYS_OFF] Smiles inactivi 000b [INTERPRETOR_IGNORE_ON] Acum ignori pe %1 000c [INTERPRETOR_IGNORE_OFF] %1 nu mai e ignorat 000d [INTERPRETOR_MULTISERVER_DISABLED] Suportul multiserver nu e activ 0101 [DCC_WAITING_INCOMING] Asteptam conexiunea... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] Conexiunea nu se poate deschide : %1 0103 [DCC_CONNECTION_ESTABLISHED] Conexiunea DCC stabilita 0104 [DCC_CONNECTION_CLOSED] Conexiunea inchisa 0105 [DCC_ERROR] Eroare : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : nu pot sa-i trimit lui %2 0107 [DCC_BAD_CONTEXT] Nu se poate executa comanda in contextul actual 0108 [DCC_NOT_CONNECTED] Neconectat 0109 [DCC_UNABLE_PASSIVE_MODE] Nu pot initializa modul pasiv 010a [CTCP_PING_REPLY] [%1 raspuns PING] : %2 secunde 010b [DCC_STREAM_CLOSED] Stream oprit 0201 [IDENT_FAILED_LAUNCH] Nu pot lansa server-ul Ident : %1 0202 [IDENT_REQUEST] Cerere Ident de la %1 0203 [IDENT_ERROR] A avut loc o eroare 0204 [IDENT_REPLIED] %1 a raspuns 0205 [IDENT_DEFAULT_USER] utilizator default 0206 [IDENT_NO_USER] Nici un utilizator pt cerere 0207 [IDENT_RUNNING_ON_PORT] Server-ul Ident ruleaza pe port-ul %1 0208 [IDENT_LEAVING] Server-ul Ident se termina : %1 0209 [IDENT_NONE] nici unul 020a [IDENT_UNKNOWN] necunoscut 020b [IDENT_UNDEFINED] Rezultat nedefinit 0301 [FILE_SAVEAS] Salveaza fisierul ca 0401 [ABOUT_ABOUT] Despre 0402 [ABOUT_PROGRAMMING] Programare 0403 [ABOUT_DESIGN] Design 0404 [ABOUT_THANKS] Multumiri 0405 [ABOUT_SUPPORT] pentru suport, idei si testare 0406 [ABOUT_GPL] Acest software este licentiat sub licenta GPL 0501 [SERVER_UNABLE_TO_CONNECT] Imposibila conectare : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] Imposibila conectarea la %1 : momentat se incearca conectarea la %2 0503 [SERVER_DISCONNECTING] Deconectare de la %1 0504 [SERVER_CONNECTING] Se conecteaza... 0505 [SERVER_NOT_CONNECTED] Neconectat 0506 [SERVER_LOGIN] Logare... 0507 [SERVER_DISCONNECTED] Deconectat de la %1 0508 [SERVER_ERROR] Erorare : %1 071a [GUI_CHANGE_NICK] Schimba nick in 071b [GUI_COPY_WINDOW] Copiaza textul 0801 [ASL_MALE] Baiat, in varsta de %1, %2 0802 [ASL_FEMALE] Fata, in varsta de %1, %2 0803 [ASL_UNKNOWN] %1 ani de la %2 ffff [ERROR_NOT_DEFINED] Text nedefinit # Translated by dj50 [http://www.dj50.ro] --- NEW FILE: german.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 0001 [INTERPRETOR_NOT_ON_CHANNEL] Nicht in einem Channel eingeloggt 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : Unbekannter DCC-Befehl 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : Zu wenig Parameter 0004 [INTERPRETOR_BAD_CONTEXT] %1 : Gegenwärtiger Kontext kann nicht hergestellt werden 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] CTCP-Codes können nicht über DCC-Chat gesendet werden 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : Unbekannter Konfigurationsbefehl 0007 [INTERPRETOR_TIMESTAMP_ON] Zeitstempel ist aktiviert 0008 [INTERPRETOR_TIMESTAMP_OFF] Zeitstempel ist deaktiviert 0009 [INTERPRETOR_SMILEYS_ON] Grafische Smileys sind aktiviert 000a [INTERPRETOR_SMILEYS_OFF] Grafische Smileys sind deaktiviert 000b [INTERPRETOR_IGNORE_ON] Ignoriere %1 ab jetzt 000c [INTERPRETOR_IGNORE_OFF] Ignoriere %1 nicht mehr 000d [INTERPRETOR_MULTISERVER_DISABLED] Multiserver Unterstützung ist deaktiviert 0101 [DCC_WAITING_INCOMING] Verbindung wird hergestellt ... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] Kann keine Verbindung herstellen : %1 0103 [DCC_CONNECTION_ESTABLISHED] DCC Verbindung hergestellt! 0104 [DCC_CONNECTION_CLOSED] Verbindung beendet 0105 [DCC_ERROR] Fehler! : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : Kann nicht senden an %2 0107 [DCC_BAD_CONTEXT] Kann Befehl aus gegenwärtigem Kontext nicht ausführen 0108 [DCC_NOT_CONNECTED] Nicht verbunden 0109 [DCC_UNABLE_PASSIVE_MODE] Kann passiven Modus nicht starten 010a [CTCP_PING_REPLY] [%1 PING reply] : %2 Sekunden 010b [DCC_STREAM_CLOSED] Stream geschlossen 0201 [IDENT_FAILED_LAUNCH] Ident Server starten nicht möglich: %1 0202 [IDENT_REQUEST] Ident Anfrage von %1 0203 [IDENT_ERROR] Es ist ein Fehler aufgetreten 0204 [IDENT_REPLIED] Beantwortet %1 0205 [IDENT_DEFAULT_USER] Standard User 0206 [IDENT_NO_USER] Kein User zum Antworten 0207 [IDENT_RUNNING_ON_PORT] Ident Server gestartet auf Port %1 0208 [IDENT_LEAVING] Ident Server gestoppt : %1 0209 [IDENT_NONE] Keine 020a [IDENT_UNKNOWN] Unbekannt 020b [IDENT_UNDEFINED] Undefiniertes Ergebnis 0301 [FILE_SAVEAS] Datei speichern unter 0401 [ABOUT_ABOUT] Über 0402 [ABOUT_PROGRAMMING] Programmierung 0403 [ABOUT_DESIGN] Design 0404 [ABOUT_THANKS] Danke an 0405 [ABOUT_SUPPORT] Für Support, Ideen und Testen 0406 [ABOUT_GPL] Diese Software ist lizensiert unter der GPL Lizenz 0501 [SERVER_UNABLE_TO_CONNECT] Kann nicht verbinden mit : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] Kann nicht verbinden mit %1 : Probiere gerade mich mit %2 zu verbinden 0503 [SERVER_DISCONNECTING] Trenne die Verbindung zu %1 0504 [SERVER_CONNECTING] Verbinden... 0505 [SERVER_NOT_CONNECTED] Nicht verbunden 0506 [SERVER_LOGIN] Einloggen... 0507 [SERVER_DISCONNECTED] Verbindung getrennt zu %1 0508 [SERVER_ERROR] Fehler! : %1 071a [GUI_CHANGE_NICK] Ändere Nick in 071b [GUI_COPY_WINDOW] Kopiere Text 0801 [ASL_MALE] Männlich, %1 Jahre alt, %2 0802 [ASL_FEMALE] Weiblich, %1 Jahre alt, %2 0803 [ASL_UNKNOWN] %1 Jahre alt von %2 ffff [ERROR_NOT_DEFINED] String nicht gefunden --- NEW FILE: spanish.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. # # Translate to spanish by # enzo - Eduardo Garcia # en...@en... # http://www.enzolutions.com # 0001 [INTERPRETOR_NOT_ON_CHANNEL] No es un canal 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : desconocido subcomando dcc 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : insuficientes parámetros 0004 [INTERPRETOR_BAD_CONTEXT] %1 : no es posible realizarse en el contexto 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] No se pueden enviar códigos CTCP via DCC 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : desconocido comando config 0007 [INTERPRETOR_TIMESTAMP_ON] Timestamp habilitado 0008 [INTERPRETOR_TIMESTAMP_OFF] Timestamp desabilitado 0009 [INTERPRETOR_SMILEYS_ON] Caritas Felices habilitado 000a [INTERPRETOR_SMILEYS_OFF] Caritas Felices deshabilitado 000b [INTERPRETOR_IGNORE_ON] Ignorar ahora a %1 000c [INTERPRETOR_IGNORE_OFF] No ignorar mas a %1 000d [INTERPRETOR_MULTISERVER_DISABLED] Soporte a Multi Servidor deshabilitado 0101 [DCC_WAITING_INCOMING] Esperando por conexión entrante... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] No es posible abrir conexión : %1 0103 [DCC_CONNECTION_ESTABLISHED] Establecida conexión DCC 0104 [DCC_CONNECTION_CLOSED] Conexión cerrada 0105 [DCC_ERROR] Error : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : no es posible enviar mensaje a %2 0107 [DCC_BAD_CONTEXT] No es posible ejecutar el comando desde este contexto 0108 [DCC_NOT_CONNECTED] No esta conectado 0109 [DCC_UNABLE_PASSIVE_MODE] No es posible iniciar modo pasivo 010a [CTCP_PING_REPLY] [%1 PING reply] : %2 segundos 010b [DCC_STREAM_CLOSED] Flujo Cerrado 0201 [IDENT_FAILED_LAUNCH] Fallo el inicio del servidor Ident : %1 0202 [IDENT_REQUEST] Solicitud de Ident para : %1 0203 [IDENT_ERROR] Ha ocurrido un error 0204 [IDENT_REPLIED] Contestado a %1 0205 [IDENT_DEFAULT_USER] Usuario por defecto 0206 [IDENT_NO_USER] Ningún usuario para solicitudes 0207 [IDENT_RUNNING_ON_PORT] Servidor Ident conectado en el puerto %1 0208 [IDENT_LEAVING] Saliendo de servidor Ident : %1 0209 [IDENT_NONE] ninguno 020a [IDENT_UNKNOWN] desconocido 020b [IDENT_UNDEFINED] Resultado indefinido 0301 [FILE_SAVEAS] Salvar archivo como 0401 [ABOUT_ABOUT] Acerca de 0402 [ABOUT_PROGRAMMING] Programar 0403 [ABOUT_DESIGN] Diseño 0404 [ABOUT_THANKS] Gracias a 0405 [ABOUT_SUPPORT] para soporte,ideas y pruebas 0406 [ABOUT_GPL] Este software esta licenciado bajo la licencia GPL 0501 [SERVER_UNABLE_TO_CONNECT] No es posible conectarse a : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] No es posible conectarse a %1 : intentando conectarse a : %2 0503 [SERVER_DISCONNECTING] Desconectando de %1 0504 [SERVER_CONNECTING] Conectando... 0505 [SERVER_NOT_CONNECTED] No conectado 0506 [SERVER_LOGIN] Registrando en ... 0507 [SERVER_DISCONNECTED] Desconectado de : %1 0508 [SERVER_ERROR] Error : %1 071a [GUI_CHANGE_NICK] Cambiar apodo a 071b [GUI_COPY_WINDOW] Copar texto 0801 [ASL_MALE] Hombre, %1 años, %2 0802 [ASL_FEMALE] Mujer, %1 años, %2 0803 [ASL_UNKNOWN] %1 años de %2 ffff [ERROR_NOT_DEFINED] cadena no definida --- NEW FILE: securedirc.cab --- (This appears to be a binary file; contents omitted.) --- NEW FILE: italian.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 0001 [INTERPRETOR_NOT_ON_CHANNEL] Not on a channel 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : unknown dcc subcommand 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : insufficient parameters 0004 [INTERPRETOR_BAD_CONTEXT] %1 : unable to perform in current context 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] Cannot send CTCP codes via DCC Chat 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : unknown config subcommand 0007 [INTERPRETOR_TIMESTAMP_ON] Timestamp enabled 0008 [INTERPRETOR_TIMESTAMP_OFF] Timestamp disabled 0009 [INTERPRETOR_SMILEYS_ON] Graphical smileys enabled 000a [INTERPRETOR_SMILEYS_OFF] Graphical smileys disabled 000b [INTERPRETOR_IGNORE_ON] Now ignoring %1 000c [INTERPRETOR_IGNORE_OFF] Not ignoring %1 anymore 000d [INTERPRETOR_MULTISERVER_DISABLED] Multiserver support is disabled 0101 [DCC_WAITING_INCOMING] Waiting for incoming connection... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] Unable to open connection : %1 0103 [DCC_CONNECTION_ESTABLISHED] DCC Connection established 0104 [DCC_CONNECTION_CLOSED] Connection closed 0105 [DCC_ERROR] Error : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : unable to send to %2 0107 [DCC_BAD_CONTEXT] Unable to execute command from current context 0108 [DCC_NOT_CONNECTED] Not connected 0109 [DCC_UNABLE_PASSIVE_MODE] Unable to initialize passive mode 010a [CTCP_PING_REPLY] [%1 PING reply] : %2 seconds 010b [DCC_STREAM_CLOSED] Stream closed 0201 [IDENT_FAILED_LAUNCH] Failed to launch Ident server : %1 0202 [IDENT_REQUEST] Ident request from %1 0203 [IDENT_ERROR] Error occurred 0204 [IDENT_REPLIED] Replied %1 0205 [IDENT_DEFAULT_USER] default user 0206 [IDENT_NO_USER] No user for request 0207 [IDENT_RUNNING_ON_PORT] Ident server running on port %1 0208 [IDENT_LEAVING] Ident server leaving : %1 0209 [IDENT_NONE] none 020a [IDENT_UNKNOWN] unknown 020b [IDENT_UNDEFINED] Undefined result 0301 [FILE_SAVEAS] Save file as 0401 [ABOUT_ABOUT] About 0402 [ABOUT_PROGRAMMING] Programming 0403 [ABOUT_DESIGN] Design 0404 [ABOUT_THANKS] Thanks to 0405 [ABOUT_SUPPORT] for support, ideas and testing 0406 [ABOUT_GPL] This software is licensed under the GPL license 0501 [SERVER_UNABLE_TO_CONNECT] Unable to connect : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] Unable to connect to %1 : currently trying to connect to %2 0503 [SERVER_DISCONNECTING] Disconnecting from %1 0504 [SERVER_CONNECTING] Connecting... 0505 [SERVER_NOT_CONNECTED] Not connected 0506 [SERVER_LOGIN] Logging in... 0507 [SERVER_DISCONNECTED] Disconnected from %1 0508 [SERVER_ERROR] Error : %1 071a [GUI_CHANGE_NICK] Change nick to 071b [GUI_COPY_WINDOW] Copy text 0801 [ASL_MALE] Boy, %1 years old, %2 0802 [ASL_FEMALE] Girl, %1 years old, %2 0803 [ASL_UNKNOWN] %1 years old from %2 ffff [ERROR_NOT_DEFINED] Undefined string --- NEW FILE: readme.txt --- Plouf's Java IRC Client Applet ------------------------------ Webmaster's manual ------------------ Concepts -------- Thank you for using PJIRC! You'll find in this document all information you might need in order to understand what is PJIRC, how it works and how to install it. Please read it before asking questions on forums or even directly to the author. PJIRC is an IRC client, just like Opera is a HTTP client. PJIRC is just another front-end for the well-known IRC network. You're supposed to be familiar with the IRC concepts. If not, you should try to find more information about it before going further in this document and trying to install and use PJIRC. PJIRC has two distinct parts : the IRC engine and the GUI. The IRC engine handles all the boring and uninteresting stuff such as managing the connection, formatting messages and so on. You might think of it as being the "kernel". On the other hand, the GUI is responsible for displaying the result with a nice layout using plenty of CPU-consuming graphical stuff and so on. There are several PJIRC GUI's, and you can choose the one you prefer. You might think of them as "skins", but they are much more than that. The standard PJIRC package comes with a default GUI, the "Pixx GUI". You should find its specific documentation within this package. This document will only describe the IRC engine part. Files ----- The following files are part of the IRC engine : IRCApplet.class : Main Applet class file. irc.jar : IRC Engine for non-IE VM, signed mode. irc.cab : IRC Engine for IE VM, both mode. securedirc.cab : IRC Signed specific part engine for IE VM, signed mode. irc-unsigned.jar : IRC Engine for non-IE VM, unsigned mode. The cab files are only recognized by Internet Explorer. jar files are recognized by other Browsers or Java Virtual Machines. The class file is some kind of "executable file", think of it as being the "file that you execute" when you launch PJIRC. PJIRC can works in the modes : the "signed" mode and the "unsigned" mode. It is recommanded that you use the "signed" mode unless you have specific reasons to switch to unsigned mode. The mode PJIRC uses depends of the file you will tell it to use in the HTML Applet Fragment (see below). Build ----- The unsigned IRC Engine can be built using the following javac compiler commands : javac -nowarn -g:none -O -target 1.1 IRCApplet.java javac -nowarn -g:none -O -target 1.1 irc\style\*.java javac -nowarn -g:none -O -target 1.1 irc\tree\*.java javac -nowarn -g:none -O -target 1.1 irc\dcc\prv\*.java javac -nowarn -g:none -O -target 1.1 irc\gui\prv\*.java javac -nowarn -g:none -O -target 1.1 irc\gui\common\*.java javac -nowarn -g:none -O -target 1.1 irc\ident\prv\*.java javac -nowarn -g:none -O -target 1.1 irc\gui\prv\*.java Installation ------------ Just upload the files you need, in regard to the mode (signed or unsigned) you want. Upload any extra files, such as language files or images and sound. Applet html fragment -------------------- Using signed mode and the Pixx GUI, the following minimal applet fragment should work just fine : <applet code=IRCApplet.class archive="irc.jar,pixx.jar" width=640 height=400> <param name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab"> <param name="nick" value="Anonymous"> <param name="fullname" value="PJIRC User"> <param name="host" value="irc.diboo.net"> <param name="gui" value="pixx"> </applet> Test your applet ---------------- A test tool is available at http://www.pjirc.com/check. This tool will detect common errors and mistakes. What is a server? ----------------- A server is any entity the client (PJIRC) connects to. There are three types of servers : - IRC server : usually referred as "the server", this is the server PJIRC was designed to connect to. - DCC server : a DCC (for Direct Client to Client) is a special server for handling direct connections to other clients. - Null server : the Null server is a ghost server, physically connected to nothing. What is a source? ----------------- The term "source" will be used throughout the remaining of this document. In short, a "source" stands for any "window" that can receive or send text or data to or from a server. A Channel is a Source, bound to an IRC server. A DCCChat is also a source, but bound to a DCC server. Here is the list of all known sources : - Default : not bound to anything (bound to the Null server), the Default source is used to handle any server-independent operations. This source cannot be left. It is only present if multiserver support is enabled. - Status : bound to an IRC server, the Status is used for any IRC server-specific operations or notifications. Leaving this source will lead to the server disconnection and eventually to all any sources related to this server. This source is unique and cannot be left is multiserver support is disabled. - Query : bound to an IRC server, the Query is a private chat between two clients, via the IRC server. This source can be left at any time. - Channel : bound to an IRC server, the Channel is a public room where many clients can chat, via the IRC server. This source can be left at any time, provided it is not restricted to do so by the application configuration. Leaving this source may sometimes take several seconds since a feedback from the server is required. - ChanList : bound to an IRC server, the ChanList enumerates the listing of all available Channels on the IRC server. This source can be left at any time. - DCCChat : bound to a DCC server, the DCCChat is a private chat between two clients, via the DCC server. This source can be left at any time. Leaving this source will lead to the DCC server disconnection. - DCCFile : bound to a DCC server, the DCCFile is a special source used for transmitting files from a client to another, via the DCC server. This source can be left at any time. Leaving this source will lead to the DCC server disconnection. Parameters ---------- parameters are passed to the applet via the following syntax : <param name="name" value="value"> Mandatory parameters -------------------- nick : default nick to be used. '?' characters will be replaced by random numbers. Example : <param name="nick" value="Guest??"> will tell the applet to use nicks such as Guest47 fullname : "real" user name, sent to IRC server. Example : <param name="fullname" value="UserName"> host : IRC server host. Example : <param name="host" value="irc.server.net"> gui : PJIRC graphical user interface. Example : <param name="gui" value="pixx"> Optional parameters ------------------- port : IRC server port. By default, the port is 6667. ---- Example : <param name="port" value="6667"> commandX, with X a figure : Tells the applet to execute this command once -------- connected to the server. The first command MUST be command1, and there can be no "gap" in the numbers : the command14 MUST be after command13, and NOT after command12. If the command is not prefixed by /, then the string is passed as it to the server. Otherwise, it is sent through the status window interpretor. Example : <param name="command1" value="/nickserv identify password"> <param name="command2" value="/join #channel"> language : sets the langage to be used. The name corresponds to a langage file -------- that must be accessible from the applet. For example, if there is a file lang/mylang.lng, then you may enter value="lang/mylang". By default, the langage is english. Example : <param name="language" value="french"> quitmessage : sets the quit message. By default, this message is empty. ----------- Example : <param name="quitmessage" value="PJIRC forever!"> asl : enable or disable asl handling. Asl (for age, sex and localtion) is --- parsed from the full user name. Other parts of the software may behave differently provided the nick is male or female, its age, and so on... The full name format is expected to be "age sex localtion", for instance "22 m Belgium". By default, asl is disabled. Example : <param name="asl" value="true"> aslmale : set the string corresponding to the male gender in the full name for ------- asl parsing. Default value is "m". Example : <param name="aslmale" value="m"> aslfemale : set the string corresponding to the female gender in the full name --------- for asl parsing. Default value is "f". Example : <param name="aslfemale" value="f"> aslunknown : set the string corresponding to the unknown gender in the full ---------- name for asl parsing. Default value is "x". Example : <param name="aslunknown" value="x"> useinfo : replace the status window by the info window. The info window acts ------- exactly as the status window, but only shows motd and welcome messages. Since whois etc... results are no more shown, popup commands such as whois, finger, etc... are disabled. By default, the info window is disabled. Example : <param name="useinfo" value="false"> soundbeep : set the beep sound. The beep sound is the sound played when the --------- /beep command is used. The file must be in .au format. Example : <param name="soundbeep" value="snd/bell2.au"> soundquery : set the incoming private sound. The sound is played when a new ---------- private source is opened. Example : <param name="soundquery" value="snd/ding.au"> password : set the server password on connection. -------- Example : <param name="password" value="mysecretpassword"> alternatenick : set the alternate nickname, to be used if primary nickname is ------------- already used on the server. Example : <param name="alternatenick" value="someothernick"> languageencoding : set the language file encoding to be used. If not ---------------- specified, default encoding will be used. Example : <param name="languageencoding" value="UnicodeLittle"> authorizedjoinlist : set the list of channels the user is authorized to join. ------------------ Syntax is "all-#channel1-#channel2-..." or "none+#channel1+#channel2+...". By default, authorized join list is "all". Example : <param name="authorizedjoinlist" value="none+#mychannel"> authorizedleavelist : set the list of channels the user is authorized to ------------------- leave. Syntax is "all-#channel1-#channel2-..." or "none+#channel1+#channel2+...". By default, authorized leave list is "all". Example : <param name="authorizedleavelist" value="all-#mychannel"> authorizedcommandlist : set the list of command the user is athorized to do. --------------------- Syntax is "all-command1-command2-..." or "none+command1+command2+...". By default, authorized command list is "all". Don't prefix the command with the / character. Example : <param name="authorizedcommandlist" value="none+me"> coding : specify what encoding algorithm should be used for sending the text ------ to the irc server. By default, encoding 1 is used. Values are : 0 : strict ascii, MSB is dropped, shouldn't be used. 1 : pjirc unicode to ascii protocol, charcode is sent as it if below than \u0x00ff. Should be used if pjirc is used with other non UTF-8 compatible clients. 2 : UTF-8 3 : local charset coding, should be avoided when possible for compatibility reasons Example : <param name="coding" value="2"> lngextension : modify the default lng file extension. By default, lng ------------ extension is "lng". Example : <param name="lngextension" value="txt"> userid : set the userid. The user id will be used for ident id and for ------ user name at connect-time. If the id is empty, then full name will be used for id, and nickname will be used as username at connect time. By default, userid is empty. Example : <param name="userid" value="myname"> autoconnection : set whether the applet should try to trigger connection -------------- as soon at it is launched. By default, the applet will try to connect. Example : <param name="autoconnection" value="false"> useidentserver : enable or disable the ident server. By default, the -------------- server is enabled. Example : <param name="useidentserver" value="false"> mutliserver : enable or disable the multiserver support. By default, ----------- multiserver is disabled. Example : <param name="multiserver" value="true"> alternateserverI : set the Ith alternate server. Syntax is ---------------- "host port" or "host port password". Example : <param name="alternateserver1" value="irc.secondhost.com 6667"> serveralias : set the default server alias. By default, server alias ----------- is empty string. Example : <param name="serveralias" value="Alias"> noasldisplayprefix : set the "no display asl" full name prefix. If the ------------------ user's full name begins with this prefix, then the floating asl window won't be displayed. An empty string disables this feature. By default, prefix is disabled. Example : <param name="noasldisplayprefix" value="true"> pluginX : set the Xth plugin to be loaded at startup. ------- Example : <param name="plugin1" value="MyPlugin"> soundwordX : set the Xth sound configuration. Syntax is "word sound". When ---------- "word" is detected in a message, then "sound" is played. Example : <param name="soundword1" value="lol snd/lol.au"> fingerreply : set the finger reply. ----------- Example : <param name="fingerreply" value="A lucky Plouf's IRC user"> userinforeply : set the user info reply. ------------- Example : <param name="userinforeply" value="A lucky Plouf's IRC user"> fileparameter : URL to the file containing all PJIRC parameters. ------------- The configuration file format is the same as the pjirc.cfg file. If other parameters are specified using the html tags, they will be mixed. Example : <param name="fileparameter" value="pjirc.cfg"> aslseparatorstring : set the asl separator string. When the ASL parser ------------------ reach this string, the parsing stops and any text being found after this string (including the separator) will be ignored. Example : <param name="aslseparatorstring" value="|"> allowdccchat : set whether dcc chat is allowed. By default, this is ------------ true. Example : <param name="allowdccchat" value="false"> allowdccfile : set whether dcc file is allowed. By default, this is ------------ true. Example : <param name="allowdccfile" value="false"> disablequeries : disable all queries. By default, this is not enabled. -------------- Example <param name="disablequeries" value="true"> autorejoin : enables the automatic channel rejoin when kicked out. By default, ---------- autorejoin is disabled. Example <param name="autorejoin" value="true"> initX : set the Xth initial command to be executed when the applet starts ----- up. This is usefull when several servers needs to be automatically joined. Example <param name="init1" value="/newserver Undernet eu.undernet.org"> Style parameters ---------------- 'Style' is the name of the library used inside PJIRC for text display. Even if this display has nothing to do with the actual irc engine, a majority of all GUI's are likely to use it. As a consequence, 'Style' is included in the engine package. All 'Style' parameters are prefixed by 'style:'. righttoleft : set right-to-left display, instead of left-to-right default ----------- display. Example : <param name="style:righttoleft" value="true"> sourcecolorruleN : set the Nth source color rule. Rule syntax is ---------------- "type name index1=color1 index2=color2 ...". Example : <param name="style:sourcecolorrule1" value="none+Channel all 0=00ff00"> <param name="style:sourcecolorrule2" value="none+Query none+some_nick 0=000000 1=ffffff"> sourcefontruleN : set the Nth source font rule. Rule syntax is ---------------- "type name fontname fontsize". Example : <param name="style:sourcefontrule1" value="none+Channel all Arial 12"> backgroundimage : toggle master background image switch. If this flag is --------------- turned off, all background images will be ignored. By default, background images are disabled. Example : <param name="style:backgroundimage" value="true"> backgroundimageX : background image configuration number X. Syntax is ---------------- "sourcetype sourcename tiling image" with sourcetype and sourcename the target source type and name, tiling a figure and image the image file name. Valid source types are DCCChat, Channel, Query, Status, ChanList and Default. As for the command parameter, there can't be any gap in the X indexes. Possible tiling values are: 0 : Center 1 : Stretch 2 : Tiling 3 : Top left 259 : Top right 515 : Bottom left 771 : Bottom right Example : <param name="style:backgroundimage1" value="none+channel none+#happy 1 img/content.gif"> <param name="style:backgroundimage2" value="none+Query all 2 img/soleil.gif"> bitmapsmileys : enable or disable bitmap smileys. Once enabled, bitmaps are ------------- defined via the smiley parameter. By default, bitmap smileys are disabled. Example : <param name="style:bitmapsmileys" value="true"> smileyX : set the Xnth smiley. A smiley is a pair of text->image. Each time ------- the text is found on a line, it will be replaced by the corresponding image. As for the command parameter, the first smiley must be smiley1 and there must'nt be any gap. The format of the parameter is "text image", where image is any URL the applet can access. Example : <param name="style:smiley1" value=":) img/smile.gif"> <param name="style:smiley2" value=":( img/sad.gif"> floatingasl : activate "mouseover" floating asl information. By default, ----------- floating asl is disabled. "asl" parameter may be also activated, but this is not mandatory. Example : <param name="style:floatingasl" value="true"> floatingaslalpha : set the floating asl alpha transparency value. Between 0 ---------------- and 255, 0 is invisible and 255 fully opaque. By default, alpha value is 170. This parameter may be ignored if the java virtual machine doens't support transparency. Example : <param name="style:floatingaslalpha" value="150"> linespacing : set the additional space that will be used between two lines ----------- of text. Default value is zero. Unit is pixel. Example : <param name="style:linespacing" value="10"> maximumlinecount : set the maximum line count in the history buffer. This ---------------- can save memory for very long chats. Default value is 1024. Example <param name="style:maximumlinecount" value="256"> highlightlinks : highlight links when mouse moves over them. By default, -------------- this is not enabled. Example <param name="style:highlightlinks" value="true"> GUI parameters -------------- The Pixx's GUI documentation is available in a separate file in the default package. All GUI parameters begins with 'gui:', where gui is the name of the gui. For instance, any Pixx GUI specific parameter will begin by 'pixx:'. JavaScript support ------------------ PJIRC is designed to support events from the "outside". The applet supports the following methods : void sendString(String str) : send the given string to the server, through the current source interpretor. For instance, you can bring the channel list window by calling sendString("/list") void setFieldText(String txt) : set the textfield content. String getFieldText() : get the textfield content. setFieldText and getFieldText can be combined to append text for the user. For instance, adding a smiley can be done using setFieldText(getFieldText()+':)') void validateText() : validate the current textfield content, as if the user pressed the return key. void requestSourceFocus() : request the active source to gain focus. void sendPluginEvent(String pluginName,Object event) : send the given event value to the given plugin. Object getPluginValue(String pluginName,Object valueName) : Get the plugin value from the given plugin name. void requestSourceFocus(String serverName,String type,String name) : request the given source to gain focus. If serverName is empty, the first source matching the type and name will receive focus regardless of its server. void sendString(String serverName,String type,String name,String cmd) : send the given string to the server, through the given source interpretor. If serverName is empty, the first source matching the type and name will receive the string, regardless of its server. IRCApplication getIRCApplication() : get the IRCApplication. For advanced use only. Minimal html fragment --------------------- <applet code=IRCApplet.class archive="irc.jar,securedirc.jar" width=640 height=400> <param name="CABINETS" value="irc.cab,securedirc.cab"> <param name="nick" value="Anonymous???"> <param name="name" value="Java User"> <param name="host" value="irc.dal.net"> <param name="gui" value="pixx"> </applet> Runtime commands ---------------- A runtime command is any text prefixed by the / character. If the so-called interpretor recognize a command, it will parse and handle it. If not, the command will be sent as it (but without the initial / character) to the server. Here are the list of all recognized commands. ame %message : send an action to all active channels amsg %message : send a message to all active channels away [%message] : configure the away status beep : send a beep to the speakers clear : clear the window ctcp %command [%parameters] : send a ctcp request to the given nick dcc %nick : send a dcc request to the given nick disconnect : disconnect from the server echo %message : echo the specified text to the active source hop : leave and rejoin the active channel ignore %nick : ignore the specified nick j %channel [%password] : join the given channel join %channel [%password] : same as j kick %nick : kick the given nick leave : leave the active source load %plugin : load the given plugin me %message : send an action to the active source msg %target %message : send a message to the given target newserver %alias %host [%port [%password]] : create a new server status notice %target %message : send a notice to the given target onotice %target %message : send a notice to all operators at the given target part : same as leave ping : ping the given nickname play %sound : play the given sound, only on the local client query %nick : query the given nickname quit [%message] : same as disconnect, but with the given message raw %command : send a raw command to the server server %host [%port [%password]] : connect to the given server sound %soundfile : play the given sound on the client and all other clients on the source sleep %millis : freeze the interpretor for the given amount of milliseconds topic %channel %topic : change the given channel's topic unignore %nick : unignore the specified nick unload %plugin : unload the specified plugin url %url [%target] : open the given url on a new browser window onserver %server command : execute the following command only if the source server matches the specified one. This is usefull when used with the commandX parameters. Contacts -------- PJIRC is developped by Plouf - pl...@pj... Have a look at http://www.pjirc.com/ for news about PJIRC. PJIRC has an official italian website on http://www.pjirc.it PJIRC has a CVS repository at SourceForge : http://sourceforge.net/projects/pjirc --- NEW FILE: IRCApplet.class --- (This appears to be a binary file; contents omitted.) --- NEW FILE: french.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2004 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can contains any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 0001 [INTERPRETOR_NOT_ON_CHANNEL] Pas sur un canal 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : sous-commande dcc inconnue 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : paramètres insuffisants 0004 [INTERPRETOR_BAD_CONTEXT] Impossible d'effectuer %1 ici 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] Impossible d'envoyer des codes CTCP dans un DCC Chat 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : sous-commande de configuration inconnue 0007 [INTERPRETOR_TIMESTAMP_ON] Horodateur activé 0008 [INTERPRETOR_TIMESTAMP_OFF] Horodateur désactivé 0009 [INTERPRETOR_SMILEYS_ON] Emoticons activés 000a [INTERPRETOR_SMILEYS_OFF] Emoticons désactivés 000b [INTERPRETOR_IGNORE_ON] Ignore à présent %1 000c [INTERPRETOR_IGNORE_OFF] N'ignore plus %1 000d [INTERPRETOR_MULTISERVER_DISABLED] Le support multiserveur est désactivé 0101 [DCC_WAITING_INCOMING] Attente de connexion... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] Impssible d'ouvrir la connexion : %1 0103 [DCC_CONNECTION_ESTABLISHED] "Connexion DCC établie 0104 [DCC_CONNECTION_CLOSED] Connexion fermée 0105 [DCC_ERROR] Erreur : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : impossible d'envoyer à %2 0107 [DCC_BAD_CONTEXT] Impossible d'exécuter la commande dans le contexte actuel 0108 [DCC_NOT_CONNECTED] Non connecté 0109 [DCC_UNABLE_PASSIVE_MODE] Impossible d'initialiser le mode passif 010a [CTCP_PING_REPLY] [%1 PING reply] : %2 secondes 010b [DCC_STREAM_CLOSED] Stream fermé 0201 [IDENT_FAILED_LAUNCH] Impossible de lancer le serveur IDENT : %1 0202 [IDENT_REQUEST] Requête ident de %1 0203 [IDENT_ERROR] Erreur survenue 0204 [IDENT_REPLIED] Répondu %1 0205 [IDENT_DEFAULT_USER] utilisateur par défaut 0206 [IDENT_NO_USER] Aucun utilisateur pour la reqûete 0207 [IDENT_RUNNING_ON_PORT] Le serveur Ident s'exécute sur le port %1 0208 [IDENT_LEAVING] Le serveur Ident se termine : %1 0209 [IDENT_NONE] aucun 020a [IDENT_UNKNOWN] inconnu 020b [IDENT_UNDEFINED] Résultat indéterminé 0301 [FILE_SAVEAS] Sauver le fichier sous 0401 [ABOUT_ABOUT] A propos 0402 [ABOUT_PROGRAMMING] Programmation 0403 [ABOUT_DESIGN] Design 0404 [ABOUT_THANKS] Remerciements 0405 [ABOUT_SUPPORT] pour leur support, leurs idées et les tests 0406 [ABOUT_GPL] Ce programme est sous license GPL 0501 [SERVER_UNABLE_TO_CONNECT] Impossible de se connecter : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] Impossible de se connecter à %1, déjà en train d'essayer de se connecter à %2 0503 [SERVER_DISCONNECTING] Déconnexion de %1 0504 [SERVER_CONNECTING] Connexion... 0505 [SERVER_NOT_CONNECTED] Non connecté 0506 [SERVER_LOGIN] Enregistrement... 0507 [SERVER_DISCONNECTED] Déconnecté de %1 0508 [SERVER_ERROR] Erreur : %1 0509 [SERVER_AUTOREJOIN_ATTEMPT] Tentative de retour sur le canal %1... 050a [SERVER_AUTOREJOIN_FAILED] Impossible de rejoindre le canal %1 071a [GUI_CHANGE_NICK] Modifier le nick 071b [GUI_COPY_WINDOW] Copier le texte 071c [GUI_DCC_CHAT_WARNING_TITLE] Attention 071d [GUI_DCC_CHAT_WARNING_TEXT] Voulez-vous accepter une connection DCC-chat en provenance de %1? 0801 [ASL_MALE] Garçon, %1 ans, %2 0802 [ASL_FEMALE] Fille, %1 ans, %2 0803 [ASL_UNKNOWN] %1 ans de %2 0901 [REPLY_IDLE] %1 est inactif depuis %2 0902 [REPLY_SIGNON] %1 s'est connecté(e) le %2 ffff [ERROR_NOT_DEFINED] Texte non défini --- NEW FILE: pixx-pt_br.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 8601 [SOURCE_YOU_KICKED] Você foi expulso do canal %1 por %2 8612 [SOURCE_AWAY] %1 está ausente 8613 [SOURCE_YOU_INVITED] %1 convidou você para entrar no canal %2 8602 [SOURCE_STATUS] Estado 8603 [SOURCE_CHANLIST] Canais para %1 8604 [SOURCE_CHANLIST_RETREIVING] Listando canais... 8605 [SOURCE_HAS_JOINED] %1 entrou no canal %2 8606 [SOURCE_HAS_LEFT] %1 saiu do canal %2 8607 [SOURCE_HAS_BEEN_KICKED_BY] %1 foi expulso por %2 8608 [SOURCE_HAS_QUIT] %1 saiu 8609 [SOURCE_TOPIC_IS] O tópico é %1 860a [SOURCE_CHANGED_TOPIC] %1 mudou o tópico para %2 860b [SOURCE_CHANNEL_MODE] %1 definiu o modo do canal para %2 860c [SOURCE_CHANNEL_MODE_IS] Modo do canal %1 860d [SOURCE_USER_MODE] %1 definiu o modo %2 no canal %3 860e [SOURCE_KNOWN_AS] %1 agora é conhecido como %2 860f [SOURCE_YOUR_MODE] Modo alterado para %1 8610 [SOURCE_YOUR_NICK] Seu apelido agora é %1 8611 [SOURCE_INFO] Infos 8701 [GUI_WHOIS] Whois 8702 [GUI_QUERY] Query 8703 [GUI_KICK] Expulsar 8704 [GUI_BAN] Banir 8705 [GUI_KICKBAN] Expulsar + Banir 8706 [GUI_OP] Op 8707 [GUI_DEOP] DeOp 8708 [GUI_VOICE] Voice 8709 [GUI_DEVOICE] DeVoice 870a [GUI_PING] Ping 870b [GUI_VERSION] Version 870c [GUI_TIME] Time 870d [GUI_FINGER] Finger 870e [GUI_RETREIVING_FILE] Recebendo arquivo (%1 bytes) 870f [GUI_SENDING_FILE] Enviando arquivo (%1 bytes) 8710 [GUI_TERMINATED] %1 finalizado 8711 [GUI_FAILED] %1 falhou 8712 [GUI_CLOSE] Fechar 8713 [GUI_DISCONNECT] Desconectar 8714 [GUI_CHANNELS] Canais 8715 [GUI_HELP] Ajuda 8716 [GUI_PRIVATE] privado 8717 [GUI_PUBLIC] publico 8718 [GUI_CONNECT] Conectar 8719 [GUI_ABOUT] Sobre 871a [GUI_CHANGE_NICK] Mudar apelido para 871c [GUI_FONT] Fonte 871d [GUI_FONT_WINDOW] Selecionar fonte 871e [GUI_FONT_WINDOW_OK] Ok 871f [GUI_ENTER_TEXT_HERE] Enter text here... ffff [ERROR_NOT_DEFINED] Não definido --- NEW FILE: config.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: irc-unsigned.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: estonian.txt --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 0001 [INTERPRETOR_NOT_ON_CHANNEL] Ei ole Kanalil 0002 [INTERPRETOR_UNKNOWN_DCC] %1 : Tundmatu dcc alamkäsk 0003 [INTERPRETOR_INSUFFICIENT_PARAMETERS] %1 : ebapiisavad parameetrid 0004 [INTERPRETOR_BAD_CONTEXT] %1 : võimatu teostada jooksvas kontekstis 0005 [INTERPRETOR_CANNOT_CTCP_IN_DCCCHAT] Ei saa saata CTCP koode üle DCC Chat'i 0006 [INTERPRETOR_UNKNOWN_CONFIG] %1 : Tundmatu config'i alamkäsk 0007 [INTERPRETOR_TIMESTAMP_ON] Timestamp lubatud 0008 [INTERPRETOR_TIMESTAMP_OFF] Timestamp keelatud 0009 [INTERPRETOR_SMILEYS_ON] Graafilised smiley'd lubatud 000a [INTERPRETOR_SMILEYS_OFF] Graafilised smiley'd keelatud 000b [INTERPRETOR_IGNORE_ON] Nüüd ignoreerin %1 000c [INTERPRETOR_IGNORE_OFF] Ei ignoreeri %1 enam 000d [INTERPRETOR_MULTISERVER_DISABLED] Multiserveri toetus on keelatud 0101 [DCC_WAITING_INCOMING] Ootan sissetulevat ühendust... 0102 [DCC_UNABLE_TO_OPEN_CONNECTION] Võimatu avada ühendust : %1 0103 [DCC_CONNECTION_ESTABLISHED] Dcc ühendus loodud 0104 [DCC_CONNECTION_CLOSED] Ühendus suletud 0105 [DCC_ERROR] Error : %1 0106 [DCC_UNABLE_TO_SEND_TO] %1 : Võimatu saata %2 0107 [DCC_BAD_CONTEXT] Võimatu teostada käsku jooksvast kontekstist 0108 [DCC_NOT_CONNECTED] Ei ole Ühendatud 0109 [DCC_UNABLE_PASSIVE_MODE] Võimatu alustada passive mode'i 010a [CTCP_PING_REPLY] [%1 PING reply] : %2 sekundit 010b [DCC_STREAM_CLOSED] Stream suletud 0201 [IDENT_FAILED_LAUNCH] Ebaõnnestus alustada Ident Serverit : %1 0202 [IDENT_REQUEST] Ident'i päring %1 poolt 0203 [IDENT_ERROR] Errori ilmnemine 0204 [IDENT_REPLIED] Vastatud %1 0205 [IDENT_DEFAULT_USER] vaikimisi kasutaja 0206 [IDENT_NO_USER] Päringuks Kasutaja puudub 0207 [IDENT_RUNNING_ON_PORT] Ident server töötab port'il %1 0208 [IDENT_LEAVING] Ident server leaving : %1 0209 [IDENT_NONE] puudub 020a [IDENT_UNKNOWN] tundmatu 020b [IDENT_UNDEFINED] Määratlemata tulemus 0301 [FILE_SAVEAS] Salvesta fail... 0401 [ABOUT_ABOUT] About 0402 [ABOUT_PROGRAMMING] Programmeerimine 0403 [ABOUT_DESIGN] Disain 0404 [ABOUT_THANKS] Tänud 0405 [ABOUT_SUPPORT] toetuse, ideede ja testimise eest. 0406 [ABOUT_GPL] See Tarkvara on litsenseeritud GPL litsensi all. 0501 [SERVER_UNABLE_TO_CONNECT] Võimatu ühendada : %1 0502 [SERVER_UNABLE_TO_CONNECT_STILL] Võimatu ühendada %1 : praegu proovin ühendada %2 0503 [SERVER_DISCONNECTING] Disconnecting from %1 0504 [SERVER_CONNECTING] Ühendab... 0505 [SERVER_NOT_CONNECTED] Ühendus puudub 0506 [SERVER_LOGIN] Login sisse... 0507 [SERVER_DISCONNECTED] Ühendus katkestatud from %1 0508 [SERVER_ERROR] Error : %1 071a [GUI_CHANGE_NICK] Muuda nimi... 071b [GUI_COPY_WINDOW] Kopeeri text 0801 [ASL_MALE] Boy, %1 years old, %2 0802 [ASL_FEMALE] Girl, %1 years old, %2 0803 [ASL_UNKNOWN] %1 years old from %2 ffff [ERROR_NOT_DEFINED] Määratlemata string --- NEW FILE: irc.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: config-german.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2004 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. d001 [CONFIG_NO_EXT_MSG] No external messages d002 [CONFIG_OPS_SET_TOPIC] Only ops change topic d003 [CONFIG_INVITE_ONLY] Invite only d004 [CONFIG_CHAN_KEY] Channel key d005 [CONFIG_MODERATED] Moderated d006 [CONFIG_PRIVATE] Private d007 [CONFIG_SECRET] Secret d008 [CONFIG_MAX_USERS] Maximum users d009 [CONFIG_NO_NICKCHANGE] No Nick Change d00a [CONFIG_NO_CTCPS] No CTCPs d00b [CONFIG_SWEARFILTER] Swear Filter d00c [CONFIG_AUDITORIUM] Auditorium d00d [CONFIG_TITLE] configuration d00E [CONFIG_TOPIC] Topic ffff [ERROR_NOT_DEFINED] Undefined string --- NEW FILE: pixx-hungarian.lng --- (This appears to be a binary file; contents omitted.) --- NEW FILE: irc.cab --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pixx-german.lng --- # # This java file is a part of the # # - Plouf's Java IRC Client - # # Copyright (C) 2002 Philippe Detournay # # This file is licensed under the GPL license # # All contacts : the...@ya... # # # Syntax : # Comments begin with the # character. This character must be the first character of the line. # A data line has three parts : the data id, the data id description, the data string. # - Data id : An hexadecimal figure identifying the string. # - Data description : Begins by [ and ends by ]. The description is not parsed and # can be any string. # - Data string : The string itself. Parameters are specified using the %i syntax. # # Trailing spaces can be added using the \s escape character. 8601 [SOURCE_YOU_KICKED] Du wurdest von %1 aus %2 gekickt 8612 [SOURCE_AWAY] %1 ist nicht anwesend 8613 [SOURCE_YOU_INVITED] %1 lädt dich ein zu %2 8602 [SOURCE_STATUS] Status 8603 [SOURCE_CHANLIST] Channels für %1 8604 [SOURCE_CHANLIST_RETREIVING] Empfange Channels... 8605 [SOURCE_HAS_JOINED] %1 betritt den Channel %2 8606 [SOURCE_HAS_LEFT] %1 hat %2 verlassen 8607 [SOURCE_HAS_BEEN_KICKED_BY] %1 ist gekickt worden von %2 8608 [SOURCE_HAS_QUIT] %1 hat den Chat verlassen 8609 [SOURCE_TOPIC_IS] Thema ist: %1 860a [SOURCE_CHANGED_TOPIC] %1 hat Thema geä... [truncated message content] |
|
From: OryNider <ory...@us...> - 2007-06-07 00:08:55
|
Update of /cvsroot/mxbb/mx_pjirc/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032/includes Added Files: common.php Log Message: --- NEW FILE: common.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: common.php,v 1.1 2007/06/07 00:08:50 orynider Exp $ * @copyright (c) 2004-2006 Marc Ferran; Eric; Amo * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /*************************************************************************** * History: * * * 2003/12/21 * - Modified from admin_chatbox.php by AMO for mx_pjirc module * ***************************************************************************/ // // Security check // if( !defined('IN_PORTAL') ) { die("Hacking attempt"); } // // mx_pjirc version... // define('_PJIRC_VERSION', "mx_PJIRC v.1.0"); // // Define table names. // define('PJIRC_CONFIG_TABLE', $mx_table_prefix.'pjirc_config'); define('PJIRC_SESSION_TABLE', $mx_table_prefix.'pjirc_session'); // // Load language files. // if( file_exists($module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx) ) { include($module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx); } else { include($module_root_path . 'language/lang_english/lang_admin.' . $phpEx); } if( file_exists($module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx) ) { include($module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx); } else { include($module_root_path . 'language/lang_english/lang_main.' . $phpEx); } // // Common definitions... // $cfg_chatname = $board_config['sitename'] . ' -> ' . 'Pjirc'; // ================================================================================ // [ PJIRC CONFIG ] // ================================================================================ // // Get Pjirc Settings from config table // if( defined('_PJIRC_CONFIG') ) { $pjirc_config = array(); $sql = "SELECT * FROM ".PJIRC_CONFIG_TABLE; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, "Couldn't query pjirc config table", "", __LINE__, __FILE__, $sql); } else { while( $row = $db->sql_fetchrow($result) ) { $pjirc_config[$row['config_name']] = $row['config_value']; } } } // ================================================================================ // [ COMMON FUNCTIONS ] // ================================================================================ function user_join($nick) { global $pjirc_config, $db; $current_time=date("U"); $sql = "DELETE FROM ".PJIRC_SESSION_TABLE." WHERE username = '".addslashes($nick)."'"; if( !$result = $db->sql_query($sql) ) { die("SQL Error in function user_join(): DELETE<br />" . $sql); } $sql = "INSERT INTO ".PJIRC_SESSION_TABLE." (username, time)" . " VALUES ('" .addslashes($nick). "', ".$current_time.")"; if( !$result = $db->sql_query($sql) ) { die("SQL Error in function user_join(): INSERT<br />" . $sql); } } //Update user statue "chatting/not chatting" function update_user($nick,$time) { global $pjirc_config, $board_config, $db, $lang; $sql="update ".PJIRC_SESSION_TABLE." set time='$time' where username='$nick'"; if( !$result = $db->sql_query($sql) ) { die("SQL Error in function update_users(): UPDATE<br />" . $sql); } } function drop_users($period) { global $pjirc_config, $board_config, $db, $lang; $current_time=date("U"); //prevent delay $period=$period+2; // Calcul max_time $max_time=$current_time-$period; $sql="delete from ".PJIRC_SESSION_TABLE." where time<'$max_time'"; if( !$result = $db->sql_query($sql) ) { die("SQL Error in function drop_users()"); } } ?> |
|
From: OryNider <ory...@us...> - 2007-06-07 00:08:53
|
Update of /cvsroot/mxbb/mx_pjirc/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032/images Added Files: pjirc_front_01.gif pjirc_front_02.gif pjirc_front_03.gif spacer.gif Log Message: --- NEW FILE: pjirc_front_03.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pjirc_front_02.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pjirc_front_01.gif --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-06-07 00:08:51
|
Update of /cvsroot/mxbb/mx_pjirc/doc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032/doc Added Files: buttons.jpg chat.jpg front.jpg settings.jpg style.jpg Log Message: --- NEW FILE: settings.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: buttons.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: style.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: chat.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: front.jpg --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-06-07 00:08:44
|
Update of /cvsroot/mxbb/mx_pjirc/dev In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032/dev Added Files: pjirc_2_2_1_full.zip prefix-pixx_v3.2b.zip prefix-pixx_v3.zip Log Message: --- NEW FILE: pjirc_2_2_1_full.zip --- (This appears to be a binary file; contents omitted.) --- NEW FILE: prefix-pixx_v3.2b.zip --- (This appears to be a binary file; contents omitted.) --- NEW FILE: prefix-pixx_v3.zip --- (This appears to be a binary file; contents omitted.) |
|
From: OryNider <ory...@us...> - 2007-06-07 00:08:42
|
Update of /cvsroot/mxbb/mx_pjirc In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032 Added Files: db_install.php db_uninstall.php db_upgrade.php index.php mx_pjirc.pak pjirc_chat.php pjirc_faq.php pjirc_front.php pjirc_update.php readme.txt Log Message: --- NEW FILE: index.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: index.php,v 1.1 2007/06/07 00:08:31 orynider Exp $ * @copyright (c) 2004-2006 amo, * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ define('IN_PORTAL', 1); //Turn On Error Reporting //error_reporting( E_ALL ); $mx_root_path = "../../"; $mx_module_path = "./"; $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($mx_root_path . 'common.'.$phpEx); // //Start session management // $mx_user->init($user_ip, PAGE_INDEX); define('_PJIRC_CONFIG', true); include_once($mx_module_path .'includes/common.'.$phpEx); /* if ( !$userdata['session_logged_in'] ) { redirect(append_sid($mx_root_path."login.".$phpEx."?redirect=modules/mx_pjirc/chat.".$phpEx, true)); exit; } */ // //End session management // //HTML, 1st frame = the chat, 2nd frame = pjirc_update.php (send to the db the user statue "chatting" every Xseconds) echo "<html>"; echo "<head>"; echo "<u><h2><title>".$pjirc_config['chat_name']."</title></h2></u>"; echo "</head>"; echo "<frameset frameborder=\"no\" cols=\"100%,0%\">"; echo "<frame noresize scrolling=\"no\" frameborder=\"no\" src=\"pjirc_chat.php\" name=\"chat\">"; echo "<frame noresize scrolling=\"no\" frameborder=\"no\" src=\"pjirc_update.php\" name=\"update\">"; echo "</frameset>"; echo "</html>"; ?> --- NEW FILE: pjirc_front.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: pjirc_front.php,v 1.1 2007/06/07 00:08:35 orynider Exp $ * @copyright (c) 2004-2006 smartor, amo, OryNider * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /**************************************************************************** * mx_chatbox module written by markus_petrux at phpmix dot com **************************************************************************** * History: * 2003/12/21 * -modified by Amo from chatbox_front.php to pjirc_front ***************************************************************************/ // -------------------------------------------------------------------------------- // Security check // if( !defined('IN_PORTAL') ) { die("Hacking attempt"); } // -------------------------------------------------------------------------------- // Initialization // // // Common Includes and Read Module Settings // if( !file_exists($module_root_path . 'includes/common.'.$phpEx) ) { message_die(GENERAL_ERROR, "Could not find mx_pjirc includes folder.", "", __LINE__, __FILE__); } define('_PJIRC_CONFIG', true); include_once($module_root_path . 'includes/common.'.$phpEx); // // Read block Configuration // $title = $mx_block->block_info['block_title']; $block_size = ( isset($block_size) && !empty($block_size) ? $block_size : '100%' ); $pjirc_icon = 'pjirc_front_02.gif'; // -------------------------------------------------------------------------------- // Get ChatBox Session information // // REMOVE OLD SESSIONS drop_users($pjirc_config['check_period']); // Get all remain sessions $sql = "SELECT * FROM ".PJIRC_SESSION_TABLE; if (!$sol = $db->sql_query($sql)) { message_die(GENERAL_ERROR, "Could not query pjirc Session information", "", __LINE__, __FILE__, $sql); } $howmanychat = $db->sql_numrows($sol); // Return this $isimler[0] = $db->sql_numrows($sol); $i = 1; while ($record = $db->sql_fetchrow($sol)) { $isimler[$i++] = $record['username']; if ($record['username']==$userdata['username']) { $can_join="no"; } else { $can_join="yes"; } } $chatters = ( empty($isimler[1]) ? '' : '<a href="' . append_sid( PHPBB_URL . 'profile.php?mode=viewprofile&u='.$isimler[1]) . '" >'.$isimler[1].'</a><br />' ); for($s = 2; $s <= $isimler[0]; $s++) { $chatters .= ', <a href="' . append_sid( PHPBB_URL . 'profile.php?mode=viewprofile&u='.$isimler[$s]) . '" >'.$isimler[$s].'</a><br />'; } // -------------------------------------------------------------------------------- // Generate block output (using templates) // Generate HTML for the block... // $template->set_filenames(array( 'body' => 'pjirc_front.tpl') ); if ( !$userdata['session_logged_in'] ) { $template->assign_block_vars('switch_user_logged_out', array()); } else { if ( $can_join=="no") { $template->assign_block_vars('switch_user_chatting', array()); } else { $template->assign_block_vars('switch_user_logged_in', array()); } } if( empty($chatters) ) { $template->assign_block_vars('switch_chatters_list_off', array()); $chatters_list = ''; } else { $template->assign_block_vars('switch_chatters_list_on', array()); $chatters_list = sprintf($lang['Who_Are_Chatting'], $chatters); } $template->assign_vars(array( 'CHAT_IMG' => $module_root_path.'images/'.$pjirc_icon, 'TOTAL_CHATTERS_ONLINE' => sprintf($lang['How_Many_Chatters'], $howmanychat), 'CHATTERS_LIST' => $chatters_list, 'L_CLICK_TO_JOIN_CHAT' => $lang['Click_to_join_chat'], 'S_JOIN_CHAT' => append_sid(PORTAL_URL . 'modules/mx_pjirc/index.php'), 'L_LOGIN_TO_JOIN_CHAT' => $lang['Login_to_join_chat'], 'L_ALREADY_CHATTING' => $lang['Already_chatting'], 'BLOCK_SIZE' => $block_size, 'BLOCK_ID' => $block_id, 'L_VERSION' => _PJIRC_VERSION, 'L_TITLE' => 'Pjirc') ); $template->pparse('body'); unset($chatters, $block_config, $sql, $howmanychat, $chatters_list, $block_size, $module_root_path, $isimler, $can_join); ?> --- NEW FILE: mx_pjirc.pak --- module=+:58=+:mx_pjirc=+:modules/mx_pjirc/=+:mx_PJIRC version 1.0=+:1 New_function=+:---------------------------=+:0=+:0=+:0=+:0=+:0 function=+:58=+:66=+:pjirc Front=+:=+:pjirc_front.php=+: parameter=+:0=+:0=+:0=+:endoflist=+:0=+:0 block=+:=+:pjirc Front=+:Demo block=+:66=+:0=+:5=+:0=+:0=+:0=+:0=+:1=+:1 function=+:0=+:0=+:0=+:endoflist=+:0=+:0 --- NEW FILE: pjirc_chat.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: pjirc_chat.php,v 1.1 2007/06/07 00:08:33 orynider Exp $ * @copyright (c) 2004-2006 amo, * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /****************************************** * History: * * 2003/12/21 (amo) * - PIRC Chat MOD by Eric Version 1.1.0 * Modified by AMO for mx_pjirc module * 2003/12/21 (amo) * -cleaned useless code ******************************************/ define('IN_PORTAL', 1); error_reporting( E_ALL ); ini_set( 'display_errors', '1' ); $mx_root_path = "../../"; $mx_module_path = "./"; $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($mx_root_path . 'common.'.$phpEx); // // Start session management // $mx_user->init($user_ip, PAGE_INDEX); define('_PJIRC_CONFIG', true); include_once($mx_module_path .'includes/common.'.$phpEx); if ( !$userdata['session_logged_in'] ) { mx_redirect(append_sid($mx_root_path."login.".$phpEx."?redirect=modules/mx_pjirc/pjirc_chat.".$phpEx, true)); exit; } // // End session management // $help = append_sid(PORTAL_URL . "modules/mx_pjirc/pjirc_faq.".$phpEx); $page_title = $lang['Chat_Room']; $template->set_filenames(array( 'body' => 'pjirc_chat.tpl') ); $nick = str_replace(" ", "_", $userdata['username']); $template->assign_vars(array( 'USERNAME' => $nick, 'PREFIX_USERNAME' => $pjirc_config['prefix_username'], 'CHAT_NAME' => $pjirc_config['chat_name'], 'SERVER' => $pjirc_config['irc_server'], 'PORT' => $pjirc_config['irc_port'], 'CHANNEL' => $pjirc_config['irc_channel'], 'QUIT_MESSAGE' => $pjirc_config['irc_quit'], // 'S_QUIT_CHAT' => append_sid($module_root_path.'pjirc_drop.'.$phpEx), 'S_QUIT_CHAT' => append_sid($module_root_path.'pjirc_update.'.$phpEx), 'LANG' => $board_config['default_lang'], 'HELP' => $help, //GUI_SETTING 'BUTTON_SURROUND' => $pjirc_config['button_surround'], '3D_BUTTON_HIGHLIGHT' => $pjirc_config['3d_button_highlight'], '3D_BUTTON_SHADOW' => $pjirc_config['3d_button_shadow'], 'SCROLLBAR_TOP-BOTTOM' => $pjirc_config['scrollbar_top-bottom'], 'SCROLLBAR_HIGHLIGHT' => $pjirc_config['scrollbar_highlight'], 'BUTTON_BACKGROUND' => $pjirc_config['button_background'], 'UI_BACKGROUND' => $pjirc_config['ui_background'], 'WINDOW_BUTTON_BACKGROUND' => $pjirc_config['window_button_background'], 'MDI_BUTTONS_BACKGROUND' => $pjirc_config['mdi_buttons_background'], 'USER_STATE_BUTTON' => $pjirc_config['user_state_button'], 'ALERT_UPDATE_CHANNEL' => $pjirc_config['alert_update_channel'], 'USER_BUTTONS' => $pjirc_config['user_buttons'], 'BACKGROUND_IMAGE_ON' => $pjirc_config['background_image_on'], 'SHOW_STATUS' => $pjirc_config['show_status'], 'SHOW_CONNECT' => $pjirc_config['show_connect'], 'SHOW_DOCK' => $pjirc_config['show_dock'], 'SHOW_CHANLIST' => $pjirc_config['show_chanlist']) ); user_join($nick); $template->pparse('body'); ?> --- NEW FILE: db_install.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: db_install.php,v 1.1 2007/06/07 00:08:30 orynider Exp $ * @copyright (c) 2004-2006, amo, am...@ho... * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ ini_set( 'display_errors', '1' ); define( 'IN_PORTAL', true ); if ( !defined( 'IN_ADMIN' ) ) { $mx_root_path = './../../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include( $mx_root_path . 'common.' . $phpEx ); // Start session management $mx_user->init($user_ip, PAGE_INDEX); // End session management if ( !$userdata['session_logged_in'] ) { die( "Hacking attempt(1)" ); } if ( $userdata['user_level'] != ADMIN ) { die( "Hacking attempt(2)" ); } } $mx_module_version = '1.0.0'; $mx_module_copy = 'mxBB <i> - mx_pjirc</i> module by Amo & <a href="http://www.mxbb.net" target="_blank">Mx Team</a>'; // If fresh install if ( !$result = $db->sql_query( "SELECT config_name from " . $mx_table_prefix . "pjirc_config" ) ) { $message = "<b>This is a fresh install!</b><br/><br/>"; $sql = array(); $sql[] = "DROP TABLE IF EXISTS " . $mx_table_prefix . "pjirc_config"; $sql[] = "DROP TABLE IF EXISTS " . $mx_table_prefix . "pjirc_session"; $sql[] = "CREATE TABLE ".$mx_table_prefix."pjirc_session ( username varchar(99) NOT NULL, time bigint(20) NOT NULL, UNIQUE username (username) ) TYPE=MyISAM"; $sql[] = "CREATE TABLE " . $mx_table_prefix . "pjirc_config ( config_name VARCHAR(255) NOT NULL default '', config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ) TYPE=MyISAM"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('chat_name', 'Pjirc chat')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('prefix_username', 'MX_')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('irc_server', 'irc.freenode.net')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('irc_port', '6667')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('irc_channel', '#mxBB')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('irc_quit', 'Good Bye! I am using mx_pjirc for 2.8.0')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('button_surround', 'ffffff')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('3d_button_highlight', '000000')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('3d_button_shadow', '221100')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('scrollbar_top-bottom', '221100')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('scrollbar_highlight', 'd8efff')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('button_background', '6ba7cc')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('ui_background', 'cfd6de')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('window_button_background', '5d8fae')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('mdi_buttons_background', 'D3CBBA')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('user_state_button', 'd1d2d2')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('alert_update_channel', 'DD5555')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('user_buttons', 'd3d3d3')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('background_image_on', 'false')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('check_period', '120')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('show_status', 'true')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('show_connect', 'true')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('show_dock', 'true')"; $sql[] = "INSERT INTO " . $mx_table_prefix . "pjirc_config ( config_name , config_value ) VALUES ('show_chanlist', 'true')"; $sql[] = "UPDATE " . $mx_table_prefix . "module" . " SET module_version = '" . $mx_module_version . "', module_copy = '" . $mx_module_copy . "' WHERE module_id = '" . $mx_module_id . "'"; $message .= mx_do_install_upgrade( $sql ); } else { // If already installed $message = "<b>Module is already installed... consider upgrading ;)</b><br/><br/>"; } echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstallation Information - Module specific DB tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; ?> --- NEW FILE: pjirc_update.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: pjirc_update.php,v 1.1 2007/06/07 00:08:36 orynider Exp $ * @copyright (c) 2004-2006 amo, am...@ho... * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /*************************************************************************** * mx_pjirc *************************************************************************** * History: *AMO (24/02/2004) : 1st try *AMO (09/10/2004) : the statue update works but it is not optimized ***************************************************************************/ define('IN_PORTAL', true); $mx_root_path = '../../'; $module_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($mx_root_path . 'common.'.$phpEx); $mx_user->init($user_ip, PAGE_INDEX); define('_PJIRC_CONFIG', true); include_once($module_root_path . 'includes/common.'.$phpEx); $time=date("U"); $nick = str_replace(" ", "_", $userdata['username']); if ($_POST['update']==true) { update_user($nick,$time); } //read check period $period=$pjirc_config['check_period']*1000; echo 'Your nick is: ' . $nick; //pjirc_update.php (send to the db the user statue "chatting" every $period seconds) echo "<html>"; echo "<head>"; echo "<script language=\"javascript\">"; echo "setInterval(\"document.forms['update'].submit();\",".$period.");"; echo "</script>"; echo "</head>"; echo "<body>"; echo "<form name=\"update\" action=\"pjirc_update.php\" method=\"POST\">"; echo "<input type=\"hidden\" name=\"update\" value=\"true\">"; echo "</form>"; echo "</body>"; echo "</html>"; ?> --- NEW FILE: db_upgrade.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: db_upgrade.php,v 1.1 2007/06/07 00:08:31 orynider Exp $ * @copyright (c) 2002-2006 [Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ define( 'IN_PORTAL', true ); if ( !defined( 'IN_ADMIN' ) ) { $mx_root_path = './../../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include( $mx_root_path . 'common.' . $phpEx ); // Start session management $mx_user->init($user_ip, PAGE_INDEX); if ( !$userdata['session_logged_in'] ) { die( "Hacking attempt(1)" ); } if ( $userdata['user_level'] != ADMIN ) { die( "Hacking attempt(2)" ); } // End session management } $mx_module_version = '1.0.0'; $mx_module_copy = 'mxBB <i> - mx_pjirc</i> module by Amo & <a href="http://www.mxbb.net" target="_blank">Mx Team</a>'; $message = "<b>Upgrading!</b><br/><br/>"; $sql = array(); $sql[] = "UPDATE " . $mx_table_prefix . "module" . " SET module_version = '" . $mx_module_version . "', module_copy = '" . $mx_module_copy . "' WHERE module_id = '" . $mx_module_id . "'"; $message .= mx_do_install_upgrade( $sql ); echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; ?> --- NEW FILE: pjirc_faq.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: pjirc_faq.php,v 1.1 2007/06/07 00:08:33 orynider Exp $ * @copyright (c) 2001-2007 The phpBB Group, su...@ph... * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ define('IN_PORTAL', 1); $mx_root_path = "../../"; $mx_module_path = "./"; $phpEx = substr(strrchr(__FILE__, '.'), 1); include_once($mx_root_path . 'common.'.$phpEx); // // Start session management // $mx_user->init($user_ip, PAGE_INDEX); // // End session management // // // Load language files. // if( file_exists($module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_faq.' . $phpEx) ) { include($module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_faq.' . $phpEx); } else { include($module_root_path . 'language/lang_english/lang_faq.' . $phpEx); } // // Pull the array data from the lang pack // $j = 0; $counter = 0; $counter_2 = 0; $faq_block = array(); $faq_block_titles = array(); for($i = 0; $i < count($faq); $i++) { if( $faq[$i][0] != '--' ) { $faq_block[$j][$counter]['id'] = $counter_2; $faq_block[$j][$counter]['question'] = $faq[$i][0]; $faq_block[$j][$counter]['answer'] = $faq[$i][1]; $counter++; $counter_2++; } else { $j = ( $counter != 0 ) ? $j + 1 : 0; $faq_block_titles[$j] = $faq[$i][1]; $counter = 0; } } // // Lets build a page ... // $page_title = $l_title; include($mx_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'pjirc_faq.tpl') ); make_jumpbox($phpbb_root_path . 'viewforum.'.$phpEx, $forum_id); $template->assign_vars(array( 'L_FAQ_TITLE' => $l_title, 'L_BACK_TO_TOP' => $lang['Back_to_top']) ); for($i = 0; $i < count($faq_block); $i++) { if( count($faq_block[$i]) ) { $template->assign_block_vars('faq_block', array( 'BLOCK_TITLE' => $faq_block_titles[$i]) ); $template->assign_block_vars('faq_block_link', array( 'BLOCK_TITLE' => $faq_block_titles[$i]) ); for($j = 0; $j < count($faq_block[$i]); $j++) { $row_color = ( !($j % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($j % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars('faq_block.faq_row', array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'FAQ_QUESTION' => $faq_block[$i][$j]['question'], 'FAQ_ANSWER' => $faq_block[$i][$j]['answer'], 'U_FAQ_ID' => $faq_block[$i][$j]['id']) ); $template->assign_block_vars('faq_block_link.faq_row_link', array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'FAQ_LINK' => $faq_block[$i][$j]['question'], 'U_FAQ_LINK' => append_sid(PORTAL_URL . 'modules/mx_pjirc/pjirc_faq.php' . '#' . $faq_block[$i][$j]['id']) ) ); } } } $template->pparse('body'); include($mx_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: db_uninstall.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: db_uninstall.php,v 1.1 2007/06/07 00:08:30 orynider Exp $ * @copyright (c) 2004-2006, amo, am...@ho... * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ define('IN_PORTAL', true); if ( !defined('IN_ADMIN') ) { $mx_root_path = '../../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($mx_root_path . 'common.'.$phpEx); // // Start session management // $mx_user->init($user_ip, PAGE_INDEX); if( !$userdata['session_logged_in'] ) { die("Hacking attempt(3)"); } if( $userdata['user_level'] != ADMIN ) { die("Hacking attempt(4)"); } // // End session management // } $sql = array( "DROP TABLE ".$mx_table_prefix."pjirc_config", "DROP TABLE ".$mx_table_prefix."pjirc_session" ); $n = 0; $message = "<b>This list is a result of the SQL queries needed to uninstall Pjirc Module Addon</b><br/><br/>"; while($sql[$n]) { $message .= ($mods[$n-1] != $mods[$n]) ? '<p><b><font size=3>'.$mods[$n].'</font></b><br/>' : ''; if( !$result = $db->sql_query($sql[$n]) ) { $message .= '<b><font color=#FF0000>[Error or Already removed]</font></b> line: '.($n+1).' , '.$sql[$n].'<br />'; } else { $message .='<b><font color=#0000fF>[Removed]</font></b> line: '.($n+1).' , '.$sql[$n].'<br />'; } $n++; } $message .= ' <br />If you get some Error, relax, this is normal when updating modules'; echo '<br /> <br />'; echo '<table cellpadding="4" cellspacing="1" border="0" class="forumline">'; echo '<tr><th class="thHead" align="center">Module Installation Information</th></tr>'; echo '<tr><td class="row1" align="center"><span class="gen">' . $message . '</span></td></tr>'; echo '</table> <br />'; ?> --- NEW FILE: readme.txt --- /********************************************************************************\ | | subject : mxBB-Portal, CMS & portal, module | name : mx_pjirc | begin : January, 2006 | copyright : (C) 2002-2006 mxBB | mxBB project site : www.mx-system.com | | author : Amo (see additional credit below) | author site : http://mhand.boughias.free.fr/ | author email : am...@ho... | | additional credit : This module is based on "MX_chatbox" | and the phpBB mod "pjIRC" by Eric. | | description : The "Mx pjIRC" is a IRC Client for mxBB-Portal. | |********************************************************************************| | | @package mxBB Portal Module - mx_pjirc | @version $Id: readme.txt,v 1.1 2007/06/07 00:08:36 orynider Exp $ | @copyright (c) 2002-2007 [OryNider] mxBB Development Team | @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 | \********************************************************************************/ /********************************************************************************\ | Installation Instructions \********************************************************************************/ Note: In order for this module to install you must have a working phpBB and mxBB installation. 1) Copy the folder: mx_pjirc into your: {mxBB install}\modules\ folder on your web server. 3) chmod 777 modules/mx_pjirc/pjirc/ 3) From your website enter mxBB Admin Control Panel. 4) Under mxBB-Portal click on Management. 5) Now click on Modules Setup. 6) Under Module Administration use the pull down menu and choose: mx_pjirc 7) Press the Install Module button 8) If you have followed the instructions correctly you should now be able to create a mx_pjirc front block for inclusion on your pages. /********************************************************************************\ | End Of Document \********************************************************************************/ |
|
From: OryNider <ory...@us...> - 2007-06-07 00:08:35
|
Update of /cvsroot/mxbb/mx_pjirc/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv11032/admin Added Files: admin_pjirc.php Log Message: --- NEW FILE: admin_pjirc.php --- <?php /** * * @package mxBB Portal Module - mx_pjirc * @version $Id: admin_pjirc.php,v 1.1 2007/06/07 00:08:29 orynider Exp $ * @copyright (c) 2003-2006 Marc Ferran; Eric; Amo * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ /*************************************************************************** * History: * * 2003/12/21 * - Modified from admin_chatbox.php by AMO for mx_pjirc module * ***************************************************************************/ // ====================================================== // [ ADMINCP COMMON INITIALIZATION ] // ====================================================== // // Add our entry to the Administration Control Panel... // if( !empty($setmodules) ) { $module['pjirc']['Settings'] = 'modules/mx_pjirc/admin/' . @basename(__FILE__); return; } // // Setup basic portal stuff... // define('IN_PORTAL', true); $mx_root_path = '../../../'; $module_root_path = "../"; // // Security and page header... // $phpEx = substr(strrchr(__FILE__, '.'), 1); require($mx_root_path . '/admin/pagestart.'.$phpEx); // // Include common module stuff... // require($module_root_path . 'includes/common.'.$phpEx); // // Send page header... // include_once($mx_root_path . 'admin/page_header_admin.'.$phpEx); // ====================================================== // [ MAIN PROCESS ] // ====================================================== // // Read the module settings... // $sql = "SELECT * FROM ".PJIRC_CONFIG_TABLE; if(!$result = $db->sql_query($sql)) { message_die(GENERAL_ERROR, "Couldn't query pjirc config table", "", __LINE__, __FILE__, $sql); } while( $row = $db->sql_fetchrow($result) ) { $config_name = $row['config_name']; $config_value = $row['config_value']; $default_config[$config_name] = $config_value; $new[$config_name] = ( isset($HTTP_POST_VARS[$config_name]) ) ? $HTTP_POST_VARS[$config_name] : $default_config[$config_name]; if( isset($HTTP_POST_VARS['submit'])) { $sql = "UPDATE ".PJIRC_CONFIG_TABLE. " SET config_value = '" . str_replace("\'", "''", $new[$config_name]) . "'" . " WHERE config_name = '$config_name'"; if( !$db->sql_query($sql) ) { message_die(GENERAL_ERROR, "Failed to update pjirc configuration for $config_name", "", __LINE__, __FILE__, $sql); } } } //Background image on/off ? if ($new['background_image_on']=="true") { $bg_image_on_off="<select name=\"background_image_on\" size=1><option value=\"true\" selected>on<option value=\"false\">off</select>"; } else { $bg_image_on_off="<select name=\"background_image_on\" size=1><option value=\"true\">on<option value=\"false\" selected>off</select>"; } //Show status? if ($new['show_status']=="true") { $show_status="<select name=\"show_status\" size=1><option value=\"true\" selected>on<option value=\"false\">off</select>"; } else { $show_status="<select name=\"show_status\" size=1><option value=\"true\">on<option value=\"false\" selected>off</select>"; } //Show connect? if ($new['show_connect']=="true") { $show_connect="<select name=\"show_connect\" size=1><option value=\"true\" selected>on<option value=\"false\">off</select>"; } else { $show_connect="<select name=\"show_connect\" size=1><option value=\"true\">on<option value=\"false\" selected>off</select>"; } //Show chanlist? if ($new['show_chanlist']=="true") { $show_chanlist="<select name=\"show_chanlist\" size=1><option value=\"true\" selected>on<option value=\"false\">off</select>"; } else { $show_chanlist="<select name=\"show_chanlist\" size=1><option value=\"true\">on<option value=\"false\" selected>off</select>"; } //Show dock? if ($new['show_dock']=="true") { $show_dock="<select name=\"show_dock\" size=1><option value=\"true\" selected>on<option value=\"false\">off</select>"; } else { $show_dock="<select name=\"show_dock\" size=1><option value=\"true\">on<option value=\"false\" selected>off</select>"; } //Background image UPLOAD if (is_uploaded_file ($_FILES['background_image']['tmp_name'])) { if (file_exists($module_root_path . "pjirc/background.jpg")) { unlink($module_root_path . "pjirc/background.jpg"); } copy($_FILES['background_image']['tmp_name'], $module_root_path . "pjirc/background.jpg"); } // // If the form was submitted, display the update successful message... // if( isset($HTTP_POST_VARS['submit']) ) { $message = $lang['Pjirc_Settings_updated'] . '<br /><br />' . sprintf($lang['Pjirc_Settings_return'], '<a href="' . append_sid("admin_pjirc.$phpEx") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_admin_index'], '<a href="' . append_sid($mx_root_path . "admin/index.$phpEx?pane=right") . '">', '</a>'); message_die(GENERAL_MESSAGE, $message); } // //COLORS settings // // $colors=array("ff0000","ff0033","ff0066","ff0099","ff00cc","ff00ff", "ff3300","ff3333","ff3366","ff3399","ff33cc","ff33ff", "ff6600","ff6633","ff6666","ff6699","ff66cc","ff66ff", "ff9900","ff9933","ff9966","ff9999","ff99cc","ff99ff", "ffcc00","ffcc33","ffcc66","ffcc99","ffcccc","ffccff", "ffff00","ffff33","ffff66","ffff99","ffffcc","ffffff", "cc0000","cc0033","cc0066","cc0099","cc00cc","cc00ff", "cc3300","cc3333","cc3366","cc3399","cc33cc","cc33ff", "cc6600","cc6633","cc6666","cc6699","cc66cc","cc66ff", "cc9900","cc9933","cc9966","cc9999","cc99cc","cc99ff", "cccc00","cccc33","cccc66","cccc99","cccccc","ccccff", "ccff00","ccff33","ccff66","ccff99","ccffcc","ccffff", "990000","990033","990066","990099","9900cc","9900ff", "993300","993333","993366","993399","9933cc","9933ff", "996600","996633","996666","996699","9966cc","9966ff", "999900","999933","999966","999999","9999cc","9999ff", "99cc00","99cc33","99cc66","99cc99","99cccc","99ccff", "99ff00","99ff33","99ff66","99ff99","99ffcc","99ffff", "660000","660033","660066","660099","6600cc","6600ff", "663300","663333","663366","663399","6633cc","6633ff", "666600","666633","666666","666699","6666cc","6666ff", "669900","669933","669966","669999","6699cc","6699ff", "66cc00","66cc33","66cc66","66cc99","66cccc","66ccff", "66ff00","66ff33","66ff66","66ff99","66ffcc","66ffff", "330000","330033","330066","330099","3300cc","3300ff", "333300","333333","333366","333399","3333cc","3333ff", "336600","336633","336666","336699","3366cc","3366ff", "339900","339933","339966","339999","3399cc","3399ff", "33cc00","33cc33","33cc66","33cc99","33cccc","33ccff", "33ff00","33ff33","33ff66","33ff99","33ffcc","33ffff", "221100","d8efff","6ba7cc","cfd6de","5d8fae","D3CBBA","d1d2d2","DD5555","d3d3d3", "000000","000033","000066","000099","0000cc","0000ff", "003300","003333","003366","003399","0033cc","0033ff", "006600","006633","006666","006699","0066cc","0066ff", "009900","009933","009966","009999","0099cc","0099ff", "00cc00","00cc33","00cc66","00cc99","00cccc","00ccff", "00ff00","00ff33","00ff66","00ff99","00ffcc","00ffff"); //BUTTON_SURROUND for($i=0; $colors[$i]; $i++) { if ($new['button_surround']==$colors[$i]) { $button_surround.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $button_surround.="<option style='color: #".$colors[$i]."'".$colors[$i]."'>$colors[$i]</option>"; } } //3D_BUTTON_HIGHLIGHT for($i=0; $colors[$i]; $i++) { if ($new['3d_button_highlight']==$colors[$i]) { $button_highlight.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $button_highlight.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //3D_BUTTON_SHADOW for($i=0; $colors[$i]; $i++) { if ($new['3d_button_shadow']==$colors[$i]) { $button_shadow.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $button_shadow.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //SCROLLBAR for($i=0; $colors[$i]; $i++) { if ($new['scrollbar_top']==$colors[$i]) { $scrollbar.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $scrollbar.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //SCROLLBAR_HIGHLIGHT for($i=0; $colors[$i]; $i++) { if ($new['scrollbar_highlight']==$colors[$i]) { $scrollbar_highlight.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $scrollbar_highlight.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //BUTTON_BACKGROUND for($i=0; $colors[$i]; $i++) { if ($new['button_background']==$colors[$i]) { $button_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $button_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //'UI_BACKGROUND' for($i=0; $colors[$i]; $i++) { if ($new['ui_background']==$colors[$i]) { $ui_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $ui_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //'WINDOW_BUTTON_BACKGROUND' for($i=0; $colors[$i]; $i++) { if ($new['window_button_background']==$colors[$i]) { $window_button_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $window_button_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //'MDI_BUTTONS_BACKGROUND' for($i=0; $colors[$i]; $i++) { if ($new['mdi_buttons_background']==$colors[$i]) { $mdi_buttons_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $mdi_buttons_background.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //'USER_STATE_BUTTON' for($i=0; $colors[$i]; $i++) { if ($new['user_state_button']==$colors[$i]) { $user_state_button.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $user_state_button.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //'ALERT_UPDATE_CHANNEL' for($i=0; $colors[$i]; $i++) { if ($new['alert_update_channel']==$colors[$i]) { $alert_update_channel.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $alert_update_channel.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } //'USER_BUTTONS' for($i=0; $colors[$i]; $i++) { if ($new['user_buttons']==$colors[$i]) { $user_buttons.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."' SELECTED>$colors[$i]</option>"; } else { $user_buttons.="<option style='color: #".$colors[$i]."' value='".$colors[$i]."'>$colors[$i]</option>"; } } $template->set_filenames(array( "body" => "admin/pjirc_config_body.tpl") ); $template->assign_vars(array( 'S_ACTION' => append_sid("admin_pjirc.$phpEx"), 'L_PJIRC_SETTINGS' => $lang['Pjirc_Settings'], 'L_PJIRC_SETTINGS_EXPLAIN' => $lang['Pjirc_Settings_explain'], 'L_SERVER' => $lang['IRC_server'], 'L_PORT' => $lang['IRC_port'], 'L_CHANNEL' => $lang['IRC_channel'], 'L_QUIT_MESSAGE' => $lang['Quit_message'], 'L_SUBMIT' => $lang['Submit'], 'L_RESET' => $lang['Reset'], 'L_CHAT' => $lang['Chat_name'], 'L_PREFIX_USERNAME' => $lang['Prefix_username'], 'L_PREFIX_USERNAME_EXPLAIN' => $lang['Prefix_username_explain'], 'L_CHECK_PERIOD' => $lang['Check_period'], 'L_CHECK_PERIOD_EXPLAIN' => $lang['Check_period_explain'], 'L_BACKGROUND_IMAGE' => $lang['Background_image'], 'L_BACKGROUND_IMAGE_EXPLAIN'=> $lang['Background_image_explain'], 'L_PJIRC_COLORS' => $lang['Pjirc_style'], 'L_BUTTON_SURROUND' => $lang['Button_surround'], 'L_3D_BUTTON_HIGHLIGHT' => $lang['3D_button_highlight'], 'L_3D_BUTTON_SHADOW' => $lang['3D_button_shadow'], 'L_SCROLLBAR_TOP-BOTTOM' => $lang['Scrollbar_top-bottom'], 'L_SCROLLBAR_HIGHLIGHT' => $lang['Scrollbar_highlight'], 'L_BUTTON_BACKGROUND' => $lang['Button_background'], 'L_UI_BACKGROUND' => $lang['UI_background'], 'L_WINDOW_BUTTON_BACKGROUND'=> $lang['Window_button_background'], 'L_USER_STATE_BUTTON' => $lang['User_state_button'], 'L_MDI_BUTTONS_BACKGROUND' => $lang['MDI_buttons_background'], 'L_ALERT_UPDATE_CHANNEL' => $lang['Alert_update_channel'], 'L_USER_BUTTONS' => $lang['User_buttons'], 'L_BUTTON_SETTINGS' => $lang['Button_settings'], 'L_SHOW_STATUS' => $lang['Show_status'], 'L_SHOW_CONNECT' => $lang['Show_connect'], 'L_SHOW_DOCK' => $lang['Show_dock'], 'L_SHOW_CHANLIST' => $lang['Show_chanlist'], 'PREFIX_USERNAME' => $new['prefix_username'], 'IRC_SERVER' => $new['irc_server'], 'IRC_CHANNEL' => $new['irc_channel'], 'IRC_PORT' => $new['irc_port'], 'IRC_QUIT' => $new['irc_quit'], 'CHAT_NAME' => $new['chat_name'], 'CHECK_PERIOD' => $new['check_period'], //GUI_SETTING 'COLORS_OPTIONS' => $colors_options, 'BUTTON_SURROUND' => $button_surround, '3D_BUTTON_HIGHLIGHT' => $button_highlight, '3D_BUTTON_SHADOW' => $button_shadow, 'SCROLLBAR_TOP-BOTTOM' => $scrollbar, 'SCROLLBAR_HIGHLIGHT' => $scrollbar_highlight, 'BUTTON_BACKGROUND' => $button_background, 'UI_BACKGROUND' => $ui_background, 'WINDOW_BUTTON_BACKGROUND' => $window_button_background, 'MDI_BUTTONS_BACKGROUND' => $mdi_buttons_background, 'USER_STATE_BUTTON' => $user_state_button, 'ALERT_UPDATE_CHANNEL' => $alert_update_channel, 'USER_BUTTONS' => $user_buttons, 'BG_IMAGE_ON_OFF' => $bg_image_on_off, 'SHOW_DOCK' => $show_dock, 'SHOW_CONNECT' => $show_connect, 'SHOW_CHANLIST' => $show_chanlist, 'SHOW_STATUS' => $show_status) ); $template->pparse("body"); unset($colors, $colors_options); include_once($mx_root_path . 'admin/page_footer_admin.' . $phpEx); ?> |
|
From: OryNider <ory...@us...> - 2007-06-07 00:06:05
|
Update of /cvsroot/mxbb/mx_pjirc/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10551/admin Log Message: Directory /cvsroot/mxbb/mx_pjirc/templates/subSilver/admin added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 00:05:53
|
Update of /cvsroot/mxbb/mx_pjirc/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10539/subSilver Log Message: Directory /cvsroot/mxbb/mx_pjirc/templates/subSilver added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 00:05:07
|
Update of /cvsroot/mxbb/mx_pjirc/pjirc/img In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10053/img Log Message: Directory /cvsroot/mxbb/mx_pjirc/pjirc/img added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 00:05:07
|
Update of /cvsroot/mxbb/mx_pjirc/pjirc/snd In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10053/snd Log Message: Directory /cvsroot/mxbb/mx_pjirc/pjirc/snd added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 00:04:35
|
Update of /cvsroot/mxbb/mx_pjirc/language/lang_romanian In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9911/lang_romanian Log Message: Directory /cvsroot/mxbb/mx_pjirc/language/lang_romanian added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 00:04:35
|
Update of /cvsroot/mxbb/mx_pjirc/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9911/lang_english Log Message: Directory /cvsroot/mxbb/mx_pjirc/language/lang_english added to the repository |
|
From: OryNider <ory...@us...> - 2007-06-07 00:03:41
|
Update of /cvsroot/mxbb/mx_pjirc/doc/.xvpics In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9354/.xvpics Log Message: Directory /cvsroot/mxbb/mx_pjirc/doc/.xvpics added to the repository |