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...> - 2008-03-21 08:52:39
|
Update of /cvsroot/mxbb/mx_radiocast/radiocast_mod In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22296/radiocast_mod Modified Files: radiocast_common.php radiocast_constants.php radiocast_integration.php Log Message: version 1.02 Index: radiocast_integration.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast_mod/radiocast_integration.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** radiocast_integration.php 6 Jun 2007 23:04:00 -0000 1.1 --- radiocast_integration.php 21 Mar 2008 08:51:10 -0000 1.2 *************** *** 45,70 **** // Generate paths for page and standalone mode // ...function based on original function written by Markus :-) ! function this_rc_mxurl($args = '', $force_standalone_mode = false) { ! global $mx_root_path, $module_root_path, $page_id, $radiocast_index, $phpEx, $integration_enabled, $is_block; ! if( $force_standalone_mode || !$is_block ) ! { ! $mxurl = $mx_root_path . 'modules/mx_radiocast/' . 'radiocast.' . $phpEx . ($args == '' ? '' : '?' . $args); ! } ! else ! { ! $mxurl = $mx_root_path . 'index.' . $phpEx; ! if( is_numeric($page_id) && !empty($page_id) ) { ! $mxurl .= '?page=' . $page_id . ($args == '' ? '' : '&' . $args); } else { ! $mxurl .= '?page=' . $radiocast_index . ($args == '' ? '' : '&' . $args); } } - return $mxurl; } --- 45,73 ---- // Generate paths for page and standalone mode // ...function based on original function written by Markus :-) ! if (!function_exists('this_rc_mxurl')) { ! function this_rc_mxurl($args = '', $force_standalone_mode = false) ! { ! global $mx_root_path, $module_root_path, $page_id, $radiocast_index, $phpEx, $integration_enabled, $is_block; ! if( $force_standalone_mode || !$is_block ) { ! $mxurl = $mx_root_path . 'modules/mx_radiocast/' . 'radiocast.' . $phpEx . ($args == '' ? '' : '?' . $args); } else { ! $mxurl = $mx_root_path . 'index.' . $phpEx; ! if( is_numeric($page_id) && !empty($page_id) ) ! { ! $mxurl .= '?page=' . $page_id . ($args == '' ? '' : '&' . $args); ! } ! else ! { ! $mxurl .= '?page=' . $radiocast_index . ($args == '' ? '' : '&' . $args); ! } } + return $mxurl; } } Index: radiocast_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast_mod/radiocast_common.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** radiocast_common.php 17 Sep 2007 07:19:37 -0000 1.3 --- radiocast_common.php 21 Mar 2008 08:51:09 -0000 1.4 *************** *** 26,62 **** } ! include_once($radiocast_root_path . 'radiocast_constants.'.$phpEx); ! ! // ********************************************************************** ! // Read language definition ! // ********************************************************************** ! ! if ( !file_exists( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ) ) ! { ! include( $module_root_path . 'language/lang_english/lang_main.' . $phpEx ); ! $link_language='lang_english'; ! } ! else ! { ! include( $module_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx ); ! $link_language='lang_' . $board_config['default_lang']; ! } ! ! // ********************************************************************** ! // Read theme definition and language in theme definition ! // ********************************************************************** ! ! if ( file_exists( $module_root_path . "templates/" . $theme['template_name'] . '/' . $theme['template_name'] . ".cfg" ) ) ! { ! // ---------- ! include($module_root_path . "templates/" . $theme['template_name'] . '/' . $theme['template_name'] . ".cfg"); ! // ---------- ! } ! else ! { ! // ---------- ! include($module_root_path . "templates/" . "subSilver/" . "subSilver.cfg"); ! // ---------- ! } // --- 26,30 ---- } ! include($radiocast_root_path . 'radiocast_constants.'.$phpEx); // Index: radiocast_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast_mod/radiocast_constants.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** radiocast_constants.php 6 Jun 2007 23:03:59 -0000 1.1 --- radiocast_constants.php 21 Mar 2008 08:51:09 -0000 1.2 *************** *** 14,18 **** } ! define('PAGE_RADIOCAST', -19); // for Session Handling --- 14,18 ---- } ! @define('PAGE_RADIOCAST', -19); // for Session Handling *************** *** 32,37 **** - - // Table names !defined('RADIOCAST_TABLE') ? define('RADIOCAST_TABLE', $mx_table_prefix . 'radiocast') : false; --- 32,35 ---- *************** *** 41,43 **** --- 39,94 ---- !defined('RADIOCAST_RATE_TABLE') ? define('RADIOCAST_RATE_TABLE', $mx_table_prefix . 'radiocast_rate') : false; + + if (!$_GET['print']) // Do not "fix" with reuest wrapper!! + { + $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x + } + + // ------------------------------------------------------------------------- + // Extend User Style with module lang and images + // Usage: $mx_user->extend(LANG, IMAGES) + // Switches: + // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE + // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE + // ------------------------------------------------------------------------- + $mx_user->extend(MX_LANG_MAIN, MX_IMAGES); + + if (!$is_block) + { + if ( file_exists($module_root_path . "templates/" . $theme['template_name'] . '/' . "mx_radiocast.cfg" ) ) + { + // ---------- + include_once($module_root_path . "templates/" . $theme['template_name'] . '/' . "mx_radiocast.cfg"); + // ---------- + } + else + { + // ---------- + include_once($module_root_path . "templates/" . "subSilver/" . "mx_radiocast.cfg"); + // ---------- + } + + + $img_lang = ( file_exists($module_root_path . "templates/" . $theme['template_name'] . '/images/lang_' . $board_config['default_lang']) ) ? $board_config['default_lang'] : 'english'; + + while( list($key, $value) = @each($mx_images) ) + { + if (is_array($value)) + { + foreach( $value as $key2 => $val2 ) + { + $images[$key][$key2] = $val2; + $mx_images[$key][$key2] = $val2; + } + } + else + { + $images[$key] = str_replace('{LANG}', 'lang_' . $img_lang, $value); + $mx_images[$key] = str_replace('{LANG}', 'lang_' . $img_lang, $value); + } + + } + + } + ?> \ No newline at end of file |
|
From: OryNider <ory...@us...> - 2008-03-21 08:52:26
|
Update of /cvsroot/mxbb/mx_radiocast/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22296/admin Modified Files: admin_radio_auth.php admin_radio_cat.php admin_radio_cfg.php admin_radio_ext.php Log Message: version 1.02 Index: admin_radio_ext.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/admin/admin_radio_ext.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** admin_radio_ext.php 8 Feb 2008 23:43:44 -0000 1.3 --- admin_radio_ext.php 21 Mar 2008 08:50:58 -0000 1.4 *************** *** 24,28 **** $mx_root_path = '../../../'; $radiocast_root_path = $module_root_path . 'radiocast_mod/'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); require($mx_root_path . 'admin/pagestart.' . $phpEx); --- 24,28 ---- $mx_root_path = '../../../'; $radiocast_root_path = $module_root_path . 'radiocast_mod/'; ! $phpEx = substr(strrchr(__FILE__, '.'), 1); require($mx_root_path . 'admin/pagestart.' . $phpEx); *************** *** 172,174 **** include_once( $mx_root_path . 'admin/page_footer_admin.' . $phpEx ); ! ?> \ No newline at end of file --- 172,174 ---- include_once( $mx_root_path . 'admin/page_footer_admin.' . $phpEx ); ! ?> |
|
From: OryNider <ory...@us...> - 2008-03-21 08:52:06
|
Update of /cvsroot/mxbb/mx_radiocast In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22296 Modified Files: Radio_Cast.nfo db_install.php db_upgrade.php mx_install_readme.htm radiocast.php Log Message: version 1.02 Index: mx_install_readme.htm =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/mx_install_readme.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mx_install_readme.htm 6 Jun 2007 23:03:44 -0000 1.1 --- mx_install_readme.htm 21 Mar 2008 08:50:21 -0000 1.2 *************** *** 1,8 **** ! <html> <head> <title>Mx Portal installation - readme</title> ! <meta http-equiv="Content-Type" content="text/html; charset=windows-1250"> <!-- link rel="stylesheet" href="../../templates/subSilver/subSilver.css" type="text/css" --> <style type="text/css"> <!-- /* --- 1,16 ---- ! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml"> ! <!-- $Id$ --> <head> + <meta name="generator" content= + "HTML Tidy for Windows (vers 19 September 2007), see www.w3.org" /> <title>Mx Portal installation - readme</title> ! <meta http-equiv="Content-Type" content= ! "text/html; charset=us-ascii" /> <!-- link rel="stylesheet" href="../../templates/subSilver/subSilver.css" type="text/css" --> + <style type="text/css"> + /*<![CDATA[*/ <!-- /* *************** *** 18,29 **** /* 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; } --- 26,37 ---- /* 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; } *************** *** 31,47 **** 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; } /* --- 39,55 ---- 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; } /* *************** *** 51,69 **** */ 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: medium solid #FFFFFF; height: 28px } --- 59,77 ---- */ 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: medium solid #FFFFFF; height: 28px } *************** *** 74,100 **** */ 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; } --- 82,108 ---- */ 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; } *************** *** 105,145 **** .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} --- 113,153 ---- .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} *************** *** 147,176 **** /* 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; } --- 155,184 ---- /* 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; } *************** *** 179,197 **** /* 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; } --- 187,205 ---- /* 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; } *************** *** 205,333 **** @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 style="font-size: 9pt; font-family:Verdana, Arial, Helvetica, sans-serif">MX Module - ! <span lang="ro">Radio</span> <span lang="ro">Cast</span> <br> ! v. <span lang="ro">1</span>.0.<span lang="ro">0 RC 2</span> </font></b></p> ! <p><span style="line-height: normal; font-weight:bold"> ! <font style="font-size: 9pt">Module</font></span><font style="font-size: 9pt"> ! <br /> ! - for mxBB-Portal v. 2.8.</font><span lang="ro"><font style="font-size: 9pt">x</font></span></p> ! <p><strong><font style="font-size: 9pt">Author</font></strong><font style="font-size: 9pt"><span lang="ro">: ! </span>OryNider (mxBB-Development Team)</font></p> ! <p><font style="font-size: 9pt"> ! <br /> ! <span style="font-weight: bold">Description</span> <br /> ! </font><span class="postbody">This Module allows you create the ! <span lang="ro">Radio </span>Center Page/Block where <span lang="ro"> ! admins/</span>users can <span lang="ro">add</span>, listen, rate and comment on ! s<span lang="ro">tations</span>. <br> ! Beside that, users can link URL of the <span lang="ro">station</span> from the ! <span lang="ro">shotcast or icecast like </span>server<span lang="ro">s</span>. <br> ! You have an admin panel that allows you to manage the features of the ! module. ! </span></p> ! <p><font style="font-size: 9pt"> <br /> ! </font><strong> ! <span style="font-size: 9pt">Features</span></strong><span style="font-size: 9pt"> ! - <span lang="ro">Radio </span>Center, Easy to install/uninstall module:</span><span class="postbody"></p> ! <ul> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"> ! <span style="text-decoration: underline" lang="ro">Station</span><span style="TEXT-DECORATION: underline"> Song Image</span> - You ! can add the S<span lang="ro">tation</span> Image to the section of each ! <span lang="ro">radio station</span>. <span lang="ro">(</span>any image you want ! <img alt="Wink" src="http://www.mx-system.com/forum/images/smiles/icon_wink.gif" border="0" width="15" height="15"> ! ) <br> ! Maximum image size is configurable in <span lang="ro">A</span>dminCP ! <img alt="Very Happy" src="http://www.mx-system.com/forum/images/smiles/icon_biggrin.gif" border="0" width="15" height="15"> ! <br> ! </li> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"> ! <span style="TEXT-DECORATION: underline">Search <span lang="ro"> ! Station</span></span> - is ! helping you find the s<span lang="ro">tation</span> by Title, ! <span lang="ro">Dj</span> or Poster quickly ! and easily. <br> ! </li> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"> ! <span style="TEXT-DECORATION: underline">Cat Views</span> - is ! adding a viewed counter of each Category; <br> ! </li> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"> ! <span style="text-decoration: underline" lang="ro">Share</span><span style="TEXT-DECORATION: underline"> S<span lang="ro">tation ! URL</span></span> - ! alows users to directly <span lang="ro">copy/paste</span> the s<span lang="ro">tation</span> ! <span lang="ro">listen url </span>to their <span lang="ro">favorite ! player</span>.</li> ! </ul> ! </span> ! <p> <font style="font-size: 9pt"> <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 target="_blank" class="postlink" href="http://mxbb-portal.evonet.ro/index.php?page=15">DEMO</a><br /> ! <br /></font><a name="install"> ! <font style="font-size: 9pt"> ! <br /> ! <span style="font-weight: bold">I. Installation Instructions</span> <br /> ! To install this module, follow these instructions.</font></a></p> ! <font style="font-size: 9pt">To</font><font style="font-size: 9pt"> summarize:<br> ! If installing from scratch, use import module in the AdminCP.<br> ! If upgrading, uninstall, then reinstall from AdminCP<br> ! If uninstalling, use the delete feature in the AdminCP</font></p> ! <p><font style="font-size: 9pt">Note: If upgrading,<span lang="ro"> </span>uninstall module without ! <span lang="ro">deleating</span> db entries, or else ! you'll lose all module data!<br /> ! <br /> ! <br /> ! </font> ! <span class="gensmall"><a href="#top" onclick="window.scrollTo(0,0); return false"> ! <font style="font-size: 9pt">Back to Top</font></a></span><font style="font-size: 9pt"> <br /> ! <br /><b>II. Additional Styles</b> <br> ! This module is compatible with any theme/style. <br> ! </font> ! <a name="themes"><font style="font-size: 9pt"> </font></font></p> ! <p style="margin-top: 0; margin-bottom: 0"> ! <span class="gensmall"></span> ! <span class="gensmall"><font face="Tahoma"> ! <a href="#top" onclick="window.scrollTo(0,0); return false"> ! <font style="font-size: 9pt">Back to Top</font></a></font></span><font face="Tahoma"><font style="font-size: 9pt"> ! <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. </a> <br /> ! <br /> ! If exists, download and install in the modules/mx_radio/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 /> ! </font> ! <span class="gensmall"><a href="#top" onclick="window.scrollTo(0,0); return false"> ! <font style="font-size: 9pt">Back to Top</font></a></span><font style="font-size: 9pt"> ! </font> ! ! <p> <font style="font-size: 9pt">/MxBB Development Team</font></p> ! </td> ! </tr> </table> </body> --- 213,361 ---- @import url("../../templates/subSilver/formIE.css"); --> + /*]]>*/ </style> + <script language="Javascript" type="text/javascript"> + //<![CDATA[ <!-- ! 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 style= ! "font-size: 9pt; font-family:Verdana, Arial, Helvetica, sans-serif"> ! MX Module - <span lang="ro" xml:lang="ro">Radio</span> <span lang= ! "ro" xml:lang="ro">Cast</span><br /> ! v. <span lang="ro" xml:lang="ro">1.0.0</span></font></b></p> ! <p><span style="line-height: normal; font-weight:bold"><font style= ! "font-size: 9pt">Module</font></span> <font style= ! "font-size: 9pt"><br /> ! - for mxBB-Portal v. 2.8.1</font></p> ! <p><strong><font style= ! "font-size: 9pt">Author</font></strong><font style= ! "font-size: 9pt"><span lang="ro" xml:lang="ro">:</span> OryNider ! (mxBB-Development Team)</font></p> ! <p><font style="font-size: 9pt"><br /> ! <span style="font-weight: bold">Description</span><br /></font> ! <span class="postbody">This Module allows you create the ! <span lang="ro" xml:lang="ro">Radio</span> Center Page/Block where ! <span lang="ro" xml:lang="ro">admins/</span>users can <span lang= ! "ro" xml:lang="ro">add</span>, listen, rate and comment on ! s<span lang="ro" xml:lang="ro">tations</span>.<br /> ! Beside that, users can link URL of the <span lang="ro" xml:lang= ! "ro">station</span> from the <span lang="ro" xml:lang="ro">shotcast ! or icecast like</span> server<span lang="ro" xml:lang= ! "ro">s</span>.<br /> ! You have an admin panel that allows you to manage the features of ! the module.</span></p> ! <p><font style="font-size: 9pt"> <br /></font> ! <strong><span style="font-size: 9pt">Features</span></strong> ! <span style="font-size: 9pt">- <span lang="ro" xml:lang= ! "ro">Radio</span> Center, Easy to install/uninstall ! module:</span></p> ! <ul> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"><span class= ! "postbody"><span style="text-decoration: underline" lang="ro" ! xml:lang="ro">Station</span> <span style= ! "TEXT-DECORATION: underline">Song Image</span> - You can add the ! S<span lang="ro" xml:lang="ro">tation</span> Image to the section ! of each <span lang="ro" xml:lang="ro">radio station</span>. ! <span lang="ro" xml:lang="ro">(</span>any image you want <img alt= ! "Wink" src= ! "http://www.mx-system.com/forum/images/smiles/icon_wink.gif" ! border="0" width="15" height="15" /> )<br /> ! Maximum image size is configurable in <span lang="ro" xml:lang= ! "ro">A</span>dminCP <img alt="Very Happy" src= ! "http://www.mx-system.com/forum/images/smiles/icon_biggrin.gif" ! border="0" width="15" height="15" /><br /> !  </span></p> ! </li> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"><span style= ! "TEXT-DECORATION: underline">Search <span lang="ro" xml:lang= ! "ro">Station</span></span> - is helping you find the s<span lang= ! "ro" xml:lang="ro">tation</span> by Title, <span lang="ro" ! xml:lang="ro">Dj</span> or Poster quickly and easily.<br /> !  </p> ! </li> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"><span style= ! "TEXT-DECORATION: underline">Cat Views</span> - is adding a viewed ! counter of each Category;<br /> !  </p> ! </li> ! <li> ! <p style="margin-top: 0; margin-bottom: 0"><span style= ! "text-decoration: underline" lang="ro" xml:lang="ro">Share</span> ! <span style="TEXT-DECORATION: underline">S<span lang="ro" xml:lang= ! "ro">tation URL</span></span> - alows users to directly <span lang= ! "ro" xml:lang="ro">copy/paste</span> the s<span lang="ro" xml:lang= ! "ro">tation</span> <span lang="ro" xml:lang="ro">listen url</span> ! to their <span lang="ro" xml:lang="ro">favorite player</span>.</p> ! </li> ! </ul> ! <p><font style="font-size: 9pt"><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 target="_blank" class="postlink" href= ! "http://mxbb-portal.evonet.ro/index.php?page=15">DEMO</a><br /> ! <br /></font> <a name="install" id="install"><font style= ! "font-size: 9pt"><br /> ! <span style="font-weight: bold">I. Installation ! Instructions</span><br /> ! To install this module, follow these instructions.</font></a></p> ! <font style="font-size: 9pt">To</font> <font style= ! "font-size: 9pt">summarize:<br /> ! If installing from scratch, use import module in the AdminCP.<br /> ! If upgrading, uninstall, then reinstall from AdminCP<br /> ! If uninstalling, use the delete feature in the AdminCP</font> ! <p><font style="font-size: 9pt">Note: If upgrading, uninstall ! module without <span lang="ro" xml:lang="ro">deleating</span> db ! entries, or else you'll lose all module data!<br /> ! <br /> ! <br /></font> <span class="gensmall"><a href="#top" onclick= ! "window.scrollTo(0,0); return false"><font style= ! "font-size: 9pt">Back to Top</font></a></span> <font style= ! "font-size: 9pt"><br /> ! <br /> ! <b>II. Additional Styles</b><br /> ! This module is compatible with any theme/style.<br /></font> ! <a name="themes" id="themes"><font style= ! "font-size: 9pt"> </font></a></p> ! <p style="margin-top: 0; margin-bottom: 0"><span class= ! "gensmall"><font face="Tahoma"><a href="#top" onclick= ! "window.scrollTo(0,0); return false"><font style= ! "font-size: 9pt">Back to Top</font></a></font></span> <font face= ! "Tahoma"><font style="font-size: 9pt"><br /> ! <a name="languages" id="languages"><br /> ! <span style="font-weight: bold">III. Additional ! Languages</span><br /> ! First check to see if your language is already ! translated.</a><br /> ! <br /> ! If exists, download and install in the modules/mx_radio/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 /></font> <span class="gensmall"><a href="#top" onclick= ! "window.scrollTo(0,0); return false"><font style= ! "font-size: 9pt">Back to Top</font></a></span> </font></p> ! <p><font face="Tahoma"><font style="font-size: 9pt">/MxBB ! Development Team</font></font></p> ! </td> ! </tr> </table> </body> Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/db_upgrade.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** db_upgrade.php 8 Feb 2008 23:43:44 -0000 1.2 --- db_upgrade.php 21 Mar 2008 08:50:20 -0000 1.3 *************** *** 30,34 **** } ! $mx_module_version = '1.0.1'; $mx_module_copy = 'mxBB <i> - Radio Cast</i> module by <a href="http://www.mxbb.net/" target="_blank">OryNider</a>'; --- 30,34 ---- } ! $mx_module_version = '1.0.2'; $mx_module_copy = 'mxBB <i> - Radio Cast</i> module by <a href="http://www.mxbb.net/" target="_blank">OryNider</a>'; *************** *** 44,47 **** --- 44,48 ---- // $upgrade_101 = 0; + $upgrade_102 = 0; // *************** *** 53,60 **** $upgrade_101 = 1; } $message = "<b>Upgrading!</b><br/><br/>"; ! if ( $upgrade_101 == 1 ) { $message .= "<b>Upgrading to v. 1.0.1...</b><br/><br/>"; --- 54,67 ---- $upgrade_101 = 1; } + + $result = $db->sql_query( "SELECT config_value from " . $mx_table_prefix . "radiocast_config WHERE config_name = 'xs_enabled'" ); + if ( $db->sql_numrows( $result ) == 0 ) + { + $upgrade_102 = 1; + } $message = "<b>Upgrading!</b><br/><br/>"; ! if ($upgrade_101 == 1) { $message .= "<b>Upgrading to v. 1.0.1...</b><br/><br/>"; *************** *** 69,72 **** --- 76,95 ---- WHERE config_name = 'radiocast_version'"; } + + if ($upgrade_102 == 1) + { + $message .= "<b>Upgrading to v. 1.0.2...</b><br/><br/>"; + + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('xs_enabled', '1')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('img_allowed', '1')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('flv_allowed', '1')"; + + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('rows_per_page_pic', '5')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('cols_per_page_pic', '5')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('rows_per_page_media', '10')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('cols_per_page_media', '1')"; + + $sql[] = "ALTER TABLE " . $mx_table_prefix . "radiocast ADD station_filetype varchar(255) NOT NULL AFTER station_filename"; + } else { *************** *** 95,97 **** echo "</table><br />"; ! ?> \ No newline at end of file --- 118,120 ---- echo "</table><br />"; ! ?> Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/db_install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** db_install.php 8 Feb 2008 23:43:44 -0000 1.3 --- db_install.php 21 Mar 2008 08:50:18 -0000 1.4 *************** *** 33,37 **** } ! $mx_module_version = '1.0.1'; $mx_module_copy = 'mxBB <i> - Radio Cast</i> module by <a href="http://www.mxbb.net/" target="_blank">OryNider</a>'; --- 33,37 ---- } ! $mx_module_version = '1.0.2'; $mx_module_copy = 'mxBB <i> - Radio Cast</i> module by <a href="http://www.mxbb.net/" target="_blank">OryNider</a>'; *************** *** 57,60 **** --- 57,61 ---- station_id int(11) UNSIGNED NOT NULL auto_increment, station_filename varchar(255) NOT NULL, + station_filetype varchar(255) NOT NULL, station_imagename varchar(255) NOT NULL, station_title varchar(255) NOT NULL, *************** *** 174,177 **** --- 175,187 ---- $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('index', '5')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('xs_enabled', '1')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('img_allowed', '1')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('flv_allowed', '1')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('show_index_subcats', '1')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('rows_per_page_pic', '5')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('cols_per_page_pic', '5')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('rows_per_page_media', '10')"; + $sql[] = "INSERT INTO " . $mx_table_prefix . "radiocast_config VALUES ('cols_per_page_media', '1')"; + $sql[] = "UPDATE " . $mx_table_prefix . "module" . " SET module_version = '" . $mx_module_version . "', *************** *** 192,194 **** echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; ! ?> \ No newline at end of file --- 202,204 ---- echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; ! ?> Index: radiocast.php =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/radiocast.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** radiocast.php 28 Jan 2008 21:59:28 -0000 1.3 --- radiocast.php 21 Mar 2008 08:50:26 -0000 1.4 *************** *** 16,26 **** if( !defined('IN_PORTAL') || !is_object($mx_block)) { ! define('IN_PORTAL', true); ! $mx_root_path = '../../'; ! // ! // Let's include some stuff... ! // ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! include_once($mx_root_path . 'common.' . $phpEx); // // Start session management --- 16,28 ---- if( !defined('IN_PORTAL') || !is_object($mx_block)) { ! ! @define('IN_PORTAL', true); ! ! $mx_root_path = "../../"; ! $module_root_path = "./"; ! ! $phpEx = substr(strrchr(__FILE__, '.'), 1); ! include_once($mx_root_path . 'common.'.$phpEx); ! // // Start session management *************** *** 30,49 **** // End session management // ! $block_id = ( !empty($HTTP_GET_VARS['block_id']) ) ? $HTTP_GET_VARS['block_id'] : $HTTP_POST_VARS['id']; ! if( empty($block_id) ) ! { ! $sql = "SELECT * FROM " . BLOCK_TABLE . " WHERE block_title = 'Radio Cast' LIMIT 1"; ! if(!$result = $db->sql_query($sql)) ! { ! message_die(GENERAL_ERROR, "Could not query Music Center module information", "", __LINE__, __FILE__, $sql); ! } ! $row = $db->sql_fetchrow($result); ! $block_id = $row['block_id']; ! } $is_block = FALSE; } else { - // // Read block Configuration --- 32,45 ---- // End session management // ! ! $title = 'Media Player Radio'; ! ! $block_size = (isset($block_size) && !empty($block_size) ? $block_size : '348'); ! //$player_size = (isset($block_size) && !empty($block_size) ? $block_size - 15 : '333'); ! $is_block = FALSE; } else { // // Read block Configuration *************** *** 51,55 **** $title = $mx_block->block_info['block_title']; ! $block_size = ( isset($block_size) && !empty($block_size) ? $block_size : '100%' ); if( is_object($mx_block)) --- 47,53 ---- $title = $mx_block->block_info['block_title']; ! $desc = $mx_block->block_info['block_desc']; ! $block_size = (isset($block_size) && !empty($block_size) ? $block_size : '100%'); ! //$player_size = $mx_block->get_parameters('player_width'); if( is_object($mx_block)) *************** *** 57,65 **** $is_block = TRUE; } - - global $images, $mx_images; } - $radiocast_root_path = $module_root_path . 'radiocast_mod/'; --- 55,60 ---- *************** *** 169,200 **** */ ! $cat_id = $_POST['c'] ? $_POST['c'] : ( $_GET['c'] ? $_GET['c'] : 0 ); $cat_where = "cat_parent = $cat_id"; ! if ($cat_id != 0) ! { ! $sql = "SELECT cat_id,cat_title ! FROM ". RADIOCAST_CAT_TABLE ." ! WHERE cat_id = $cat_id"; ! if ( $result = $db->sql_query($sql) ) { $thiscat_parent = array(); ! $thiscat_parent = $db->sql_fetchrow($result); ! $template->assign_vars(array( 'U_VIEW_CAT_PARENT' => append_sid(this_rc_mxurl("c=" . $thiscat_parent['cat_id'])), 'SUBCAT_NAV' => ' ' . $lang['Nav_Separator'] . ' <a class="nav" href="' . append_sid(this_rc_mxurl("c=" . $thiscat_parent['cat_id'])) . '">' . $thiscat_parent['cat_title'] . '</a>', 'CAT_PARENT_TITLE' => $thiscat_parent['cat_title'], 'U_RSS' => append_sid(this_rc_mxurl("radiocast_mode=radiocast_rss&c=" . $thiscat_parent['cat_id'] . "&sid=" . $userdata['session_id'], true)), ! 'CAT_PARENT' => $thiscat_parent['cat_id']) ); ! } } else ! { ! $template->assign_vars(array( 'U_RSS' => append_sid(this_rc_mxurl("radiocast_mode=radiocast_rss" . "&sid=" . $userdata['session_id'], true)) )); ! } --- 164,195 ---- */ ! $cat_id = $_POST['c'] ? $_POST['c'] : ( $_GET['c'] ? $_GET['c'] : 0 ); $cat_where = "cat_parent = $cat_id"; ! if ($cat_id != 0) ! { ! $sql = "SELECT cat_id,cat_title ! FROM ". RADIOCAST_CAT_TABLE ." ! WHERE cat_id = $cat_id"; ! if ( $result = $db->sql_query($sql) ) { $thiscat_parent = array(); ! $thiscat_parent = $db->sql_fetchrow($result); ! $template->assign_vars(array( 'U_VIEW_CAT_PARENT' => append_sid(this_rc_mxurl("c=" . $thiscat_parent['cat_id'])), 'SUBCAT_NAV' => ' ' . $lang['Nav_Separator'] . ' <a class="nav" href="' . append_sid(this_rc_mxurl("c=" . $thiscat_parent['cat_id'])) . '">' . $thiscat_parent['cat_title'] . '</a>', 'CAT_PARENT_TITLE' => $thiscat_parent['cat_title'], 'U_RSS' => append_sid(this_rc_mxurl("radiocast_mode=radiocast_rss&c=" . $thiscat_parent['cat_id'] . "&sid=" . $userdata['session_id'], true)), ! 'CAT_PARENT' => $thiscat_parent['cat_id']) ); ! } } else ! { ! $template->assign_vars(array( 'U_RSS' => append_sid(this_rc_mxurl("radiocast_mode=radiocast_rss" . "&sid=" . $userdata['session_id'], true)) )); ! } *************** *** 281,286 **** // ------------------------------------------ ! if ($catrows[$i]['cat_type'] == 0) ! { if ($catrows[$i]['count'] == 0) { --- 276,281 ---- // ------------------------------------------ ! if ($catrows[$i]['cat_type'] == 0) ! { if ($catrows[$i]['count'] == 0) { *************** *** 371,413 **** } // END of Last Station ! } ! else ! { ! // this is a parent category ! $sc_sql = "SELECT * ! FROM ". RADIOCAST_CAT_TABLE ." ! WHERE cat_parent = " . $catrows[$i]['cat_id'] . " ! GROUP BY cat_id ! ORDER BY cat_order ASC"; ! ! if ( !($sc_result = $db->sql_query($sc_sql)) ) ! { ! message_die(GENERAL_ERROR, 'Could not query sub categories', '', __LINE__, __FILE__, $sql); ! } ! ! $sql_count = "SELECT count(cat_id) as count ! FROM ". RADIOCAST_CAT_TABLE ." ! WHERE cat_parent = " . $catrows[$i]['cat_id']; ! if ( ($result_count = $db->sql_query($sql_count)) ) ! { ! $subcat_count = $db->sql_fetchrow($result_count); ! $subcat_count = $subcat_count['count'] . " sub catagories"; ! } ! else ! { ! $subcat_count = ""; ! } ! ! $subcats = '<br /><span class="gensmall"><b>' . $lang['RadioCast_sub_categories'] . ':</b><br />'; ! while ( $subcatrow = $db->sql_fetchrow($sc_result) ) ! { ! $subcats .= ' - <a class="gensmall" href="' . append_sid(this_rc_mxurl('radiocast_mode=radiocast_cat&cat_id='. $subcatrow['cat_id'])) . '">' . $subcatrow['cat_title'] . '</a><br />'; ! } $subcats .= '</span><br />'; ! ! $template->assign_block_vars('catrow', array( ! 'U_VIEW_CAT' => append_sid(this_rc_mxurl("radiocast_mode=radiocast_index&c=". $catrows[$i]['cat_id'])), ! 'CAT_TITLE' => $catrows[$i]['cat_title'], ! 'CAT_DESC' => $catrows[$i]['cat_desc'], 'SONGS' => $subcat_count, 'CAT_VIEWS' => $catrows[$i]['cat_views'], --- 366,408 ---- } // END of Last Station ! } ! else ! { ! // this is a parent category ! $sc_sql = "SELECT * ! FROM ". RADIOCAST_CAT_TABLE ." ! WHERE cat_parent = " . $catrows[$i]['cat_id'] . " ! GROUP BY cat_id ! ORDER BY cat_order ASC"; ! ! if ( !($sc_result = $db->sql_query($sc_sql)) ) ! { ! message_die(GENERAL_ERROR, 'Could not query sub categories', '', __LINE__, __FILE__, $sql); ! } ! ! $sql_count = "SELECT count(cat_id) as count ! FROM ". RADIOCAST_CAT_TABLE ." ! WHERE cat_parent = " . $catrows[$i]['cat_id']; ! if ( ($result_count = $db->sql_query($sql_count)) ) ! { ! $subcat_count = $db->sql_fetchrow($result_count); ! $subcat_count = $subcat_count['count'] . " sub catagories"; ! } ! else ! { ! $subcat_count = ""; ! } ! ! $subcats = '<br /><span class="gensmall"><b>' . $lang['RadioCast_sub_categories'] . ':</b><br />'; ! while ( $subcatrow = $db->sql_fetchrow($sc_result) ) ! { ! $subcats .= ' - <a class="gensmall" href="' . append_sid(this_rc_mxurl('radiocast_mode=radiocast_cat&cat_id='. $subcatrow['cat_id'])) . '">' . $subcatrow['cat_title'] . '</a><br />'; ! } $subcats .= '</span><br />'; ! ! $template->assign_block_vars('catrow', array( ! 'U_VIEW_CAT' => append_sid(this_rc_mxurl("radiocast_mode=radiocast_index&c=". $catrows[$i]['cat_id'])), ! 'CAT_TITLE' => $catrows[$i]['cat_title'], ! 'CAT_DESC' => $catrows[$i]['cat_desc'], 'SONGS' => $subcat_count, 'CAT_VIEWS' => $catrows[$i]['cat_views'], *************** *** 416,420 **** 'L_ALL_CAT_SONGS' => $lang['Category_stations'], 'MODERATORS' => $moderators_list, ! 'LAST_SONG_INFO' => $last_station_info) ); --- 411,415 ---- 'L_ALL_CAT_SONGS' => $lang['Category_stations'], 'MODERATORS' => $moderators_list, ! 'LAST_SONG_INFO' => $last_station_info) ); *************** *** 425,429 **** 'SUBCATS' => $subcats) ); ! } } --- 420,424 ---- 'SUBCATS' => $subcats) ); ! } } *************** *** 432,436 **** // ------------------------------------------ ! if ($catrows[$i]['cat_type'] == 0) { $template->assign_block_vars('catrow', array( --- 427,431 ---- // ------------------------------------------ ! if ($catrows[$i]['cat_type'] == 0) { $template->assign_block_vars('catrow', array( *************** *** 621,625 **** 'SINGER' => $topsongrow[$j]['station_singer'], ! 'RADIO_FRONT_IMG' => $mx_images['radio_front'], 'POSTER' => $top_poster, --- 616,620 ---- 'SINGER' => $topsongrow[$j]['station_singer'], ! 'RADIO_FRONT_IMG' => $images['radio_front'], 'POSTER' => $top_poster, *************** *** 737,741 **** 'SINGER' => $topsongrow[$j]['station_singer'], ! 'RADIO_FRONT_IMG' => $mx_images['radio_front'], 'POSTER' => $top_poster, --- 732,736 ---- 'SINGER' => $topsongrow[$j]['station_singer'], ! 'RADIO_FRONT_IMG' => $images['radio_front'], 'POSTER' => $top_poster, Index: Radio_Cast.nfo =================================================================== RCS file: /cvsroot/mxbb/mx_radiocast/Radio_Cast.nfo,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Radio_Cast.nfo 6 Jun 2007 23:03:42 -0000 1.1 --- Radio_Cast.nfo 21 Mar 2008 08:50:15 -0000 1.2 *************** *** 17,26 **** º±³ -..- ³ º±³ .. ³ ! º±³ mx_radiocast v1.0.0 ³ ÓÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ· ³ Supplied by.......mxBB Dev. Team Release type.................module ³±º ³ Cracked by...................n/a Protection......................n/a ³±º ³ Packaged by.............OryNider Release size.................117 KB ³±º ! ³ Release date..........20.05.2006 Operating system..........php4/php5 ³±º ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĽ Ú Ä ÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄ Ä ¿ --- 17,26 ---- º±³ -..- ³ º±³ .. ³ ! º±³ mx_radiocast v1.0.2 ³ ÓÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ· ³ Supplied by.......mxBB Dev. Team Release type.................module ³±º ³ Cracked by...................n/a Protection......................n/a ³±º ³ Packaged by.............OryNider Release size.................117 KB ³±º ! ³ Release date..........21.03.2008 Operating system..........php4/php5 ³±º ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄĽ Ú Ä ÄÄ ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ÄÄ Ä ¿ |
|
From: OryNider <ory...@us...> - 2008-03-19 08:20:34
|
Update of /cvsroot/mxbb/mx_blogs/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27016/includes Modified Files: weblogs_constants.php Log Message: fogot to commit this in head Index: weblogs_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/includes/weblogs_constants.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** weblogs_constants.php 10 Feb 2008 02:34:51 -0000 1.4 --- weblogs_constants.php 19 Mar 2008 08:17:28 -0000 1.5 *************** *** 1,3 **** --- 1,11 ---- <?php + /** + * + * @package Mx-Publisher Module - mx_blogs + * @version $Id$ + * @copyright (c) 2003 [mhewitson] MXP Development Team + * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 + * + */ if (!isset($mx_table_prefix)) *************** *** 44,46 **** --- 52,65 ---- define('WEBLOG_AUTH_OWNER', 3); + //$mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x + + // ------------------------------------------------------------------------- + // Extend User Style with module lang and images + // Usage: $mx_user->extend(LANG, IMAGES) + // Switches: + // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE + // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE + // ------------------------------------------------------------------------- + $mx_user->extend(MX_LANG_NONE, MX_IMAGES); + ?> |
|
From: OryNider <ory...@us...> - 2008-03-19 08:19:06
|
Update of /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27016/weblogs/templates/simpleGray/lang_english Modified Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_weblog.gif icon_www.gif icon_yim.gif newentry.gif reply-locked.gif reply.gif Log Message: fogot to commit this in head Index: icon_edit.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_edit.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsG8Xr0m and /tmp/cvstU3o3I differ Index: icon_email.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_email.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsCe5Ew0 and /tmp/cvsh9lWao differ Index: icon_quote.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_quote.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs6qMDDr and /tmp/cvs3hnCTP differ Index: newentry.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/newentry.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvspDodXQ and /tmp/cvsBt9Yqg differ Index: icon_icq_add.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_icq_add.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs1C99Q5 and /tmp/cvslvKBHv differ Index: icon_yim.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_yim.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsmqnpkl and /tmp/cvsDkfYFL differ Index: icon_pm.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_pm.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvspAqORB and /tmp/cvsTg2CK2 differ Index: icon_profile.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_profile.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRc1Q8A and /tmp/cvsDmjvK6 differ Index: icon_search.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_search.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsUn0bng and /tmp/cvsdBoQBN differ Index: icon_aim.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_aim.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsc4Bk5G and /tmp/cvsy7347e differ Index: reply-locked.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/reply-locked.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvslEwsR2 and /tmp/cvsmtxXZB differ Index: icon_msnm.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_msnm.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsZb3DEp and /tmp/cvsGuXqsZ differ Index: reply.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/reply.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvscXR59C and /tmp/cvs7vt4td differ Index: icon_www.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_www.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsaioW5U and /tmp/cvsXpbkjw differ Index: icon_weblog.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_weblog.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRKZtw7 and /tmp/cvs9gAT8I differ Index: icon_ip.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/lang_english/icon_ip.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsYONGCL and /tmp/cvsP3K2so differ |
Update of /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27016/weblogs/templates/simpleGray Modified Files: arrow.png entry.gif entry_hot.gif entry_locked.gif entry_locked_new.gif entry_memorable.gif entry_memorable_locked.gif entry_memorable_locked_new.gif entry_memorable_new.gif entry_new.gif entry_new_hot.gif feed.gif icon_delete.gif icon_newest_reply.gif preview_img.gif simpleGray.cfg Log Message: fogot to commit this in head Index: entry_new.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_new.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs6EXMui and /tmp/cvs16PhJE differ Index: simpleGray.cfg =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/simpleGray.cfg,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** simpleGray.cfg 20 Jun 2007 14:35:16 -0000 1.1 --- simpleGray.cfg 19 Mar 2008 08:17:34 -0000 1.2 *************** *** 1,40 **** ! <?php ! ! $background_color = 'FFFFFF'; ! $entry_bg_color = 'DEDEDE'; ! $border_color = '666666'; ! $background_image = 'none'; ! $background_image_fixed = 'fixed'; ! $tile_bg = 'repeat'; ! $bg_ypos = 'center'; ! $bg_xpos = 'center'; ! $sb_face_color = 'DEDEDE'; ! $sb_highlight_color = 'FFFFFF'; ! $sb_shadow_color = 'DEDEDE'; ! $sb_3dlight_color = 'D7D7D7'; ! $sb_arrow_color = '666666'; ! $sb_track_color = 'EFEFEF'; ! $sb_darkshadow_color = '989898'; ! $font = 'Verdana'; ! $font_color = '333333'; ! $font_size = 8; ! $normal_link_color = '666666'; ! $normal_link_underline = 'none'; ! $active_link_color = '666666'; ! $active_link_underline = 'none'; ! $hover_link_color = '333333'; ! $hover_link_underline = 'underline'; ! $visited_link_color = '666666'; ! $visited_link_underline = 'none'; ! $weblog_title_color = '999999'; ! $weblog_title_font_size = 26; ! $entry_title_color = '666666'; ! $entry_title_font_size = 16; ! $date_time_color = '666666'; ! $date_time_font_size = 12; ! $block_title_color = '666666'; ! $block_title_font_size = 14; ! $block_bg_color = 'EFEFEF'; ! $block_border_color = '666666'; ! ?> \ No newline at end of file --- 1,40 ---- ! <?php ! ! $background_color = 'FFFFFF'; ! $entry_bg_color = 'DEDEDE'; ! $border_color = '666666'; ! $background_image = 'none'; ! $background_image_fixed = 'fixed'; ! $tile_bg = 'repeat'; ! $bg_ypos = 'center'; ! $bg_xpos = 'center'; ! $sb_face_color = 'DEDEDE'; ! $sb_highlight_color = 'FFFFFF'; ! $sb_shadow_color = 'DEDEDE'; ! $sb_3dlight_color = 'D7D7D7'; ! $sb_arrow_color = '666666'; ! $sb_track_color = 'EFEFEF'; ! $sb_darkshadow_color = '989898'; ! $font = 'Verdana'; ! $font_color = '333333'; ! $font_size = 8; ! $normal_link_color = '666666'; ! $normal_link_underline = 'none'; ! $active_link_color = '666666'; ! $active_link_underline = 'none'; ! $hover_link_color = '333333'; ! $hover_link_underline = 'underline'; ! $visited_link_color = '666666'; ! $visited_link_underline = 'none'; ! $weblog_title_color = '999999'; ! $weblog_title_font_size = 26; ! $entry_title_color = '666666'; ! $entry_title_font_size = 16; ! $date_time_color = '666666'; ! $date_time_font_size = 12; ! $block_title_color = '666666'; ! $block_title_font_size = 14; ! $block_bg_color = 'EFEFEF'; ! $block_border_color = '666666'; ! ?> \ No newline at end of file Index: entry_memorable_new.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_memorable_new.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsRnR4v1 and /tmp/cvsMCcLrp differ Index: preview_img.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/preview_img.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsBrIBwy and /tmp/cvsbqsXBX differ Index: entry_memorable.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_memorable.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsgeVaal and /tmp/cvswb3W3L differ Index: feed.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/feed.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsHZndiG and /tmp/cvs6fjiX7 differ Index: icon_delete.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/icon_delete.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsF5Jvxe and /tmp/cvs5iuCyH differ Index: entry_new_hot.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_new_hot.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsFlxPDx and /tmp/cvsBw6zh1 differ Index: entry_hot.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_hot.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvstywSl1 and /tmp/cvstRURgw differ Index: entry_memorable_locked.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_memorable_locked.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs93kG6t and /tmp/cvsoAg51Z differ Index: entry_locked_new.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_locked_new.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs5Kt3mg and /tmp/cvsPsXz6N differ Index: entry_memorable_locked_new.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_memorable_locked_new.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsDoFogN and /tmp/cvsh5q38l differ Index: icon_newest_reply.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/icon_newest_reply.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvs4LFWDi and /tmp/cvsIFdRPS differ Index: entry_locked.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry_locked.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvswQRxyp and /tmp/cvslpaNj2 differ Index: entry.gif =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/entry.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsaxwuo5 and /tmp/cvsCq0hPJ differ Index: arrow.png =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/weblogs/templates/simpleGray/arrow.png,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsrsPmfM and /tmp/cvseVlh0r differ |
|
From: OryNider <ory...@us...> - 2008-03-19 08:18:09
|
Update of /cvsroot/mxbb/mx_blogs/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27016/templates/subSilver Modified Files: subSilver.cfg Log Message: fogot to commit this in head Index: subSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/templates/subSilver/subSilver.cfg,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** subSilver.cfg 28 Jun 2007 18:11:07 -0000 1.1 --- subSilver.cfg 19 Mar 2008 08:17:30 -0000 1.2 *************** *** 31,40 **** // Do not alter this line! // ! if( !defined('MX_TEMPLATE_CONFIG')) ! { ! define(MX_TEMPLATE_CONFIG, TRUE); ! } ! $mx_template_config = true; $mx_template_name = 'subSilver'; --- 31,37 ---- // Do not alter this line! // ! @define(MX_TEMPLATE_CONFIG, TRUE); $mx_template_config = true; + $mx_template_name = 'subSilver'; *************** *** 78,98 **** ! $mx_images['icon_weblog'] = "$current_mxblogs_images/" . LANG . "/icon_weblog.gif"; // Use standard phpBB graphics // ! $mx_images['icon_quote'] = "$current_template_phpbb_images/" . LANG . "/icon_quote.gif"; ! $mx_images['icon_edit'] = "$current_template_phpbb_images/" . LANG . "/icon_edit.gif"; ! $mx_images['icon_search'] = "$current_template_phpbb_images/" . LANG . "/icon_search.gif"; ! $mx_images['icon_profile'] = "$current_template_phpbb_images/" . LANG . "/icon_profile.gif"; ! $mx_images['icon_pm'] = "$current_template_phpbb_images/" . LANG . "/icon_pm.gif"; ! $mx_images['icon_email'] = "$current_template_phpbb_images/" . LANG . "/icon_email.gif"; $mx_images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; ! $mx_images['icon_ip'] = "$current_template_phpbb_images/" . LANG . "/icon_ip.gif"; ! $mx_images['icon_www'] = "$current_template_phpbb_images/" . LANG . "/icon_www.gif"; ! $mx_images['icon_icq'] = "$current_template_phpbb_images/" . LANG . "/icon_icq_add.gif"; ! $mx_images['icon_aim'] = "$current_template_phpbb_images/" . LANG . "/icon_aim.gif"; ! $mx_images['icon_yim'] = "$current_template_phpbb_images/" . LANG . "/icon_yim.gif"; ! $mx_images['icon_msnm'] = "$current_template_phpbb_images/" . LANG . "/icon_msnm.gif"; $mx_images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; --- 75,95 ---- ! $mx_images['icon_weblog'] = "$current_mxblogs_images/{LANG}/icon_weblog.gif"; // Use standard phpBB graphics // ! $mx_images['icon_quote'] = "$current_template_phpbb_images/{LANG}/icon_quote.gif"; ! $mx_images['icon_edit'] = "$current_template_phpbb_images/{LANG}/icon_edit.gif"; ! $mx_images['icon_search'] = "$current_template_phpbb_images/{LANG}/icon_search.gif"; ! $mx_images['icon_profile'] = "$current_template_phpbb_images/{LANG}/icon_profile.gif"; ! $mx_images['icon_pm'] = "$current_template_phpbb_images/{LANG}/icon_pm.gif"; ! $mx_images['icon_email'] = "$current_template_phpbb_images/{LANG}/icon_email.gif"; $mx_images['icon_delpost'] = "$current_template_phpbb_images/icon_delete.gif"; ! $mx_images['icon_ip'] = "$current_template_phpbb_images/{LANG}/icon_ip.gif"; ! $mx_images['icon_www'] = "$current_template_phpbb_images/{LANG}/icon_www.gif"; ! $mx_images['icon_icq'] = "$current_template_phpbb_images/{LANG}/icon_icq_add.gif"; ! $mx_images['icon_aim'] = "$current_template_phpbb_images/{LANG}/icon_aim.gif"; ! $mx_images['icon_yim'] = "$current_template_phpbb_images/{LANG}/icon_yim.gif"; ! $mx_images['icon_msnm'] = "$current_template_phpbb_images/{LANG}/icon_msnm.gif"; $mx_images['icon_minipost'] = "$current_template_phpbb_images/icon_minipost.gif"; $mx_images['icon_gotopost'] = "$current_template_phpbb_images/icon_minipost.gif"; |
|
From: OryNider <ory...@us...> - 2008-03-15 21:33:57
|
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23513/subSilver Modified Files: album_lists.tpl Log Message: picture album efect in album lists Index: album_lists.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/templates/subSilver/album_lists.tpl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** album_lists.tpl 15 Mar 2008 20:43:46 -0000 1.10 --- album_lists.tpl 15 Mar 2008 21:33:50 -0000 1.11 *************** *** 5,9 **** --> </style> - <!-- BEGIN recent_pics_block --> <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> --- 5,8 ---- *************** *** 19,23 **** <tr> <!-- BEGIN recent_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{recent_pics_block.recent_pics.recent_col.U_PIC}" {TARGET_BLANK}><img src="{recent_pics_block.recent_pics.recent_col.THUMBNAIL}" border="0" alt="{recent_pics_block.recent_pics.recent_col.DESC}" title="{recent_pics_block.recent_pics.recent_col.DESC}" vspace="10" {recent_pics_block.recent_pics.recent_col.PIC_PREVIEW} /></a></td> <!-- END recent_col --> </tr> --- 18,26 ---- <tr> <!-- BEGIN recent_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{recent_pics_block.recent_pics.recent_col.U_PIC}" {TARGET_BLANK}><img src="{recent_pics_block.recent_pics.recent_col.THUMBNAIL}" {THUMB_SIZE} alt="{recent_pics_block.recent_pics.recent_col.DESC}" title="{recent_pics_block.recent_pics.recent_col.DESC}" vspace="10" border="0" {recent_pics_block.recent_pics.recent_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END recent_col --> </tr> *************** *** 48,52 **** <tr> <!-- BEGIN most_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{most_pics_block.most_pics.most_col.U_PIC}" {TARGET_BLANK}><img src="{most_pics_block.most_pics.most_col.THUMBNAIL}" border="0" alt="{most_pics_block.most_pics.most_col.DESC}" title="{most_pics_block.most_pics.most_col.DESC}" vspace="10" {most_pics_block.most_pics.most_col.PIC_PREVIEW} /></a></td> <!-- END most_col --> </tr> --- 51,59 ---- <tr> <!-- BEGIN most_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{most_pics_block.most_pics.most_col.U_PIC}" {TARGET_BLANK}><img src="{most_pics_block.most_pics.most_col.THUMBNAIL}" {THUMB_SIZE} alt="{most_pics_block.most_pics.most_col.DESC}" title="{most_pics_block.most_pics.most_col.DESC}" vspace="10" border="0" {most_pics_block.most_pics.most_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END most_col --> </tr> *************** *** 76,81 **** <!-- BEGIN highest_pics --> <tr> ! <!-- BEGIN highest_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{highest_pics_block.highest_pics.highest_col.U_PIC}" {TARGET_BLANK}><img src="{highest_pics_block.highest_pics.highest_col.THUMBNAIL}" border="0" alt="{highest_pics_block.highest_pics.highest_col.DESC}" title="{highest_pics_block.highest_pics.highest_col.DESC}" vspace="10" {highest_pics_block.highest_pics.highest_col.PIC_PREVIEW} /></a></td> <!-- END highest_col --> </tr> --- 83,92 ---- <!-- BEGIN highest_pics --> <tr> ! <!-- BEGIN highest_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{highest_pics_block.highest_pics.highest_col.U_PIC}" {TARGET_BLANK}><img src="{highest_pics_block.highest_pics.highest_col.THUMBNAIL}" {THUMB_SIZE} alt="{highest_pics_block.highest_pics.highest_col.DESC}" title="{highest_pics_block.highest_pics.highest_col.DESC}" vspace="10" border="0" {highest_pics_block.highest_pics.highest_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END highest_col --> </tr> *************** *** 107,111 **** <tr> <!-- BEGIN rand_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{random_pics_block.rand_pics.rand_col.U_PIC}" {TARGET_BLANK}><img src="{random_pics_block.rand_pics.rand_col.THUMBNAIL}" border="0" alt="{random_pics_block.rand_pics.rand_col.DESC}" title="{random_pics_block.rand_pics.rand_col.DESC}" vspace="10" {random_pics_block.rand_pics.rand_col.PIC_PREVIEW} /></a></td> <!-- END rand_col --> </tr> --- 118,126 ---- <tr> <!-- BEGIN rand_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{random_pics_block.rand_pics.rand_col.highest_col.U_PIC}" {TARGET_BLANK}><img src="{random_pics_block.rand_pics.rand_col.THUMBNAIL}" {THUMB_SIZE} alt="{random_pics_block.rand_pics.rand_col.DESC}" title="{random_pics_block.rand_pics.rand_col.DESC}" vspace="10" border="0" {random_pics_block.rand_pics.rand_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END rand_col --> </tr> |
|
From: OryNider <ory...@us...> - 2008-03-15 21:33:55
|
Update of /cvsroot/mxbb/mx_smartor/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23513/_core Modified Files: album_lists.tpl Log Message: picture album efect in album lists Index: album_lists.tpl =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/templates/_core/album_lists.tpl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** album_lists.tpl 5 Feb 2008 04:04:24 -0000 1.1 --- album_lists.tpl 15 Mar 2008 21:33:50 -0000 1.2 *************** *** 5,9 **** --> </style> - <!-- BEGIN recent_pics_block --> <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> --- 5,8 ---- *************** *** 19,23 **** <tr> <!-- BEGIN recent_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{recent_pics_block.recent_pics.recent_col.U_PIC}" {TARGET_BLANK}><img src="{recent_pics_block.recent_pics.recent_col.THUMBNAIL}" border="0" alt="{recent_pics_block.recent_pics.recent_col.DESC}" title="{recent_pics_block.recent_pics.recent_col.DESC}" vspace="10" {recent_pics_block.recent_pics.recent_col.PIC_PREVIEW} /></a></td> <!-- END recent_col --> </tr> --- 18,26 ---- <tr> <!-- BEGIN recent_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{recent_pics_block.recent_pics.recent_col.U_PIC}" {TARGET_BLANK}><img src="{recent_pics_block.recent_pics.recent_col.THUMBNAIL}" {THUMB_SIZE} alt="{recent_pics_block.recent_pics.recent_col.DESC}" title="{recent_pics_block.recent_pics.recent_col.DESC}" vspace="10" border="0" {recent_pics_block.recent_pics.recent_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END recent_col --> </tr> *************** *** 48,52 **** <tr> <!-- BEGIN most_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{most_pics_block.most_pics.most_col.U_PIC}" {TARGET_BLANK}><img src="{most_pics_block.most_pics.most_col.THUMBNAIL}" border="0" alt="{most_pics_block.most_pics.most_col.DESC}" title="{most_pics_block.most_pics.most_col.DESC}" vspace="10" {most_pics_block.most_pics.most_col.PIC_PREVIEW} /></a></td> <!-- END most_col --> </tr> --- 51,59 ---- <tr> <!-- BEGIN most_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{most_pics_block.most_pics.most_col.U_PIC}" {TARGET_BLANK}><img src="{most_pics_block.most_pics.most_col.THUMBNAIL}" {THUMB_SIZE} alt="{most_pics_block.most_pics.most_col.DESC}" title="{most_pics_block.most_pics.most_col.DESC}" vspace="10" border="0" {most_pics_block.most_pics.most_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END most_col --> </tr> *************** *** 76,81 **** <!-- BEGIN highest_pics --> <tr> ! <!-- BEGIN highest_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{highest_pics_block.highest_pics.highest_col.U_PIC}" {TARGET_BLANK}><img src="{highest_pics_block.highest_pics.highest_col.THUMBNAIL}" border="0" alt="{highest_pics_block.highest_pics.highest_col.DESC}" title="{highest_pics_block.highest_pics.highest_col.DESC}" vspace="10" {highest_pics_block.highest_pics.highest_col.PIC_PREVIEW} /></a></td> <!-- END highest_col --> </tr> --- 83,92 ---- <!-- BEGIN highest_pics --> <tr> ! <!-- BEGIN highest_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{highest_pics_block.highest_pics.highest_col.U_PIC}" {TARGET_BLANK}><img src="{highest_pics_block.highest_pics.highest_col.THUMBNAIL}" {THUMB_SIZE} alt="{highest_pics_block.highest_pics.highest_col.DESC}" title="{highest_pics_block.highest_pics.highest_col.DESC}" vspace="10" border="0" {highest_pics_block.highest_pics.highest_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END highest_col --> </tr> *************** *** 107,111 **** <tr> <!-- BEGIN rand_col --> ! <td class="row1" width="{S_COL_WIDTH}" align="center"><a href="{random_pics_block.rand_pics.rand_col.U_PIC}" {TARGET_BLANK}><img src="{random_pics_block.rand_pics.rand_col.THUMBNAIL}" border="0" alt="{random_pics_block.rand_pics.rand_col.DESC}" title="{random_pics_block.rand_pics.rand_col.DESC}" vspace="10" {random_pics_block.rand_pics.rand_col.PIC_PREVIEW} /></a></td> <!-- END rand_col --> </tr> --- 118,126 ---- <tr> <!-- BEGIN rand_col --> ! <td class="row1" align="center" width="{S_COL_WIDTH}" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> ! <table><tr><td><div class="picshadow"><div class="picframe"> ! <a href="{random_pics_block.rand_pics.rand_col.highest_col.U_PIC}" {TARGET_BLANK}><img src="{random_pics_block.rand_pics.rand_col.THUMBNAIL}" {THUMB_SIZE} alt="{random_pics_block.rand_pics.rand_col.DESC}" title="{random_pics_block.rand_pics.rand_col.DESC}" vspace="10" border="0" {random_pics_block.rand_pics.rand_col.PIC_PREVIEW} /></a> ! </div></div></td></tr></table> ! </td> <!-- END rand_col --> </tr> |
|
From: OryNider <ory...@us...> - 2008-03-15 20:43:53
|
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver/images/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3916/images/lang_english Added Files: download.gif download_all.gif guest_avatar.png icon_album.gif index.htm jupload_pic.gif manage_pic.gif normal_view.gif show_all_comments.gif show_all_pics.gif show_all_ratings.gif showall.gif simple_view.gif upload_pic.gif upload_pic_2.gif Log Message: subSilver folder is required by phpBB2 backend --- NEW FILE: show_all_ratings.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: normal_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: manage_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: guest_avatar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_comments.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic_2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download_all.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jupload_pic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: download.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: simple_view.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: show_all_pics.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_album.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: showall.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: upload_pic.gif --- (This appears to be a binary file; contents omitted.) --- 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> |
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver/images In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3916/images Added Files: Thumbs.db blue_dot.png default_avatar.png green_dot.png icon_dot.gif icon_left_arrow.gif icon_left_arrow2.gif icon_left_arrow3.gif icon_mini_album.gif icon_mini_album_13x13.gif icon_mini_showall.gif icon_minipost_new.gif icon_right_arrow.gif icon_right_arrow2.gif icon_right_arrow3.gif index.htm nothumbnail.jpg orange_dot.png spacer.gif yellow_dot.png Log Message: subSilver folder is required by phpBB2 backend --- NEW FILE: icon_left_arrow.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: icon_mini_album_13x13.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Thumbs.db --- (This appears to be a binary file; contents omitted.) --- NEW FILE: yellow_dot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_album.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_right_arrow2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_left_arrow3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_showall.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: green_dot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: blue_dot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_right_arrow.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_dot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: orange_dot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: default_avatar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_left_arrow2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_right_arrow3.gif --- (This appears to be a binary file; contents omitted.) --- 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> --- NEW FILE: icon_minipost_new.gif --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/mxbb/mx_smartor/templates/subSilver/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3916/admin Added Files: album_admin_body_ext.tpl album_admin_otf.tpl album_auth_body.tpl album_cat_body.tpl album_cat_body_debug.tpl album_cat_delete_body.tpl album_cat_new_body.tpl album_cat_select_body.tpl album_clown_sp_body.tpl album_config_body.tpl album_config_clearcache_body.tpl album_config_personal_body.tpl album_personal_body.tpl album_personal_cat_body.tpl album_personal_cat_delete_body.tpl album_personal_cat_new_body.tpl index.htm Log Message: subSilver folder is required by phpBB2 backend --- NEW FILE: album_personal_cat_new_body.tpl --- <script language="JavaScript" type="text/javascript"> <!-- function checkCategoryID() { if ({CATEGORY_ID} == document.acp.cat_parent_id.value && {CATEGORY_ID} != {ROOT_CATEGORY_ID}) { alert("{L_NO_SELF_REFERING}"); return false; } else { switch (document.acp.cat_parent_id.value) { case '{ALBUM_ROOT_CATEGORY}': case '{ALBUM_PUBLIC_GALLERY}': case '{ALBUM_USERS_GALLERY}': case '{ALBUM_JUMPBOX_SEPERATOR}': alert("{L_NO_VALID_CAT_SELECTED}"); return false; default: } } } // --> </script> <form name="acp" action="{S_ALBUM_ACTION}" method="post" onSubmit="return checkCategoryID()"> <table width="100%" cellpadding="4" cellspacing="1" border="0"> <tr> <td class="nav" width="100%"> <span class="nav"> <a href="{U_PORTAL}" class="nav">{L_HOME}</a> {NAV_SEP} <a href="{U_INDEX}" class="nav">{L_INDEX}</a> {NAV_SEP} <a href="{U_ALBUM}" class="nav">{L_ALBUM}</a> {NAV_SEP} <a href="{U_PERSONAL_ALBUM}" class="nav">{L_PERSONAL_ALBUM}</a> {NAV_SEP} <a href="{U_PERSONAL_CAT_ADMIN}" class="nav">{L_PERSONAL_CAT_ADMIN}</a> </span> </td> </tr> </table> <table cellpadding="4" cellspacing="1" border="0" class="forumline" align="center" width="100%"> <tr> <th colspan="2" class="thHead">{L_PERSONAL_CAT_ADMIN}</th> </tr> <tr> <td class="row1" colspan="2"><br /> <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> <th class="thHead" height="25" nowrap="nowrap" colspan="2">{L_PANEL_TITLE}</th> </tr> <tr> <td class="row1" width="20%"><span class="gen">{L_CAT_TITLE}:</span></td> <td class="row2"><input {READ_ONLY} name="cat_title" type="text" class="post" size="35" value="{S_CAT_TITLE}" /></td> </tr> <tr> <td valign="top" nowrap="nowrap" class="row1"><span class="gen">{L_CAT_DESC}: </span></td> <td class="row2"><textarea {READ_ONLY} name="cat_desc" class="post" cols="50" rows="5">{S_CAT_DESC}</textarea></td> </tr> <!-- Album Hierarchy - START --> <tr> <td valign="top" nowrap="nowrap" class="row1"><span class="gen">{L_CAT_PARENT_TITLE}: </span></td> <td class="row2"><select {DISABLED} name="cat_parent_id">{S_CAT_PARENT_OPTIONS}</select></td> </tr> <!-- Album Hierarchy - STOP --> <tr> <th class="thHead" height="25" nowrap="nowrap" colspan="2">{L_CAT_PERMISSIONS}</th> </tr> <tr> <td class="row1"><span class="gen">{L_VIEW_LEVEL}:</span></td> <td class="row2"><select name="cat_view_level"><option {VIEW_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {VIEW_REG} value="{S_USER}">{L_REG}</option><option {VIEW_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option> <!-- BEGIN acp --> <option {VIEW_MOD} value="{S_MOD}">{L_MOD}</option><option {VIEW_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select> <!-- END acp --> </td> </tr> <tr> <td class="row1"><span class="gen">{L_UPLOAD_LEVEL}:</span></td> <td class="row2"><select name="cat_upload_level"><option {UPLOAD_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {UPLOAD_REG} value="{S_USER}">{L_REG}</option><option {UPLOAD_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option> <!-- BEGIN acp --> <option {UPLOAD_MOD} value="{S_MOD}">{L_MOD}</option><option {UPLOAD_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select> <!-- END acp --> </td> </tr> <tr> <td class="row1"><span class="gen">{L_RATE_LEVEL}:</span></td> <td class="row2"><select name="cat_rate_level"><option {RATE_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {RATE_REG} value="{S_USER}">{L_REG}</option><option {RATE_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option> <!-- BEGIN acp --> <option {RATE_MOD} value="{S_MOD}">{L_MOD}</option><option {RATE_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select> <!-- END acp --> </td> </tr> <tr> <td class="row1"><span class="gen">{L_COMMENT_LEVEL}:</span></td> <td class="row2"><span class="gen"><select name="cat_comment_level"><option {COMMENT_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {COMMENT_REG} value="{S_USER}">{L_REG}</option><option {COMMENT_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option> <!-- BEGIN acp --> <option {COMMENT_MOD} value="{S_MOD}">{L_MOD}</option><option {COMMENT_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></span> <!-- END acp --> </td> </tr> <!-- BEGIN acp --> <tr> <td class="row1"><span class="gen">{L_EDIT_LEVEL}:</span></td> <td class="row2"><select name="cat_edit_level"><option {EDIT_REG} value="{S_USER}">{L_REG}</option><option {EDIT_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option> <option {EDIT_MOD} value="{S_MOD}">{L_MOD}</option><option {EDIT_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_DELETE_LEVEL}:</span></td> <td class="row2"><select name="cat_delete_level"><option {DELETE_REG} value="{S_USER}">{L_REG}</option><option {DELETE_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {DELETE_MOD} value="{S_MOD}">{L_MOD}</option><option {DELETE_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_PICS_APPROVAL}:</span></td> <td class="row2"><select name="cat_approval"><option {APPROVAL_DISABLED} value="{S_USER}">{L_DISABLED}</option><option {APPROVAL_MOD} value="{S_MOD}">{L_MOD}</option><option {APPROVAL_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <!-- END acp --> <tr> <td class="catBottom" align="center" height="28" colspan="2"><input type="hidden" value="{S_MODE}" name="mode" /><input name="submit" type="submit" value="{L_PANEL_TITLE}" class="liteoption" /></td> </tr> </table> </td> </tr> </table> </form> <br /> --- NEW FILE: album_cat_body_debug.tpl --- <h1>{L_ALBUM_CAT_TITLE}</h1> <p>{L_ALBUM_CAT_EXPLAIN}</p> <form method="post" action="{S_ALBUM_ACTION}"> <table width="100%" cellpadding="4" cellspacing="1" border="0"> <tr> <td><span class="nav"><a href="{S_ALBUM_ACTION}" class="nav">{L_ALBUM_INDEX}</a></span></td> </tr> </table> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr> <th class="thLeft" colspan="{HEADER_INC_SPAN}" width="75%%">{L_ALBUM_TITLE} '{HEADER_INC_SPAN}'</th> <th class="thRight" colspan="3" width="25%">{L_ALBUM_ACTION} '3'</th> </tr> <!-- BEGIN catrow --> <!-- BEGIN cathead --> <tr> <!-- BEGIN inc --> <td class="row2" rowspan="{catrow.cathead.inc.ROWSPAN}" width="46"> '{catrow.cathead.inc.ROWSPAN}'</td> <!-- END inc --> <td class="{catrow.cathead.CLASS_CATLEFT}" colspan="{catrow.cathead.INC_SPAN}" {catrow.cathead.WIDTH}>'{catrow.cathead.INC_SPAN}':'{catrow.cathead.WIDTH}'<span class="cattitle"><b><a href="{catrow.cathead.U_VIEWCAT}" class="cattitle">{catrow.cathead.CAT_TITLE}</a></b></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle">'1'<span class="gen"><a href="{catrow.cathead.U_CAT_EDIT}" class="gen">{L_EDIT}</a></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle">'1'<span class="gen"><a href="{catrow.cathead.U_CAT_DELETE}" class="gen">{L_DELETE}</a></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle" nowrap="nowrap">'1'<span class="gen"><a href="{catrow.cathead.U_CAT_MOVE_UP}" class="gen">{L_MOVE_UP}</a> <a href="{catrow.cathead.U_CAT_MOVE_DOWN}" class="gen">{L_MOVE_DOWN}</a></span></td> </tr> <!-- END cathead --> <!-- BEGIN cattitle --> <tr> <td class="row3" colspan="{catrow.cattitle.INC_SPAN_ALL}">'{catrow.cattitle.INC_SPAN_ALL}'<span class="gensmall">{catrow.cattitle.CAT_DESCRIPTION}</span></td> </tr> <!-- END cattitle --> <!-- BEGIN catfoot --> <tr> <!-- BEGIN inc --> <td class="row2" width="46"> </td> <!-- END inc --> <td colspan="{catrow.catfoot.INC_SPAN_ALL}" class="row2" nowrap="nowrap">'{catrow.catfoot.INC_SPAN_ALL}' <input class="post" type="text" name="{catrow.catfoot.S_ADD_NAME}" /> <input type="submit" class="liteoption" name="{catrow.catfoot.S_ADD_CAT_SUBMIT}" value="{L_CREATE_CATEGORY}" /> </td> </tr> <tr> <!-- BEGIN inc --> <td class="row2" width="46"> </td> <!-- END inc --> <td colspan="{catrow.catfoot.INC_SPAN_ALL}" height="1" class="spaceRow">'{catrow.catfoot.INC_SPAN_ALL}' </td> </tr> <!-- END catfoot --> <!-- END catrow --> <!-- BEGIN switch_board_footer --> <tr> <td colspan="{INC_SPAN_ALL}" class="catBottom">'{INC_SPAN_ALL}' <input class="post" type="text" name="name[0]" /> <input type="submit" class="liteoption" name="addcategory[0]" value="{L_CREATE_CATEGORY}" /> </td> </tr> <!-- END switch_board_footer --> </table> <input type="hidden" value="new" name="mode" /> </form> --- NEW FILE: album_personal_cat_body.tpl --- <!-- Album Hierarchy - START --> <form method="post" name="acp" action="{S_ALBUM_ACTION}"> <table width="100%" cellpadding="4" cellspacing="1" border="0"> <tr> <td class="nav" width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a> {ALBUM_NAVIGATION_ARROW} <a href="{U_ALBUM}" class="nav">{L_ALBUM}</a> {ALBUM_NAVIGATION_ARROW} <a href="{U_PERSONAL_ALBUM}" class="nav">{L_PERSONAL_ALBUM}</a> {ALBUM_NAVIGATION_ARROW} <a href="{U_PERSONAL_CAT_ADMIN}" class="nav">{L_PERSONAL_CAT_ADMIN}</a></span></td> </tr> </table> <table cellpadding="4" cellspacing="1" border="0" class="forumline" align="center" width="100%"> <tr> <th colspan="2" class="thHead">{L_PERSONAL_CAT_ADMIN}</th> </tr> <tr> <td class="row1" colspan="2"><br /> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr> <th class="thLeft" colspan="{HEADER_INC_SPAN}" width="75%%">{L_ALBUM_TITLE}</th> <th class="thRight" colspan="3" width="25%">{L_ALBUM_ACTION}</th> </tr> <!-- BEGIN catrow --> <!-- BEGIN cathead --> <tr> <!-- BEGIN inc --> <td class="row2" rowspan="{catrow.cathead.inc.ROWSPAN}" width="46"> </td> <!-- END inc --> <td class="{catrow.cathead.CLASS_CATLEFT}" colspan="{catrow.cathead.INC_SPAN}" {catrow.cathead.WIDTH}><span class="cattitle"><b><a href="{catrow.cathead.U_VIEWCAT}" class="cattitle">{catrow.cathead.CAT_TITLE}</a></b></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle"><span class="gen"><a href="{catrow.cathead.U_CAT_EDIT}" class="gen">{catrow.cathead.L_EDIT}</a></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle"><span class="gen"><a href="{catrow.cathead.U_CAT_DELETE}" class="gen">{catrow.cathead.L_DELETE}</a></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle" nowrap="nowrap"><span class="gen"><a href="{catrow.cathead.U_CAT_MOVE_UP}" class="gen">{catrow.cathead.L_MOVE_UP}</a> <a href="{catrow.cathead.U_CAT_MOVE_DOWN}" class="gen">{catrow.cathead.L_MOVE_DOWN}</a></span></td> </tr> <!-- END cathead --> <!-- BEGIN cattitle --> <tr> <td class="row3" colspan="{catrow.cattitle.INC_SPAN_ALL}"><span class="gensmall">{catrow.cattitle.CAT_DESCRIPTION}</span></td> </tr> <!-- END cattitle --> <!-- BEGIN catfoot --> <tr> <!-- BEGIN inc --> <td class="row2" width="46"> </td> <!-- END inc --> <td colspan="{catrow.catfoot.INC_SPAN_ALL}" class="row2" nowrap="nowrap"> <input class="post" type="text" name="{catrow.catfoot.S_ADD_NAME}" /> <input type="submit" {DISABLE_CREATION} class="liteoption" name="{catrow.catfoot.S_ADD_CAT_SUBMIT}" value="{L_CREATE_CATEGORY}" /> </td> </tr> <tr> <!-- BEGIN inc --> <td class="row2" width="46"> </td> <!-- END inc --> <td colspan="{catrow.catfoot.INC_SPAN_ALL}" height="1" class="spaceRow"> </td> </tr> <!-- END catfoot --> <!-- END catrow --> <!-- BEGIN switch_board_footer --> <tr> <td colspan="{INC_SPAN_ALL}" class="catBottom"> <input class="post" type="text" name="name[0]" /> <input type="submit" {DISABLE_CREATION} class="liteoption" name="addcategory[0]" value="{L_CREATE_CATEGORY}" /> </td> </tr> <!-- END switch_board_footer --> </table> </td> </tr> </table> <input type="hidden" value="new" name="mode" /> </form> <!-- Album Hierarchy - STOP --> --- NEW FILE: album_config_clearcache_body.tpl --- <tr> <td class="row1" align="center" valign="top"> <table class="forumline" width="80%" align="center" cellpadding="1" cellspacing="1"> <tr> <th class="thHead" height="25" valign="middle">{MESSAGE_TITLE}</th> </tr> <tr> <td class="row1" align="center"><form action="{S_CONFIRM_ACTION}" method="post"><span class="gen"><br />{CLEARCACHE_TEXT}<br /><br />{S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{L_YES}" class="mainoption" /> <input type="submit" name="cancel" value="{L_NO}" class="liteoption" /></span></form></td> </tr> </table> </td> </tr> --- NEW FILE: album_cat_delete_body.tpl --- <h1>{L_CAT_DELETE}</h1> <p>{L_CAT_DELETE_EXPLAIN}</p> <form action="{S_ALBUM_ACTION}" method="post"> <table cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr> <th colspan="2" class="thHead">{L_CAT_DELETE}</th> </tr> <tr> <td class="row1"><span class="gen">{L_CAT_TITLE}</span></td> <td class="row1"><span class="genmed">{S_CAT_TITLE}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MOVE_CONTENTS}</span></td> <td class="row1">{S_SELECT_TO}</td> </tr> <tr> <td class="catBottom" colspan="2" align="center"><input type="hidden" name="mode" value="delete" /><input type="submit" name="submit" value="{L_MOVE_DELETE}" class="mainoption" /></td> </tr> </table> </form> <br /> --- NEW FILE: album_auth_body.tpl --- <h1>{L_ALBUM_AUTH_TITLE}</h1> <p>{L_ALBUM_AUTH_EXPLAIN}</p> <form action="{S_ALBUM_ACTION}" method="post"> <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> <tr> <th class="thCornerL" height="25" nowrap="nowrap">{L_GROUPS}</th> <th class="thTop" nowrap="nowrap">{L_VIEW}</th> <th class="thTop" nowrap="nowrap">{L_UPLOAD}</th> <th class="thTop" nowrap="nowrap">{L_RATE}</th> <th class="thTop" nowrap="nowrap">{L_COMMENT}</th> <th class="thTop" nowrap="nowrap">{L_EDIT}</th> <th class="thTop" nowrap="nowrap">{L_DELETE}</th> <th class="thCornerR" nowrap="nowrap">{L_IS_MODERATOR}</th> </tr> <!-- BEGIN grouprow --> <tr> <td class="row1" align="center" height="28"><span class="gen">{grouprow.GROUP_NAME}</span></td> <td class="row2" align="center"> <input name="view[]" type="checkbox" {grouprow.VIEW_CHECKED} value="{grouprow.GROUP_ID}" /> </td> <td class="row2" align="center"> <input name="upload[]" type="checkbox" {grouprow.UPLOAD_CHECKED} value="{grouprow.GROUP_ID}" /> </td> <td class="row2" align="center"> <input name="rate[]" type="checkbox" {grouprow.RATE_CHECKED} value="{grouprow.GROUP_ID}" /> </td> <td class="row2" align="center"> <input name="comment[]" type="checkbox" {grouprow.COMMENT_CHECKED} value="{grouprow.GROUP_ID}" /> </td> <td class="row2" align="center"> <input name="edit[]" type="checkbox" {grouprow.EDIT_CHECKED} value="{grouprow.GROUP_ID}" /> </td> <td class="row2" align="center"> <input name="delete[]" type="checkbox" {grouprow.DELETE_CHECKED} value="{grouprow.GROUP_ID}" /> </td> <td class="row2" align="center"> <input name="moderator[]" type="checkbox" {grouprow.MODERATOR_CHECKED} value="{grouprow.GROUP_ID}" /> </td> </tr> <!-- END grouprow --> <tr> <td class="cat" height="25" align="center" colspan="8"><input type="reset" value="{L_RESET}" class="liteoption" /> <input name="submit" type="submit" value="{L_SUBMIT}" class="mainoption" /></td> </tr> </table> </form> <br /> --- NEW FILE: album_config_personal_body.tpl --- <h1>{L_ALBUM_PERSONAL_CONFIG}</h1> <p>{L_ALBUM_PERSONAL_CONFIG_EXPLAIN}</p> <form action="{S_ALBUM_PERSONAL_CONFIG_ACTION}" method="post"> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline"> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_SHOW_ALL_PICS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_SHOW_ALL_PICS_ENABLED} name="show_all_in_personal_gallery" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_SHOW_ALL_PICS_DISABLED} name="show_all_in_personal_gallery" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_SHOW_SUBCATS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_SHOW_SUBCATS_ENABLED} name="personal_show_subcats_in_index" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_SHOW_SUBCATS_DISABLED} name="personal_show_subcats_in_index" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_GALLERY}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_GALLERY_USER} name="personal_gallery" value="{S_USER}" />{L_REG} <input onchange="setChange();" type="radio" {PERSONAL_GALLERY_PRIVATE} name="personal_gallery" value="{S_PRIVATE}" />{L_PRIVATE} <input onchange="setChange();" type="radio" {PERSONAL_GALLERY_ADMIN} name="personal_gallery" value="{S_ADMIN}" />{L_ADMIN}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ALBUM_PERSONAL_MODERATOR}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_MOD_ENABLED} name="personal_allow_gallery_mod" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_MOD_DISABLED} name="personal_allow_gallery_mod" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ALBUM_PERSONAL_PICS_APPROVAL}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_PICS_APPROVAL_DISABLED} name="personal_pics_approval" value="{S_USER}" />{L_NO} <input onchange="setChange();" type="radio" {PERSONAL_PICS_APPROVAL_MOD} name="personal_pics_approval" value="{S_MOD}" />{L_MOD} <input onchange="setChange();" type="radio" {PERSONAL_PICS_APPROVAL_ADMIN} name="personal_pics_approval" value="{S_ADMIN}" />{L_ADMIN} </span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_GALLERY_VIEW}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_GALLERY_VIEW_ALL} name="personal_gallery_view" value="{S_GUEST}" />{L_GUEST} <input onchange="setChange();" type="radio" {PERSONAL_GALLERY_VIEW_REG} name="personal_gallery_view" value="{S_USER}" />{L_REG} <input onchange="setChange();" type="radio" {PERSONAL_GALLERY_VIEW_PRIVATE} name="personal_gallery_view" value="{S_PRIVATE}" />{L_PRIVATE}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_GALLERY_LIMIT}</span></td> <td class="row2"><input onchange="setChange();" class="post" type="text" maxlength="5" size="5" name="personal_gallery_limit" value="{PERSONAL_GALLERY_LIMIT}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_SUB_GALLERY_LIMIT}</span></td> <td class="row2"><input onchange="setChange();" class="post" type="text" maxlength="5" size="5" name="personal_sub_category_limit" value="{PERSONAL_SUB_GALLERY_LIMIT}" /></td> </tr> <!-- <tr> <td class="row1"><span class="genmed">{L_PERSONAL_ALLOW_SUB_CATEGORY}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_SUBCAT_ENABLED} name="personal_allow_sub_categories" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_SUBCAT_DISABLED} name="personal_allow_sub_categories" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_SHOW_RECENT_IN_SUBCATS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_SHOW_RECENT_IN_SUBCATS_ENABLED} name="personal_show_recent_in_subcats" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_SHOW_RECENT_IN_SUBCATS_DISABLED} name="personal_show_recent_in_subcats" value="0" />{L_NO}</span></td> </tr> --> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_SHOW_RECENT_INSTEAD_OF_NOPICS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_SHOW_RECENT_INSTEAD_OF_NOPICS_ENABLED} name="personal_show_recent_instead_of_nopics" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_SHOW_RECENT_INSTEAD_OF_NOPICS_DISABLED} name="personal_show_recent_instead_of_nopics" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_ALLOW_AVATARS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {PERSONAL_ALLOW_AVATARS_ENABLED} name="personal_allow_avatar_gallery" value="1" />{L_YES} <input onchange="setChange();" type="radio" {PERSONAL_ALLOW_AVATARS_DISABLED} name="personal_allow_avatar_gallery" value="0" />{L_NO}</span></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" /> --- NEW FILE: album_admin_body_ext.tpl --- <table width="100%" align="center" cellspacing="1" cellpadding="2" border="0"> <tr> <td class="nav"> <span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a>{NAV_SEP} <a href="{U_MX_ALBUM}" class="nav">{L_ALBUM}</a> </span> </td> <td align="right"> </td> </tr> </table> <h1>{L_ALBUM_TITLE}</h1> <p>{L_ALBUM_EXPLAIN}</p> <form action="{S_FORUM_ACTION}" method="post"> <table width="100%" cellpadding="3" cellspacing="1" border="0" align="center" class="forumline"> <tr> <th class="thHead" colspan="2">{L_DEFAULT_PAGES_TITLE}<br /><span class="gensmall">{L_DEFAULT_PAGES_TITLE_EXPLAIN}</span></th> </tr> <tr> <td class="row1" width="50%">{L_ALBUM_INTEGRATION_ENABLED}<br /><span class="gensmall">{L_ALBUM_INTEGRATION_ENABLED_EXPLAIN}</span></td> <td class="row2" width="50%"><input type="radio" name="enable_integration" value="1" {ALBUM_INTEGRATION_ENABLED_YES} /><span class="gensmall">{L_ALBUM_INTEGRATION_ENABLED_YES} <input type="radio" name="enable_integration" value="0" {PHPBB_INTEGRATION_ENABLED_NO} /><span class="gensmall">{L_ALBUM_INTEGRATION_ENABLED_NO}</span></td> </tr> <tr> <td class="row1" width="50%">{L_ALBUM_INDEX}<br /><span class="gensmall">{L_ALBUM_EXPLAIN}</span></td> <td class="row2" width="50%">{ALBUM_INDEX}</td> </tr> <tr> <td class="cat" 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> --- NEW FILE: album_admin_otf.tpl --- <!-- BEGIN mooshow --> {JS_INCLUDE} <!-- END mooshow --> <table width="98%" align="center" cellspacing="1" cellpadding="2" border="0"> <tr> <td class="nav"> <span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a>{NAV_SEP} <a href="{U_MX_ALBUM}" class="nav">{L_ALBUM}</a> </span> </td> <td align="right"> </td> </tr> </table> <form action="{S_ACTION}" method="post"> <table class="forumline" width="98%" align="center" cellspacing="1" cellpadding="2" border="0"> <tr><th class="thHead" colspan="{S_COLSPAN}" height="25" valign="middle">{L_PIC_GALLERY}</th></tr> <tr> <td class="catBottom" align="center" valign="middle" colspan="{S_COLSPAN}" height="28"> <span class="genmed"> {L_CATEGORY}: {S_CATEGORY_SELECT} <input type="submit" class="liteoption" value="{L_GO}" name="pic_gallery" /> </span> </td> </tr> <!-- BEGIN mooshow --> <tr> <td class="row1" align="center" valign="middle" colspan="{S_COLSPAN}"> <div id="{SELECTED_CAT_REG}" class="mooshow"> this.speed=300; this.fadeSpeed=500; this.topNav='yes'; this.overlayNav='yes'; this.dropShadow='yes'; this.captions='yes'; this.border=20; this.copyright='yes'; this.IPTCinfo='yes' </div> </td> </tr> <!-- END mooshow --> <!-- BEGIN pic_row --> <tr> <!-- BEGIN pic_column --> <td class="row1" align="center" onMouseOver="this.className='row2';" onMouseOut="this.className='row1';"> <table><tr><td><div class="picshadow"><div class="picframe"> <a href="{pic_row.pic_column.PIC_IMAGE}"><img src="{pic_row.pic_column.PIC_THUMB}" alt="{pic_row.pic_column.PIC_NAME}" title="{pic_row.pic_column.PIC_NAME}" border="0" /></a> </div></div></td></tr></table> <br /> <span class="genmed"><a href="javascript:void(0);" onClick="window.open('{pic_row.pic_column.PIC_IMAGE}','','scrollbars=yes,resizable=no,width=804,height=610')"><b>{pic_row.pic_column.PIC_NAME}</b></a></span> </td> <!-- END pic_column --> </tr> <tr> <!-- BEGIN pic_option_column --> <!-- <td class="row2" align="center"><input type="radio" name="pic_select" value="{pic_row.pic_option_column.S_OPTIONS_PIC}" /></td> --> <!-- END pic_option_column --> </tr> <!-- END pic_row --> <tr> <td class="catBottom" colspan="{S_COLSPAN}" align="center" height="28"> </td> </tr> </table> <!-- BEGIN upload_allowed --> <br /> <br /> <table class="forumline" width="98%" align="center" cellspacing="1" cellpadding="2" border="0"> <tr><th class="thHead" height="25" valign="middle">{L_UPLOAD_PICS}</th></tr> <tr> <td class="row1" align="center"> <span class="genmed"> {SELECT_CAT} <input type="submit" class="liteoption" value="{L_GO}" name="pic_upload" /> </span> </td> </tr> </table> <!-- END upload_allowed --> </form> <br /> <!-- You must keep my copyright notice visible with its original content --> {ALBUM_COPYRIGHT} --- NEW FILE: album_cat_new_body.tpl --- <h1>{L_ALBUM_CAT_TITLE}</h1> <p>{L_ALBUM_CAT_EXPLAIN}</p> <form action="{S_ALBUM_ACTION}" method="post"> <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> <th class="thHead" height="25" nowrap="nowrap" colspan="2">{L_PANEL_TITLE}</th> </tr> <tr> <td class="row1" width="20%"><span class="gen">{L_CAT_TITLE}:</span></td> <td class="row2"><input name="cat_title" type="text" class="post" size="35" value="{S_CAT_TITLE}" /></td> </tr> <tr> <td valign="top" nowrap="nowrap" class="row1"><span class="gen">{L_CAT_DESC}: </span></td> <td class="row2"><textarea name="cat_desc" class="post" cols="50" rows="5">{S_CAT_DESC}</textarea></td> </tr> <tr> <td class="row1" width="20%"> <span class="gen">{L_WATERMARK}:</span><br /> <span class="gensmall">{L_WATERMARK_EXPLAIN}</span> </td> <td class="row2"><input name="cat_wm" type="text" class="post" size="35" value="{S_CAT_WM}" /></td> </tr> <tr> <td valign="top" nowrap="nowrap" class="row1"><span class="gen">{L_CAT_PARENT_TITLE}: </span></td> <td class="row2"><select name="cat_parent_id">{S_CAT_PARENT_OPTIONS}</select></td> </tr> <tr> <th class="thHead" height="25" nowrap="nowrap" colspan="2">{L_CAT_PERMISSIONS}</th> </tr> <tr> <td class="row1"><span class="gen">{L_VIEW_LEVEL}:</span></td> <td class="row2"><select name="cat_view_level"><option {VIEW_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {VIEW_REG} value="{S_USER}">{L_REG}</option><option {VIEW_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {VIEW_MOD} value="{S_MOD}">{L_MOD}</option><option {VIEW_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_UPLOAD_LEVEL}:</span></td> <td class="row2"><select name="cat_upload_level"><option {UPLOAD_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {UPLOAD_REG} value="{S_USER}">{L_REG}</option><option {UPLOAD_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {UPLOAD_MOD} value="{S_MOD}">{L_MOD}</option><option {UPLOAD_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_RATE_LEVEL}:</span></td> <td class="row2"><select name="cat_rate_level"><option {RATE_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {RATE_REG} value="{S_USER}">{L_REG}</option><option {RATE_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {RATE_MOD} value="{S_MOD}">{L_MOD}</option><option {RATE_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_COMMENT_LEVEL}:</span></td> <td class="row2"><span class="gen"><select name="cat_comment_level"><option {COMMENT_GUEST} value="{S_GUEST}">{L_GUEST}</option><option {COMMENT_REG} value="{S_USER}">{L_REG}</option><option {COMMENT_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {COMMENT_MOD} value="{S_MOD}">{L_MOD}</option><option {COMMENT_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></span></td> </tr> <tr> <td class="row1"><span class="gen">{L_EDIT_LEVEL}:</span></td> <td class="row2"><select name="cat_edit_level"><option {EDIT_REG} value="{S_USER}">{L_REG}</option><option {EDIT_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {EDIT_MOD} value="{S_MOD}">{L_MOD}</option><option {EDIT_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_DELETE_LEVEL}:</span></td> <td class="row2"><select name="cat_delete_level"><option {DELETE_REG} value="{S_USER}">{L_REG}</option><option {DELETE_PRIVATE} value="{S_PRIVATE}">{L_PRIVATE}</option><option {DELETE_MOD} value="{S_MOD}">{L_MOD}</option><option {DELETE_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="row1"><span class="gen">{L_PICS_APPROVAL}:</span></td> <td class="row2"><select name="cat_approval"><option {APPROVAL_DISABLED} value="{S_USER}">{L_DISABLED}</option><option {APPROVAL_MOD} value="{S_MOD}">{L_MOD}</option><option {APPROVAL_ADMIN} value="{S_ADMIN}">{L_ADMIN}</option></select></td> </tr> <tr> <td class="catBottom" align="center" height="28" colspan="2"><input type="hidden" value="{S_MODE}" name="mode" /><input name="submit" type="submit" value="{L_PANEL_TITLE}" class="liteoption" /></td> </tr> </table> </form> <br /> --- 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> --- NEW FILE: album_personal_cat_delete_body.tpl --- <table width="100%" cellpadding="4" cellspacing="1" border="0"> <tr> <td class="nav" width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a> {ALBUM_NAVIGATION_ARROW} <a href="{U_ALBUM}" class="nav">{L_ALBUM}</a> {ALBUM_NAVIGATION_ARROW} <a href="{U_PERSONAL_ALBUM}" class="nav">{L_PERSONAL_ALBUM}</a> {ALBUM_NAVIGATION_ARROW} <a href="{U_PERSONAL_CAT_ADMIN}" class="nav">{L_PERSONAL_CAT_ADMIN}</a></span></td> </tr> </table> <form action="{S_ALBUM_ACTION}" method="post"> <table cellpadding="4" cellspacing="1" border="0" class="forumline" align="center" width="100%"> <tr> <th colspan="2" class="thHead">{L_PERSONAL_CAT_ADMIN}</th> </tr> <tr> <td class="row1" colspan="2"><br /> <table cellpadding="4" cellspacing="1" border="0" class="forumline" align="center" width="100%"> <tr> <th colspan="2" class="thHead">{L_CAT_DELETE}</th> </tr> <tr> <td class="row1" width="25%"><span class="gen">{L_CAT_TITLE}</span></td> <td class="row1"><span class="genmed">{S_CAT_TITLE}</span></td> </tr> <tr> <td class="row1" width="25%"><span class="genmed">{L_MOVE_CONTENTS}</span></td> <td class="row1">{S_SELECT_TO}</td> </tr> <tr> <td class="catBottom" colspan="2" align="center"><input type="hidden" name="mode" value="delete" /><input type="submit" name="submit" value="{L_MOVE_DELETE}" class="mainoption" /></td> </tr> </table> </td> </tr> </table> </form> <br /> --- NEW FILE: album_cat_select_body.tpl --- <h1>{L_ALBUM_AUTH_TITLE}</h1> <p>{L_ALBUM_AUTH_EXPLAIN}</p> <form action="{S_ALBUM_ACTION}" method="post"> <table width="50%" align="center" cellpadding="3" cellspacing="1" border="0" class="forumline"> <tr> <th class="thHead" colspan="2" height="28">{L_SELECT_CAT}</th> </tr> <tr> <td class="row1" height="25"><select name="cat_id">{CAT_SELECT_TITLE}</select></td> <td class="row1" width="100%" align="center"><input name="submit" type="submit" value="{L_LOOK_UP_CAT}" class="liteoption" /></td> </tr> </table> </form> <br /> --- NEW FILE: album_config_body.tpl --- <h1>{L_ALBUM_CONFIG}</h1> <p>{L_ALBUM_CONFIG_EXPLAIN}</p> <form action="{S_ALBUM_CONFIG_ACTION}" method="post"> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline"> <tr> <th class="thHead" colspan="2">{L_ALBUM_CONFIG}</th> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_PERSONAL_GALLERY_LINK}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_SHOW_PERSONAL_GALLERY_LINK_ENABLED} name="show_personal_gallery_link" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_SHOW_PERSONAL_GALLERY_LINK_DISABLED} name="show_personal_gallery_link" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_SHOW_SUBCATS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_SHOW_SUBCATS_ENABLED} name="show_index_subcats" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_SHOW_SUBCATS_DISABLED} name="show_index_subcats" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_LINEBREAK_SUBCATS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_LINEBREAK_ENABLED} name="line_break_subcats" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_LINEBREAK_DISABLED} name="line_break_subcats" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_THUMB}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_THUMB_ENABLED} name="show_index_thumb" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_THUMB_DISABLED} name="show_index_thumb" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_TOTAL_PICS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_TOTAL_PICS_ENABLED} name="show_index_total_pics" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_TOTAL_PICS_DISABLED} name="show_index_total_pics" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_TOTAL_COMMENTS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_TOTAL_COMMENTS_ENABLED} name="show_index_total_comments" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_TOTAL_COMMENTS_DISABLED} name="show_index_total_comments" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_LAST_COMMENT}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_LAST_COMMENT_ENABLED} name="show_index_last_comment" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_LAST_COMMENT_DISABLED} name="show_index_last_comment" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_LAST_PIC}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_LAST_PIC_ENABLED} name="show_index_last_pic" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_LAST_PIC_DISABLED} name="show_index_last_pic" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_COMMENTS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_COMMENTS_ENABLED} name="show_index_comments" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_COMMENTS_DISABLED} name="show_index_comments" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INDEX_PICS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_PICS_ENABLED} name="show_index_pics" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_PICS_DISABLED} name="show_index_pics" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_NEW_PIC_CHECK_INTERVAL}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="text" class="post" maxlength="4" size="4" name="new_pic_check_interval" value="{NEW_PIC_CHECK_INTERVAL}" /> {L_NEW_PIC_CHECK_INTERVAL_DESC}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_NEW_PIC_CHECK_INTERVAL_LV}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_LAST_PIC_LV_ENABLED} name="show_index_last_pic_lv" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_LAST_PIC_LV_DISABLED} name="show_index_last_pic_lv" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ENABLE_SUPERCELLS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INDEX_SUPERCELLS_ENABLED} name="index_enable_supercells" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INDEX_SUPERCELLS_DISABLED} name="index_enable_supercells" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_OTF_LINK}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_OTF_LINK_ENABLED} name="show_otf_link" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_OTF_LINK_DISABLED} name="show_otf_link" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_ALL_PICS_LINK}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_ALL_PICS_LINK_ENABLED} name="show_all_pics_link" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_ALL_PICS_LINK_DISABLED} name="show_all_pics_link" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_PERSONAL_GALLERIES_LINK}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_PERSONAL_GALLERIES_LINK_ENABLED} name="show_personal_galleries_link" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_PERSONAL_GALLERIES_LINK_DISABLED} name="show_personal_galleries_link" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_LAST_COMMENTS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_LAST_COMMENTS_ENABLED} name="show_last_comments" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_LAST_COMMENTS_DISABLED} name="show_last_comments" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1" width="45%"><span class="genmed">{L_MAX_PICS}</span></td> <td class="row2"><input class="post" type="text" maxlength="9" size="9" name="max_pics" value="{MAX_PICS}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_USER_PICS_LIMIT}</span></td> <td class="row2"><input class="post" type="text" maxlength="12" size="5" name="user_pics_limit" value="{USER_PICS_LIMIT}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MOD_PICS_LIMIT}</span></td> <td class="row2"><input class="post" type="text" maxlength="12" size="5" name="mod_pics_limit" value="{MOD_PICS_LIMIT}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MAX_FILE_SIZE}</span></td> <td class="row2"><input class="post" type="text" maxlength="12" size="12" name="max_file_size" value="{MAX_FILE_SIZE}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MAX_FILE_SIZE_RESAMPLING}</span></td> <td class="row2"><input onchange="setChange();" class="post" type="text" maxlength="12" size="12" name="max_file_size_resampling" value="{MAX_FILE_SIZE_RESAMPLING}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_DYNAMIC_PIC_RESAMPLING}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {DYNAMIC_PIC_RESAMPLING_ENABLED} name="dynamic_pic_resampling" value="1" />{L_YES} <input onchange="setChange();" type="radio" {DYNAMIC_PIC_RESAMPLING_DISABLED} name="dynamic_pic_resampling" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MAX_WIDTH}</span></td> <td class="row2"><input class="post" type="text" maxlength="9" size="9" name="max_width" value="{MAX_WIDTH}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MAX_HEIGHT}</span></td> <td class="row2"><input class="post" type="text" maxlength="9" size="9" name="max_height" value="{MAX_HEIGHT}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_MAX_FILES_TO_UPLOAD}</span></td> <td class="row2"><input class="post" type="text" maxlength="2" size="2" name="max_files_to_upload" value="{MAX_FILES_TO_UPLOAD}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PIC_DESC_MAX_LENGTH}</span></td> <td class="row2"><input class="post" type="text" size="6" name="desc_length" value="{PIC_DESC_MAX_LENGTH}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PROPERCASE_TITLE}</span></td> <td class="row2"><span class="genmed"><input type="radio" {PROPERCASE_TITLE_ENABLED} name="propercase_pic_title" value="1" />{L_YES} <input type="radio" {PROPERCASE_TITLE_DISABLED} name="propercase_pic_title" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"> <span class="genmed">{L_SET_MEMORY}</span><br /> <span class="gensmall">{L_SET_MEMORY_EXPLAIN}</span> </td> <td class="row2"><input onchange="setChange();" class="post" type="text" name="set_memory" value="{SET_MEMORY}" size="3" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_GD_VERSION}</span></td> <td class="row2"><span class="genmed"><input type="radio" {NO_GD} name="gd_version" value="0" />{L_MANUAL_THUMBNAIL} <input type="radio" {GD_V1} name="gd_version" value="1" />GD1 <input type="radio" {GD_V2} name="gd_version" value="2" />GD2</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_JPG_ALLOWED}</span></td> <td class="row2"><span class="genmed"><input type="radio" {JPG_ENABLED} name="jpg_allowed" value="1" />{L_YES} <input type="radio" {JPG_DISABLED} name="jpg_allowed" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PNG_ALLOWED}</span></td> <td class="row2"><span class="genmed"><input type="radio" {PNG_ENABLED} name="png_allowed" value="1" />{L_YES} <input type="radio" {PNG_DISABLED} name="png_allowed" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_GIF_ALLOWED}</span></td> <td class="row2"><span class="genmed"><input type="radio" {GIF_ENABLED} name="gif_allowed" value="1" />{L_YES} <input type="radio" {GIF_DISABLED} name="gif_allowed" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_DOWNLOAD}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_DOWNLOAD_ALWAYS} name="show_download" value="2" />{L_ALWAYS} <input onchange="setChange();" type="radio" {SHOW_DOWNLOAD_ENABLED} name="show_download" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_DOWNLOAD_DISABLED} name="show_download" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_SLIDESHOW}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_SLIDESHOW_ENABLED} name="show_slideshow" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_SLIDESHOW_DISABLED} name="show_slideshow" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_SLIDESHOW_SCRIPT}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SLIDESHOW_SCRIPT_ENABLED} name="slideshow_script" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SLIDESHOW_SCRIPT_DISABLED} name="slideshow_script" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_PICS_NAV}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_PICS_NAV_ENABLED} name="show_pics_nav" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_PICS_NAV_DISABLED} name="show_pics_nav" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_INVERT_NAV_ARROWS}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {INVERT_NAV_ARROWS_ENABLED} name="invert_nav_arrows" value="1" />{L_YES} <input onchange="setChange();" type="radio" {INVERT_NAV_ARROWS_DISABLED} name="invert_nav_arrows" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_INLINE_COPYRIGHT}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_INLINE_COPYRIGHT_ENABLED} name="show_inline_copyright" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_INLINE_COPYRIGHT_DISABLED} name="show_inline_copyright" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ENABLE_NUFFIMAGE}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {NUFFIMAGE_ENABLED} name="enable_nuffimage" value="1" />{L_YES} <input onchange="setChange();" type="radio" {NUFFIMAGE_DISABLED} name="enable_nuffimage" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ENABLE_SEPIA_BW}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SEPIABW_ENABLED} name="enable_sepia_bw" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SEPIABW_DISABLED} name="enable_sepia_bw" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_EXIF}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_EXIF_ENABLED} name="show_exif" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_EXIF_DISABLED} name="show_exif" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ENABLE_BBCODE}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {BBCODE_ENABLED} name="album_bbcode" value="1" />{L_YES} <input onchange="setChange();" type="radio" {BBCODE_DISABLED} name="album_bbcode" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_HOTLINK_PREVENT}</span></td> <td class="row2"><span class="genmed"><input type="radio" {HOTLINK_PREVENT_ENABLED} name="hotlink_prevent" value="1" />{L_YES} <input type="radio" {HOTLINK_PREVENT_DISABLED} name="hotlink_prevent" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_HOTLINK_ALLOWED}</span></td> <td class="row2"><input class="post" type="text" size="40" name="hotlink_allowed" value="{HOTLINK_ALLOWED}" /></td> </tr> <tr> <th class="thHead" colspan="2">{L_THUMBNAIL_SETTINGS}</th> </tr> <tr> <td class="row1"><span class="genmed">{L_THUMBNAIL_CACHE}</span></td> <td class="row2"><span class="genmed"><input type="radio" {THUMBNAIL_CACHE_ENABLED} name="thumbnail_cache" value="1" />{L_YES} <input type="radio" {THUMBNAIL_CACHE_DISABLED} name="thumbnail_cache" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_THUMBNAIL_SIZE}</span></td> <td class="row2"><input class="post" type="text" maxlength="4" size="4" name="thumbnail_size" value="{THUMBNAIL_SIZE}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_THUMBNAIL_QUALITY}</span></td> <td class="row2"><input class="post" type="text" maxlength="3" size="3" name="thumbnail_quality" value="{THUMBNAIL_QUALITY}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_ROWS_PER_PAGE}</span></td> <td class="row2"><input class="post" type="text" maxlength="2" size="2" name="rows_per_page" value="{ROWS_PER_PAGE}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_COLS_PER_PAGE}</span></td> <td class="row2"><input class="post" type="text" maxlength="2" size="2" name="cols_per_page" value="{COLS_PER_PAGE}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_DEFAULT_SORT_METHOD}</span></td> <td class="row2"> <select name="sort_method"> <option {SORT_TIME} value='pic_time'>{L_TIME}</option> <option {SORT_PIC_TITLE} value='pic_title'>{L_PIC_TITLE}</option> <option {SORT_USERNAME} value='username'>{L_USERNAME}</option> <option {SORT_VIEW} value='pic_view_count'>{L_VIEW}</option> <option {SORT_RATING} value='rating'>{L_RATING}</option> <option {SORT_COMMENTS} value='comments'>{L_COMMENTS}</option> <option {SORT_NEW_COMMENT} value='new_comment'>{L_NEW_COMMENT}</option> </select> </td> </tr> <tr> <td class="row1"><span class="genmed">{L_DEFAULT_SORT_ORDER}</span></td> <td class="row2"> <select name="sort_order"> <option {SORT_ASC} value='ASC'>{L_ASC}</option> <option {SORT_DESC} value='DESC'>{L_DESC}</option> </select> </td> </tr> <tr> <td class="row1"><span class="genmed">{L_FULLPIC_POPUP}</span></td> <td class="row2"><span class="genmed"><input type="radio" {FULLPIC_POPUP_ENABLED} name="fullpic_popup" value="1" />{L_YES} <input type="radio" {FULLPIC_POPUP_DISABLED} name="fullpic_popup" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_IMG_NO_GD}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_IMG_NO_GD_ENABLED} name="show_img_no_gd" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_IMG_NO_GD_DISABLED} name="show_img_no_gd" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_GIF_MID_THUMB}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_GIF_MID_THUMB_ENABLED} name="show_gif_mid_thumb" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_GIF_MID_THUMB_DISABLED} name="show_gif_mid_thumb" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_SHOW_PIC_SIZE}</span></td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {SHOW_PIC_SIZE_ENABLED} name="show_pic_size_on_thumb" value="1" />{L_YES} <input onchange="setChange();" type="radio" {SHOW_PIC_SIZE_DISABLED} name="show_pic_size_on_thumb" value="0" />{L_NO}</span></td> </tr> <tr> <td class="row1"> <span class="genmed">{L_LB_PREVIEW}</span><br /> <span class="gensmall">{L_LB_PREVIEW_EXPLAIN}</span><br /> </td> <td class="row2"><span class="genmed"><input onchange="setChange();" type="radio" {LB_PREVIEW_ENABLED} name="lb_preview" value="1" />{L_YES} <input onchange="setChange();" type="radio" {LB_PREVIEW_DISABLED} name="lb_preview" value="0" />{L_NO}</span></td> </tr> <tr> <th class="thHead" colspan="2">{L_EXTRA_SETTINGS}</th> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_GALLERY}</span></td> <td class="row2"><span class="genmed"><input type="radio" {PERSONAL_GALLERY_USER} name="personal_gallery" value="{S_USER}" />{L_REG} <input type="radio" {PERSONAL_GALLERY_PRIVATE} name="personal_gallery" value="{S_PRIVATE}" />{L_PRIVATE} <input type="radio" {PERSONAL_GALLERY_ADMIN} name="personal_gallery" value="{S_ADMIN}" />{L_ADMIN}</span></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_GALLERY_LIMIT}</span></td> <td class="row2"><input class="post" type="text" maxlength="5" size="5" name="personal_gallery_limit" value="{PERSONAL_GALLERY_LIMIT}" /></td> </tr> <tr> <td class="row1"><span class="genmed">{L_PERSONAL_GALLERY_VIEW}</span></td> <td class="row2"><span class="genmed"><input type="radio" {PERSONAL_GALLERY_VIEW_ALL} name="personal_gallery_view" value="{S_GUEST}" />{L_GUEST} <input type="radio" {PERSONAL_GALLERY_VIEW_REG} name="personal_gallery_view" value="{S_USER}" />{L_REG} <input type="radio" {PERSONAL_GALLERY_VIEW_PRIVATE} name="personal_gallery_view" value="{S_PRIVATE}" />{L_PRIVATE}</span></td> </tr> <!-- <tr> <td class="row1"><span class="genmed">{L_RATE_SYSTEM}</span></td> <td class="row2"><span class="genmed"><input type="radio" {RATE_ENABLED} name="rate" value="1" />{L_YES} <input type="radio" {RATE_DISABLED} name="rate" value="0" />{L_NO}</span></td> </tr> --> <tr> <td class="row1"><span class="genmed">{L_RATE_SCALE}</span></td> <td class="row2"><input class="post" type="text" name="rate_scale" value="{RATE_SCALE}" size="3" /></td> </tr> <!-- <tr> <td class="row1"><span class="genmed">{L_COMMENT_SYSTEM}</span></td> <td class="row2"><span class="genmed"><input type="radio" {COMMENT_ENABLED} name="comment" value="1" />{L_YES} <input type="radio" {COMMENT_DISABLED} name="comment" value="0" />{L_NO}</span></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" /> --- NEW FILE: album_cat_body.tpl --- <h1>{L_ALBUM_CAT_TITLE}</h1> <p>{L_ALBUM_CAT_EXPLAIN}</p> <form method="post" action="{S_ALBUM_ACTION}"> <table width="100%" cellpadding="4" cellspacing="1" border="0"> <tr> <td><span class="nav"><a href="{S_ALBUM_ACTION}" class="nav">{L_ALBUM_INDEX}</a></span></td> </tr> </table> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr> <th class="thLeft" colspan="{HEADER_INC_SPAN}" width="75%">{L_ALBUM_TITLE}</th> <th class="thRight" colspan="3" width="25%">{L_ALBUM_ACTION}</th> </tr> <!-- BEGIN catrow --> <!-- BEGIN cathead --> <tr> <!-- BEGIN inc --> <td class="row2" rowspan="{catrow.cathead.inc.ROWSPAN}" width="46"> </td> <!-- END inc --> <td class="{catrow.cathead.CLASS_CATLEFT}" colspan="{catrow.cathead.INC_SPAN}" {catrow.cathead.WIDTH}><span class="cattitle"><b><a href="{catrow.cathead.U_VIEWCAT}" class="cattitle">{catrow.cathead.CAT_TITLE}</a></b></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle"><span class="gen"><a href="{catrow.cathead.U_CAT_EDIT}" class="gen">{catrow.cathead.L_EDIT}</a></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle"><span class="gen"><a href="{catrow.cathead.U_CAT_DELETE}" class="gen">{catrow.cathead.L_DELETE}</a></span></td> <td class="{catrow.cathead.CLASS_CATMIDDLE}" align="center" valign="middle" nowrap="nowrap"><span class="gen"><a href="{catrow.cathead.U_CAT_MOVE_UP}" class="gen">{catrow.cathead.L_MOVE_UP}</a> <a href="{catrow.cathead.U_CAT_MOVE_DOWN}" class="gen">{catrow.cathead.L_MOVE_DOWN}</a></span></td> </tr> <!-- END cathead --> <!-- BEGIN cattitle --> <tr> <td class="row3" colspan="{catrow.cattitle.INC_SPAN_ALL}"><span class="gensmall">{catrow.cattitle.CAT_DESCRIPTION}</span></td> </tr> <!-- END cattitle --> <!-- BEGIN catfoot --> <tr> <!-- BEGIN inc --> <td class="row2" width="46"> </td> <!-- END inc --> <td colspan="{catrow.catfoot.INC_SPAN_ALL}" class="row2" nowrap="nowrap"> <input class="post" type="text" name="{catrow.catfoot.S_ADD_NAME}" /> <input type="submit" {DISABLE_CREATION} class="liteoption" name="{catrow.catfoot.S_ADD_CAT_SUBMIT}" value="{L_CREATE_CATEGORY}" /> </td> </tr> <tr> <!-- BEGIN inc --> <td class="row2" width="46"> </td> <!-- END inc --> <td colspan="{catrow.catfoot.INC_SPAN_ALL}" height="1" class="spaceRow"> </td> </tr> <!-- END catfoot --> <!-- END catrow --> <!-- BEGIN switch_board_footer --> <tr> <td colspan="{INC_SPAN_ALL}" class="catBottom"> <input class="post" type="text" name="name[0]" /> <input type="submit" {DISABLE_CREATION} class="liteoption" name="addcategory[0]" value="{L_CREATE_CATEGORY}" /> </td> </tr> <!-- END switch_board_footer --> </table> <input type="hidden" value="new" name="mode" /> </form> --- NEW FILE: album_personal_body.tpl --- <h1>{L_ALBUM_PERSONAL_TITLE}</h1> <p>{L_ALBUM_PERSONAL_EXPLAIN}</p> <form action="{S_ALBUM_ACTION}" method="post"> <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> <tr> <th class="thHead" height="25" colspan="2">{L_GROUP_CONTROL}</th> </tr> <!-- BEGIN creation_grouprow --> <tr> <td class="row1" align="center" height="28"><span class="gen">{creation_grouprow.GROUP_NAME}</span></td> <td class="row2" align="center"><input name="private[]" type="checkbox" {creation_grouprow.PRIVATE_CHECKED} value="{creation_grouprow.GROUP_ID}" /></td> </tr> <!-- END creation_grouprow --> <tr> <td class="catHead" height="25" align="center" nowrap="nowrap" colspan="2"><input type="reset" value="{L_RESET}" class="liteoption" /> <input name="submit" type="submit" value="{L_SUBMIT}" class="mainoption" /></td> </tr> </table> <p>{L_ALBUM_AUTH_EXPLAIN}</p> <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> <tr> <th class="thCornerL" height="25" nowrap="nowrap">{L_GROUPS}</th> <th class="thTop" nowrap="nowrap">{L_VIEW}</th> <th class="thTop" nowrap="nowrap">{L_UPLOAD}</th> <th class="thTop" nowrap="nowrap">{L_RATE}</th> <th class="thTop" nowrap="nowrap">{L_COMMENT}</th> <th class="thTop" nowrap="nowrap">{L_EDIT}</th> <th class="thTop" nowrap="nowrap">{L_DELETE}</th> <th class="thCornerR" nowrap="nowrap">{L_IS_MODERATOR}</th> </tr> <!-- BEGIN grouprow --> <tr> <td class="row1" align="center" height="28"><span class="gen">{grouprow.GROUP_NAME}</span></td> <td class="row2" align="center"><input name="view[]" type="checkbox" {grouprow.VIEW_CHECKED} value="{grouprow.GROUP_ID}" /></td> <td class="row2" align="center"><input name="upload[]" type="checkbox" {grouprow.UPLOAD_CHECKED} value="{grouprow.GROUP_ID}" /></td> <td class="row2" align="center"><input name="rate[]" type="checkbox" {grouprow.RATE_CHECKED} value="{grouprow.GROUP_ID}" /></td> <td class="row2" align="center"><input name="comment[]" type="checkbox" {grouprow.COMMENT_CHECKED} value="{grouprow.GROUP_ID}" /></td> <td class="row2" align="center"><input name="edit[]" type="checkbox" {grouprow.EDIT_CHECKED} value="{grouprow.GROUP_ID}" /></td> <td class="row2" align="center"><input name="delete[]" type="checkbox" {grouprow.DELETE_CHECKED} value="{grouprow.GROUP_ID}" /></td> <td class="row2" align="center"><input name="moderator[]" type="checkbox" {grouprow.MODERATOR_CHECKED} value="{grouprow.GROUP_ID}" /></td> </tr> <!-- END grouprow --> <tr> <td class="catBottom" height="25" align="center" colspan="8"><input type="r... [truncated message content] |
|
From: OryNider <ory...@us...> - 2008-03-15 19:54:18
|
Update of /cvsroot/mxbb/mx_smartor/album_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9101/album_mod/includes Modified Files: album_constants.php Log Message: fix Index: album_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/includes/album_constants.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** album_constants.php 14 Mar 2008 14:13:41 -0000 1.6 --- album_constants.php 15 Mar 2008 19:54:14 -0000 1.7 *************** *** 51,56 **** { $mx_user->set_module_cfg_name('mx_smartor'); - $mx_user->set_module_lang_path($module_root_path . 'album_mod/'); - $mx_user->extend(MX_LANG_ALL, MX_IMAGES); } } --- 51,54 ---- *************** *** 61,73 **** $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x } - - if (is_object($mx_page)) - { - $mx_user->extend(MX_LANG_ALL, MX_IMAGES); - } - $mx_page->add_css_file('mx_smartor.css'); // Include style dependent *.css file, eg module_path/template_path/template/theme.css $mx_page->add_js_file($module_root_path . 'album_mod/fap_loader.js'); // Relative to module_root } // Album Tables --- 59,67 ---- $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x } $mx_page->add_css_file('mx_smartor.css'); // Include style dependent *.css file, eg module_path/template_path/template/theme.css $mx_page->add_js_file($module_root_path . 'album_mod/fap_loader.js'); // Relative to module_root } + $mx_user->set_module_lang_path($module_root_path . 'album_mod/'); + $mx_user->extend(MX_LANG_ALL, MX_IMAGES); // Album Tables |
|
From: OryNider <ory...@us...> - 2008-03-15 19:54:18
|
Update of /cvsroot/mxbb/mx_smartor/templates/_core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv9101/templates/_core Removed Files: _core.css Log Message: fix --- _core.css DELETED --- |
|
From: OryNider <ory...@us...> - 2008-03-15 19:34:43
|
Update of /cvsroot/mxbb/mx_mod_core/root/mx_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30376 Modified Files: functions_core.php Log Message: add_css_file() upgrade Index: functions_core.php =================================================================== RCS file: /cvsroot/mxbb/mx_mod_core/root/mx_mod/includes/functions_core.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** functions_core.php 15 Mar 2008 16:38:51 -0000 1.3 --- functions_core.php 15 Mar 2008 19:34:36 -0000 1.4 *************** *** 2711,2726 **** * @param string $path */ ! function add_css_file() { ! global $mx_block, $theme, $module_root_path; ! $style_path = $theme['template_name'] . '/'; ! if ( file_exists($module_root_path . 'templates/' . $style_path . $theme['head_stylesheet']) ) { ! $this->mxbb_css_addup[] = $module_root_path . 'templates/' . $style_path . $theme['head_stylesheet']; } else { ! $this->mxbb_css_addup[] = $module_root_path . 'templates/subSilver/' . $theme['head_stylesheet']; } } --- 2711,2740 ---- * @param string $path */ ! function add_css_file($filename = '') { ! global $module_root_path, $theme, $mx_user; ! switch (PORTAL_BACKEND) { ! case 'internal': ! case 'phpbb2': ! $style_path = $theme['template_name']; ! break; ! case 'phpbb3': ! $style_path = $theme['style_name']; ! break; ! } ! ! if ( file_exists($module_root_path . 'templates/' . $style_path.'/'.(!empty($filename) ? $filename : $theme['head_stylesheet']) )) ! { ! $this->mxbb_css_addup[] = $module_root_path . 'templates/' . $style_path.'/'.(!empty($filename) ? $filename : $theme['head_stylesheet']); ! } ! else if ( file_exists($module_root_path . 'templates/' . $mx_user->cloned_template_name.'/'.(!empty($filename) ? $filename : $mx_user->cloned_template_name)) ) ! { ! $this->mxbb_css_addup[] = $module_root_path . 'templates/' . $mx_user->cloned_template_name.'/'.(!empty($filename) ? $filename : $mx_user->cloned_template_name); } else { ! $this->mxbb_css_addup[] = $module_root_path . 'templates/'.$mx_user->default_template_name.'/'.(!empty($filename) ? $filename : $mx_user->default_template_name); } } |
|
From: OryNider <ory...@us...> - 2008-03-15 19:12:20
|
Update of /cvsroot/mxbb/mx_smartor/album_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14929 Modified Files: Tag: core28x album_constants.php Log Message: downgrade version to 2.0.1 for core28x branch Index: album_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/includes/album_constants.php,v retrieving revision 1.1.2.6 retrieving revision 1.1.2.7 diff -C2 -d -r1.1.2.6 -r1.1.2.7 *** album_constants.php 14 Mar 2008 12:36:50 -0000 1.1.2.6 --- album_constants.php 15 Mar 2008 19:12:14 -0000 1.1.2.7 *************** *** 38,42 **** // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE ! // ------------------------------------------------------------------------- if (!MXBB_MODULE) { --- 38,49 ---- // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE ! // ! // Extend page with additional header or footer data ! // Examples: ! // $mx_page->add_css_file(); // Include style dependent *.css file, eg module_path/template_path/template/theme.css ! // $mx_page->add_js_file( 'includes/js.js' ); // Relative to module_root ! // $mx_page->add_header_text( 'header text' ); ! // $mx_page->add_footer_text( 'includes/test.txt', true ); // Relative to module_root ! // Note: Included text from file (last example), will evaluate $theme and $mx_block->info variables. if (!MXBB_MODULE) { *************** *** 52,69 **** if (!$_GET['print']) // Do not "fix" with reuest wrapper!! { ! $mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x } if (is_object($mx_page)) { - // ------------------------------------------------------------------------- - // Extend User Style with module lang and images - // Usage: $mx_user->extend(LANG, IMAGES) - // Switches: - // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE - // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE - // ------------------------------------------------------------------------- $mx_user->extend(MX_LANG_ALL, MX_IMAGES); } } --- 59,72 ---- if (!$_GET['print']) // Do not "fix" with reuest wrapper!! { ! //$mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x } if (is_object($mx_page)) { $mx_user->extend(MX_LANG_ALL, MX_IMAGES); } + + $mx_page->add_css_file(); // Include style dependent *.css file, eg module_path/template_path/template/theme.css + $mx_page->add_js_file($module_root_path . 'album_mod/fap_loader.js'); // Relative to module_root } |
|
From: OryNider <ory...@us...> - 2008-03-15 18:59:03
|
Update of /cvsroot/mxbb/mx_music/music_box In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv5699 Modified Files: music_player.swf Log Message: jw player upgrade to 3.15 Index: music_player.swf =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/music_player.swf,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsRID56G and /tmp/cvsN8YFB0 differ |
|
From: OryNider <ory...@us...> - 2008-03-15 17:18:01
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv18336 Modified Files: music_cat.php music_media_cat.php music_page.php music_pic_cat.php Log Message: image and video url fixes Index: music_media_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_media_cat.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** music_media_cat.php 8 Mar 2008 20:54:50 -0000 1.3 --- music_media_cat.php 15 Mar 2008 17:17:46 -0000 1.4 *************** *** 473,477 **** else { ! $img_id = ($module_root_path . 'upload/song_image/' . $thissong['song_imagename']); } --- 473,477 ---- else { ! $img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']); } *************** *** 1052,1056 **** if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL . MUSIC_UPLOAD_PATH . $thissong['song_filename']; } else --- 1052,1056 ---- if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL. str_replace('./', '/', MUSIC_UPLOAD_PATH) . $thissong['song_filename']; } else Index: music_page.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_page.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** music_page.php 8 Mar 2008 20:54:50 -0000 1.3 --- music_page.php 15 Mar 2008 17:17:46 -0000 1.4 *************** *** 137,141 **** else { ! $img_id = $song_image_path . $thissong['song_imagename']; } --- 137,141 ---- else { ! $img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']); } *************** *** 526,530 **** if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL . MUSIC_UPLOAD_PATH . $thissong['song_filename']; } else --- 526,530 ---- if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL. str_replace('./', '/', MUSIC_UPLOAD_PATH) . $thissong['song_filename']; } else Index: music_pic_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_pic_cat.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** music_pic_cat.php 8 Mar 2008 20:54:51 -0000 1.3 --- music_pic_cat.php 15 Mar 2008 17:17:46 -0000 1.4 *************** *** 446,450 **** else { ! $img_id = ($module_root_path . 'upload/song_image/' . $thissong['song_imagename']); } --- 446,450 ---- else { ! $img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']); } *************** *** 778,782 **** if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL . MUSIC_UPLOAD_PATH . $thissong['song_filename']; } else --- 778,782 ---- if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL. str_replace('./', '/', MUSIC_UPLOAD_PATH) . $thissong['song_filename']; } else Index: music_cat.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_cat.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** music_cat.php 8 Mar 2008 20:54:50 -0000 1.3 --- music_cat.php 15 Mar 2008 17:17:45 -0000 1.4 *************** *** 443,447 **** else { ! $img_id = ($module_root_path . 'upload/song_image/' . $thissong['song_imagename']); } --- 443,447 ---- else { ! $img_id = (PORTAL_URL . str_replace('./', '/', MUSIC_IMAGE_PATH) . $thissong['song_imagename']); } *************** *** 782,788 **** } ! if ( $song_filetype == 'flv' ) { ! $url_song = PORTAL_URL . MUSIC_UPLOAD_PATH . $thissong['song_filename']; } else --- 782,788 ---- } ! if ($song_filetype == 'flv') { ! $url_song = PORTAL_URL. str_replace('./', '/', MUSIC_UPLOAD_PATH) . $thissong['song_filename']; } else *************** *** 808,812 **** 'VIDEO_URL' => !empty($url_player) ? $url_player : $url_video, ! 'U_IMG' => mx_append_sid("$img_id"), 'SINGER' => $songrow[$j]['song_singer'], --- 808,812 ---- 'VIDEO_URL' => !empty($url_player) ? $url_player : $url_video, ! 'U_IMG' => mx_append_sid($img_id), 'SINGER' => $songrow[$j]['song_singer'], |
|
From: OryNider <ory...@us...> - 2008-03-15 17:03:11
|
Update of /cvsroot/mxbb/mx_music/music_box/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv12240 Modified Files: music_constants.php Log Message: typo: muisc_box -> music_box Index: music_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/includes/music_constants.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** music_constants.php 13 Mar 2008 09:35:10 -0000 1.6 --- music_constants.php 15 Mar 2008 16:04:43 -0000 1.7 *************** *** 39,43 **** // Path (trailing slash required) define('MUSIC_UPLOAD_PATH', $module_root_path . 'music_box/upload/'); ! define('MUSIC_IMAGE_PATH', $module_root_path . 'muisc_box/upload/song_image/'); } else --- 39,43 ---- // Path (trailing slash required) define('MUSIC_UPLOAD_PATH', $module_root_path . 'music_box/upload/'); ! define('MUSIC_IMAGE_PATH', $module_root_path . 'music_box/upload/song_image/'); } else |
|
From: OryNider <ory...@us...> - 2008-03-15 17:01:29
|
Update of /cvsroot/mxbb/mx_mod_core/root/mx_mod/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv31198 Modified Files: functions_core.php Log Message: get_mxbb_config fix for the new config table Index: functions_core.php =================================================================== RCS file: /cvsroot/mxbb/mx_mod_core/root/mx_mod/includes/functions_core.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_core.php 14 Mar 2008 13:33:21 -0000 1.2 --- functions_core.php 15 Mar 2008 16:38:51 -0000 1.3 *************** *** 112,118 **** else { ! $sql = "SELECT * ! FROM " . MX_CONFIG_TABLE . " ! WHERE portal_id = '1'"; if ( !( $result = @$db->sql_query( $sql ) ) ) --- 112,116 ---- else { ! $sql = "SELECT * FROM " . MX_CONFIG_TABLE; if ( !( $result = @$db->sql_query( $sql ) ) ) *************** *** 157,170 **** else { ! $row = @$db->sql_fetchrow( $result ); ! foreach ( $row as $config_name => $config_value ) { ! $config[$config_name] = trim( $config_value ); } } - @$db->sql_freeresult( $result ); $this->put('mxbb_config', $config); ! return ( $config ); } } --- 155,167 ---- else { ! while ($row = @$db->sql_fetchrow($result)) { ! $config[$row['config_name']] = $row['config_value']; } + @$db->sql_freeresult($result); } $this->put('mxbb_config', $config); ! return ($config); } } |
|
From: Jon O. <jon...@us...> - 2008-03-14 20:42:44
|
Update of /cvsroot/mxbb/mx_news/mx_news/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2452/includes Modified Files: functions.php functions_admin.php functions_comment.php functions_mx_news.php mx_news_constants.php Log Message: Now virtual page compatible Lots of code cleanup Index: functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/includes/functions.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** functions.php 13 Mar 2008 20:19:55 -0000 1.4 --- functions.php 14 Mar 2008 20:42:37 -0000 1.5 *************** *** 56,60 **** $mx_news_config[$config_name] = $config_value; $mx_news_cache->put( 'config', $mx_news_config ); - } --- 56,59 ---- *************** *** 217,298 **** function page_header() { - global $mx_news_config, $lang, $userdata, $images, $action; - global $mx_news; - global $template, $db, $theme, $gen_simple_header, $starttime, $phpEx, $board_config, $user_ip, $phpbb_root_path; - global $admin_level, $level_prior, $tree, $do_gzip_compress; - global $mx_root_path, $module_root_path, $is_block, $title; - - /* - // - // page header for mx_news - // - if ( $action == 'category' ) - { - if ( $mx_news->modules[$mx_news->module_name]->auth_user[$_REQUEST['cat_id']]['auth_post'] || $mx_news->modules[$mx_news->module_name]->auth_user[$_REQUEST['cat_id']]['auth_mod'] ) - { - $upload_url = mx_append_sid( $mx_news->this_mxurl( "action=user_upload&cat_id={$_REQUEST['cat_id']}" ) ); - if ( !$mx_news_config['lock_submit_site'] ) - { - $template->assign_block_vars( 'ADD_LINK', array() ); - } - } - $mcp_url = mx_append_sid( $mx_news->this_mxurl( "action=mcp&cat_id={$_REQUEST['cat_id']}" ) ); - if ( $mx_news->modules[$mx_news->module_name]->auth_user[$_REQUEST['cat_id']]['auth_mod'] ) - { - $template->assign_block_vars( 'MCP', array() ); - } - } - else - { - $upload_url = mx_append_sid( $mx_news->this_mxurl( "action=user_upload" ) ); - } - - $template->set_filenames( array( 'mx_news_header' => "link_header.tpl" )); - - $template->assign_vars( array( - 'L_TITLE' => $title, - // BEGIN mx_news - 'LINKS' => $lang['Links_Title'], - 'U_LINK' => mx_append_sid( $mx_news->this_mxurl() ), - // END mx_news - 'L_SEARCH' => $lang['Link_Search'], - 'L_UPLOAD' => $lang['AddLink'], - 'L_MCP' => $lang['MCP_title'], - 'L_VIEW_ALL' => $lang['Viewall'], - 'L_DESCEND_BY_HITS' => $lang['Descend_by_hits'], - 'L_DESCEND_BY_JOIN' => $lang['Descend_by_joindate'], - - 'L_STATS_MOST_POPULAR' => $lang['Link_most_popular'], - 'L_STATS_LATEST' => $lang['Link_latest'], - 'L_STATS_TOPRATED' => $lang['Link_toprated'], - - 'U_PASEARCH' => mx_append_sid( $mx_news->this_mxurl( "action=search" ) ), - 'U_UPLOAD' => $upload_url, - 'U_MCP' => $mcp_url, - 'U_VIEW_ALL' => mx_append_sid( $mx_news->this_mxurl( "action=viewall" ) ), - 'U_DESCEND_BY_HITS' => mx_append_sid( $mx_news->this_mxurl( "action=viewall&&sort_method=link_hits&sort_order=DESC" ) ), - 'U_DESCEND_BY_JOIN' => mx_append_sid( $mx_news->this_mxurl( "action=viewall&sort_method=link_time&sort_order=DESC" ) ), - 'U_DESCEND_BY_RATINGS' => mx_append_sid( $mx_news->this_mxurl( "action=viewall&sort_method=rating&sort_order=DESC" ) ), - - 'U_PORTAL_PAGE' => $page_id - )); - - // - // Ratings enabled for any category ? - // - if ( !empty( $mx_news->modules[$mx_news->module_name]->cat_rowset ) ) - { - foreach( $mx_news->modules[$mx_news->module_name]->cat_rowset as $cat_id => $cat_row ) - { - if ( $mx_news->modules[$mx_news->module_name]->ratings[$cat_id]['activated'] ) - { - $template->assign_block_vars( 'switch_toprated', array() ); - break; - } - } - } - $template->pparse( 'mx_news_header' ); - */ } --- 216,220 ---- *************** *** 303,333 **** function page_footer() { ! global $lang, $board_config, $userdata, $phpbb_root_path, $mx_root_path, $module_root_path, $is_block, $phpEx, $page_id; ! global $mx_news_cache, $mx_news; ! global $phpEx, $template, $do_gzip_compress, $debug, $db, $starttime; ! ! // ! // page footer for mx_news ! // ! /* ! $template->set_filenames( array( 'link_footer' => "link_footer.tpl" ) ); ! ! $template->assign_vars( array( ! 'L_JUMP' => $lang['Jump'], ! 'JUMPMENU' => $mx_news->modules[$mx_news->module_name]->generate_jumpbox( 0, 0, array( $_GET['cat_id'] => 1, true, true, 'auth_view' ) ), ! 'S_JUMPBOX_ACTION' => mx_append_sid( $mx_news->this_mxurl() ), ! 'MX_PAGE' => $page_id, ! ! 'S_HIDDEN_VARS' => $s_hidden_vars, ! ! 'S_TIMEZONE' => sprintf( $lang['All_times'], $lang[number_format( $board_config['board_timezone'] )] ), ! ! ) ); ! ! $mx_news->modules[$mx_news->module_name]->_mx_news(); ! ! $template->pparse( 'link_footer' ); ! */ ! $mx_news_cache->unload(); } --- 225,229 ---- function page_footer() { ! global $mx_news_cache; $mx_news_cache->unload(); } *************** *** 343,347 **** global $mx_request_vars; ! if ($mx_request_vars->is_request('virtual')) { $key = -1000 - $block_id; // We support 8999 virtual blocks and unlimited virtual ids --- 239,243 ---- global $mx_request_vars; ! if ($mx_request_vars->is_request('virtual') && $mx_request_vars->request('virtual', MX_TYPE_INT, '0') > 0) { $key = -1000 - $block_id; // We support 8999 virtual blocks and unlimited virtual ids *************** *** 413,456 **** $this->langs['edited_item_info'] = $lang['Edited_Link_info']; - /* - switch ( SQL_LAYER ) - { - case 'oracle': - $sql = "SELECT f.*, AVG(r.rate_point) AS rating, COUNT(r.votes_link) AS total_votes, u.user_id, u.username - FROM " . LINKS_TABLE . " AS f, " . LINK_VOTES_TABLE . " AS r, " . USERS_TABLE . " AS u, " . LINK_CATEGORIES_TABLE . " AS c - WHERE f.link_id = r.votes_link(+) - AND f.user_id = u.user_id(+) - AND c.cat_id = a.link_catid - AND f.link_id = '" . $item_id . "' - GROUP BY f.link_id "; - break; - - default: - $sql = "SELECT f.*, AVG(r.rate_point) AS rating, COUNT(r.votes_link) AS total_votes, u.user_id, u.username - FROM " . LINKS_TABLE . " AS f - LEFT JOIN " . LINK_CATEGORIES_TABLE . " AS cat ON f.link_catid = cat.cat_id - LEFT JOIN " . LINK_VOTES_TABLE . " AS r ON f.link_id = r.votes_link - LEFT JOIN " . USERS_TABLE . " AS u ON f.user_id = u.user_id - WHERE f.link_id = '" . $item_id . "' - GROUP BY f.link_id "; - break; - } - - if ( !( $result = $db->sql_query( $sql ) ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldnt Query link info', '', __LINE__, __FILE__, $sql ); - } - - // =================================================== - // file doesn't exist' - // =================================================== - if ( !$item_data = $db->sql_fetchrow( $result ) ) - { - mx_message_die( GENERAL_MESSAGE, $this->langs['Item_not_exist'] ); - } - - $db->sql_freeresult( $result ); - */ - unset($this->data); --- 309,312 ---- Index: mx_news_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/includes/mx_news_constants.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mx_news_constants.php 17 Feb 2008 19:20:28 -0000 1.4 --- mx_news_constants.php 14 Mar 2008 20:42:38 -0000 1.5 *************** *** 25,29 **** define( 'PHPBB_URL', PORTAL_URL ); - //$kb_config['news_operate_mode'] = false; $mx_table_prefix = $table_prefix; $is_block = false; --- 25,28 ---- *************** *** 62,65 **** --- 61,65 ---- $mx_page->add_copyright( 'mxBB News Module' ); + $mx_page->add_css_file( ); } ?> \ No newline at end of file Index: functions_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/includes/functions_comment.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_comment.php 17 Feb 2008 19:30:36 -0000 1.2 --- functions_comment.php 14 Mar 2008 20:42:38 -0000 1.3 *************** *** 35,53 **** } - /* - if (!is_array($item_data) && !empty($item_data)) - { - $sql = 'SELECT * - FROM ' . LINKS_TABLE . " - WHERE link_id = $item_data"; - - if ( !( $result = $db->sql_query( $sql ) ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldn\'t get file info', '', __LINE__, __FILE__, $sql ); - } - - $item_data = $db->sql_fetchrow( $result ); - } - */ $item_data['link_catid'] = $mx_news->modules[$mx_news->module_name]->block_id; $item_data['link_id'] = $mx_news->modules[$mx_news->module_name]->block_id; --- 35,38 ---- Index: functions_mx_news.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/includes/functions_mx_news.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_mx_news.php 13 Mar 2008 20:19:58 -0000 1.2 --- functions_mx_news.php 14 Mar 2008 20:42:38 -0000 1.3 *************** *** 48,52 **** $this->block_id = $mx_news_functions->generate_virtualId($mx_block->block_id); - //$this->block_id = $mx_block->block_id; // --- 48,51 ---- *************** *** 208,235 **** global $mx_root_path, $module_root_path, $phpbb_root_path, $is_block, $phpEx, $mx_request_vars; - // - // Ensure we have article_data defined - // - /* - if (!is_array($link_data) && !empty($item_id) && $item_id > 0) - { - $sql = "SELECT * - FROM " . LINKS_TABLE . " - WHERE link_id = '" . $item_id . "'"; - - if ( !( $result = $db->sql_query( $sql ) ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldnt select link', '', __LINE__, __FILE__, $sql ); - } - - if ( !$link_data = $db->sql_fetchrow( $result ) ) - { - mx_message_die( GENERAL_MESSAGE, $lang['Link_not_exsist'] ); - } - - $db->sql_freeresult( $result ); - } - */ - $link_data['link_catid'] = $this->block_id; --- 207,210 ---- *************** *** 311,340 **** } } - - if ( !$this->comments[$link_data['link_catid']]['internal_comments'] ) - { - /* - - // - // Update the item data itself - // - if ($file_data['topic_id'] == 0 ) - { - // - // Update item with new topic_id - // - $sql = "UPDATE " . LINKS_TABLE . " - SET topic_id = '" . $return_data['topic_id'] . "' - WHERE link_id = ". $item_id; - - if ( !( $result = $db->sql_query( $sql ) ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldnt update item', '', __LINE__, __FILE__, $sql ); - } - - $db->sql_freeresult( $result ); - } - */ - } } --- 286,289 ---- *************** *** 367,388 **** foreach($fileIdsArray as $fileId) { - /* - $sql = "SELECT link_catid - FROM " . LINKS_TABLE . " - WHERE link_id = '" . $fileId . "'"; - - if ( !$result = $db->sql_query( $sql ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldn\'t get link info', '', __LINE__, __FILE__, $sql ); - } - - $row = $db->sql_fetchrow( $result ); - $catId = $row['link_catid']; - */ - // // Notification // - //if ( $this->notification[$catId]['activated'] > 0 ) // -1, 0, 1, 2 if ( $this->notification[$block_id]['activated'] > 0 ) // -1, 0, 1, 2 { --- 316,322 ---- Index: functions_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/includes/functions_admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** functions_admin.php 8 Feb 2008 21:58:20 -0000 1.1 --- functions_admin.php 14 Mar 2008 20:42:38 -0000 1.2 *************** *** 93,97 **** return $forumlist; } - } ?> \ No newline at end of file --- 93,96 ---- |
|
From: Jon O. <jon...@us...> - 2008-03-14 20:42:43
|
Update of /cvsroot/mxbb/mx_news/mx_news/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2452/admin Modified Files: admin_setting.php Log Message: Now virtual page compatible Lots of code cleanup Index: admin_setting.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/admin/admin_setting.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** admin_setting.php 8 Feb 2008 21:58:20 -0000 1.1 --- admin_setting.php 14 Mar 2008 20:42:37 -0000 1.2 *************** *** 66,130 **** // - // Appearance - // - /* - $pagination = $new['pagination']; - - $sort_method_options = array(); - $sort_method_options = array( "link_name", "link_time", "link_hits" ); - - $sort_method_list = '<select name="sort_method">'; - for( $j = 0; $j < count( $sort_method_options ); $j++ ) - { - if ( $new['sort_method'] == $sort_method_options[$j] ) - { - $status = "selected"; - } - else - { - $status = ''; - } - $sort_method_list .= '<option value="' . $sort_method_options[$j] . '" ' . $status . '>' . $sort_method_options[$j] . '</option>'; - } - $sort_method_list .= '</select>'; - - $sort_order_options = array(); - $sort_order_options = array( "DESC", "ASC" ); - - $sort_order_list = '<select name="sort_order">'; - - for( $j = 0; $j < count( $sort_order_options ); $j++ ) - { - if ( $new['sort_order'] == $sort_order_options[$j] ) - { - $status = "selected"; - } - else - { - $status = ''; - } - $sort_order_list .= '<option value="' . $sort_order_options[$j] . '" ' . $status . '>' . $sort_order_options[$j] . '</option>'; - } - $sort_order_list .= '</select>'; - - $settings_newdays = $new['settings_newdays']; - $cat_col = $new['cat_col']; - - $use_simple_navigation_yes = ( $new['use_simple_navigation'] ) ? "checked=\"checked\"" : ""; - $use_simple_navigation_no = ( !$new['use_simple_navigation'] ) ? "checked=\"checked\"" : ""; - */ - - // - // Instructions - // - /* - $pretext_show = ( $new['show_pretext'] ) ? "checked=\"checked\"" : ""; - $pretext_hide = ( !$new['show_pretext'] ) ? "checked=\"checked\"" : ""; - - $pt_header = $new['pt_header']; - $pt_body = $new['pt_body']; - */ - - // // Comments (default settings) // --- 66,69 ---- *************** *** 203,220 **** // - // Ratings (default settings) - // - /* - $use_ratings_yes = ( $new['use_ratings'] ) ? "checked=\"checked\"" : ""; - $use_ratings_no = ( !$new['use_ratings'] ) ? "checked=\"checked\"" : ""; - - $votes_check_ip_yes = ( $new['votes_check_ip'] ) ? "checked=\"checked\"" : ""; - $votes_check_ip_no = ( !$new['votes_check_ip'] ) ? "checked=\"checked\"" : ""; - - $votes_check_userid_yes = ( $new['votes_check_userid'] ) ? "checked=\"checked\"" : ""; - $votes_check_userid_no = ( !$new['votes_check_userid'] ) ? "checked=\"checked\"" : ""; - */ - - // // Notifications // --- 142,145 ---- *************** *** 255,322 **** 'WYSIWYG_PATH' => $wysiwyg_path, - 'L_SITE_LOGO' => $lang['site_logo'], - 'SITE_LOGO' => $new['site_logo'], - - 'L_SITE_URL' => $lang['site_url'], - 'SITE_URL' => $new['site_url'], - - 'L_LOCK_SUBMIT_SITE' => $lang['lock_submit_site'], - 'LOCK_SUBMIT_SITE_YES' => ( $new['lock_submit_site'] ) ? "checked=\"checked\"" : "", - 'LOCK_SUBMIT_SITE_NO' => ( !$new['lock_submit_site'] ) ? "checked=\"checked\"" : "", - - 'L_DISPLAY_INTERVAL' => $lang['interval'], - 'INTERVAL' => $new['display_interval'], - - - // - // Link - // - 'L_WIDTH' => $lang['width'], - 'WIDTH' => $new['width'], - - 'L_HEIGHT' => $lang['height'], - 'HEIGHT' => $new['height'], - - 'SPLIT_LINKS_YES' => ( $new['split_links'] ) ? "checked=\"checked\"" : "", - 'SPLIT_LINKS_NO' => ( !$new['split_links'] ) ? "checked=\"checked\"" : "", - 'L_SPLIT_LINKS' => $lang['split_links'], - - 'L_ALLOW_NO_LOGO' => $lang['allow_no_logo'], - 'ALLOW_NO_LOGO_YES' => ( $new['allow_no_logo'] ) ? "checked=\"checked\"" : "", - 'ALLOW_NO_LOGO_NO' => ( !$new['allow_no_logo'] ) ? "checked=\"checked\"" : "", - - 'L_DISPLAY_LINKS_LOGO' => $lang['Link_display_links_logo'], - 'DISLAY_LINKS_LOGO_YES' => ( $new['display_links_logo'] ) ? "checked=\"checked\"" : "", - 'DISLAY_LINKS_LOGO_NO' => ( !$new['display_links_logo'] ) ? "checked=\"checked\"" : "", - - // - // Appearance - // - 'L_APPEARANCE_TITLE' => $lang['Appearance_title'], - - 'L_PAGINATION' => $lang['File_pagination'], - 'L_PAGINATION_EXPLAIN' => $lang['File_pagination_explain'], - 'PAGINATION' => $pagination, - - 'L_SORT_METHOD' => $lang['Sort_method'], - 'L_SORT_METHOD_EXPLAIN' => $lang['Sort_method_explain'], - 'SORT_METHOD' => $sort_method_list, - - 'L_SORT_ORDER' => $lang['Sort_order'], - 'L_SORT_ORDER_EXPLAIN' => $lang['Sort_order_explain'], - 'SORT_ORDER' => $sort_order_list, - - 'CAT_COL' => $cat_col, - 'L_CAT_COL' => $lang['Cat_col'], - - 'S_USE_SIMPLE_NAVIGATION_YES' => $use_simple_navigation_yes, - 'S_USE_SIMPLE_NAVIGATION_NO' => $use_simple_navigation_no, - 'L_USE_SIMPLE_NAVIGATION' => $lang['Use_simple_navigation'], - 'L_USE_SIMPLE_NAVIGATION_EXPLAIN' => $lang['Use_simple_navigation_explain'], - - 'L_NFDAYS' => $lang['Nfdays'], - 'L_NFDAYSINFO' => $lang['Nfdaysinfo'], - 'SETTINGS_NEWDAYS' => $settings_newdays, - // // Comments --- 180,183 ---- *************** *** 420,460 **** // - // Ratings - // - 'L_RATINGS_TITLE' => $lang['Ratings_title'], - 'L_RATINGS_TITLE_EXPLAIN' => $lang['Ratings_title_explain'], - - 'L_USE_RATINGS' => $lang['Use_ratings'], - 'L_USE_RATINGS_EXPLAIN' => $lang['Use_ratings_explain'], - 'S_USE_RATINGS_YES' => $use_ratings_yes, - 'S_USE_RATINGS_NO' => $use_ratings_no, - - 'L_VOTES_CHECK_IP' => $lang['Votes_check_ip'], - 'L_VOTES_CHECK_IP_EXPLAIN' => $lang['Votes_check_ip_explain'], - 'S_VOTES_CHECK_IP_YES' => $votes_check_ip_yes, - 'S_VOTES_CHECK_IP_NO' => $votes_check_ip_no, - - 'L_VOTES_CHECK_USERID' => $lang['Votes_check_userid'], - 'L_VOTES_CHECK_USERID_EXPLAIN' => $lang['Votes_check_userid_explain'], - 'S_VOTES_CHECK_USERID_YES' => $votes_check_userid_yes, - 'S_VOTES_CHECK_USERID_NO' => $votes_check_userid_no, - - // - // Instructions - // - 'L_INSTRUCTIONS_TITLE' => $lang['Instructions_title'], - - 'L_SHOW' => $lang['Show'], - 'L_HIDE' => $lang['Hide'], - 'L_PRE_TEXT_NAME' => $lang['Pre_text_name'], - 'L_PRE_TEXT_HEADER' => $lang['Pre_text_header'], - 'L_PRE_TEXT_BODY' => $lang['Pre_text_body'], - 'L_PRE_TEXT_EXPLAIN' => $lang['Pre_text_explain'], - 'S_SHOW_PRETEXT' => $pretext_show, - 'S_HIDE_PRETEXT' => $pretext_hide, - 'L_PT_HEADER' => $pt_header, - 'L_PT_BODY' => $pt_body, - - // // Notifications // --- 281,284 ---- |
|
From: Jon O. <jon...@us...> - 2008-03-14 20:42:43
|
Update of /cvsroot/mxbb/mx_news/mx_news/modules In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2452/modules Modified Files: mx_news_main.php mx_news_post_comment.php Log Message: Now virtual page compatible Lots of code cleanup Index: mx_news_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/modules/mx_news_post_comment.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mx_news_post_comment.php 16 Feb 2008 00:14:04 -0000 1.3 --- mx_news_post_comment.php 14 Mar 2008 20:42:38 -0000 1.4 *************** *** 42,58 **** $cid = $mx_request_vars->request('cid', MX_TYPE_INT, 0); - /* - if ( $mx_request_vars->is_request('item_id') && $mx_request_vars->is_request('cat_id') ) - { - $item_id = $mx_request_vars->request('item_id', MX_TYPE_INT, 0); - $cat_id = $mx_request_vars->request('cat_id', MX_TYPE_INT, 0); - } - else - { - mx_message_die( GENERAL_MESSAGE, $lang['Link_not_exist'] ); - } - */ - $item_id = $this->block_id; $delete = $mx_request_vars->request('delete', MX_TYPE_NO_TAGS, ''); --- 42,47 ---- $cid = $mx_request_vars->request('cid', MX_TYPE_INT, 0); $item_id = $this->block_id; + $virtual_id = $mx_request_vars->request('virtual', MX_TYPE_INT, 0); $delete = $mx_request_vars->request('delete', MX_TYPE_NO_TAGS, ''); *************** *** 60,81 **** $preview = $mx_request_vars->is_request('preview'); - /* - $sql = "SELECT * - FROM " . LINKS_TABLE . " - WHERE link_id = '" . $item_id . "'"; - - if ( !( $result = $db->sql_query( $sql ) ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldnt select download', '', __LINE__, __FILE__, $sql ); - } - - if ( !$link_data = $db->sql_fetchrow( $result ) ) - { - mx_message_die( GENERAL_MESSAGE, $lang['Link_not_exsist'] ); - } - - $db->sql_freeresult( $result ); - */ - $item_data = array(); $item_data['link_catid'] = $item_id; --- 49,52 ---- *************** *** 213,229 **** if ( $delete == 'do' ) { - /* - $sql = 'SELECT * - FROM ' . LINKS_TABLE . " - WHERE link_id = $item_id"; - - if ( !( $result = $db->sql_query( $sql ) ) ) - { - mx_message_die( GENERAL_ERROR, 'Couldn\'t get article info', '', __LINE__, __FILE__, $sql ); - } - $link_info = $db->sql_fetchrow( $result ); - */ - - //if ( ( $this->auth_user[$link_info['link_catid']]['auth_delete_comment'] && $link_info['article_author_id'] == $userdata['user_id'] ) || $this->auth_user[$link_info['link_catid']]['auth_mod'] ) if ( $mx_block->auth_edit || $mx_block->auth_mod ) // Maybe too nice... { --- 184,187 ---- *************** *** 270,274 **** $this->update_add_comment_notify($this->block_id, $news_post_mode); ! $message = $lang['Comment_posted'] . '<br /><br />' . sprintf( $lang['Click_return'], '<a href="' . mx_append_sid( $this->this_mxurl( 'mode=main&k=' . $item_id ) ) . '">', '</a>' ); mx_message_die( GENERAL_MESSAGE, $message ); } --- 228,232 ---- $this->update_add_comment_notify($this->block_id, $news_post_mode); ! $message = $lang['Comment_posted'] . '<br /><br />' . sprintf( $lang['Click_return'], '<a href="' . mx_append_sid( $this->this_mxurl( 'mode=main&k=' . $item_id . '&virtual=' . $virtual_id) ) . '">', '</a>' ); mx_message_die( GENERAL_MESSAGE, $message ); } *************** *** 325,328 **** --- 283,287 ---- { $hidden_form_fields = '<input type="hidden" name="action" value="post_news"> + <input type="hidden" name="virtual" value="' . $virtual_id . '"> <input type="hidden" name="item_id" value="' . $item_id . '"> <input type="hidden" name="cid" value="' . $mx_request_vars->request('cid', MX_TYPE_INT, '') . '"> *************** *** 338,341 **** --- 297,301 ---- $hidden_form_fields = '<input type="hidden" name="action" value="post_news"> + <input type="hidden" name="virtual" value="' . $virtual_id . '"> <input type="hidden" name="item_id" value="' . $item_id . '"> <input type="hidden" name="comment" value="post">'; Index: mx_news_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/mx_news/modules/mx_news_main.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mx_news_main.php 15 Feb 2008 22:29:30 -0000 1.2 --- mx_news_main.php 14 Mar 2008 20:42:38 -0000 1.3 *************** *** 35,39 **** // ======================================================= $start = $mx_request_vars->get('start', MX_TYPE_INT, 0); - //$link_id = $mx_request_vars->request('link_id', MX_TYPE_INT, ''); $block_id = $this->block_id; $page_num = $mx_request_vars->request('page_num', MX_TYPE_INT, 1) - 1; --- 35,38 ---- *************** *** 47,52 **** // Comments // - //if ( $this->auth_user[$link_data['link_catid']]['auth_view_comment']) - //{ $comments_type = $this->comments[$block_id]['internal_comments'] ? 'internal' : 'phpbb'; --- 46,49 ---- *************** *** 58,62 **** $mx_news_comments->init( $mx_news_data, $comments_type ); $mx_news_comments->display_comments(); - //} // --- 55,58 ---- |
|
From: Jon O. <jon...@us...> - 2008-03-14 20:42:18
|
Update of /cvsroot/mxbb/mx_news/language/lang_swedish In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2290/lang_swedish Modified Files: lang_admin.php lang_main.php Log Message: Now virtual page compatible Lots of code cleanup Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/language/lang_swedish/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_main.php 13 Feb 2008 21:20:02 -0000 1.1 --- lang_main.php 14 Mar 2008 20:42:14 -0000 1.2 *************** *** 12,17 **** // Main // ! $lang['mx_news_title'] = 'Nyheter'; ! $lang['mx_news_disable'] = 'Länkdatabasen är inaktiverad.'; // --- 12,17 ---- // Main // ! $lang['mx_news_title'] = 'Nyheter/Kommentarer'; ! $lang['mx_news_disable'] = 'Nyhet-/kommentarmodulen är inaktiverad.'; // *************** *** 39,55 **** // Comments // ! $lang['mx_news_comment_prefix'] = '[ Nyheter ] '; ! $lang['Comments'] = 'Nyheter'; ! $lang['Comments_title'] = 'Nyhetstitel'; ! $lang['Comment_subject'] = 'Nyhetsämne'; ! $lang['Comment'] = 'Nyhet'; ! $lang['Comment_explain'] = 'Använd textrutan och skriv din nyhet!'; ! $lang['Comment_add'] = 'Lägg till nyhet'; $lang['Comment_edit'] = 'Redigera'; $lang['Comment_delete'] = 'Ta bort'; ! $lang['Comment_posted'] = 'Nyheten skickades...'; ! $lang['Comment_deleted'] = 'Nyheten togs bort...'; $lang['Comment_desc'] = 'Titel'; ! $lang['No_comments'] = 'Det finns inga nyheter'; $lang['Links_are_ON'] = 'Länkar är <u>PÅ</u>'; $lang['Links_are_OFF'] = 'Länkar är <u>AV</u>'; --- 39,55 ---- // Comments // ! $lang['mx_news_comment_prefix'] = '[ Nyheter/kommentarer ] '; ! $lang['Comments'] = 'Nyheter/kommentarer'; ! $lang['Comments_title'] = 'Titel'; ! $lang['Comment_subject'] = 'Ämne'; ! $lang['Comment'] = 'Nyheter/kommentarer'; ! $lang['Comment_explain'] = 'Använd textrutan och skriv din kommentar!'; ! $lang['Comment_add'] = 'Lägg till'; $lang['Comment_edit'] = 'Redigera'; $lang['Comment_delete'] = 'Ta bort'; ! $lang['Comment_posted'] = 'Kommentaren skickades...'; ! $lang['Comment_deleted'] = 'Kommentaren togs bort...'; $lang['Comment_desc'] = 'Titel'; ! $lang['No_comments'] = 'Det finns inga kommentarer.'; $lang['Links_are_ON'] = 'Länkar är <u>PÅ</u>'; $lang['Links_are_OFF'] = 'Länkar är <u>AV</u>'; *************** *** 67,83 **** // Notification // ! $lang['mx_news_prefix'] = '[ Nyhet ]'; ! $lang['mx_news_notify_subject_new'] = 'Ny nyhet!'; ! $lang['mx_news_notify_subject_edited'] = 'Ändrad nyhet!'; ! $lang['mx_news_notify_subject_approved'] = 'Godkänd nyhet!'; ! $lang['mx_news_notify_subject_unapproved'] = 'Underkänd nyhet!'; ! $lang['mx_news_notify_subject_deleted'] = 'Borttagen nyhet!'; ! $lang['mx_news_notify_new_body'] = 'En ny nyhet är skriven.'; ! $lang['mx_news_notify_edited_body'] = 'En nyhet har ändrats.'; ! $lang['mx_news_notify_approved_body'] = 'En nyhet godkändes.'; ! $lang['mx_news_notify_unapproved_body'] = 'En nyhet underkändes.'; ! $lang['mx_news_notify_deleted_body'] = 'En nyhet togs bort.'; ! $lang['Edited_Link_info'] = 'Nyheten uppdaterades av '; $lang['Read_full_link'] = '>>Besök sidan'; --- 67,83 ---- // Notification // ! $lang['mx_news_prefix'] = '[ Nyhet/kommentar ]'; ! $lang['mx_news_notify_subject_new'] = 'Ny!'; ! $lang['mx_news_notify_subject_edited'] = 'Ändrad!'; ! $lang['mx_news_notify_subject_approved'] = 'Godkänd!'; ! $lang['mx_news_notify_subject_unapproved'] = 'Underkänd!'; ! $lang['mx_news_notify_subject_deleted'] = 'Borttagen!'; ! $lang['mx_news_notify_new_body'] = 'En ny nyhet/kommentar är skriven.'; ! $lang['mx_news_notify_edited_body'] = 'En nyhet/kommentar har ändrats.'; ! $lang['mx_news_notify_approved_body'] = 'En nyhet/kommentar godkändes.'; ! $lang['mx_news_notify_unapproved_body'] = 'En nyhet/kommentar underkändes.'; ! $lang['mx_news_notify_deleted_body'] = 'En nyhet/kommentar togs bort.'; ! $lang['Edited_Link_info'] = 'Nyheten/kommentaren uppdaterades av '; $lang['Read_full_link'] = '>>Besök sidan'; Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/language/lang_swedish/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 13 Mar 2008 19:15:54 -0000 1.2 --- lang_admin.php 14 Mar 2008 20:42:14 -0000 1.3 *************** *** 12,16 **** // adminCP index // ! $lang['mxNews_title'] = 'News Admin'; $lang['0_Configuration'] = 'Inställningar'; --- 12,16 ---- // adminCP index // ! $lang['mxNews_title'] = 'Nyheter/Kommentarer Admin'; $lang['0_Configuration'] = 'Inställningar'; *************** *** 22,26 **** $lang['Settings_changed'] = 'Dina inställningar sparades'; ! $lang['Click_return_news_config'] = 'Klicka %shär%s för att återgå till nyhetsinställningarna'; // --- 22,26 ---- $lang['Settings_changed'] = 'Dina inställningar sparades'; ! $lang['Click_return_news_config'] = 'Klicka %shär%s för att återgå till inställningarna'; // *************** *** 29,34 **** $lang['General_title'] = 'Allmänt'; ! $lang['Module_name'] = 'Databasens namn'; ! $lang['Module_name_explain'] = 'Detta är namnet på din nerladdningsdatabas, t ex \'Min databas\''; $lang['Enable_module'] = 'Aktivera modulen'; --- 29,34 ---- $lang['General_title'] = 'Allmänt'; ! $lang['Module_name'] = 'Modulens namn'; ! $lang['Module_name_explain'] = 'Detta är namnet på din modul'; $lang['Enable_module'] = 'Aktivera modulen'; *************** *** 41,64 **** // Comments // ! $lang['Comments_title'] = 'Kommentarer'; ! $lang['Comments_title_explain'] = 'Vissa kommentarinställningar är defaultvärden, och kan ändras per kategori'; ! $lang['Internal_comments'] = 'Interna eller phpBB kommentarer'; ! $lang['Internal_comments_explain'] = 'Använd interna eller phpBB kommentarer'; ! $lang['Select_topic_id'] = 'Välj phpBB kommentarforum!'; ! $lang['Internal_comments_phpBB'] = 'phpBB kommentarer'; ! $lang['Internal_comments_internal'] = 'Interna kommentarer'; $lang['Forum_id'] = 'phpBB Forum ID'; $lang['Forum_id_explain'] = 'Om phpBB kommentarer används är detta det forum där kommentarerna samlas'; - //$lang['Autogenerate_comments'] = 'Skapa autokommentarer'; - //$lang['Autogenerate_comments_explain'] = 'När en länk ändras/skrivs, görs ett inlägg i kommentarforumet automatiskt.'; - - //$lang['Del_topic'] = 'Ta bort forumkommentarer'; - //$lang['Del_topic_explain'] = 'När en länk tas bort, skall även associerade forumkommentarer tas bort?'; - $lang['Comments_pag'] = 'Kommentarer och sidbrytning'; $lang['Comments_pag_explain'] = 'Antal kommentarer att visa innan sidbrytning.'; --- 41,58 ---- // Comments // ! $lang['Comments_title'] = 'Nyheter och Kommentarer'; ! $lang['Comments_title_explain'] = 'Vissa inställningar är grundinställningar.'; ! $lang['Internal_comments'] = 'DB: Intern eller phpBB'; ! $lang['Internal_comments_explain'] = 'Använd interna eller phpBB-nyheter/kommentarer'; ! $lang['Select_topic_id'] = 'Välj phpBB forum!'; ! $lang['Internal_comments_phpBB'] = 'phpBB-nyheter/kommentarer'; ! $lang['Internal_comments_internal'] = 'Interna nyheter/kommentarer'; $lang['Forum_id'] = 'phpBB Forum ID'; $lang['Forum_id_explain'] = 'Om phpBB kommentarer används är detta det forum där kommentarerna samlas'; $lang['Comments_pag'] = 'Kommentarer och sidbrytning'; $lang['Comments_pag_explain'] = 'Antal kommentarer att visa innan sidbrytning.'; *************** *** 99,103 **** $lang['Notify'] = 'Informera admin via: '; ! $lang['Notify_explain'] = 'Bestäm på vilket sätt admin skall bli informerad om nya/redigerade artiklar'; $lang['PM'] = 'PM'; --- 93,97 ---- $lang['Notify'] = 'Informera admin via: '; ! $lang['Notify_explain'] = 'Bestäm på vilket sätt admin skall bli informerad om nya/redigerade nyheter/kommentarer'; $lang['PM'] = 'PM'; |
|
From: Jon O. <jon...@us...> - 2008-03-14 20:42:18
|
Update of /cvsroot/mxbb/mx_news/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2290/lang_english Modified Files: lang_admin.php lang_main.php Log Message: Now virtual page compatible Lots of code cleanup Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/language/lang_english/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_main.php 8 Feb 2008 21:57:56 -0000 1.1 --- lang_main.php 14 Mar 2008 20:42:13 -0000 1.2 *************** *** 12,17 **** // Main // ! $lang['mx_news_title'] = 'mxNews'; ! $lang['mx_news_disable'] = 'mxNews is disabled.'; // --- 12,17 ---- // Main // ! $lang['mx_news_title'] = 'mxNews/Comments'; ! $lang['mx_news_disable'] = 'mxNews/Comments is disabled.'; // *************** *** 39,55 **** // Comments // ! $lang['mx_news_comment_prefix'] = '[ mxNews ] '; ! $lang['Comments'] = 'News'; ! $lang['Comments_title'] = 'News Title'; ! $lang['Comment_subject'] = 'News Subject'; ! $lang['Comment'] = 'News'; $lang['Comment_explain'] = 'Use the textbox above to give your opinion on this news!'; ! $lang['Comment_add'] = 'Add News'; $lang['Comment_edit'] = 'Edit'; $lang['Comment_delete'] = 'Delete'; ! $lang['Comment_posted'] = 'Your news has been entered successfully'; ! $lang['Comment_deleted'] = 'The news you selected has been deleted successfully'; $lang['Comment_desc'] = 'Title'; ! $lang['No_comments'] = 'No News available'; $lang['Links_are_ON'] = 'Links are <u>ENABLED</u>'; $lang['Links_are_OFF'] = 'Links are <u>DISABLED</u>'; --- 39,55 ---- // Comments // ! $lang['mx_news_comment_prefix'] = '[ News/Comments ] '; ! $lang['Comments'] = 'Comments'; ! $lang['Comments_title'] = 'Title'; ! $lang['Comment_subject'] = 'Subject'; ! $lang['Comment'] = 'Comment'; $lang['Comment_explain'] = 'Use the textbox above to give your opinion on this news!'; ! $lang['Comment_add'] = 'Add New'; $lang['Comment_edit'] = 'Edit'; $lang['Comment_delete'] = 'Delete'; ! $lang['Comment_posted'] = 'Your comment has been entered successfully'; ! $lang['Comment_deleted'] = 'The comment you selected has been deleted successfully'; $lang['Comment_desc'] = 'Title'; ! $lang['No_comments'] = 'No News/Comments available'; $lang['Links_are_ON'] = 'Links are <u>ENABLED</u>'; $lang['Links_are_OFF'] = 'Links are <u>DISABLED</u>'; *************** *** 67,83 **** // Notification // ! $lang['mx_news_prefix'] = '[ News ]'; ! $lang['mx_news_notify_subject_new'] = 'New News!'; ! $lang['mx_news_notify_subject_edited'] = 'Edited News!'; ! $lang['mx_news_notify_subject_approved'] = 'Approved News!'; ! $lang['mx_news_notify_subject_unapproved'] = 'Unapproved News!'; ! $lang['mx_news_notify_subject_deleted'] = 'Deleted News!'; ! $lang['mx_news_notify_new_body'] = 'A new News has been submitted.'; ! $lang['mx_news_notify_edited_body'] = 'A News has been modified.'; ! $lang['mx_news_notify_approved_body'] = 'A News has been approved.'; ! $lang['mx_news_notify_unapproved_body'] = 'A News has been unapproved.'; ! $lang['mx_news_notify_deleted_body'] = 'A News has been deleted.'; ! $lang['Edited_Link_info'] = 'News updated by '; $lang['Read_full_link'] = '>> Visist Site'; --- 67,83 ---- // Notification // ! $lang['mx_news_prefix'] = '[ News/Comments ]'; ! $lang['mx_news_notify_subject_new'] = 'New!'; ! $lang['mx_news_notify_subject_edited'] = 'Edited!'; ! $lang['mx_news_notify_subject_approved'] = 'Approved!'; ! $lang['mx_news_notify_subject_unapproved'] = 'Unapproved!'; ! $lang['mx_news_notify_subject_deleted'] = 'Deleted!'; ! $lang['mx_news_notify_new_body'] = 'A new News/Comment has been submitted.'; ! $lang['mx_news_notify_edited_body'] = 'A News/Comment has been modified.'; ! $lang['mx_news_notify_approved_body'] = 'A News/Comment has been approved.'; ! $lang['mx_news_notify_unapproved_body'] = 'A News/Comment has been unapproved.'; ! $lang['mx_news_notify_deleted_body'] = 'A News/Comment has been deleted.'; ! $lang['Edited_Link_info'] = 'News/Comment updated by '; $lang['Read_full_link'] = '>> Visist Site'; Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_news/language/lang_english/lang_admin.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lang_admin.php 13 Mar 2008 19:15:53 -0000 1.2 --- lang_admin.php 14 Mar 2008 20:42:13 -0000 1.3 *************** *** 12,16 **** // adminCP index // ! $lang['mxNews_title'] = 'News Admin'; $lang['0_Configuration'] = 'General Settings'; --- 12,16 ---- // adminCP index // ! $lang['mxNews_title'] = 'News/Comments Admin'; $lang['0_Configuration'] = 'General Settings'; *************** *** 18,40 **** // Configuration // ! $lang['Settingstitle'] ='News Config Control'; ! $lang['Settingsexplain'] = 'You can change the general settings of your news here'; $lang['Settings_changed'] = 'Your settings have been successfully updated'; ! $lang['Click_return_news_config'] = 'Click %sHere%s to return to the Link Config Manager'; // // Admin Panels - Configuration // ! $lang['Panel_config_title'] = 'Download Configuration'; ! $lang['Panel_config_explain'] = 'The form below will allow you to customize all the general download options.'; // // General // ! $lang['General_title'] = 'News Config Control'; ! $lang['Module_name'] = 'Database Name'; ! $lang['Module_name_explain'] = 'This is the name of the database, such as \'Download Index\''; $lang['Enable_module'] = 'Enable this module'; --- 18,40 ---- // Configuration // ! $lang['Settingstitle'] ='News/Comments Config Control'; ! $lang['Settingsexplain'] = 'You can change the general settings of your News/Comments here'; $lang['Settings_changed'] = 'Your settings have been successfully updated'; ! $lang['Click_return_news_config'] = 'Click %sHere%s to return to the Config Manager'; // // Admin Panels - Configuration // ! $lang['Panel_config_title'] = 'News/Comments Configuration'; ! $lang['Panel_config_explain'] = 'The form below will allow you to customize all the general News/Comments options.'; // // General // ! $lang['General_title'] = 'News/Comments Config Control'; ! $lang['Module_name'] = 'News/Comments'; ! $lang['Module_name_explain'] = 'This is the name of the module'; $lang['Enable_module'] = 'Enable this module'; *************** *** 47,71 **** // Comments // ! $lang['Comments_title'] = 'Comments'; ! $lang['Comments_title_explain'] = 'Some comments settings are default settings, and can be overridden per category'; ! $lang['Internal_comments'] = 'Internal or phpBB Comments'; ! $lang['Internal_comments_explain'] = 'Use internal comments, or phpBB comments'; ! $lang['Select_topic_id'] = 'Select phpBB Comments Topic!'; ! $lang['Internal_comments_phpBB'] = 'phpBB Comments'; ! $lang['Internal_comments_internal'] = 'Internal Comments'; $lang['Forum_id'] = 'phpBB Forum ID'; ! $lang['Forum_id_explain'] = 'If phpBB comments are used, this is the forum where the comments will be kept'; ! ! //$lang['Autogenerate_comments'] = 'Autogenerate comments when fil are managed'; ! //$lang['Autogenerate_comments_explain'] = 'When editing/adding a link, a notifying reply is posted in the link topic.'; ! ! //$lang['Del_topic'] = 'Delete Topic'; ! //$lang['Del_topic_explain'] = 'When you delete a link, do you want its comments topic to be deleted also?'; ! $lang['Comments_pag'] = 'Comments pagination'; $lang['Comments_pag_explain'] = 'The number of comments to show before pagination.'; --- 47,65 ---- // Comments // ! $lang['Comments_title'] = 'News and Comments'; ! $lang['Comments_title_explain'] = 'Some settings are default settings.'; ! $lang['Internal_comments'] = 'Internal or phpBB Backend'; ! $lang['Internal_comments_explain'] = 'Use internal News/Comments, or phpBB News/Comments'; ! $lang['Select_topic_id'] = 'Select phpBB Topic!'; ! $lang['Internal_comments_phpBB'] = 'phpBB News/Comments'; ! $lang['Internal_comments_internal'] = 'Internal News/Comments'; $lang['Forum_id'] = 'phpBB Forum ID'; ! $lang['Forum_id_explain'] = 'If phpBB News/Comments are used, this is the forum where the News/Comments will be kept'; ! $lang['Comments_pag'] = 'News/Comments pagination'; $lang['Comments_pag_explain'] = 'The number of comments to show before pagination.'; *************** *** 94,98 **** $lang['Format_truncate_links'] = 'Truncate Links'; ! $lang['Format_truncate_links_explain'] = 'Links are shortened, eg t ex \'www.mxbb-portal...\''; $lang['Format_image_resize'] = 'Image resize'; --- 88,92 ---- $lang['Format_truncate_links'] = 'Truncate Links'; ! $lang['Format_truncate_links_explain'] = 'Links are shortened, eg t ex \'www.myDomain...\''; $lang['Format_image_resize'] = 'Image resize'; *************** *** 105,109 **** $lang['Notify'] = 'Notify admin by'; ! $lang['Notify_explain'] = 'Choose which way to receive notices that news have been written'; $lang['PM'] = 'PM'; $lang['Notify_group'] = 'and groupmembers '; --- 99,103 ---- $lang['Notify'] = 'Notify admin by'; ! $lang['Notify_explain'] = 'Choose which way to receive notices that News/Comments have been written'; $lang['PM'] = 'PM'; $lang['Notify_group'] = 'and groupmembers '; |