You can subscribe to this list here.
2012 |
Jan
|
Feb
(214) |
Mar
(139) |
Apr
(198) |
May
(187) |
Jun
(151) |
Jul
(210) |
Aug
(169) |
Sep
(58) |
Oct
(53) |
Nov
(54) |
Dec
(301) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2013 |
Jan
(348) |
Feb
(178) |
Mar
(219) |
Apr
(154) |
May
(117) |
Jun
(194) |
Jul
(61) |
Aug
(132) |
Sep
(121) |
Oct
(110) |
Nov
(11) |
Dec
(18) |
2014 |
Jan
(34) |
Feb
(50) |
Mar
(82) |
Apr
(98) |
May
(39) |
Jun
(111) |
Jul
(67) |
Aug
(36) |
Sep
(33) |
Oct
(26) |
Nov
(53) |
Dec
(44) |
2015 |
Jan
(29) |
Feb
(47) |
Mar
(25) |
Apr
(19) |
May
(23) |
Jun
(20) |
Jul
(49) |
Aug
(7) |
Sep
(10) |
Oct
(10) |
Nov
(4) |
Dec
(25) |
2016 |
Jan
(8) |
Feb
(7) |
Mar
(1) |
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
(7) |
Dec
(5) |
2017 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
(15) |
Jun
|
Jul
(18) |
Aug
(24) |
Sep
|
Oct
(14) |
Nov
|
Dec
|
2018 |
Jan
|
Feb
(22) |
Mar
|
Apr
(11) |
May
(1) |
Jun
(17) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
(6) |
Nov
(5) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <dh...@us...> - 2012-07-07 21:37:44
|
Revision: 9802 http://xoops.svn.sourceforge.net/xoops/?rev=9802&view=rev Author: dhcst Date: 2012-07-07 21:37:36 +0000 (Sat, 07 Jul 2012) Log Message: ----------- add fix from black_beard Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/class/forum.php XoopsModules/newbb/branches/alfred/newbb/header.php XoopsModules/newbb/branches/alfred/newbb/index.php XoopsModules/newbb/branches/alfred/newbb/viewforum.php XoopsModules/newbb/branches/alfred/newbb/viewtopic.php Modified: XoopsModules/newbb/branches/alfred/newbb/class/forum.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/class/forum.php 2012-07-07 19:45:39 UTC (rev 9801) +++ XoopsModules/newbb/branches/alfred/newbb/class/forum.php 2012-07-07 21:37:36 UTC (rev 9802) @@ -274,7 +274,7 @@ ' FROM ' . $from . ' WHERE ' . $where . ' ORDER BY ' . $sortby; - + if (!$result = $this->db->query($sql, $xoopsModuleConfig['topics_per_page'], $start)) { redirect_header('index.php', 2, _MD_ERROROCCURED); exit(); Modified: XoopsModules/newbb/branches/alfred/newbb/header.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/header.php 2012-07-07 19:45:39 UTC (rev 9801) +++ XoopsModules/newbb/branches/alfred/newbb/header.php 2012-07-07 21:37:36 UTC (rev 9802) @@ -6,44 +6,48 @@ * @license http://www.fsf.org/copyleft/gpl.html GNU public license * @author Taiwen Jiang (phppp or D.J.) <ph...@us...> * @since 4.00 - * @version $Id $ + * @version $Id$ * @package module::newbb */ include_once '../../mainfile.php'; defined('XOOPS_ROOT_PATH') or die('Restricted access'); -if (!empty($xoopsModuleConfig['do_rewrite'])) include_once "seo_url.php"; -/* for seo */ -$toseo_url = array("index.php","viewforum.php","viewtopic.php","rss.php"); +$xoopsLogger->startTime('newBB_Header'); -if(((strpos(getenv('REQUEST_URI'), '.html') === false) && !empty($xoopsModuleConfig['do_rewrite']) && (!isset($_POST) || count($_POST) <= 0))) -{ - $redir = false; - if ( strpos(getenv("REQUEST_URI"),"mark_read=") == true || strpos(getenv("REQUEST_URI"),"mark=") == true) { - // Mark Forums - } else { - if ( in_array(basename(getenv('SCRIPT_NAME')),$toseo_url) ) { - //rewrite only for files +if (!empty($xoopsModuleConfig['do_rewrite'])) { + include_once "seo_url.php"; + /* for seo */ + $toseo_url = array("index.php","viewforum.php","viewtopic.php","rss.php"); - if ( trim(getenv("SCRIPT_NAME")) != '' ) { - if ( strpos(getenv("REQUEST_URI") , "/".SEO_MODULE_NAME."/") === false ) { - $redir = true; - } else if ( getenv("QUERY_STRING") ) { - $redir = true; - } - } + if(((strpos(getenv('REQUEST_URI'), '.html') === false) && !empty($xoopsModuleConfig['do_rewrite']) && (!isset($_POST) || count($_POST) <= 0))) + { + $redir = false; + if ( strpos(getenv("REQUEST_URI"),"mark_read=") == true || strpos(getenv("REQUEST_URI"),"mark=") == true) { + // Mark Forums + } else { + if ( in_array(basename(getenv('SCRIPT_NAME')),$toseo_url) ) { + //rewrite only for files + + if ( trim(getenv("SCRIPT_NAME")) != '' ) { + if ( strpos(getenv("REQUEST_URI") , "/".SEO_MODULE_NAME."/") === false ) { + $redir = true; + } else if ( getenv("QUERY_STRING") ) { + $redir = true; + } + } + } } - } - if ($redir == true) { - $s = "http://" . getenv('HTTP_HOST') . getenv("REQUEST_URI"); - $s = str_replace("/".REAL_MODULE_NAME."/","/".SEO_MODULE_NAME."/",$s); - $newurl = seo_urls('<a href="'.$s.'"></a>'); - $newurl = str_replace('<a href="','',$newurl); - $newurl = str_replace('"></a>','',$newurl); - if ( !headers_sent() ) { - header("HTTP/1.1 301 Moved Permanently"); - header("Location: $newurl"); - exit(); + if ($redir == true) { + $s = "http://" . getenv('HTTP_HOST') . getenv("REQUEST_URI"); + $s = str_replace("/".REAL_MODULE_NAME."/","/".SEO_MODULE_NAME."/",$s); + $newurl = seo_urls('<a href="'.$s.'"></a>'); + $newurl = str_replace('<a href="','',$newurl); + $newurl = str_replace('"></a>','',$newurl); + if ( !headers_sent() ) { + header("HTTP/1.1 301 Moved Permanently"); + header("Location: $newurl"); + exit(); + } } } } @@ -97,15 +101,15 @@ } $pollmodules = NULL; -$module_handler = &xoops_gethandler('module'); +//$module_handler = &xoops_gethandler('module'); $xoopspoll = &$module_handler->getByDirname('xoopspoll'); -if (is_object($xoopspoll) && $xoopspoll->getVar('isactive')) +if (is_object($xoopspoll) && $xoopspoll->getVar('isactive')) { $pollmodules = 'xoopspoll'; -else -{ +} else { //Umfrage $xoopspoll = &$module_handler->getByDirname('umfrage'); if (is_object($xoopspoll) && $xoopspoll->getVar('isactive')) $pollmodules = 'umfrage'; } +$xoopsLogger->stopTime('newBB_Header'); ?> \ No newline at end of file Modified: XoopsModules/newbb/branches/alfred/newbb/index.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/index.php 2012-07-07 19:45:39 UTC (rev 9801) +++ XoopsModules/newbb/branches/alfred/newbb/index.php 2012-07-07 21:37:36 UTC (rev 9802) @@ -24,7 +24,7 @@ } mod_loadFunctions("read", "newbb"); newbb_setRead_forum($markvalue); - $url = 'index.php'; + $url = XOOPS_URL . '/modules/newbb/index.php'; redirect_header($url, 2, _MD_ALL_FORUM_MARKED.' '.$markresult); } @@ -66,7 +66,6 @@ $xoopsTpl->assign('xoops_pagetitle', $xoops_pagetitle); $xoopsTpl->assign('xoops_module_header', $xoops_module_header); $xoopsTpl->assign('forum_index_title', $forum_index_title); - //if ($xoopsModuleConfig['wol_enabled']) { if (!empty($xoopsModuleConfig['wol_enabled'])) { $online_handler = xoops_getmodulehandler('online', 'newbb'); Modified: XoopsModules/newbb/branches/alfred/newbb/viewforum.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/viewforum.php 2012-07-07 19:45:39 UTC (rev 9801) +++ XoopsModules/newbb/branches/alfred/newbb/viewforum.php 2012-07-07 21:37:36 UTC (rev 9802) @@ -6,7 +6,7 @@ * @license http://www.fsf.org/copyleft/gpl.html GNU public license * @author Taiwen Jiang (phppp or D.J.) <ph...@us...> * @since 4.00 - * @version $Id $ + * @version $Id$ * @package module::newbb */ Modified: XoopsModules/newbb/branches/alfred/newbb/viewtopic.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/viewtopic.php 2012-07-07 19:45:39 UTC (rev 9801) +++ XoopsModules/newbb/branches/alfred/newbb/viewtopic.php 2012-07-07 21:37:36 UTC (rev 9802) @@ -28,11 +28,14 @@ // URL: http://xoopsforge.com, http://xoops.org.cn // // Project: Article Project // // ------------------------------------------------------------------------ // -include_once dirname(__FILE__) . "/header.php"; +include_once "header.php"; + mod_loadFunctions("read", "newbb"); mod_loadFunctions("render", "newbb"); // To enable image auto-resize by js -// $xoops_module_header .= '<script src="'.XOOPS_URL.'/Frameworks/textsanitizer/xoops.js" type="text/javascript"></script>'; +if (empty($xoopsModuleConfig['do_rewrite'])) { + $xoops_module_header .= '<script src="'.XOOPS_URL.'/Frameworks/textsanitizer/xoops.js" type="text/javascript"></script>'; +} /* * Build the page query @@ -107,8 +110,11 @@ exit(); } -$karma_handler = xoops_getmodulehandler('karma', 'newbb'); -$user_karma = $karma_handler->getUserKarma(); +if (!empty($xoopsModuleConfig['enable_karma'])) { + $karma_handler = xoops_getmodulehandler('karma', 'newbb'); + $user_karma = $karma_handler->getUserKarma(); +} + //$viewmode = "flat"; $total_posts = $topic_handler->getPostCount($topic_obj, $status); @@ -125,11 +131,10 @@ $xoops_module_header .= '<link rel="alternate" type="application/rss+xml" title="'.$xoopsModule->getVar('name').'-'.$forum_obj->getVar('forum_name').'" href="'.XOOPS_URL.'/modules/'.$xoopsModule->getVar('dirname').'/rss.php?f='.$forum_obj->getVar("forum_id").'" />'; } -$xoopsOption['xoops_module_header']= $xoops_module_header; +//$xoopsOption['xoops_module_header']= $xoops_module_header; include XOOPS_ROOT_PATH."/header.php"; $xoopsTpl->assign('xoops_module_header', $xoops_module_header); - if ($xoopsModuleConfig['wol_enabled']) { $online_handler =& xoops_getmodulehandler('online', 'newbb'); $online_handler->init($forum_obj, $topic_obj); @@ -196,7 +201,6 @@ $users = array(); } - $viewtopic_users = array(); if (count($userid_array) > 0) { require XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname", "n")."/class/user.php"; @@ -272,7 +276,6 @@ $xoopsTpl->assign('forum_page_nav', ''); } - if (empty($post_id)) { $first = array_keys ($postsArray); $post_id = (!empty($first[0])) ? $first[0] : 0; @@ -469,6 +472,7 @@ } } } + if ($topic_handler->getPermission($forum_obj, $topic_obj->getVar('topic_status'), "addpoll") && $pollmodul ) { if (!$topic_obj->getVar('topic_haspoll')) { @@ -660,6 +664,5 @@ if ($xoopsModuleConfig["do_tag"] && @include_once XOOPS_ROOT_PATH."/modules/tag/include/tagbar.php") { $xoopsTpl->assign('tagbar', tagBar($topic_obj->getVar("topic_tags", "n"))); } - include XOOPS_ROOT_PATH.'/footer.php'; ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-07-07 19:45:45
|
Revision: 9801 http://xoops.svn.sourceforge.net/xoops/?rev=9801&view=rev Author: beckmi Date: 2012-07-07 19:45:39 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Adding Bootstrip Tables styles Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/pm/templates/pm_viewpmsg.html Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/pm/templates/pm_viewpmsg.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/pm/templates/pm_viewpmsg.html 2012-07-07 19:08:10 UTC (rev 9800) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/pm/templates/pm_viewpmsg.html 2012-07-07 19:45:39 UTC (rev 9801) @@ -32,7 +32,7 @@ <{/if}> <form name="<{$pmform.name}>" id="<{$pmform.name}>" action="<{$pmform.action}>" method="<{$pmform.method}>" <{$pmform.extra}> > - <table cellspacing='1' cellpadding='4' class='outer bnone width100'> + <table class="table table-striped table-bordered table-condensed" cellspacing='1' cellpadding='4' class='outer bnone width100'> <tr class='txtcenter alignmiddle'> <th><input name='allbox' id='allbox' onclick='xoopsCheckAll("<{$pmform.name}>", "allbox");' type='checkbox' value='Check All' /></th> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2012-07-07 19:08:17
|
Revision: 9800 http://xoops.svn.sourceforge.net/xoops/?rev=9800&view=rev Author: mageg Date: 2012-07-07 19:08:10 +0000 (Sat, 07 Jul 2012) Log Message: ----------- error in installing the module banner Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/admin/banners.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/include/install.php Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/admin/banners.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/admin/banners.php 2012-07-07 19:07:20 UTC (rev 9799) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/admin/banners.php 2012-07-07 19:08:10 UTC (rev 9800) @@ -38,8 +38,6 @@ // Call header $xoops->header('banners_admin_banners.html'); -// Get Action type -$op = $system->cleanVars($_REQUEST, 'op', 'list', 'string'); // Get start pager $start = $system->cleanVars($_REQUEST, 'start', 0, 'int'); $startF = $system->cleanVars($_REQUEST, 'startF', 0, 'int'); Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/include/install.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/include/install.php 2012-07-07 19:07:20 UTC (rev 9799) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/include/install.php 2012-07-07 19:08:10 UTC (rev 9800) @@ -69,15 +69,15 @@ $xoops->db->queryF($sql); $sql = "DELETE FROM " . $xoops->db->prefix("config") . " WHERE `conf_name` = 'my_ip'"; $xoops->db->queryF($sql); - + // change 'imptotal' $sql = "ALTER TABLE " . $xoops->db->prefix("banner") . " CHANGE `imptotal` `imptotal` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'"; $xoops->db->queryF($sql); - + // move file // Get banners handler - $banner_Handler = $xoops->getHandlerBanner(); + $banner_Handler = $xoops->getModuleHandler('banner','banners'); $banner_arr = $banner_Handler->getall(); foreach (array_keys($banner_arr) as $i) { $namefile = substr_replace($banner_arr[$i]->getVar('imageurl'),'',0,strlen(XOOPS_URL . '/images/banners/')); @@ -91,13 +91,13 @@ $banner_Handler->insert($obj); } } + // data for table 'banner' - /*$sql = "DELETE FROM " . $xoops->db->prefix("config") . " WHERE `conf_name` = 'banners'";*/ - $dbm = new XoopsDatabaseManager(); - //$xoops->db->queryF($sql); - $dbm->insert("banner", " (bid, cid, imptotal, impmade, clicks, imageurl, clickurl, datestart, dateend, htmlbanner, htmlcode, status) VALUES (1, 1, 0, 1, 0, '" . XOOPS_URL . "/uploads/banners/xoops_flashbanner2.swf', 'http://www.xoops.org/', " . time() . ", 0, 0, '', 1)"); - $dbm->insert("banner", " (bid, cid, imptotal, impmade, clicks, imageurl, clickurl, datestart, dateend, htmlbanner, htmlcode, status) VALUES (2, 1, 0, 1, 0, '" . XOOPS_URL . "/uploads/banners/xoops_banner_2.gif', 'http://www.xoops.org/', " . time() . ", 0, 0, '', 1)"); - $dbm->insert("banner", " (bid, cid, imptotal, impmade, clicks, imageurl, clickurl, datestart, dateend, htmlbanner, htmlcode, status) VALUES (3, 1, 0, 1, 0, '" . XOOPS_URL . "/uploads/banners/banner.swf', 'http://www.xoops.org/', " . time() . ", 0, 0, '', 1)"); - + $sql = "INSERT INTO `" . $xoops->db->prefix("banner") . "` (`cid`, `imptotal`, `impmade`, `clicks`, `imageurl`, `clickurl`, `datestart`, `dateend`, `htmlbanner`, `htmlcode`, `status`) VALUES (1, 0, 1, 0, '" . XOOPS_URL . "/uploads/banners/xoops_flashbanner2.swf', 'http://www.xoops.org/', " . time() . ", 0, 0, '', 1)"; + $xoops->db->queryF($sql); + $sql = "INSERT INTO `" . $xoops->db->prefix("banner") . "` (`cid`, `imptotal`, `impmade`, `clicks`, `imageurl`, `clickurl`, `datestart`, `dateend`, `htmlbanner`, `htmlcode`, `status`) VALUES (1, 0, 1, 0, '" . XOOPS_URL . "/uploads/banners/xoops_banner_2.gif', 'http://www.xoops.org/', " . time() . ", 0, 0, '', 1)"; + $xoops->db->queryF($sql); + $sql = "INSERT INTO `" . $xoops->db->prefix("banner") . "` (`cid`, `imptotal`, `impmade`, `clicks`, `imageurl`, `clickurl`, `datestart`, `dateend`, `htmlbanner`, `htmlcode`, `status`) VALUES (1, 0, 1, 0, '" . XOOPS_URL . "/uploads/banners/banner.swf', 'http://www.xoops.org/', " . time() . ", 0, 0, '', 1)"; + $xoops->db->queryF($sql); return true; } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-07-07 19:07:28
|
Revision: 9799 http://xoops.svn.sourceforge.net/xoops/?rev=9799&view=rev Author: beckmi Date: 2012-07-07 19:07:20 +0000 (Sat, 07 Jul 2012) Log Message: ----------- fixing bug in Preferences (missing title) Modified Paths: -------------- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt 2012-07-07 17:50:40 UTC (rev 9798) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt 2012-07-07 19:07:20 UTC (rev 9799) @@ -5,4 +5,5 @@ modinfo.php: --------------------- -define('_MI_EXTCAL_EMAIL_MODE_DESC', 'Select Email Format that you want to use'); \ No newline at end of file +define('_MI_EXTCAL_EMAIL_MODE_DESC', 'Select Email Format that you want to use'); +define('_MI_EXTCAL_SHOW_OTHEROPTIONS', 'Other Options'); \ No newline at end of file Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php 2012-07-07 17:50:40 UTC (rev 9798) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php 2012-07-07 19:07:20 UTC (rev 9799) @@ -154,4 +154,6 @@ define('_MI_EXTCAL_DAY_THURSDAY', 'Thursday'); define('_MI_EXTCAL_DAY_FRIDAY', 'Friday'); define('_MI_EXTCAL_DAY_SATURDAY', 'Saturday'); -define('_MI_EXTCAL_DAY_SUNDAY', 'Sunday'); \ No newline at end of file +define('_MI_EXTCAL_DAY_SUNDAY', 'Sunday'); +define('_MI_EXTCAL_SHOW_OTHEROPTIONS', 'Other Options'); + Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php 2012-07-07 19:07:20 UTC (rev 9799) @@ -339,12 +339,13 @@ $modversion['config'][$i]['default'] = 5; $i++; -$modversion['config'][$i]['name'] = 'break5'; -$modversion['config'][$i]['title'] = ''; +$modversion['config'][$i]['name'] = 'break' . $i; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_SHOW_OTHEROPTIONS'; $modversion['config'][$i]['description'] = ''; $modversion['config'][$i]['formtype'] = 'line_break'; $modversion['config'][$i]['valuetype'] = 'textbox'; $modversion['config'][$i]['default'] = 'head'; + //---------------------------------------------------------- $i++; $modversion['config'][$i]['name'] = 'showInfoBulle'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-07-07 17:50:49
|
Revision: 9798 http://xoops.svn.sourceforge.net/xoops/?rev=9798&view=rev Author: beckmi Date: 2012-07-07 17:50:40 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Renaming system "plugins" to "extensions" Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/media/xoops/css/icons.css XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/docs/changelog.txt XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/language/english/modinfo.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/docs/changelog.txt XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/admin/menu.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/about.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/center.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/dump.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/header.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/index.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/menu.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/form/maintenance.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/maintenance.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/docs/changelog.txt XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/admin.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/modinfo.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/protector/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/docs/changelog.txt XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/module.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/admin.css XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/header.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/modinfo.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/default.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/language/english/admin.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/dashboard.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/icons.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/userrank/docs/changelog.txt XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/userrank/xoops_version.php Added Paths: ----------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/index.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/main.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/xoops_version.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/extension.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/extension.css XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/extensions.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/extensions.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/templates/admin/system_extensions.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/icons/extensions.png XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/icons/extensions_small.png Removed Paths: ------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/plugins/ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/plugin.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/plugin.css XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/plugins.php XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/plugins.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/templates/admin/system_plugins.html XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/icons/plugins.png XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/icons/plugins_small.png Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/media/xoops/css/icons.css =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/media/xoops/css/icons.css 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/media/xoops/css/icons.css 2012-07-07 17:50:40 UTC (rev 9798) @@ -784,14 +784,14 @@ .ico-pill-add{background-position: -234px -1924px;} .ico-pill-delete{background-position: -234px -1950px;} .ico-pill-go{background-position: -234px -1976px;} -.ico-plugin{background-position: -260px 0;} -.ico-plugin-add{background-position: -260px -26px;} -.ico-plugin-delete{background-position: -260px -52px;} -.ico-plugin-disabled{background-position: -260px -78px;} -.ico-plugin-edit{background-position: -260px -104px;} -.ico-plugin-error{background-position: -260px -130px;} -.ico-plugin-go{background-position: -260px -156px;} -.ico-plugin-link{background-position: -260px -182px;} +.ico-extension{background-position: -260px 0;} +.ico-extension-add{background-position: -260px -26px;} +.ico-extension-delete{background-position: -260px -52px;} +.ico-extension-disabled{background-position: -260px -78px;} +.ico-extension-edit{background-position: -260px -104px;} +.ico-extension-error{background-position: -260px -130px;} +.ico-extension-go{background-position: -260px -156px;} +.ico-extension-link{background-position: -260px -182px;} .ico-pound{background-position: -260px -208px;} .ico-printer{background-position: -260px -234px;} .ico-printer-add{background-position: -260px -260px;} Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/docs/changelog.txt 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/docs/changelog.txt 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,3 +1,3 @@ Version 0.1 ------------------- -Create avatars plugin \ No newline at end of file +Create avatars extension \ No newline at end of file Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/language/english/modinfo.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/language/english/modinfo.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/language/english/modinfo.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * Avatars plugin + * Avatars extension * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) @@ -21,7 +21,7 @@ */ // Info module define("_MI_AVATARS_NAME", "Avatars"); -define("_MI_AVATARS_DESC", "Plugin for managing avatars"); +define("_MI_AVATARS_DESC", "Extension for managing avatars"); // Menu define("_MI_AVATARS_INDEX", "Home"); define("_MI_AVATARS_SYSTEM", "System avatars"); Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/xoops_version.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/xoops_version.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/avatars/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * avatars plugin + * avatars extension * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) @@ -46,10 +46,10 @@ $modversion['system_menu'] = 1; /* - Manage plugin + Manage extension */ -$modversion['plugin'] = 1; -$modversion['plugin_module'][] = 'system'; +$modversion['extension'] = 1; +$modversion['extension_module'][] = 'system'; // Admin things $modversion['hasAdmin'] = 1; Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/docs/changelog.txt 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/banners/docs/changelog.txt 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,4 +1,4 @@ Version 0.1 ------------------- -Create banners plugin +Create banners extension Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/admin/menu.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/admin/menu.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/admin/menu.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * mail user plugin + * mail user extension * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/xoops_version.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/xoops_version.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/mailusers/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * Mailusers Plugin + * Mailusers Extension * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) @@ -52,10 +52,10 @@ $modversion['system_menu'] = 1; /* - Manage plugin + Manage extension */ -$modversion['plugin'] = 1; -$modversion['plugin_module'][] = 'system'; +$modversion['extension'] = 1; +$modversion['extension_module'][] = 'system'; // Admin things $modversion['hasAdmin'] = 1; Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/about.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/about.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/about.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/center.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/center.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/center.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/dump.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/dump.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/dump.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/header.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/header.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/header.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/index.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/index.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/index.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/menu.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/menu.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/admin/menu.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/form/maintenance.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/form/maintenance.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/form/maintenance.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/maintenance.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/maintenance.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/class/maintenance.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/docs/changelog.txt 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/docs/changelog.txt 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,3 +1,3 @@ Version 0.1 ------------------- -Create maintenance plugin \ No newline at end of file +Create maintenance extension \ No newline at end of file Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/admin.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/admin.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/admin.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/modinfo.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/modinfo.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/language/english/modinfo.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) @@ -22,7 +22,7 @@ // Info module define("_MI_MAINTENANCE_NAME", "Maintenance"); -define("_MI_MAINTENANCE_DESC", "Plugins for maintenance"); +define("_MI_MAINTENANCE_DESC", "Extensions for maintenance"); // Menu define("_MI_MAINTENANCE_INDEX", "Home"); define("_MI_MAINTENANCE_CENTER", "Maintenance"); Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/xoops_version.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/xoops_version.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/maintenance/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -10,7 +10,7 @@ */ /** - * maintenance plugins + * maintenance extensions * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) @@ -55,10 +55,10 @@ $modversion['system_menu'] = 1; /* - Manage plugin + Manage extension */ -$modversion['plugin'] = 1; -$modversion['plugin_module'][] = 'system'; +$modversion['extension'] = 1; +$modversion['extension_module'][] = 'system'; /* Admin things Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/protector/xoops_version.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/protector/xoops_version.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/protector/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -55,10 +55,10 @@ $modversion['system_menu'] = 1; /* - Manage plugin + Manage extension */ -$modversion['plugin'] = 1; -$modversion['plugin_module'][] = 'system'; +$modversion['extension'] = 1; +$modversion['extension_module'][] = 'system'; /* Mysql and tables Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/docs/changelog.txt 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/docs/changelog.txt 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,3 +1,3 @@ Version 0.1 ------------------- -Create smilies plugin \ No newline at end of file +Create smilies extension \ No newline at end of file Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/xoops_version.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/xoops_version.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/smilies/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -55,10 +55,10 @@ $modversion['system_menu'] = 1; /* - Manage plugin + Manage extension */ -$modversion['plugin'] = 1; -$modversion['plugin_module'][] = 'system'; +$modversion['extension'] = 1; +$modversion['extension_module'][] = 'system'; /* Admin things Property changes on: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions ___________________________________________________________________ Added: tsvn:autoprops + *.php = svn:executable=*;svn:keywords=Author Date Id Rev URL; Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/index.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/index.html (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/index.html 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/main.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/main.php (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/main.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,170 @@ +<?php +/* + You may not change or alter any portion of this comment or credits + of supporting developers from this source code or any supporting source code + which is considered copyrighted (c) material of the original comment or credit authors. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ + +/** + * Plugins Manager + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Andricq Nicolas (AKA MusS) + * @package system + * @version $Id$ + */ + +defined('XOOPS_ROOT_PATH') or die('Restricted access'); + +// Get main instance +$xoops = Xoops::getInstance(); +$system = System::getInstance(); + +// Check users rights +if (!$xoops->isUser() || !$xoops->isModule() || !$xoops->user->isAdmin($xoops->module->mid())) { + exit(_NOPERM); +} + +if (isset($_POST)) { + foreach ($_POST as $k => $v) { + ${$k} = $v; + } +} +$system->loadLanguage('modulesadmin','system'); +// Get Action type +$op = $system->cleanVars($_REQUEST, 'op', 'list', 'string'); + +switch ($op) { + + case 'list': + // Call Header + $xoops->header('system_extensions.html'); + // Define Stylesheet + $xoops->theme->addStylesheet('modules/system/css/admin.css'); + // Define scripts + $xoops->theme->addScript('media/jquery/plugins/jquery.jeditable.js'); + $xoops->theme->addScript('modules/system/js/admin.js'); + $xoops->theme->addScript('modules/system/js/module.js'); + // Define Breadcrumb and tips + $admin_page = new XoopsModuleAdmin(); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_CPANEL, XOOPS_URL . '/admin.php', true); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_ADMIN, $system->adminVersion('extensions', 'adminpath')); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_MAIN); + $admin_page->addTips(_AM_SYSTEM_EXTENSIONS_TIPS); + $admin_page->renderBreadcrumb(); + $admin_page->renderTips(); + + $system_extension = new SystemExtension(); + + $extension = $system_extension->getExtensionList(); + + $xoops->tpl->assign('xoops', $xoops); + $xoops->tpl->assign('extension_list', $extension); + // Call Footer + $xoops->footer(); + break; + + case 'install': + $module = $system->cleanVars($_POST, 'dirname', '', 'string'); + // Call Header + $xoops->header('system_modules_logger.html'); + // Define Stylesheet + $xoops->theme->addStylesheet('modules/system/css/admin.css'); + // Define Breadcrumb and tips + $admin_page = new XoopsModuleAdmin(); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_CPANEL, XOOPS_URL . '/admin.php', true); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_ADMIN, $system->adminVersion('extensions', 'adminpath')); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_INSTALL); + $admin_page->renderBreadcrumb(); + + $ret = array(); + $system_extension = new SystemExtension(); + $ret = $system_extension->install($module); + if ($ret) { + $xoops->tpl->assign('install', 1); + $xoops->tpl->assign('module', $ret); + $xoops->tpl->assign('from_title', _AM_SYSTEM_EXTENSIONS_ADMIN); + $xoops->tpl->assign('from_link', $system->adminVersion('extensions', 'adminpath')); + $xoops->tpl->assign('title', _AM_SYSTEM_EXTENSIONS_INSTALL); + $xoops->tpl->assign('log', $system_extension->trace); + } else { + print_r($system_extension->error); + //print_r($system_extension->trace); + } + //Set active modules in cache folder + $xoops->setActiveModules(); + // Call Footer + $xoops->footer(); + break; + + case 'uninstall': + $mid = $system->cleanVars($_POST, 'mid', 0, 'int'); + $module_handler = $xoops->getHandlerModule(); + $module = $module_handler->getById($mid); + // Call Header + $xoops->header('system_modules_logger.html'); + // Define Stylesheet + $xoops->theme->addStylesheet('modules/system/css/admin.css'); + // Define Breadcrumb and tips + $admin_page = new XoopsModuleAdmin(); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_CPANEL, XOOPS_URL . '/admin.php', true); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_ADMIN, $system->adminVersion('extensions', 'adminpath')); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_UNINSTALL); + $admin_page->renderBreadcrumb(); + + $ret = array(); + $system_extension = new SystemExtension(); + $ret = $system_extension->uninstall($module->getVar('dirname')); + $xoops->tpl->assign('module', $ret); + if ($ret) { + $xoops->tpl->assign('from_title', _AM_SYSTEM_EXTENSIONS_ADMIN); + $xoops->tpl->assign('from_link', $system->adminVersion('extensions', 'adminpath')); + $xoops->tpl->assign('title', _AM_SYSTEM_EXTENSIONS_UNINSTALL); + $xoops->tpl->assign('log', $system_extension->trace); + } + $folder = array(1, 3); + $system->CleanCache($folder); + // Call Footer + $xoops->footer(); + break; + + case 'update': + $mid = $system->cleanVars($_POST, 'mid', 0, 'int'); + $module_handler = $xoops->getHandlerModule(); + $block_handler = $xoops->getHandlerBlock(); + $module = $module_handler->getById($mid); + // Call Header + $xoops->header('system_modules_logger.html'); + // Define Stylesheet + $xoops->theme->addStylesheet('modules/system/css/admin.css'); + // Define Breadcrumb and tips + $admin_page = new XoopsModuleAdmin(); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_CPANEL, XOOPS_URL . '/admin.php', true); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_ADMIN, $system->adminVersion('extensions', 'adminpath')); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_EXTENSIONS_UPDATE); + $admin_page->renderBreadcrumb(); + + $ret = array(); + $system_extension = new SystemExtension(); + $ret = $system_extension->update($module->getVar('dirname')); + $xoops->tpl->assign('module', $ret); + if ($ret) { + $xoops->tpl->assign('install', 1); + $xoops->tpl->assign('from_title', _AM_SYSTEM_EXTENSIONS_ADMIN); + $xoops->tpl->assign('from_link', $system->adminVersion('extensions', 'adminpath')); + $xoops->tpl->assign('title', _AM_SYSTEM_EXTENSIONS_UPDATE); + $xoops->tpl->assign('log', $system_extension->trace); + } + $folder = array(1, 3); + $system->CleanCache($folder); + //Set active modules in cache folder + $xoops->setActiveModules(); + // Call Footer + $xoops->footer(); + break; +} \ No newline at end of file Property changes on: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/main.php ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Id Rev URL Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/xoops_version.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/xoops_version.php (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/xoops_version.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,35 @@ +<?php +/* + You may not change or alter any portion of this comment or credits + of supporting developers from this source code or any supporting source code + which is considered copyrighted (c) material of the original comment or credit authors. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ + +/** + * Plugin manager config + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Andricq Nicolas (AKA MusS) + * @package system + * @version $Id$ + */ + +defined('XOOPS_ROOT_PATH') or die('Restricted access'); + +$modversion['name'] = _AM_SYSTEM_EXTENSIONS; +$modversion['version'] = '1.0'; +$modversion['description'] = _AM_SYSTEM_EXTENSIONS_DESC; +$modversion['author'] = ''; +$modversion['credits'] = 'The XOOPS Project; Andricq Nicolas (AKA MusS)'; +$modversion['help'] = 'page=extension'; +$modversion['license'] = "GPL see LICENSE"; +$modversion['official'] = 1; +$modversion['image'] = 'extensions.png'; +$modversion['hasAdmin'] = 1; +$modversion['adminpath'] = 'admin.php?fct=extensions'; +$modversion['category'] = XOOPS_SYSTEM_MODULE; Property changes on: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/extensions/xoops_version.php ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Id Rev URL Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin/preferences/main.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -99,7 +99,7 @@ // Define Breadcrumb and tips $admin_page = new XoopsModuleAdmin(); $admin_page->addBreadcrumbLink(_AM_SYSTEM_CPANEL, XOOPS_URL . '/admin.php', true); - $admin_page->addBreadcrumbLink(_AM_SYSTEM_PREFERENCES_NAV_MAIN, $system->adminVersion('plugins', 'adminpath')); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_PREFERENCES_NAV_MAIN, $system->adminVersion('extensions', 'adminpath')); $admin_page->addBreadcrumbLink($module->getVar('name')); $admin_page->renderBreadcrumb(); @@ -182,7 +182,7 @@ // Define Breadcrumb and tips $admin_page = new XoopsModuleAdmin(); $admin_page->addBreadcrumbLink(_AM_SYSTEM_CPANEL, XOOPS_URL . '/admin.php', true); - $admin_page->addBreadcrumbLink(_AM_SYSTEM_PREFERENCES_NAV_MAIN, $system->adminVersion('plugins', 'adminpath')); + $admin_page->addBreadcrumbLink(_AM_SYSTEM_PREFERENCES_NAV_MAIN, $system->adminVersion('extensions', 'adminpath')); $admin_page->addBreadcrumbLink(_AM_SYSTEM_PREFERENCES_MAIN); $admin_page->addTips(_AM_SYSTEM_PREFERENCES_NAV_TIPS); $admin_page->renderBreadcrumb(); Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/admin.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -120,7 +120,7 @@ $admin_dir = XOOPS_ROOT_PATH . '/modules/system/admin'; $dirlist = XoopsLists::getDirListAsArray($admin_dir); - $inactive_section = array('blocksadmin', 'groups', 'modulesadmin', 'preferences', 'tplsets', 'plugins'); + $inactive_section = array('blocksadmin', 'groups', 'modulesadmin', 'preferences', 'tplsets', 'extensions'); foreach ($dirlist as $directory) { if (file_exists($file = $admin_dir . '/' . $directory . '/xoops_version.php')) { require $file; Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/extension.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/extension.php (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/extension.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,104 @@ +<?php +/* + You may not change or alter any portion of this comment or credits + of supporting developers from this source code or any supporting source code + which is considered copyrighted (c) material of the original comment or credit authors. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +*/ + +/** + * + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Andricq Nicolas (AKA MusS) + * @package System + * @version $Id$ + */ + +class SystemExtension extends SystemModule +{ + + public function getExtension( $mod = '' ) + { + $ret = array(); + $extension = $this->getExtensionList(); + foreach( $extension as $list ) { + /* @var $list XoopsModule */ + if ( $list->getInfo('install') ) { + if ( !is_array( $list->getInfo('extension_module') ) ) { + $ret[] = $list; + } else { + if ( array_search( $mod, $list->getInfo('extension_module')) !== false ){ + $ret[] = $list; + //echo $list->getInfo('name') . is_array( $list->getInfo('extension_module') ); + } + } + unset($list); + } + } + + return $ret; + } + + /** + * Return all extensions + * @return array + */ + public function getExtensionList() + { + // Get main instance + $xoops = Xoops::getInstance(); + $module_handler = $xoops->getHandlerModule(); + $moduleperm_handler = $xoops->getHandlerGroupperm(); + + $ret = array(); + $i = 0; + foreach ($this->_list as $file) { + if (file_exists(XOOPS_ROOT_PATH . '/modules/' . $file . '/xoops_version.php')) { + clearstatcache(); + $file = trim($file); + /* @var $module XoopsModule */ + $module = $module_handler->create(); + $module->loadInfo($file); + if ($module->getInfo('extension')) { + if (in_array($file, $this->_mods)) { + $module->setInfo('install', true); + $extension = $module_handler->getByDirname($module->getInfo('dirname')); + $module->setInfo('mid', $extension->getVar('mid')); + $module->setInfo('update', XoopsLocal::formatTimestamp($extension->getVar('last_update'), 's')); + if (round($module->getInfo('version'), 2) != $extension->getVar('version')) { + $module->setInfo('warning_update', true); + } + $sadmin = $moduleperm_handler->checkRight('module_admin', $module->getInfo('mid'), $xoops->user->getGroups()); + if ($sadmin && ($module->getVar('hasnotification') || is_array($module->getInfo('config')) || is_array($module->getInfo('comments')))) { + $module->setInfo('link_pref', XOOPS_URL . '/modules/system/admin.php?fct=preferences&op=showmod&mod=' . $module->getInfo('mid')); + } + } else { + $module->setInfo('install', false); + } + $module->setInfo('version', round($module->getInfo('version'), 2)); + if (file_exists(XOOPS_ROOT_PATH . '/modules/' . $module->getInfo('dirname') . '/icons/logo_small.png')) { + $module->setInfo('logo_small', XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/icons/logo_small.png'); + } else { + $module->setInfo('logo_small', XOOPS_URL . '/media/xoops/images/icons/16/default.png'); + } + if (file_exists(XOOPS_ROOT_PATH . '/modules/' . $module->getInfo('dirname') . '/icons/logo_large.png')) { + $module->setInfo('logo_large', XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/icons/logo_large.png'); + } else { + $module->setInfo('logo_large', XOOPS_URL . '/media/xoops/images/icons/32/default.png'); + } + $module->setInfo('link_admin', XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/' . $module->getInfo('adminindex')); + $module->setInfo('options', $module->getAdminMenu()); + $ret[] = $module; + unset($module); + $i++; + } + } + } + return $ret; + } +} Property changes on: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/extension.php ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Id Rev URL Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/module.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/module.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/module.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -68,7 +68,7 @@ $ret = $module_handler->getObjects($criteria, true); $list = array(); foreach (array_keys($ret) as $i) { - if (!$ret[$i]->getInfo('plugin')) { + if (!$ret[$i]->getInfo('extension')) { if ($ret[$i]->getInfo('dirname') == 'system') { $ret[$i]->setInfo('can_delete', false); $ret[$i]->setInfo('can_disable', false); @@ -120,7 +120,7 @@ /* @var $module XoopsModule */ $module = $module_handler->create(); $module->loadInfo($file); - if (!$module->getInfo('plugin')) { + if (!$module->getInfo('extension')) { $module->setInfo('mid', $i); $module->setInfo('version', round($module->getInfo('version'), 2)); $ret[] = $module; Deleted: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/plugin.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/plugin.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/class/plugin.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,104 +0,0 @@ -<?php -/* - You may not change or alter any portion of this comment or credits - of supporting developers from this source code or any supporting source code - which is considered copyrighted (c) material of the original comment or credit authors. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -*/ - -/** - * - * - * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ - * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) - * @author Andricq Nicolas (AKA MusS) - * @package System - * @version $Id$ - */ - -class SystemPlugin extends SystemModule -{ - - public function getPlugin( $mod = '' ) - { - $ret = array(); - $plugin = $this->getPluginList(); - foreach( $plugin as $list ) { - /* @var $list XoopsModule */ - if ( $list->getInfo('install') ) { - if ( !is_array( $list->getInfo('plugin_module') ) ) { - $ret[] = $list; - } else { - if ( array_search( $mod, $list->getInfo('plugin_module')) !== false ){ - $ret[] = $list; - //echo $list->getInfo('name') . is_array( $list->getInfo('plugin_module') ); - } - } - unset($list); - } - } - - return $ret; - } - - /** - * Return all plugins - * @return array - */ - public function getPluginList() - { - // Get main instance - $xoops = Xoops::getInstance(); - $module_handler = $xoops->getHandlerModule(); - $moduleperm_handler = $xoops->getHandlerGroupperm(); - - $ret = array(); - $i = 0; - foreach ($this->_list as $file) { - if (file_exists(XOOPS_ROOT_PATH . '/modules/' . $file . '/xoops_version.php')) { - clearstatcache(); - $file = trim($file); - /* @var $module XoopsModule */ - $module = $module_handler->create(); - $module->loadInfo($file); - if ($module->getInfo('plugin')) { - if (in_array($file, $this->_mods)) { - $module->setInfo('install', true); - $plugin = $module_handler->getByDirname($module->getInfo('dirname')); - $module->setInfo('mid', $plugin->getVar('mid')); - $module->setInfo('update', XoopsLocal::formatTimestamp($plugin->getVar('last_update'), 's')); - if (round($module->getInfo('version'), 2) != $plugin->getVar('version')) { - $module->setInfo('warning_update', true); - } - $sadmin = $moduleperm_handler->checkRight('module_admin', $module->getInfo('mid'), $xoops->user->getGroups()); - if ($sadmin && ($module->getVar('hasnotification') || is_array($module->getInfo('config')) || is_array($module->getInfo('comments')))) { - $module->setInfo('link_pref', XOOPS_URL . '/modules/system/admin.php?fct=preferences&op=showmod&mod=' . $module->getInfo('mid')); - } - } else { - $module->setInfo('install', false); - } - $module->setInfo('version', round($module->getInfo('version'), 2)); - if (file_exists(XOOPS_ROOT_PATH . '/modules/' . $module->getInfo('dirname') . '/icons/logo_small.png')) { - $module->setInfo('logo_small', XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/icons/logo_small.png'); - } else { - $module->setInfo('logo_small', XOOPS_URL . '/media/xoops/images/icons/16/default.png'); - } - if (file_exists(XOOPS_ROOT_PATH . '/modules/' . $module->getInfo('dirname') . '/icons/logo_large.png')) { - $module->setInfo('logo_large', XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/icons/logo_large.png'); - } else { - $module->setInfo('logo_large', XOOPS_URL . '/media/xoops/images/icons/32/default.png'); - } - $module->setInfo('link_admin', XOOPS_URL . '/modules/' . $module->getInfo('dirname') . '/' . $module->getInfo('adminindex')); - $module->setInfo('options', $module->getAdminMenu()); - $ret[] = $module; - unset($module); - $i++; - } - } - } - return $ret; - } -} Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/admin.css =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/admin.css 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/admin.css 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,7 +1,7 @@ @import url(button.css); @import url(help.css); @import url(module.css); -@import url(plugin.css); +@import url(extension.css); a {outline:none} Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/extension.css =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/extension.css (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/extension.css 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,4 @@ + +.xo-extension-detail { + margin: 0 0 0 25px; +} \ No newline at end of file Deleted: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/plugin.css =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/plugin.css 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/css/plugin.css 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,4 +0,0 @@ - -.xo-plugin-detail { - margin: 0 0 0 25px; -} \ No newline at end of file Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/header.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/header.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/header.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -25,7 +25,7 @@ XoopsLoad::load('system', 'system'); XoopsLoad::load('module', 'system'); -XoopsLoad::load('plugin', 'system'); +XoopsLoad::load('extension', 'system'); $system = System::getInstance(); Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/extensions.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/extensions.php (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/extensions.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,45 @@ +<?php +/** + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * _LANGCODE en + * _CHARSET UTF-8 + * @version $Id$ + */ + +// Navigation +define("_AM_SYSTEM_EXTENSIONS_ADMIN", "Extensions Administration"); +define("_AM_SYSTEM_EXTENSIONS_MAIN", "Main"); + +// Messages +define("_AM_SYSTEM_EXTENSIONS_MSG_INSTALL", "Install extension"); +define("_AM_SYSTEM_EXTENSIONS_MSG_UPDATE", "Update extension"); +define("_AM_SYSTEM_EXTENSIONS_MSG_UNINSTALL", "Uninstall extension"); + +define("_AM_SYSTEM_EXTENSIONS_MENUADMIN","Manage Extensions"); + +// Table +define("_AM_SYSTEM_EXTENSIONS_NAME","Name"); +define("_AM_SYSTEM_EXTENSIONS_VERSION","Version"); +define("_AM_SYSTEM_EXTENSIONS_DETAIL","Detail"); +define("_AM_SYSTEM_EXTENSIONS_ACTIONS","Actions"); + +// Buttons +define("_AM_SYSTEM_EXTENSIONS_INSTALL", "Install"); +define("_AM_SYSTEM_EXTENSIONS_UNINSTALL","Uninstall"); +define("_AM_SYSTEM_EXTENSIONS_UPDATE","Update"); + +// Other +define("_AM_SYSTEM_EXTENSIONS_VERSION2","Version:"); +define("_AM_SYSTEM_EXTENSIONS_AUTHOR","Author:"); +define("_AM_SYSTEM_EXTENSIONS_DESCRIPTION","Description:"); +define("_AM_SYSTEM_EXTENSIONS_LICENSE","License:"); +define("_AM_SYSTEM_EXTENSIONS_LASTUP","Last Update:"); +define("_AM_SYSTEM_EXTENSIONS_WEB","Web:"); + +// Tips +define("_AM_SYSTEM_EXTENSIONS_TIPS", +"<ul> +<li>If you install a new extension, remember to setup module preferences and users permissions!</li> +<li>Delete unused extension files from your server to avoid security issues and keep your website safe.</li> +</ul>"); Property changes on: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/extensions.php ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Id Rev URL Deleted: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/plugins.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/plugins.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin/plugins.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,45 +0,0 @@ -<?php -/** - * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ - * @license http://www.fsf.org/copyleft/gpl.html GNU public license - * _LANGCODE en - * _CHARSET UTF-8 - * @version $Id$ - */ - -// Navigation -define("_AM_SYSTEM_PLUGINS_ADMIN", "Plugins Administration"); -define("_AM_SYSTEM_PLUGINS_MAIN", "Main"); - -// Messages -define("_AM_SYSTEM_PLUGINS_MSG_INSTALL", "Install plugin"); -define("_AM_SYSTEM_PLUGINS_MSG_UPDATE", "Update plugin"); -define("_AM_SYSTEM_PLUGINS_MSG_UNINSTALL", "Uninstall plugin"); - -define("_AM_SYSTEM_PLUGINS_MENUADMIN","Manage Plugins"); - -// Table -define("_AM_SYSTEM_PLUGINS_NAME","Name"); -define("_AM_SYSTEM_PLUGINS_VERSION","Version"); -define("_AM_SYSTEM_PLUGINS_DETAIL","Detail"); -define("_AM_SYSTEM_PLUGINS_ACTIONS","Actions"); - -// Buttons -define("_AM_SYSTEM_PLUGINS_INSTALL", "Install"); -define("_AM_SYSTEM_PLUGINS_UNINSTALL","Uninstall"); -define("_AM_SYSTEM_PLUGINS_UPDATE","Update"); - -// Other -define("_AM_SYSTEM_PLUGINS_VERSION2","Version:"); -define("_AM_SYSTEM_PLUGINS_AUTHOR","Author:"); -define("_AM_SYSTEM_PLUGINS_DESCRIPTION","Description:"); -define("_AM_SYSTEM_PLUGINS_LICENSE","License:"); -define("_AM_SYSTEM_PLUGINS_LASTUP","Last Update:"); -define("_AM_SYSTEM_PLUGINS_WEB","Web:"); - -// Tips -define("_AM_SYSTEM_PLUGINS_TIPS", -"<ul> -<li>If you install a new plugin, remember to setup module preferences and users permissions!</li> -<li>Delete unused plugin files from your server to avoid security issues and keep your website safe.</li> -</ul>"); Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/admin.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -40,9 +40,9 @@ define("_AM_SYSTEM_BLOCKS","Blocks"); define("_AM_SYSTEM_BLOCKS_DESC","With blocks you can <br /> add many thing for <br /> your users"); define("_AM_SYSTEM_MODULES","Modules"); -define("_AM_SYSTEM_MODULES_DESC","At here you can install <br /> and unistall your xoops <br /> modules. Do you know <br /> what module is ?"); -define("_AM_SYSTEM_PLUGINS","Plugins"); -define("_AM_SYSTEM_PLUGINS_DESC","At here you can install <br /> and uninstall your xoops <br /> plugins."); +define("_AM_SYSTEM_MODULES_DESC","At here you can install <br /> and unistall your XOOPS <br /> modules. Do you know <br /> what module is ?"); +define("_AM_SYSTEM_EXTENSIONS","Extensions"); +define("_AM_SYSTEM_EXTENSIONS_DESC","At here you can install <br /> and uninstall your XOOPS <br /> extensions."); define("_AM_SYSTEM_THEME","Themes"); define("_AM_SYSTEM_THEME_DESC","You can manage themes"); define("_AM_SYSTEM_USER","Users"); Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/extensions.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/extensions.html (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/extensions.html 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,8 @@ +<h1 class="head">Help: Plugins</h1> + +<h4>Description</h4> +<p> + +Empty... + +</p> \ No newline at end of file Deleted: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/plugins.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/plugins.html 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/help/plugins.html 2012-07-07 17:50:40 UTC (rev 9798) @@ -1,8 +0,0 @@ -<h1 class="head">Help: Plugins</h1> - -<h4>Description</h4> -<p> - -Empty... - -</p> \ No newline at end of file Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/modinfo.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/modinfo.php 2012-07-07 17:47:15 UTC (rev 9797) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/language/english/modinfo.php 2012-07-07 17:50:40 UTC (rev 9798) @@ -61,7 +61,7 @@ define("_MI_SYSTEM_PREFERENCE_ACTIVE_PREFERENCES",""); define("_MI_SYSTEM_PREFERENCE_ACTIVE_TPLSETS",""); define("_MI_SYSTEM_PREFERENCE_ACTIVE_USERS","Active Users"); -define("_MI_SYSTEM_PREFERENCE_ACTIVE_PLUGINS","Plugins"); +define("_MI_SYSTEM_PREFERENCE_ACTIVE_EXTENSIONS","Extensions"); define("_MI_SYSTEM_PREFERENCE_ACTIVE_THEMES","Themes"); define("_MI_SYSTEM_PREFERENCE_BREAK_PAGER","Number of rows to display in the administration"); Added: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/templates/admin/system_extensions.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/templates/admin/system_extensions.html (rev 0) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/templates/admin/system_extensions.html 2012-07-07 17:50:40 UTC (rev 9798) @@ -0,0 +1,178 @@ +<{includeq file="admin:system|admin_breadcrumb.html"}> +<{includeq file="admin:system|admin_tips.html"}> + +<table class="outer"> + <thead> + <tr> + <th>#</th> + <th><{$smarty.const._AM_SYSTEM_EXTENSIONS_NAME}></th> + <th><{$smarty.const._AM_SYSTEM_EXTENSIONS_VERSION}></th> + <th><{$smarty.const._AM_SYSTEM_EXTENSIONS_DETAIL}></th> + <th><{$smarty.const._AM_SYSTEM_EXTENSIONS_ACTIONS}></th> + </tr> + </thead> + <tbody> + <{foreach item=extension from=$extension_list}> + <tr> + <td class="span1"> + <{if $extension->getInfo('install')}> + <a href="<{$xoops_url}>/modules/<{$extension->getInfo('dirname')}>/<{$extension->getInfo('adminindex')}>"> + <img class="xo-tooltip" src="<{$extension->getInfo('logo_small')}>" alt="<{$extension->getInfo('name')}>" title="<{$extension->getInfo('name')}>" /> + </a> + <{else}> + <img class="xo-tooltip" src="<{$extension->getInfo('logo_small')}>" alt="<{$extension->getInfo('name')}>" title="<{$extension->getInfo('name')}>" /> + <{/if}> + </td> + <td class="span4"> + <{if $extension->getInfo('install')}> + <a href="<{$xoops_url}>/modules/<{$extension->getInfo('dirname')}>/<{$extension->getInfo('adminindex')}>"> + <{$extension->getInfo('name')}> + </a> + <{else}> + <{$extension->getInfo('name')}> + <{/if}> + </td> + <td class="span2"> + <{$extension->getInfo('version')}> + </td> + <td> + <ul class="xo-extension-detail"> + <li><span class="bold"><{$smarty.const._AM_SYSTEM_EXTENSIONS_AUTHOR}></span> <{$extension->getInfo('author')}></li> + <li class="hide detail-<{$extension->getInfo(dirname)}>"><span class="bold"><{$smarty.const._AM_SYSTEM_EXTENSIONS_LICENSE}></span> <{$extension->getInfo('license')}></li> + <li class="hide detail-<{$extension->getInfo(dirname)}>"><span class="bold"><{$smarty.const._AM_SYSTEM_EXTENSIONS_DESCRIPTION}></span> <{$extension->getInfo(description)}></li> + </ul> + </td> + <td class="span4"> + <a class="xo-tooltip" href="javascript:" onclick="$('li.detail-<{$extension->getInfo(dirname)}>').toggle('slow');" title="<{$smarty.const._AM_SYSTEM_EXTENSIONS_DETAIL}>"><span class="ico-magnifier"></span></a> + <{if $extension->getInfo('install')}> + <a class="xo-tooltip" href="javascript:" onclick="module_Update(<{$extension->getInfo(mid)}>)" title="<{$smarty.const._AM_SYSTEM_EXTENSIONS_UPDATE}>"><span class="ico-arrow-refresh-small"></span></a> + <a class="xo-tooltip" href="javascript:" onclick="module_Uninstall(<{$extension->getInfo(mid)}>)" title="<{$smarty.const._AM_SYSTEM_EXTENSIONS_UNINSTALL}>"><span class="ico-application-delete"></span></a> + <{else}> + <a class="xo-tooltip" href="javascript:" onclick="module_Install('<{$extension->getInfo(dirname)}>')" title="<{$smarty.const._AM_SYSTEM_EXTENSIONS_INSTALL}> <{$extension->getInfo(name)}>"><span class="ico-application-go"></span></a> + <{/if}> + </td> + </tr> + <{/foreach}> + </tbody> +</table> +<{foreach item=extension from=$extension_list}> +<div id="data-<{$extension->getInfo('mid')}>" class="hide"> + <div class="module_card"> + <div class="module_image"> + <a class="rounded xo-tooltip" style="background: url('<{$xoops_url}>/modules/<{$extension->getInfo(dirname)}>/<{$extension->getInfo(image)}>') no-repeat scroll center center transparent;" title="<{$extension->getVar('name')}>"> + <span class="rounded"> </span> + </a> + </div> + <div class="module_data"> + <div class="name"><{$extension->getInfo('name')}></div> + <div class="data"> + <div><span class="bold"><{$smarty.const._AM_SYSTEM_EXTENSIONS_VERSION2}></span> <{$extension->getInfo('version')}></div> + <div><span class="bold"><{$smarty.const._AM_SYSTEM_EXTENSIONS_LASTUP}></span> <{$extension->getInfo('update')}></div> + </div> + </div> + <div class="modu... [truncated message content] |
From: <be...@us...> - 2012-07-07 17:47:21
|
Revision: 9797 http://xoops.svn.sourceforge.net/xoops/?rev=9797&view=rev Author: beckmi Date: 2012-07-07 17:47:15 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Fixing typo in $ohander to $oHandler Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/class/model/xoopsmodel.php Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/class/model/xoopsmodel.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/class/model/xoopsmodel.php 2012-07-07 16:09:22 UTC (rev 9796) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/class/model/xoopsmodel.php 2012-07-07 17:47:15 UTC (rev 9797) @@ -57,12 +57,12 @@ * * @access public * - * @param XoopsPersistableObjectHandler $ohander reference to {@link XoopsPersistableObjectHandler} + * @param XoopsPersistableObjectHandler $oHandler reference to {@link XoopsPersistableObjectHandler} * @param $name * @param null $args * @return null */ - public function loadHandler(XoopsPersistableObjectHandler $ohander, $name, $args = null) + public function loadHandler(XoopsPersistableObjectHandler $oHandler, $name, $args = null) { if (!isset(self::$handlers[$name])) { $handler = null; @@ -81,7 +81,7 @@ } self::$handlers[$name] = $handler; } - self::$handlers[$name]->setHandler($ohander); + self::$handlers[$name]->setHandler($oHandler); if (!empty($args) && is_array($args) && is_a(self::$handlers[$name], 'XoopsModelAbstract')) { self::$handlers[$name]->setVars($args); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-07-07 16:09:30
|
Revision: 9796 http://xoops.svn.sourceforge.net/xoops/?rev=9796&view=rev Author: beckmi Date: 2012-07-07 16:09:22 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Small bug fixes reported by Cesag, hugo1207 Modified Paths: -------------- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/admin_footer.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/cat.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/menu.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/class/file.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/changelog.txt XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/credits.txt XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/event.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/include/constantes.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/rss.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/view_week.php XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/admin_footer.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/admin_footer.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/admin_footer.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -21,7 +21,7 @@ echo "<div class='adminfooter'>\n" ." <div style='text-align: center;'>\n" - ." <a href='http://www.xoops.org' target='_blank'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n" + ." <a href='http://www.xoops.org' rel='external'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n" ." </div>\n" ." " . _AM_MODULEADMIN_ADMIN_FOOTER . "\n" ."</div>"; Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/cat.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/cat.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/cat.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -246,7 +246,7 @@ $categoryAdmin = new ModuleAdmin(); echo $categoryAdmin->addNavigation('cat.php'); - $categoryAdmin->addItemButton(_AM_EXTCAL_ADD_CATEGORY, 'cat.php?op=new', 'add', ''); + $categoryAdmin->addItemButton('Add Category', 'cat.php?op=new', 'add', ''); echo $categoryAdmin->renderButton('right', ''); $catHandler = xoops_getmodulehandler(_EXTCAL_CLS_CAT, _EXTCAL_MODULE); Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/menu.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/menu.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/admin/menu.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -1,12 +1,24 @@ <?php -defined('XOOPS_ROOT_PATH') or die("XOOPS root path not defined"); +defined("XOOPS_ROOT_PATH") or die("XOOPS root path not defined"); -$dirname = basename(dirname(dirname(__FILE__))); -$module_handler = xoops_gethandler('module'); -$module = $module_handler->getByDirname($dirname); -$pathIcon32 = $module->getInfo('icons32'); +$path = dirname(dirname(dirname(dirname(__FILE__)))); +include_once $path . '/mainfile.php'; +$dirname = basename(dirname(dirname(__FILE__))); +$module_handler = xoops_gethandler('module'); +$module = $module_handler->getByDirname($dirname); +$pathIcon32 = $module->getInfo('icons32'); +$pathModuleAdmin = $module->getInfo('dirmoduleadmin'); +$pathLanguage = $path . $pathModuleAdmin; + + +if (!file_exists($fileinc = $pathLanguage . '/language/' . $GLOBALS['xoopsConfig']['language'] . '/' . 'main.php')) { + $fileinc = $pathLanguage . '/language/english/main.php'; +} + +include_once $fileinc; + $adminmenu = array(); $i = 1; Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/class/file.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/class/file.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/class/file.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -43,7 +43,7 @@ : 0; $allowedMimeType = array(); - $mimeType = include(XOOPS_ROOT_PATH . '/class/mimetypes.inc.php'); + $mimeType = include(XOOPS_ROOT_PATH . '/include/mimetypes.inc.php'); foreach ( $GLOBALS['xoopsModuleConfig']['allowed_file_extention'] as $fileExt ) { Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/changelog.txt =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/changelog.txt 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/changelog.txt 2012-07-07 16:09:22 UTC (rev 9796) @@ -1,6 +1,7 @@ -2012/04/02: Version 2.37 Beta 3 +2012/04/02: Version 2.37 Beta 4 =================================== -- small code cleanups +- small code cleanups (mamba) +- 2012/02/02: Version 2.37 (JJD.fr) =================================== Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/credits.txt =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/credits.txt 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/credits.txt 2012-07-07 16:09:22 UTC (rev 9796) @@ -1,5 +1,9 @@ Credits =============== -Originally developed by Zoullou http://www.zoullou.net +Originally developed by Zoullou http://www.zoullou.net, updated by JJD.fr -Updated to XOOPS 2.5.0 Standard GUI by Michael Beck (Mamba), with contributions by Gregory Mage (Mage) \ No newline at end of file +Updated to XOOPS 2.5.0 Standard GUI by Michael Beck (Mamba) + +Contributors: + +Testing: Cesag, hugo1207 Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/docs/lang_diff.txt 2012-07-07 16:09:22 UTC (rev 9796) @@ -1,4 +1,8 @@ LANGUAGE DIFFERENCES ===================== -Below are language differences from a version to next version. \ No newline at end of file +Below are language differences from a version to next version. + +modinfo.php: +--------------------- +define('_MI_EXTCAL_EMAIL_MODE_DESC', 'Select Email Format that you want to use'); \ No newline at end of file Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/event.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/event.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/event.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -40,6 +40,9 @@ $event = $eventHandler->objectToArray($eventObj, array('cat_id', 'event_submitter')); $eventHandler->serverTimeToUserTime($event); + $configHandler =& xoops_gethandler('config'); + $extcalConfig = $configHandler->getConfigList($module->getVar("mid")); + // Adding formated date for start and end event $eventHandler->formatEventDate($event, $extcalConfig['event_date_event']); Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/include/constantes.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/include/constantes.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/include/constantes.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -10,12 +10,16 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * * - * L'utilisation de ce formulaire d'adminitration suppose - * que la classe correspondante de la table a été générées avec classGenerator -**/ + * + * L'utilisation de ce formulaire d'adminitration suppose + * que la classe correspondante de la table a été générées avec classGenerator + **/ +if (!defined("XOOPS_ROOT_PATH")) { + die("XOOPS root path not defined"); +} + //modif JJD define('_EXTCAL_MODULE', 'extcal'); @@ -35,53 +39,50 @@ define('_EXTCAL_CLN_EVENT', 'ExtcalEvent'); - - //------------------------------------------------------------------- -define('_EXTCAL_PEAR_ROOT_DEFAUT', XOOPS_ROOT_PATH . '/modules/extcal/class/pear' ); +define('_EXTCAL_PEAR_ROOT_DEFAULT', XOOPS_ROOT_PATH . '/modules/extcal/class/pear'); //define('_EXTCAL_PEAR_ROOT', 'F:/wamp/www/xfr254b/xoops_lib/Frameworks/pear' ); -$pear_path = _EXTCAL_PEAR_ROOT_DEFAUT; +$pear_path = _EXTCAL_PEAR_ROOT_DEFAULT; global $xoopsModule, $xoopsModuleConfig; -if (is_object($xoopsModule)){ - $name = $xoopsModule->getVar('name'); -}else{ - $name = ''; +if (is_object($xoopsModule)) { + $name = $xoopsModule->getVar('name'); +} else { + $name = ''; } $moduleHandler =& xoops_gethandler('module'); -$module = $moduleHandler->getByDirname('extcal'); +$module = $moduleHandler->getByDirname('extcal'); -if ($name == 'extcal' || !is_object($module)){ - if (is_object($xoopsModuleConfig)) - $extcalConfig = $xoopsModuleConfig; -}else{ -// $module = XoopsModule::getByDirname('extcal'); +if ($name == 'extcal' || !is_object($module)) { + if (is_object($xoopsModuleConfig)) { + $extcalConfig = $xoopsModuleConfig; + + } else { + $module = $xoopsModule->getByDirname('extcal'); // $mid = $module->vars['mid']['value']; // $config_handler =& xoops_gethandler('config'); // $extcalConfig = $config_handler->getConfigsByCat(0, $mid); + } - - $configHandler =& xoops_gethandler('config'); - $extcalConfig = $configHandler->getConfigList($module->getVar("mid")); +// $configHandler =& xoops_gethandler('config'); +// $extcalConfig = $configHandler->getConfigList($module->getVar("mid")); - // $t = print_r($extcalConfig, true); // echo "<pre>{$t}</pre>"; } - - ////////////////////////////////// - -$newPP = trim($extcalConfig['pear_path']); -if (substr($newPP,-1,1) == '/' ) $newPP = substr($newPP,0,-1); -if ($newPP <> '' && is_dir ($newPP)){ - $pear_path = $newPP; -} +//$newPP = trim($extcalConfig['pear_path']); +//if (substr($newPP, -1, 1) == '/') { +// $newPP = substr($newPP, 0, -1); +//} +//if ($newPP <> '' && is_dir($newPP)) { +// $pear_path = $newPP; +//} define('_EXTCAL_PEAR_ROOT', $pear_path); define('_EXTCAL_PEAR_CALENDAR_ROOT', _EXTCAL_PEAR_ROOT . '/Calendar'); @@ -89,61 +90,54 @@ //------------------------------------------------------------------- -define('_EXTCAL_SHOW_NO_PICTURE', false); +define('_EXTCAL_SHOW_NO_PICTURE', FALSE); define('_EXTCAL_PATH_HORLOGES', '/modules/extcal/images/horloges/'); define('_EXTCAL_PATH_ICONS16', XOOPS_URL . '/Frameworks/moduleclasses/icons/16/'); define('_EXTCAL_PATH_ICONS32', XOOPS_URL . '/Frameworks/moduleclasses/icons/32/'); -define('_EXTCAL_PATH_FO', XOOPS_URL . '/modules/extcal/'); -define('_EXTCAL_PATH_BO', _EXTCAL_PATH_FO . 'admin/'); -define('_EXTCAL_PATH_LG', XOOPS_URL . '/modules/extcal/languages/'); - -define('_EXTCAL_IMG_INTERVAL', 'interval04.png'); +define('_EXTCAL_PATH_FO', XOOPS_URL . '/modules/extcal/'); +define('_EXTCAL_PATH_BO', _EXTCAL_PATH_FO . 'admin/'); +define('_EXTCAL_PATH_LG', XOOPS_URL . '/modules/extcal/languages/'); + +define('_EXTCAL_IMG_INTERVAL', 'interval04.png'); define('_EXTCAL_IMG_INTERVAL16', _EXTCAL_PATH_ICONS16 . _EXTCAL_IMG_INTERVAL); define('_EXTCAL_IMG_INTERVAL32', _EXTCAL_PATH_ICONS32 . _EXTCAL_IMG_INTERVAL); - + //define('_EXTCAL_DIRNAME', $xoopsModule->getVar('dirname')); -define('_EXTCAL_NAV_CALMONTH', 'calendar-month'); -define('_EXTCAL_NAV_CALWEEK', 'calendar-week'); -define('_EXTCAL_NAV_YEAR', 'year'); -define('_EXTCAL_NAV_MONTH', 'month'); -define('_EXTCAL_NAV_WEEK', 'week'); -define('_EXTCAL_NAV_DAY', 'day'); -define('_EXTCAL_NAV_AGENDA_WEEK', 'agenda-week'); -define('_EXTCAL_NAV_AGENDA_DAY', 'agenda-day'); -define('_EXTCAL_NAV_SEARCH', 'search'); -define('_EXTCAL_NAV_NEW_EVENT', 'new-event'); +define('_EXTCAL_NAV_CALMONTH', 'calendar-month'); +define('_EXTCAL_NAV_CALWEEK', 'calendar-week'); +define('_EXTCAL_NAV_YEAR', 'year'); +define('_EXTCAL_NAV_MONTH', 'month'); +define('_EXTCAL_NAV_WEEK', 'week'); +define('_EXTCAL_NAV_DAY', 'day'); +define('_EXTCAL_NAV_AGENDA_WEEK', 'agenda-week'); +define('_EXTCAL_NAV_AGENDA_DAY', 'agenda-day'); +define('_EXTCAL_NAV_SEARCH', 'search'); +define('_EXTCAL_NAV_NEW_EVENT', 'new-event'); -define('_EXTCAL_NAV_LIST', _EXTCAL_NAV_CALMONTH - . "\n" . _EXTCAL_NAV_CALWEEK - . "\n" . _EXTCAL_NAV_YEAR - . "\n" . _EXTCAL_NAV_MONTH - . "\n" . _EXTCAL_NAV_WEEK - . "\n" . _EXTCAL_NAV_DAY - . "\n" . _EXTCAL_NAV_AGENDA_WEEK - . "\n" . _EXTCAL_NAV_AGENDA_DAY - . "\n" . _EXTCAL_NAV_SEARCH - . "\n" . _EXTCAL_NAV_NEW_EVENT); +define('_EXTCAL_NAV_LIST', + _EXTCAL_NAV_CALMONTH . "\n" . _EXTCAL_NAV_CALWEEK . "\n" . _EXTCAL_NAV_YEAR . "\n" . _EXTCAL_NAV_MONTH . "\n" + . _EXTCAL_NAV_WEEK . "\n" . _EXTCAL_NAV_DAY . "\n" . _EXTCAL_NAV_AGENDA_WEEK . "\n" . _EXTCAL_NAV_AGENDA_DAY . "\n" + . _EXTCAL_NAV_SEARCH . "\n" . _EXTCAL_NAV_NEW_EVENT); - define('_EXTCAL_PREFIX_VIEW', 'view_'); define('_EXTCAL_SUFFIX_VIEW', '.php'); - -define('_EXTCAL_FILE_CALMONTH', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_CALMONTH . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_CALWEEK', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_CALWEEK . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_YEAR', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_YEAR . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_MONTH', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_MONTH . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_WEEK', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_WEEK . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_DAY', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_DAY . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_AGENDA_WEEK', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_AGENDA_WEEK . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_AGENDA_DAY', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_AGENDA_DAY . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_SEARCH', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_SEARCH . _EXTCAL_SUFFIX_VIEW); -define('_EXTCAL_FILE_NEW_EVENT', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_NEW_EVENT . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_CALMONTH', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_CALMONTH . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_CALWEEK', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_CALWEEK . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_YEAR', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_YEAR . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_MONTH', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_MONTH . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_WEEK', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_WEEK . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_DAY', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_DAY . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_AGENDA_WEEK', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_AGENDA_WEEK . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_AGENDA_DAY', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_AGENDA_DAY . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_SEARCH', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_SEARCH . _EXTCAL_SUFFIX_VIEW); +define('_EXTCAL_FILE_NEW_EVENT', _EXTCAL_PREFIX_VIEW . _EXTCAL_NAV_NEW_EVENT . _EXTCAL_SUFFIX_VIEW); + define ("_EXTCAL_MULTILOADER", "/class/xoopsform/multiuploads/formmultiuploads.php"); @@ -172,10 +166,10 @@ define ("_EXTCAL_EVENTS_YEAR", 6); //--------------------------------------------------- -define ('_EXTCAL_TS_SECOND', 1); -define ('_EXTCAL_TS_MINUTE', 60); -define ('_EXTCAL_TS_HOUR', 3600); -define ('_EXTCAL_TS_DAY', 86400); +define ('_EXTCAL_TS_SECOND', 1); +define ('_EXTCAL_TS_MINUTE', 60); +define ('_EXTCAL_TS_HOUR', 3600); +define ('_EXTCAL_TS_DAY', 86400); define ('_EXTCAL_TS_WEEK', 604800); //--------------------------------------------------- define ("_EXTCAL_TS_YEARLY", 32140800); @@ -185,6 +179,6 @@ define ("_EXTCAL_INFOBULLE_RGB_MIN", 220); define ("_EXTCAL_INFOBULLE_RGB_MAX", 250); - + ?> Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/language/english/modinfo.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -53,6 +53,7 @@ define('_MI_EXTCAL_EM_DATE_PATTERN_DESC', 'See the Date format on http://www.php.net/manual/en/function.date.php'); define('_MI_EXTCAL_EM_DATE_PATTERN_VALUE', _SHORTDATESTRING); define('_MI_EXTCAL_EMAIL_MODE', 'Email Format'); +define('_MI_EXTCAL_EMAIL_MODE_DESC', 'Select Email Format that you want to use'); define('_MI_EXTCAL_EMAIL_MODE_HTML', 'HTML Format'); define('_MI_EXTCAL_EMAIL_MODE_NONE', 'No email'); define('_MI_EXTCAL_EMAIL_MODE_TEXT', 'Plain text'); Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/rss.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/rss.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/rss.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -19,7 +19,7 @@ } header('Content-Type:text/xml; charset=utf-8'); $tpl = new XoopsTpl(); -$tpl->xoops_setCaching(0); +$tpl->caching=0; $tpl->xoops_setCacheTime($xoopsModuleConfig['rss_cache_time'] * _EXTCAL_TS_MINUTE); if (!$tpl->is_cached('db:extcal_rss.html', $cat)) { $events = $eventHandler->getUpcommingEvent($xoopsModuleConfig['rss_nb_event'], $cat); Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/view_week.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/view_week.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/view_week.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -16,14 +16,14 @@ // Validate the date (day, month and year) $dayTS = mktime(0, 0, 0, $month, $day, $year); -$offset = date('w', $dayTS) - $extcalConfig['week_start_day']; +$offset = date('w', $dayTS) - $xoopsModuleConfig['week_start_day']; $dayTS = $dayTS - ($offset * _EXTCAL_TS_DAY); $year = date('Y', $dayTS); $month = date('n', $dayTS); $day = date('j', $dayTS); $form = new XoopsSimpleForm('', 'navigSelectBox', $params['file'], 'get'); -$form->addElement(getListYears($year,$extcalConfig['agenda_nb_years_before'],$extcalConfig['agenda_nb_years_after'])); +$form->addElement(getListYears($year,$xoopsModuleConfig['agenda_nb_years_before'],$xoopsModuleConfig['agenda_nb_years_after'])); $form->addElement(getListMonths($month)); $form->addElement(getListDays($day)); $form->addElement(getListCategories($cat)); Modified: XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php =================================================================== --- XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php 2012-07-07 14:21:53 UTC (rev 9795) +++ XoopsModules/extcal/branches/jjdai/htdocs/modules/extcal/xoops_version.php 2012-07-07 16:09:22 UTC (rev 9796) @@ -14,64 +14,64 @@ setlocale(LC_TIME, $xoopsConfig['language']); //*************************************************************************************** -$modversion['name'] = _MI_EXTCAL_NAME; -$modversion['version'] = '2.37'; -$modversion['description'] = _MI_EXTCAL_DESC; -$modversion['credits'] = 'Zoullou'; -$modversion['author'] = 'Zoullou, Mage, Mamba, JJ Delalandre(JJDai)'; -$modversion['nickname'] = 'JJDai'; -$modversion['website'] = ''; -$modversion['license'] = 'GPL see LICENSE'; -$modversion['license_url'] = "www.gnu.org/licenses/gpl-2.0.html/"; -$modversion['official'] = 0; -$modversion['image'] = 'images/extcal_logo.png'; -$modversion['dirname'] = $moduleDirName; -$modversion['status_version'] = 'Beta 3'; +$modversion['name'] = _MI_EXTCAL_NAME; +$modversion['version'] = '2.37'; +$modversion['description'] = _MI_EXTCAL_DESC; +$modversion['credits'] = 'Zoullou'; +$modversion['author'] = 'Zoullou, Mage, Mamba, JJ Delalandre(JJDai)'; +$modversion['nickname'] = 'JJDai'; +$modversion['website'] = ''; +$modversion['license'] = 'GPL see LICENSE'; +$modversion['license_url'] = "www.gnu.org/licenses/gpl-2.0.html/"; +$modversion['official'] = 0; +$modversion['image'] = 'images/extcal_logo.png'; +$modversion['dirname'] = $moduleDirName; +$modversion['status_version'] = 'Beta 4'; $modversion['sqlfile']['mysql'] = 'sql/mysql.sql'; -$modversion['onInstall'] = 'include/install_function.php'; -$modversion['onUpdate'] = 'include/update_function.php'; -$modversion['system_menu'] = 1; -$modversion['help'] = 'page=help'; -$modversion['dirmoduleadmin'] = '/Frameworks/moduleclasses/moduleadmin'; -$modversion['icons16'] = '../../Frameworks/moduleclasses/icons/16'; -$modversion['icons32'] = '../../Frameworks/moduleclasses/icons/32'; +$modversion['onInstall'] = 'include/install_function.php'; +$modversion['onUpdate'] = 'include/update_function.php'; +$modversion['system_menu'] = 1; +$modversion['help'] = 'page=help'; +$modversion['dirmoduleadmin'] = '/Frameworks/moduleclasses/moduleadmin'; +$modversion['icons16'] = '../../Frameworks/moduleclasses/icons/16'; +$modversion['icons32'] = '../../Frameworks/moduleclasses/icons/32'; //*************************************************************************************** //about -$modversion["module_website_url"] = "http://www.xoops.org/"; +$modversion["module_website_url"] = "www.xoops.org/"; $modversion["module_website_name"] = "XOOPS"; -$modversion["release_date"] = "2012/03/27"; -$modversion['module_status'] = "Beta 3"; -$modversion['min_php'] = '5.2'; -$modversion['min_xoops'] = "2.5.0"; +$modversion["release_date"] = "2012/07/07"; +$modversion['module_status'] = "Beta 4"; +$modversion['min_php'] = '5.2'; +$modversion['min_xoops'] = "2.5.5"; // Admin things -$modversion['hasAdmin'] = 1; +$modversion['hasAdmin'] = 1; $modversion['adminindex'] = "admin/index.php"; -$modversion['adminmenu'] = "admin/menu.php"; +$modversion['adminmenu'] = "admin/menu.php"; // Menu // definitioin des menus $modversion['hasMain'] = 1; -$i = 0; +$i = 0; if (isset($GLOBALS['xoopsModule']) && $GLOBALS['xoopsModule']->getVar('dirname') == "extcal" ) { -/* - $user = isset($GLOBALS['xoopsUser']) ? $GLOBALS['xoopsUser'] : null; - $catHandler = xoops_getmodulehandler(_EXTCAL_CLS_CAT, _EXTCAL_MODULE); - if ($catHandler->haveSubmitRight($user)) { - $modversion['sub'][0]['name'] = _MI_EXTCAL_SUBMIT_EVENT; - $modversion['sub'][0]['url'] = _EXTCAL_FILE_NEW_EVENT; - } -*/ + /* + $user = isset($GLOBALS['xoopsUser']) ? $GLOBALS['xoopsUser'] : null; + $catHandler = xoops_getmodulehandler(_EXTCAL_CLS_CAT, _EXTCAL_MODULE); + if ($catHandler->haveSubmitRight($user)) { + $modversion['sub'][0]['name'] = _MI_EXTCAL_SUBMIT_EVENT; + $modversion['sub'][0]['url'] = _EXTCAL_FILE_NEW_EVENT; + } + */ $tTabs = getNavBarTabs(); - while(list($k,$v)=each($tTabs)){ - $i++; - $modversion['sub'][$i]['name'] = $v['name']; - $modversion['sub'][$i]['url'] = $v['href']; + while (list($k, $v) = each($tTabs)) { + $i++; + $modversion['sub'][$i]['name'] = $v['name']; + $modversion['sub'][$i]['url'] = $v['href']; } } @@ -83,462 +83,435 @@ $modversion['tables'][2] = "extcal_event"; $modversion['tables'][3] = "extcal_eventmember"; $modversion['tables'][4] = "extcal_eventnotmember"; -$modversion['tables'][5] = "extcal_file"; +$modversion['tables'][5] = "extcal_file"; $modversion['tables'][6] = "extcal_etablissement"; // Comments -$modversion['hasComments'] = 1; +$modversion['hasComments'] = 1; $modversion['comments']['itemName'] = 'event'; $modversion['comments']['pageName'] = 'event.php'; // Search -$modversion['hasSearch'] = 1; +$modversion['hasSearch'] = 1; $modversion['search']['file'] = "include/search.inc.php"; $modversion['search']['func'] = "extcal_search"; // Config items $i = 0; - -$modversion['config'][$i]['name'] = 'visible_tabs'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_VISIBLE_TABS'; + +$modversion['config'][$i]['name'] = 'visible_tabs'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_VISIBLE_TABS'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_VISIBLE_TABS_DESC'; -$modversion['config'][$i]['formtype'] = 'select_multi'; -$modversion['config'][$i]['valuetype'] = 'array'; -$modversion['config'][$i]['default'] = array(_EXTCAL_NAV_CALMONTH, - _EXTCAL_NAV_CALWEEK, - _EXTCAL_NAV_YEAR, - _EXTCAL_NAV_MONTH, - _EXTCAL_NAV_WEEK, - _EXTCAL_NAV_DAY, - _EXTCAL_NAV_AGENDA_WEEK, - _EXTCAL_NAV_AGENDA_DAY , - _EXTCAL_NAV_SEARCH, - _EXTCAL_NAV_NEW_EVENT); +$modversion['config'][$i]['formtype'] = 'select_multi'; +$modversion['config'][$i]['valuetype'] = 'array'; +$modversion['config'][$i]['default'] = array( + _EXTCAL_NAV_CALMONTH, _EXTCAL_NAV_CALWEEK, _EXTCAL_NAV_YEAR, _EXTCAL_NAV_MONTH, _EXTCAL_NAV_WEEK, _EXTCAL_NAV_DAY, _EXTCAL_NAV_AGENDA_WEEK, _EXTCAL_NAV_AGENDA_DAY, _EXTCAL_NAV_SEARCH, _EXTCAL_NAV_NEW_EVENT +); // $t = print_r($modversion['config'][$i]['default'],true); // echo _EXTCAL_NAV_CALMONTH . "<br /><pre>{$t}</pre>"; -$modversion['config'][$i]['options'] = array('_MI_EXTCAL_NAV_CALMONTH' => _EXTCAL_NAV_CALMONTH, - '_MI_EXTCAL_NAV_CALWEEK' => _EXTCAL_NAV_CALWEEK, - '_MI_EXTCAL_NAV_YEAR' => _EXTCAL_NAV_YEAR, - '_MI_EXTCAL_NAV_MONTH' => _EXTCAL_NAV_MONTH, - '_MI_EXTCAL_NAV_WEEK' => _EXTCAL_NAV_WEEK, - '_MI_EXTCAL_NAV_DAY' => _EXTCAL_NAV_DAY, - '_MI_EXTCAL_NAV_AGENDA_WEEK' => _EXTCAL_NAV_AGENDA_WEEK, - '_MI_EXTCAL_NAV_AGENDA_DAY' => _EXTCAL_NAV_AGENDA_DAY, - '_MI_EXTCAL_NAV_SEARCH' => _EXTCAL_NAV_SEARCH, - '_MI_EXTCAL_NAV_NEW_EVENT' => _EXTCAL_NAV_NEW_EVENT - ); +$modversion['config'][$i]['options'] = array( + '_MI_EXTCAL_NAV_CALMONTH' => _EXTCAL_NAV_CALMONTH, '_MI_EXTCAL_NAV_CALWEEK' => _EXTCAL_NAV_CALWEEK, '_MI_EXTCAL_NAV_YEAR' => _EXTCAL_NAV_YEAR, '_MI_EXTCAL_NAV_MONTH' => _EXTCAL_NAV_MONTH, '_MI_EXTCAL_NAV_WEEK' => _EXTCAL_NAV_WEEK, '_MI_EXTCAL_NAV_DAY' => _EXTCAL_NAV_DAY, '_MI_EXTCAL_NAV_AGENDA_WEEK' => _EXTCAL_NAV_AGENDA_WEEK, '_MI_EXTCAL_NAV_AGENDA_DAY' => _EXTCAL_NAV_AGENDA_DAY, '_MI_EXTCAL_NAV_SEARCH' => _EXTCAL_NAV_SEARCH, '_MI_EXTCAL_NAV_NEW_EVENT' => _EXTCAL_NAV_NEW_EVENT +); //----------------------------------------------------------------------------- $i++; -$modversion['config'][$i]['name'] = 'weight_tabs'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_TABS_WEIGHT'; +$modversion['config'][$i]['name'] = 'weight_tabs'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_TABS_WEIGHT'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_TABS_WEIGHT_DESC'; -$modversion['config'][$i]['formtype'] = 'textarea'; -$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['formtype'] = 'textarea'; +$modversion['config'][$i]['valuetype'] = 'text'; //$modversion['config'][$i]['default'] = "10,20,30,40,50,_EXTCAL_TS_MINUTE,70,80,90,100,0"; $modversion['config'][$i]['default'] = _EXTCAL_NAV_LIST; //----------------------------------------------------------------------------- $i++; -$modversion['config'][$i]['name'] = 'start_page'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_START_PAGE'; +$modversion['config'][$i]['name'] = 'start_page'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_START_PAGE'; $modversion['config'][$i]['description'] = ''; -$modversion['config'][$i]['formtype'] = 'select'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _EXTCAL_FILE_CALMONTH; -$modversion['config'][$i]['options'] = array('_MI_EXTCAL_NAV_CALMONTH' => _EXTCAL_FILE_CALMONTH, - '_MI_EXTCAL_NAV_CALWEEK' => _EXTCAL_FILE_CALWEEK, - '_MI_EXTCAL_NAV_YEAR' => _EXTCAL_FILE_YEAR, - '_MI_EXTCAL_NAV_MONTH' => _EXTCAL_FILE_MONTH, - '_MI_EXTCAL_NAV_WEEK' => _EXTCAL_FILE_WEEK, - '_MI_EXTCAL_NAV_DAY' => _EXTCAL_FILE_DAY, - '_MI_EXTCAL_NAV_AGENDA_WEEK' => _EXTCAL_FILE_AGENDA_WEEK, - '_MI_EXTCAL_NAV_AGENDA_DAY' => _EXTCAL_FILE_AGENDA_DAY, - '_MI_EXTCAL_NAV_SEARCH' => _EXTCAL_FILE_SEARCH, - '_MI_EXTCAL_NAV_NEW_EVENT' => _EXTCAL_FILE_NEW_EVENT - ); - +$modversion['config'][$i]['formtype'] = 'select'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _EXTCAL_FILE_CALMONTH; +$modversion['config'][$i]['options'] = array( + '_MI_EXTCAL_NAV_CALMONTH' => _EXTCAL_FILE_CALMONTH, '_MI_EXTCAL_NAV_CALWEEK' => _EXTCAL_FILE_CALWEEK, '_MI_EXTCAL_NAV_YEAR' => _EXTCAL_FILE_YEAR, '_MI_EXTCAL_NAV_MONTH' => _EXTCAL_FILE_MONTH, '_MI_EXTCAL_NAV_WEEK' => _EXTCAL_FILE_WEEK, '_MI_EXTCAL_NAV_DAY' => _EXTCAL_FILE_DAY, '_MI_EXTCAL_NAV_AGENDA_WEEK' => _EXTCAL_FILE_AGENDA_WEEK, '_MI_EXTCAL_NAV_AGENDA_DAY' => _EXTCAL_FILE_AGENDA_DAY, '_MI_EXTCAL_NAV_SEARCH' => _EXTCAL_FILE_SEARCH, '_MI_EXTCAL_NAV_NEW_EVENT' => _EXTCAL_FILE_NEW_EVENT +); + $i++; -$modversion['config'][$i]['name'] = 'week_start_day'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_WEEK_START_DAY'; +$modversion['config'][$i]['name'] = 'week_start_day'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_WEEK_START_DAY'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_WEEK_START_DAY_DESC'; -$modversion['config'][$i]['formtype'] = 'select'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; -$modversion['config'][$i]['options'] = array('_MI_EXTCAL_DAY_SUNDAY' => 0, - '_MI_EXTCAL_DAY_MONDAY' => 1, - '_MI_EXTCAL_DAY_TUESDAY' => 2, - '_MI_EXTCAL_DAY_WEDNESDAY' => 3, - '_MI_EXTCAL_DAY_THURSDAY' => 4, - '_MI_EXTCAL_DAY_FRIDAY' => 5, - '_MI_EXTCAL_DAY_SATURDAY' => 6); +$modversion['config'][$i]['formtype'] = 'select'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['options'] = array( + '_MI_EXTCAL_DAY_SUNDAY' => 0, '_MI_EXTCAL_DAY_MONDAY' => 1, '_MI_EXTCAL_DAY_TUESDAY' => 2, '_MI_EXTCAL_DAY_WEDNESDAY' => 3, '_MI_EXTCAL_DAY_THURSDAY' => 4, '_MI_EXTCAL_DAY_FRIDAY' => 5, '_MI_EXTCAL_DAY_SATURDAY' => 6 +); $i++; -$modversion['config'][$i]['name'] = 'list_position'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_LIST_POS'; +$modversion['config'][$i]['name'] = 'list_position'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_LIST_POS'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_LIST_POS_DESC'; -$modversion['config'][$i]['formtype'] = 'select'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = 1; -$modversion['config'][$i]['options'] = array('_MI_EXTCAL_BEFORE' => 0, - '_MI_EXTCAL_AFTER' => 1); +$modversion['config'][$i]['formtype'] = 'select'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['options'] = array( + '_MI_EXTCAL_BEFORE' => 0, '_MI_EXTCAL_AFTER' => 1 +); $i++; -$modversion['config'][$i]['name'] = 'rss_cache_time'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_RSS_CACHE_TIME'; +$modversion['config'][$i]['name'] = 'rss_cache_time'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_RSS_CACHE_TIME'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_RSS_CACHE_TIME_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = _EXTCAL_TS_MINUTE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = _EXTCAL_TS_MINUTE; $i++; -$modversion['config'][$i]['name'] = 'rss_nb_event'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_RSS_NB_EVENT'; +$modversion['config'][$i]['name'] = 'rss_nb_event'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_RSS_NB_EVENT'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_RSS_NB_EVENT_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 10; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 10; $i++; -$modversion['config'][$i]['name'] = 'whos_going'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_WHOS_GOING'; +$modversion['config'][$i]['name'] = 'whos_going'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_WHOS_GOING'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_WHOS_GOING_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; $i++; -$modversion['config'][$i]['name'] = 'whosnot_going'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_WHOSNOT_GOING'; +$modversion['config'][$i]['name'] = 'whosnot_going'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_WHOSNOT_GOING'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_WHOSNOT_GOING_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; $i++; -$modversion['config'][$i]['name'] = 'sort_order'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_SORT_ORDER'; +$modversion['config'][$i]['name'] = 'sort_order'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_SORT_ORDER'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_SORT_ORDER_DESC'; -$modversion['config'][$i]['formtype'] = 'select'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = 1; -$modversion['config'][$i]['options'] = array('_MI_EXTCAL_ASCENDING' => 'ASC', - '_MI_EXTCAL_DESCENDING' => 'DESC'); +$modversion['config'][$i]['formtype'] = 'select'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['options'] = array( + '_MI_EXTCAL_ASCENDING' => 'ASC', '_MI_EXTCAL_DESCENDING' => 'DESC' +); $i++; -$modversion['config'][$i]['name'] = 'event_date_year'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_EY_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'event_date_year'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_EY_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_EY_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_EY_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_EY_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'nav_date_month'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_NM_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'nav_date_month'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_NM_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_NM_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_NM_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_NM_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'event_date_month'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_EM_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'event_date_month'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_EM_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_EM_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_EM_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_EM_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'nav_date_week'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_NW_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'nav_date_week'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_NW_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_NW_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_NW_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_NW_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'event_date_week'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_EW_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'event_date_week'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_EW_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_EW_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_EW_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_EW_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'nav_date_day'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_ND_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'nav_date_day'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_ND_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_ND_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_ND_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_ND_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'event_date_day'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_ED_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'event_date_day'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_ED_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_ED_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_ED_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_ED_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'event_date_event'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_EE_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'event_date_event'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_EE_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_EE_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_EE_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_EE_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'event_date_block'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_EB_DATE_PATTERN'; +$modversion['config'][$i]['name'] = 'event_date_block'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_EB_DATE_PATTERN'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_EB_DATE_PATTERN_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['default'] = _MI_EXTCAL_EB_DATE_PATTERN_VALUE; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['default'] = _MI_EXTCAL_EB_DATE_PATTERN_VALUE; $i++; -$modversion['config'][$i]['name'] = 'diplay_past_event_list'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_DISP_PAST_E_LIST'; +$modversion['config'][$i]['name'] = 'diplay_past_event_list'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_DISP_PAST_E_LIST'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_DISP_PAST_E_LIST_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; $i++; -$modversion['config'][$i]['name'] = 'diplay_past_event_cal'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_DISP_PAST_E_CAL'; +$modversion['config'][$i]['name'] = 'diplay_past_event_cal'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_DISP_PAST_E_CAL'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_DISP_PAST_E_CAL_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; $i++; -$modversion['config'][$i]['name'] = 'allowed_file_extention'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_FILE_EXTENTION'; +$modversion['config'][$i]['name'] = 'allowed_file_extention'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_FILE_EXTENTION'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_FILE_EXTENTION_DESC'; -$modversion['config'][$i]['formtype'] = 'select_multi'; -$modversion['config'][$i]['valuetype'] = 'array'; -$modversion['config'][$i]['default'] = array('doc', 'jpg', 'jpeg', 'gif', 'png', 'pdf', 'txt'); -$modversion['config'][$i]['options'] = array('ai' => 'ai', 'aif' => 'aif', 'aiff' => 'aiff', 'asc' => 'asc', 'au' => 'au', 'avi' => 'avi', 'bin' => 'bin', 'bmp' => 'bmp', 'class' => 'class', 'csh' => 'csh', 'css' => 'css', 'dcr' => 'dcr', 'dir' => 'dir', 'dll' => 'dll', 'doc' => 'doc', 'dot' => 'dot', 'dtd' => 'dtd', 'dxr' => 'dxr', 'ent' => 'ent', 'eps' => 'eps', 'exe' => 'exe', 'gif' => 'gif', 'gtar' => 'gtar', 'gz' => 'gz', 'hqx' => 'hqx', 'htm' => 'htm', 'html' => 'html', 'ics' => 'ics', 'ifb' => 'ifb', 'jpe' => 'jpe', 'jpeg' => 'jpeg', 'jpg' => 'jpg', 'js' => 'js', 'kar' => 'kar', 'lha' => 'lha', 'lzh' => 'lzh', 'm3u' => 'm3u', 'mid' => 'mid', 'midi' => 'midi', 'mod' => 'mod', 'mov' => 'mov', 'mp1' => 'mp1', 'mp2' => 'mp2', 'mp3' => 'mp3', 'mpe' => 'mpe', 'mpeg' => 'mpeg', 'mpg' => 'mpg', 'pbm' => 'pbm', 'pdf' => 'pdf', 'pgm' => 'pgm', 'php' => 'php', 'php3' => 'php3', 'php5' => 'php5', 'phtml' => 'phtml', 'png' => 'png', 'pnm' => 'pnm', 'ppm' => 'ppm', 'ppt' => 'ppt', 'ps' => 'ps', 'qt' => 'qt', 'ra' => 'ra', 'ram' => 'ram', 'rm' => 'rm', 'rpm' => 'rpm', 'rtf' => 'rtf', 'sgm' => 'sgm', 'sgml' => 'sgml', 'sh' => 'sh', 'sit' => 'sit', 'smi' => 'smi', 'smil' => 'smil', 'snd' => 'snd', 'so' => 'so', 'spl' => 'spl', 'swf' => 'swf', 'tar' => 'tar', 'tcl' => 'tcl', 'tif' => 'tif', 'tiff' => 'tiff', 'tsv' => 'tsv', 'txt' => 'txt', 'wav' => 'wav', 'wbmp' => 'wbmp', 'wbxml' => 'wbxml', 'wml' => 'wml', 'wmlc' => 'wmlc', 'wmls' => 'wmls', 'wmlsc' => 'wmlsc', 'xbm' => 'xbm', 'xht' => 'xht', 'xhtml' => 'xhtml', 'xla' => 'xla', 'xls' => 'xls', 'xlt' => 'xlt', 'xpm' => 'xpm', 'xsl' => 'xsl', 'zip' => 'zip'); +$modversion['config'][$i]['formtype'] = 'select_multi'; +$modversion['config'][$i]['valuetype'] = 'array'; +$modversion['config'][$i]['default'] = array('doc', 'jpg', 'jpeg', 'gif', 'png', 'pdf', 'txt'); +$modversion['config'][$i]['options'] = array('ai' => 'ai', 'aif' => 'aif', 'aiff' => 'aiff', 'asc' => 'asc', 'au' => 'au', 'avi' => 'avi', 'bin' => 'bin', 'bmp' => 'bmp', 'class' => 'class', 'csh' => 'csh', 'css' => 'css', 'dcr' => 'dcr', 'dir' => 'dir', 'dll' => 'dll', 'doc' => 'doc', 'dot' => 'dot', 'dtd' => 'dtd', 'dxr' => 'dxr', 'ent' => 'ent', 'eps' => 'eps', 'exe' => 'exe', 'gif' => 'gif', 'gtar' => 'gtar', 'gz' => 'gz', 'hqx' => 'hqx', 'htm' => 'htm', 'html' => 'html', 'ics' => 'ics', 'ifb' => 'ifb', 'jpe' => 'jpe', 'jpeg' => 'jpeg', 'jpg' => 'jpg', 'js' => 'js', 'kar' => 'kar', 'lha' => 'lha', 'lzh' => 'lzh', 'm3u' => 'm3u', 'mid' => 'mid', 'midi' => 'midi', 'mod' => 'mod', 'mov' => 'mov', 'mp1' => 'mp1', 'mp2' => 'mp2', 'mp3' => 'mp3', 'mpe' => 'mpe', 'mpeg' => 'mpeg', 'mpg' => 'mpg', 'pbm' => 'pbm', 'pdf' => 'pdf', 'pgm' => 'pgm', 'php' => 'php', 'php3' => 'php3', 'php5' => 'php5', 'phtml' => 'phtml', 'png' => 'png', 'pnm' => 'pnm', 'ppm' => 'ppm', 'ppt' => 'ppt', 'ps' => 'ps', 'qt' => 'qt', 'ra' => 'ra', 'ram' => 'ram', 'rm' => 'rm', 'rpm' => 'rpm', 'rtf' => 'rtf', 'sgm' => 'sgm', 'sgml' => 'sgml', 'sh' => 'sh', 'sit' => 'sit', 'smi' => 'smi', 'smil' => 'smil', 'snd' => 'snd', 'so' => 'so', 'spl' => 'spl', 'swf' => 'swf', 'tar' => 'tar', 'tcl' => 'tcl', 'tif' => 'tif', 'tiff' => 'tiff', 'tsv' => 'tsv', 'txt' => 'txt', 'wav' => 'wav', 'wbmp' => 'wbmp', 'wbxml' => 'wbxml', 'wml' => 'wml', 'wmlc' => 'wmlc', 'wmls' => 'wmls', 'wmlsc' => 'wmlsc', 'xbm' => 'xbm', 'xht' => 'xht', 'xhtml' => 'xhtml', 'xla' => 'xla', 'xls' => 'xls', 'xlt' => 'xlt', 'xpm' => 'xpm', 'xsl' => 'xsl', 'zip' => 'zip'); $i++; -$modversion['config'][$i]['name'] = 'allow_html'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_HTML'; +$modversion['config'][$i]['name'] = 'allow_html'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_HTML'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_HTML_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 0; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 0; //modif JJD ------------------------------------------------------------ $i++; -$modversion['config'][$i]['name'] = 'agenda_tranche_minutes'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_SLICE_MINUTES'; +$modversion['config'][$i]['name'] = 'agenda_tranche_minutes'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_SLICE_MINUTES'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_AGENDA_SLICE_MINUTES_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 15; +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 15; $i++; -$modversion['config'][$i]['name'] = 'agenda_start_hour'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_START_HOUR'; +$modversion['config'][$i]['name'] = 'agenda_start_hour'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_START_HOUR'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_AGENDA_START_HOUR_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 8; +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 8; $i++; -$modversion['config'][$i]['name'] = 'agenda_end_hour'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_END_HOUR'; +$modversion['config'][$i]['name'] = 'agenda_end_hour'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_END_HOUR'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_AGENDA_END_HOUR_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 20; +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 20; $i++; -$modversion['config'][$i]['name'] = 'agenda_nb_days_week'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_NB_DAYS_WEEK'; +$modversion['config'][$i]['name'] = 'agenda_nb_days_week'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_NB_DAYS_WEEK'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_AGENDA_NB_DAYS_WEEK_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 10; +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 10; $i++; -$modversion['config'][$i]['name'] = 'agenda_nb_days_day'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_NB_DAYS_DAY'; +$modversion['config'][$i]['name'] = 'agenda_nb_days_day'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_AGENDA_NB_DAYS_DAY'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_AGENDA_NB_DAYS_DAY_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; $i++; -$modversion['config'][$i]['name'] = 'agenda_nb_years_before'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_NB_YEARS_BEFORE'; +$modversion['config'][$i]['name'] = 'agenda_nb_years_before'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_NB_YEARS_BEFORE'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_NB_YEARS_BEFORE_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 0; +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 0; $i++; -$modversion['config'][$i]['name'] = 'agenda_nb_years_after'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_NB_YEARS_AFTER'; +$modversion['config'][$i]['name'] = 'agenda_nb_years_after'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_NB_YEARS_AFTER'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_NB_YEARS_AFTER_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 5; - +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 5; + $i++; -$modversion['config'][$i]['name'] = 'break5'; -$modversion['config'][$i]['title'] = ''; +$modversion['config'][$i]['name'] = 'break5'; +$modversion['config'][$i]['title'] = ''; $modversion['config'][$i]['description'] = ''; -$modversion['config'][$i]['formtype'] = 'line_break'; -$modversion['config'][$i]['valuetype'] = 'textbox'; -$modversion['config'][$i]['default'] = 'head'; +$modversion['config'][$i]['formtype'] = 'line_break'; +$modversion['config'][$i]['valuetype'] = 'textbox'; +$modversion['config'][$i]['default'] = 'head'; //---------------------------------------------------------- $i++; -$modversion['config'][$i]['name'] = 'showInfoBulle'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_SHOW_INFOBULLE'; +$modversion['config'][$i]['name'] = 'showInfoBulle'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_SHOW_INFOBULLE'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_SHOW_INFOBULLE_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 1; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 1; $i++; -$modversion['config'][$i]['name'] = 'showId'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_SHOW_ID'; +$modversion['config'][$i]['name'] = 'showId'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_SHOW_ID'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_SHOW_ID_DESC'; -$modversion['config'][$i]['formtype'] = 'yesno'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 0; +$modversion['config'][$i]['formtype'] = 'yesno'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 0; /* inutilise pour le moment, prevu pour ajout navigation dans minical */ $i++; -$modversion['config'][$i]['name'] = 'offsetMinical'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_OFFSET_MINICAL'; +$modversion['config'][$i]['name'] = 'offsetMinical'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_OFFSET_MINICAL'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_OFFSET_MINICAL_DESC'; -$modversion['config'][$i]['formtype'] = 'hidden'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 0; +$modversion['config'][$i]['formtype'] = 'hidden'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 0; $i++; -$modversion['config'][$i]['name'] = 'nbEventsByPage'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_NB_EVENTS_BY_PAGE'; +$modversion['config'][$i]['name'] = 'nbEventsByPage'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_NB_EVENTS_BY_PAGE'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_NB_EVENTS_BY_PAGE_DESC'; -$modversion['config'][$i]['formtype'] = 'int'; -$modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 10; - +$modversion['config'][$i]['formtype'] = 'int'; +$modversion['config'][$i]['valuetype'] = 'int'; +$modversion['config'][$i]['default'] = 10; + // utilisation de security image $i++; -$modversion['config'][$i]['name'] = 'email_Mode'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_EMAIL_MODE'; -$modversion['config'][$i]['formtype'] = 'select'; +$modversion['config'][$i]['name'] = 'email_Mode'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_EMAIL_MODE'; +$modversion['config'][$i]['description'] = '_MI_EXTCAL_EMAIL_MODE_DESC'; +$modversion['config'][$i]['formtype'] = 'select'; $modversion['config'][$i]['valuetype'] = 'int'; -$modversion['config'][$i]['default'] = 0; -$modversion['config'][$i]['options'] = array('_MI_EXTCAL_EMAIL_MODE_NONE' => 0, - '_MI_EXTCAL_EMAIL_MODE_TEXT' => 1, - '_MI_EXTCAL_EMAIL_MODE_HTML' => 2); +$modversion['config'][$i]['default'] = 0; +$modversion['config'][$i]['options'] = array( + '_MI_EXTCAL_EMAIL_MODE_NONE' => 0, '_MI_EXTCAL_EMAIL_MODE_TEXT' => 1, '_MI_EXTCAL_EMAIL_MODE_HTML' => 2 +); $i++; -$modversion['config'][$i]['name'] = 'pear_path'; -$modversion['config'][$i]['title'] = '_MI_EXTCAL_PEAR_PATH'; +$modversion['config'][$i]['name'] = 'pear_path'; +$modversion['config'][$i]['title'] = '_MI_EXTCAL_PEAR_PATH'; $modversion['config'][$i]['description'] = '_MI_EXTCAL_PEAR_PATH_DESC'; -$modversion['config'][$i]['formtype'] = 'textbox'; -$modversion['config'][$i]['valuetype'] = 'text'; -$modversion['config'][$i]['size'] = 80; -$modversion['config'][$i]['default'] = ''; +$modversion['config'][$i]['formtype'] = 'textbox'; +$modversion['config'][$i]['valuetype'] = 'text'; +$modversion['config'][$i]['size'] = 80; +$modversion['config'][$i]['default'] = ''; - - - //modif JJD ------------------------------------------------------------ // Templates -$i = 1; -$modversion['templates'][$i]['file'] = 'extcal_view_year.html'; +$i = 1; +$modversion['templates'][$i]['file'] = 'extcal_view_year.html'; $modversion['templates'][$i]['description'] = ''; $i++; -$modversion['templates'][$i]['file'] = 'extcal_view_month.html'; +$modversion['templates'][$i]['file'] = 'extcal_view_month.html'; $modversion['templates'][$i]['description'] = ''; $i++; -$modversion['templates'][$i]['file'] = 'extcal_view_week.html'; +$modversion['templates'][$i]['file'] = 'extcal_view_week.html'; $modversion['templates'][$i]['description'] = ''; $i++; -$modversion['templates'][$i]['file'] = 'extcal_view_day.html'; +$modversion['templates'][$i]['file'] = 'extcal_view_day.html'; $modversion['templates'][$i]['description'] = ''; $i++; -$modversion['templates'][$i]['file'] = 'extcal_view_calendar-month.html'; +$modversion['templates'][$i]['file'] = 'extcal_view_calendar-month.html'; $modversion['templates'][$i]['description'] = ''; $i++; -$modversion['tem... [truncated message content] |
From: <ce...@us...> - 2012-07-07 14:22:00
|
Revision: 9795 http://xoops.svn.sourceforge.net/xoops/?rev=9795&view=rev Author: cesag Date: 2012-07-07 14:21:53 +0000 (Sat, 07 Jul 2012) Log Message: ----------- changelog.txt conversion utf8 to ANSI for french extcal 2.37 beta 3. Modified Paths: -------------- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt Modified: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt 2012-07-07 14:11:46 UTC (rev 9794) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt 2012-07-07 14:21:53 UTC (rev 9795) @@ -1,64 +1,64 @@ 2012/02/02: Version 2.37 (JJD.fr) =================================== -- Ajout du champ icône dans la table event_event -- Ajout du champ icône dans la table event_cat -- Affichage de l'icône de event/cat dans l'infobulle -- Mise à jour des constantes de langue -- Patch de mise à jour des tables +- Ajout du champ ic\xF4ne dans la table event_event +- Ajout du champ ic\xF4ne dans la table event_cat +- Affichage de l'ic\xF4ne de event/cat dans l'infobulle +- Mise \xE0 jour des constantes de langue +- Patch de mise \xE0 jour des tables 2012/01/31: Version 2.36 (JJD.fr) =================================== - Correction d'affichage -- Remplacement des infobulles par un autre modèle plus pro +- Remplacement des infobulles par un autre mod\xE8le plus pro 2012/01/21: Version 2.35 (JJD.fr) =================================== -- Réintrégation du fichier de mise à jour extcal_2_34.php omis dans la version précédente +- R\xE9intr\xE9gation du fichier de mise \xE0 jour extcal_2_34.php omis dans la version pr\xE9c\xE9dente - Correction du zoom sur les photos dans certaines vue -- Correction valeur par défaut à 0 de event_etablissement dans la table event +- Correction valeur par d\xE9faut \xE0 0 de event_etablissement dans la table event - Instanciation de extcalConfig <=> xoopsModuleConfig pour les blocks 2012/01/06: Version 2.34 (JJD.fr) =================================== - - Correction de la gestion des images des évènements et de l'établissement + - Correction de la gestion des images des \xE9v\xE8nements et de l'\xE9tablissement - Correction du flux RSS - - Correction du motif des expressions régulières pour la validation des dates - - Correction du lien sur le site de l'établissement - - Suppression du retour à la ligne avant la devise dans la fiche de l'établissement + - Correction du motif des expressions r\xE9guli\xE8res pour la validation des dates + - Correction du lien sur le site de l'\xE9tablissement + - Suppression du retour \xE0 la ligne avant la devise dans la fiche de l'\xE9tablissement =================================== 2011/12/30: Version 2.34 (JJD.fr) =================================== - - Champ "desc" de la table "etablissement" renomé en "description". - - Correction template, admin et font-office pour les établissements + - Champ "desc" de la table "etablissement" renom\xE9 en "description". + - Correction template, admin et font-office pour les \xE9tablissements =================================== 2011/12/30: Version 2.33 (JJD.fr) =================================== -- ré écriture des fonctions +- r\xE9 \xE9criture des fonctions bExtcalMinicalShow bExtcalMinicaledit (utilisation de xoopsform) bExtcalMinicalAddEventToArray (simplication du code)) - Ajout de la constante 'CALENDAR_ROOT' dans le fichier constantes.php - et suppression de cette déclaration dans tous les autres fichiers puisque - le fichier 'constantes.php' est inclus systématiquement. - Par ailleurs cela permettra à terme de déplacer la bibliothèque 'pear' + et suppression de cette d\xE9claration dans tous les autres fichiers puisque + le fichier 'constantes.php' est inclus syst\xE9matiquement. + Par ailleurs cela permettra \xE0 terme de d\xE9placer la biblioth\xE8que 'pear' avec les autres libraires comme jQuery, en vue de pourvoir l'utiliser avec d'autre modules, - sans que cette librairie ne soit recopiée à chaque utilisation. - Cette librairie sera supprimée du module dans une prochaine version. - Il est d'ors et déjà possible de changer + sans que cette librairie ne soit recopi\xE9e \xE0 chaque utilisation. + Cette librairie sera supprim\xE9e du module dans une prochaine version. + Il est d'ors et d\xE9j\xE0 possible de changer define('_EXTCAL_PEAR_CALENDAR', XOOPS_ROOT_PATH . '/modules/extcal/class/pear/Calendar'); par define('_EXTCAL_PEAR_CALENDAR', XOOPS_PATH . '/pear/Calendar'); - si la librairie 'pear' est installée au même endroit que jQuery. + si la librairie 'pear' est install\xE9e au m\xEAme endroit que jQuery. -- Adminstration des évènements "catégories" et "établissements" : - Ajout d'un lien sur le nom pour accéder directement à la fiche en modification. +- Adminstration des \xE9v\xE8nements "cat\xE9gories" et "\xE9tablissements" : + Ajout d'un lien sur le nom pour acc\xE9der directement \xE0 la fiche en modification. -- Répartition des blocks dans des fichiers différents pour faciliter la lecture et le chargement +- R\xE9partition des blocks dans des fichiers diff\xE9rents pour faciliter la lecture et le chargement Supression du block "excal_block.php" - Création des blocks: + Cr\xE9ation des blocks: "minical.php" "spotlight_events.php" "upcoming.php" @@ -67,18 +67,18 @@ "random_events.php" "catetogy_events.php" -- Ajout des onglets dans la fiche d'édition d'un évènement +- Ajout des onglets dans la fiche d'\xE9dition d'un \xE9v\xE8nement -- Ajout dans le menu principal de gauche de l'accès aux onglets visibles +- Ajout dans le menu principal de gauche de l'acc\xE8s aux onglets visibles -- Mutualisation des listes de sélection dans le "template" "navBar" +- Mutualisation des listes de s\xE9lection dans le "template" "navBar" - Correction du CSS des infobulles Supression de la classe "*" et ajout de la taille de la police dans "zone1" - Options du module : - Ajout de l'ordre d'affichage des onglets (influe également sur le menu latéral) - Ajout d'une option du module pour le positionnement des listes de sélection + Ajout de l'ordre d'affichage des onglets (influe \xE9galement sur le menu lat\xE9ral) + Ajout d'une option du module pour le positionnement des listes de s\xE9lection - Classe "event" : remplacement des fonctions ci-dessous par la fonction unique getEventOnPeriode getEventDay, getEventWeek, getEventCalendarWeek, getEventCalendarMonth, @@ -86,25 +86,25 @@ - Ajout de l'affichage d'une horloge flash avec le mini calendrier ajout du "template" "horloge" -- Ajout d'un "template" pour l'image xoops affichée en option avec le mini calendrier, +- Ajout d'un "template" pour l'image xoops affich\xE9e en option avec le mini calendrier, et suppression du code smarty dans le block "minicalendrier". 2011/10/21a: Version 2.32 (JJD.fr) =================================== - - Correction de la fonction "getSearchEvent" utilisée par la recherche de Xoops; + - Correction de la fonction "getSearchEvent" utilis\xE9e par la recherche de Xoops; Elle ne prenait en compte que le premier mot d'une expression. - De plus elle a été adaptée pour une recherche à partir du module lui-même - avec des critères spécifiques (expression + catégorie et par la suite sur le mois et l'année sont prévus). - Le recherche était faite sur les champs 'event_title','event_desc','event_contact','event_address'. - Le champ 'cat_name' a été ajouté dans la recherche pour permettre - de trouver des mots dans le titre de la catégorie. + De plus elle a \xE9t\xE9 adapt\xE9e pour une recherche \xE0 partir du module lui-m\xEAme + avec des crit\xE8res sp\xE9cifiques (expression + cat\xE9gorie et par la suite sur le mois et l'ann\xE9e sont pr\xE9vus). + Le recherche \xE9tait faite sur les champs 'event_title','event_desc','event_contact','event_address'. + Le champ 'cat_name' a \xE9t\xE9 ajout\xE9 dans la recherche pour permettre + de trouver des mots dans le titre de la cat\xE9gorie. - ajout d'une vue de recherche. - Cette vue permet une recherche plus étendue sur une expression, une catégorie, - sur l'année, le mois, ... - La date aura été modifiée en "datatime" au lieu de int(11). + Cette vue permet une recherche plus \xE9tendue sur une expression, une cat\xE9gorie, + sur l'ann\xE9e, le mois, ... + La date aura \xE9t\xE9 modifi\xE9e en "datatime" au lieu de int(11). important: - Il faut penser à ajouter cet onglet dans ceux visibles dans les options du module. + Il faut penser \xE0 ajouter cet onglet dans ceux visibles dans les options du module. 2011/10/21a: Version 2.31 (JJD.fr) =================================== @@ -112,67 +112,67 @@ - Correction de la devise et ajout des constantes de devises define('_MD_EXTCAL_DEVISE1', "Euro"); define('_MD_EXTCAL_DEVISE2', "Euros"); - define('_MD_EXTCAL_DEVISE3', "€"); + define('_MD_EXTCAL_DEVISE3', "\x80"); - Modification de la feuille de style des infobulles. Suppression de la largeur de la classe ".tip-top" Pour permettre un redimensionnement automatique. Ajout des attributs 'infoBulle_zone1', 'infoBulle_zone2' et 'infoBulle_zone3' pour pemettre l'affichage de l'image et du texte. - 'infoBulle_zone1' : positionne la première infobulle image ou texte - 'infoBulle_zone2' : positionne la 2ème infobulle à droite de la première si il y une image - 'infoBulle_zone3' : positionne la 2ème infobulle sous la première si il y une image - Pour modifier la position de la deuxième infobulle changer 'infoBulle_zone2' + 'infoBulle_zone1' : positionne la premi\xE8re infobulle image ou texte + 'infoBulle_zone2' : positionne la 2\xE8me infobulle \xE0 droite de la premi\xE8re si il y une image + 'infoBulle_zone3' : positionne la 2\xE8me infobulle sous la premi\xE8re si il y une image + Pour modifier la position de la deuxi\xE8me infobulle changer 'infoBulle_zone2' par 'infoBulle_zone3' dans le template extcal_infobulle.html. - - Simplification des "templates" par insertion de "templates" génériques - pour les infobulles et les catégories + - Simplification des "templates" par insertion de "templates" g\xE9n\xE9riques + pour les infobulles et les cat\xE9gories 2011/10/21a: Version 2.30 (JJD.fr) =================================== - - Ajout de la suppression par lot ou par sélection - dans la page d'administration des évènements. - suppression des images liées à l'évènement. + - Ajout de la suppression par lot ou par s\xE9lection + dans la page d'administration des \xE9v\xE8nements. + suppression des images li\xE9es \xE0 l'\xE9v\xE8nement. 2011/09/04: Version 2.29 (JJD-fr) ==================================== - - Généralisation des infobulles new look à toutes les vues. - - Masquage de l'image dans les vues "jour" et "semaine" si elle n'est pas définie. + - G\xE9n\xE9ralisation des infobulles new look \xE0 toutes les vues. + - Masquage de l'image dans les vues "jour" et "semaine" si elle n'est pas d\xE9finie. - Corrections de mise en forme dans les vues "jour" et "semaines" et "mois":" ajout du changement de couleur de fond 10 lignes sur 2 - class=head pour la ligne d'entête, ... - - Fichiers de langue "english" et "spanish" complètes - - Enregistrement d'un évènement clone sur validation du formulaire au lieu du click sur l'icône. - - Paramétrage dans les options du module (nbeventsByPage) du nombre d'évènements dans la liste de l'administration + class=head pour la ligne d'ent\xEAte, ... + - Fichiers de langue "english" et "spanish" compl\xE8tes + - Enregistrement d'un \xE9v\xE8nement clone sur validation du formulaire au lieu du click sur l'ic\xF4ne. + - Param\xE9trage dans les options du module (nbeventsByPage) du nombre d'\xE9v\xE8nements dans la liste de l'administration ==================================== 2011/09/04: Version 2.29 (JJD-fr) ==================================== -- Ajout d'un bloc "Evènements à venir par catégorie" - Le bloc est bordé sur la gauche et au dessus de chaque catégorie - par la couleur de cette dernière. +- Ajout d'un bloc "Ev\xE8nements \xE0 venir par cat\xE9gorie" + Le bloc est bord\xE9 sur la gauche et au dessus de chaque cat\xE9gorie + par la couleur de cette derni\xE8re. ==================================== 2011/08/22: Version 2.28 (JJD-fr) ==================================== - Fusion des versions "2.22 plus" de Mamba et "2.27" * Ajout de la table "etablissement" - * Formulaire de saisie pour les établissements - * Ajout de la sélection de l'établissement dans l'évènement + * Formulaire de saisie pour les \xE9tablissements + * Ajout de la s\xE9lection de l'\xE9tablissement dans l'\xE9v\xE8nement - Correction du nombre de jours dans "agenda-day" - Ajout d'infobulles dans les vues agenda_day-view et agenda_week-view -- Ajustement des zones de saisie des évènements -- Ajout d'une fonction de clonage d'un évènement. +- Ajustement des zones de saisie des \xE9v\xE8nements +- Ajout d'une fonction de clonage d'un \xE9v\xE8nement. ==================================== 2011/08/07: Version 2.27 (JJD-fr) ==================================== - Correction include constantes dans xoops_version.php -- Correction récuperation xoopsModuleConfig dans le block minical -- Important : complément d'information dans le fichier doc/install.txt +- Correction r\xE9cuperation xoopsModuleConfig dans le block minical +- Important : compl\xE9ment d'information dans le fichier doc/install.txt - Correction des fichiers de langues -- Ajout de la sélection des onglets à afficher dans les options du module. +- Ajout de la s\xE9lection des onglets \xE0 afficher dans les options du module. - Correcion du lien sur le mini calendrier. - Affiche maintenant la vue 'stat_page' paramétrée dans les options. - La vue 'start_page' doit être visible. + Affiche maintenant la vue 'stat_page' param\xE9tr\xE9e dans les options. + La vue 'start_page' doit \xEAtre visible. ==================================== 2011/08/07: Version 2.26 (JJD-fr) @@ -189,37 +189,37 @@ ==================================== 2011/08/03: Version 2.25 (JJD-fr) ==================================== -- Ajout de la sélection des onglets à afficher dans les options du module. +- Ajout de la s\xE9lection des onglets \xE0 afficher dans les options du module. - Correction du lien sur le mini calendrier. - Affiche maintenant la vue 'stat_page' paramétrée dans les options. - La vue 'start_page' doit être visible. -- Ajout d'un vue agenda jour sous forme de grille : affiche 1 ou plusieurs journées avec des tranches horaires. - Les événements sont affiché avec un carre coloré avec son titre. -- Ajout d'un vue agenda semaine sous forme de grille : affiche 1 ou plusieurs journées avec des tranches horaires. - Les événements sont affiché avec un carre. - Le titre et les heures de début et de fin sont affiché dans l'info-bulle au survol de la souris. - Permet d'avoir une vue synthétique de la semaine ou la quinzaine par exemple. -- Ajouts des options de paramétrages pour les deux vues 'agenda' - * heures de début de la journée - * heur de fin de la journée + Affiche maintenant la vue 'stat_page' param\xE9tr\xE9e dans les options. + La vue 'start_page' doit \xEAtre visible. +- Ajout d'un vue agenda jour sous forme de grille : affiche 1 ou plusieurs journ\xE9es avec des tranches horaires. + Les \xE9v\xE9nements sont affich\xE9 avec un carre color\xE9 avec son titre. +- Ajout d'un vue agenda semaine sous forme de grille : affiche 1 ou plusieurs journ\xE9es avec des tranches horaires. + Les \xE9v\xE9nements sont affich\xE9 avec un carre. + Le titre et les heures de d\xE9but et de fin sont affich\xE9 dans l'info-bulle au survol de la souris. + Permet d'avoir une vue synth\xE9tique de la semaine ou la quinzaine par exemple. +- Ajouts des options de param\xE9trages pour les deux vues 'agenda' + * heures de d\xE9but de la journ\xE9e + * heur de fin de la journ\xE9e * Nombre de minutes par tranche * Nb de jours pour chacune des deux vues agenda. -- Renommage de toutes les fichiers php et template de vues avec ajout du préfixe 'view' +- Renommage de toutes les fichiers php et template de vues avec ajout du pr\xE9fixe 'view' pour faciliter la maintenance; -- remplacement du tableau '$lang' dans les template par l'équivalent '$smarty;const' +- remplacement du tableau '$lang' dans les template par l'\xE9quivalent '$smarty;const' - Modification des fonctions _getEventWeekCriteria et getEventWeek. - ajout du paramètres $nbJours pour récupérer les événements sur une plage - autre que 7 jours; '$nbjours' doit être > 0; attention à l'affichage de plus de 20 jours - dans l'agenda semaine peut ne pas être pratique. - Ce sont les deux paramètres ajoutés dans les options du module; -- Ajout du fichier 'agenda_fnc.php' qui contient les fonctions de création des tableaux + ajout du param\xE8tres $nbJours pour r\xE9cup\xE9rer les \xE9v\xE9nements sur une plage + autre que 7 jours; '$nbjours' doit \xEAtre > 0; attention \xE0 l'affichage de plus de 20 jours + dans l'agenda semaine peut ne pas \xEAtre pratique. + Ce sont les deux param\xE8tres ajout\xE9s dans les options du module; +- Ajout du fichier 'agenda_fnc.php' qui contient les fonctions de cr\xE9ation des tableaux pour alimenter les agenda; -- remplacement du remplissage des liste de sélection des années, moi, jours et catégories, - par des fonctions génériques. -- remplacement des codes pour la sélection des vues par des constantes (fichier 'constantes.php') +- remplacement du remplissage des liste de s\xE9lection des ann\xE9es, moi, jours et cat\xE9gories, + par des fonctions g\xE9n\xE9riques. +- remplacement des codes pour la s\xE9lection des vues par des constantes (fichier 'constantes.php') - Ajouts des options 'agenda_nb_years_before' et 'agenda_nb_years_after' - pour le remplissage des listes déroulantes de sélection des années. - Permet de limiter les années antérieures par exemple. + pour le remplissage des listes d\xE9roulantes de s\xE9lection des ann\xE9es. + Permet de limiter les ann\xE9es ant\xE9rieures par exemple. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lor...@us...> - 2012-07-07 14:11:55
|
Revision: 9794 http://xoops.svn.sourceforge.net/xoops/?rev=9794&view=rev Author: lord_venom Date: 2012-07-07 14:11:46 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Modified Paths: -------------- XoopsModules/TDMPicture/trunk/TDMPicture/admin/about.php XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_header.php XoopsModules/TDMPicture/trunk/TDMPicture/admin/cat.php XoopsModules/TDMPicture/trunk/TDMPicture/admin/files.php XoopsModules/TDMPicture/trunk/TDMPicture/admin/menu.php XoopsModules/TDMPicture/trunk/TDMPicture/admin/permissions.php XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_cat.php XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_file.php XoopsModules/TDMPicture/trunk/TDMPicture/class/tree.php XoopsModules/TDMPicture/trunk/TDMPicture/include/functions.php XoopsModules/TDMPicture/trunk/TDMPicture/language/english/admin.php XoopsModules/TDMPicture/trunk/TDMPicture/language/english/main.php XoopsModules/TDMPicture/trunk/TDMPicture/language/english/modinfo.php XoopsModules/TDMPicture/trunk/TDMPicture/language/french/admin.php XoopsModules/TDMPicture/trunk/TDMPicture/language/french/main.php XoopsModules/TDMPicture/trunk/TDMPicture/search.php XoopsModules/TDMPicture/trunk/TDMPicture/submit.php XoopsModules/TDMPicture/trunk/TDMPicture/templates/tdmpicture_tpfile.html XoopsModules/TDMPicture/trunk/TDMPicture/templates/tdmpicture_viewfile.html XoopsModules/TDMPicture/trunk/TDMPicture/xoops_version.php Added Paths: ----------- XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_footer.php XoopsModules/TDMPicture/trunk/TDMPicture/docs/ XoopsModules/TDMPicture/trunk/TDMPicture/docs/changelog.txt XoopsModules/TDMPicture/trunk/TDMPicture/docs/credits.txt XoopsModules/TDMPicture/trunk/TDMPicture/docs/index.html XoopsModules/TDMPicture/trunk/TDMPicture/docs/lang_diff.txt XoopsModules/TDMPicture/trunk/TDMPicture/docs/licence.txt XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme.txt XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme_fr.txt XoopsModules/TDMPicture/trunk/TDMPicture/images/picture_edit.png XoopsModules/TDMPicture/trunk/TDMPicture/language/english/help/ XoopsModules/TDMPicture/trunk/TDMPicture/language/english/help/help.html XoopsModules/TDMPicture/trunk/TDMPicture/language/english/help/index.html XoopsModules/TDMPicture/trunk/TDMPicture/language/french/help/ XoopsModules/TDMPicture/trunk/TDMPicture/language/french/help/help.html XoopsModules/TDMPicture/trunk/TDMPicture/language/french/help/index.html XoopsModules/TDMPicture/trunk/TDMPicture/upload/cat/no_picture.png Modified: XoopsModules/TDMPicture/trunk/TDMPicture/admin/about.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/about.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/about.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -17,17 +17,13 @@ * **************************************************************************** */ -include 'admin_header.php'; +include_once dirname(__FILE__) . '/admin_header.php'; + xoops_cp_header(); +$aboutAdmin = new ModuleAdmin(); -$versioninfo =& $module_handler->get( $xoopsModule->getVar( 'mid' ) ); +echo $aboutAdmin->addNavigation('about.php'); +echo $aboutAdmin->renderAbout('6KJ7RW5DR3VTJ', FALSE); - $about_admin = new ModuleAdmin(); - echo $about_admin->addNavigation('about.php'); - echo $about_admin->renderabout('9MYQB7GUK5MCS', true); - - - -xoops_cp_footer(); -?> \ No newline at end of file +include 'admin_footer.php'; \ No newline at end of file Added: XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_footer.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_footer.php (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_footer.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,6 @@ +<?php +echo"<br /><br /><div class='adminfooter'>\n" . " <div style='text-align: center;'>\n" + . " <a href='http://www.xoops.org' rel='external'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n" + . " </div>\n" . " " . _AM_MODULEADMIN_ADMIN_FOOTER . "\n" . "</div>"; + +xoops_cp_footer(); \ No newline at end of file Modified: XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_header.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_header.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/admin_header.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -33,9 +33,12 @@ //return false; } -$moduleInfo =& $module_handler->get($xoopsModule->getVar('mid')); -$pathImageIcon = XOOPS_URL .'/'. $moduleInfo->getInfo('icons16'); -$pathImageAdmin = XOOPS_URL .'/'. $moduleInfo->getInfo('icons32'); +//$moduleInfo =& $module_handler->get($xoopsModule->getVar('mid')); +//$pathImageIcon = XOOPS_URL .'/'. $moduleInfo->getInfo('icons16'); +//$pathImageAdmin = XOOPS_URL .'/'. $moduleInfo->getInfo('icons32'); +$pathIcon16 = '../' . $xoopsModule->getInfo('icons16'); +$pathIcon32 = '../' . $xoopsModule->getInfo('icons32'); +$pathModuleAdmin = $xoopsModule->getInfo('dirmoduleadmin'); $myts =& MyTextSanitizer::getInstance(); Modified: XoopsModules/TDMPicture/trunk/TDMPicture/admin/cat.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/cat.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/cat.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -77,6 +77,7 @@ $obj->setVar('cat_weight', $_REQUEST['cat_weight']); $obj->setVar('cat_display', $_REQUEST['cat_display']); $obj->setVar('cat_index', $_REQUEST['cat_index']); + $obj->setVar('cat_uid', $xoopsUser->getVar('uid')); if ($cat_handler->insert($obj)) { @@ -164,8 +165,10 @@ //menu admin $category_admin = new ModuleAdmin(); echo $category_admin->addNavigation('cat.php'); - if ($cat_waiting != 0 && !isset($_REQUEST['cat_display'])){ - $category_admin->addItemButton(sprintf(_AM_TDMPICTURE_THEREARE_CAT_WAITING,$cat_waiting), 'cat.php?op=list&cat_display=0', 'update'); + if ($cat_waiting != 0 && !isset($_REQUEST['cat_display'])){ + $waitString = _AM_TDMPICTURE_BUTTON_CAT_WAITING.$cat_waiting; + echo $waitString; + $category_admin->addItemButton($waitString, 'cat.php?op=list&cat_display=0', 'update'); } if (isset($_REQUEST['cat_display'])) { $category_admin->addItemButton(_AM_TDMPICTURE_LIST_CAT, 'cat.php?op=list', 'list'); @@ -223,8 +226,8 @@ $cat_pid = $assoc_cat[$i]->getVar('cat_pid'); $cat_title = $myts->displayTarea($assoc_cat[$i]->getVar('cat_title')); - $display = $assoc_cat[$i]->getVar('cat_display') == 1 ? "<a href='cat.php?op=update&cat_id=".$cat_id."'><img src='./../images/on.gif' border='0'></a>" : "<a href='cat.php?op=update&cat_id=".$cat_id."'><img alt='"._AM_TDMPICTURE_UPDATE."' title='"._AM_TDMPICTURE_UPDATE."' src='./../images/off.gif' border='0'></a>"; - $principal = $assoc_cat[$i]->getVar('cat_index') == 1 ? "<img src='./../images/on.gif' border='0'>" : "<img src='./../images/off.gif' border='0'>"; + $display = $assoc_cat[$i]->getVar('cat_display') == 1 ? "<a href='cat.php?op=update&cat_id=".$cat_id."'><img src='" . $pathIcon16."/1.png' border='0'></a>" : "<a href='cat.php?op=update&cat_id=".$cat_id."'><img alt='"._AM_TDMPICTURE_UPDATE."' title='"._AM_TDMPICTURE_UPDATE."' src='" . $pathIcon16."/0.png' border='0'></a>"; + $principal = $assoc_cat[$i]->getVar('cat_index') == 1 ? "<img src='" . $pathIcon16."/1.png' border='0'>" : "<img src='" . $pathIcon16."/0.png' border='0'>"; //on test l'existance de l'image $imgpath = TDMPICTURE_CAT_PATH.$assoc_cat[$i]->getVar("cat_img"); if (file_exists($imgpath)) { @@ -241,13 +244,13 @@ echo '<td align="center" width="5%" style="vertical-align:middle;">'.$display.'</td>'; echo '<td align="center" width="5%" style="vertical-align:middle;">'.$principal.'</td>'; echo '<td align="center" width="10%" style="vertical-align:middle;">'; - echo '<a href="cat.php?op=edit&cat_id='.$cat_id.'"><img src="./../images/edit_mini.gif" border="0" alt="'._AM_TDMPICTURE_MODIFY.'" title="'._AM_TDMPICTURE_MODIFY.'"></a>'; - echo '<a href="cat.php?op=delete&cat_id='.$cat_id.'"><img src="./../images/delete_mini.gif" border="0" alt="'._AM_TDMPICTURE_DELETE.'" title="'._AM_TDMPICTURE_DELETE.'"></a>'; + echo '<a href="cat.php?op=edit&cat_id='.$cat_id.'"><img src=' . $pathIcon16.'/edit.png border="0" alt="'._AM_TDMPICTURE_MODIFY.'" title="'._AM_TDMPICTURE_MODIFY.'"></a>'; + echo '<a href="cat.php?op=delete&cat_id='.$cat_id.'"><img src=' . $pathIcon16.'/delete.png border="0" alt="'._AM_TDMPICTURE_DELETE.'" title="'._AM_TDMPICTURE_DELETE.'"></a>'; echo '</td>'; echo '</tr>'; } echo '</table><br /><br />'; - echo '<div align=right>'.$pagenav.'</div><br />'; + echo '<div align=right>'.$pagenav.'</div>'; } else{ echo '<div class="errorMsg" style="text-align: center;">' . sprintf(_AM_TDMPICTURE_THEREARE_CAT,0) . '</div>'; } @@ -269,5 +272,4 @@ break; } -xoops_cp_footer(); -?> \ No newline at end of file +include 'admin_footer.php'; \ No newline at end of file Modified: XoopsModules/TDMPicture/trunk/TDMPicture/admin/files.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/files.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/files.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -365,7 +365,9 @@ $category_admin = new ModuleAdmin(); echo $category_admin->addNavigation('files.php'); if ($file_waiting != 0 && !isset($_REQUEST['file_display'])){ - $category_admin->addItemButton(sprintf(_AM_TDMPICTURE_THEREARE_FILE_WAITING,$file_waiting), 'files.php?op=list&file_display=0', 'update'); + $waitString = _AM_TDMPICTURE_BUTTON_FILES_WAITING.$file_waiting; + //$category_admin->addItemButton(sprintf(_AM_TDMPICTURE_THEREARE_FILE_WAITING,$file_waiting), 'files.php?op=list&file_display=0', 'update'); + $category_admin->addItemButton($waitString, 'files.php?op=list&file_display=0', 'update'); } if (isset($_REQUEST['file_display'])) { $category_admin->addItemButton(_AM_TDMPICTURE_LIST_FILE, 'files.php?op=list', 'list'); @@ -409,7 +411,7 @@ echo '<th align="center" width="10%">'._AM_TDMPICTURE_IMG.'</th>'; echo '<th align="center" width="20%">'._AM_TDMPICTURE_CAT.'</th>'; echo '<th align="center" width="25%">'._AM_TDMPICTURE_TITLE.'</th>'; - echo '<th align="center" width="10%">'._AM_TDMPICTURE_WITH.'</th>'; + echo '<th align="center" width="10%">'._AM_TDMPICTURE_WIDTH.'</th>'; echo '<th align="center" width="10%">'._AM_TDMPICTURE_HEIGHT.'</th>'; echo '<th align="center" width="5%">'._AM_TDMPICTURE_THUMB.'</th>'; echo '<th align="center" width="5%">'._AM_TDMPICTURE_DISPLAY.'</th>'; @@ -425,7 +427,7 @@ $file_id = $arr[$i]->getVar('file_id'); $file_title = $myts->displayTarea($arr[$i]->getVar('file_title')); - $display = $arr[$i]->getVar('file_display') == 1 ? "<a href='files.php?op=update&file_id=".$file_id."'><img src='./../images/on.gif' border='0'></a>" : "<a href='files.php?op=update&file_id=".$file_id."'><img alt='"._AM_TDMPICTURE_UPDATE."' title='"._AM_TDMPICTURE_UPDATE."' src='./../images/off.gif' border='0'></a>"; + $display = $arr[$i]->getVar('file_display') == 1 ? "<a href='files.php?op=update&file_id=".$file_id."'><img src='" . $pathIcon16."/1.png' border='0'></a>" : "<a href='files.php?op=update&file_id=".$file_id."'><img alt='"._AM_TDMPICTURE_UPDATE."' title='"._AM_TDMPICTURE_UPDATE."' src='" . $pathIcon16."/0.png' border='0'></a>"; //on test l'existance de l'image $img = $arr[$i]->getVar("file_file") ? $arr[$i]->getVar("file_file") : 'blank.gif'; @@ -439,9 +441,9 @@ $imgpath = XOOPS_ROOT_PATH . "/modules/".$xoopsModule->dirname()."/upload/thumb/".$img; $thumb_img = "<a href='files.php?op=thumb&file_id=".$file_id."'>"; if (file_exists($imgpath)) { - $thumb_img .= "<img alt='"._AM_TDMPICTURE_ADDTHUMB."' title='"._AM_TDMPICTURE_ADDTHUMB."' src='./../images/on.gif' border='0'>"; + $thumb_img .= "<img alt='"._AM_TDMPICTURE_ADDTHUMB."' title='"._AM_TDMPICTURE_ADDTHUMB."' src='" . $pathIcon16."/1.png' border='0'>"; } else { - $thumb_img .= "<img alt='"._AM_TDMPICTURE_ADDTHUMB."' title='"._AM_TDMPICTURE_ADDTHUMB."' src='./../images/off.gif' border='0'>"; + $thumb_img .= "<img alt='"._AM_TDMPICTURE_ADDTHUMB."' title='"._AM_TDMPICTURE_ADDTHUMB."' src='" . $pathIcon16."/0.png' border='0'>"; } $thumb_img .= "</a>"; @@ -455,13 +457,13 @@ echo '<td align="center" style="vertical-align:middle;">'.$thumb_img.'</td>'; echo '<td align="center" style="vertical-align:middle;">'.$display.'</td>'; echo '<td align="center" style="vertical-align:middle;">'; - echo '<a href="files.php?op=edit&file_id='.$file_id.'"><img src="./../images/edit_mini.gif" border="0" alt="'._AM_TDMPICTURE_MODIFY.'" title="'._AM_TDMPICTURE_MODIFY.'"></a>'; - echo '<a href="files.php?op=delete&file_id='.$file_id.'"><img src="./../images/delete_mini.gif" border="0" alt="'._AM_TDMPICTURE_DELETE.'" title="'._AM_TDMPICTURE_DELETE.'"></a>'; - echo '<a href="files.php?op=edit_img&file_id='.$file_id.'"><img src="./../images/renew_mini.gif" border="0" alt="'._AM_TDMPICTURE_EDITIMG.'" title="'._AM_TDMPICTURE_EDITIMG.'"></a>'; + echo '<a href="files.php?op=edit&file_id='.$file_id.'"><img src=' . $pathIcon16.'/edit.png border="0" alt="'._AM_TDMPICTURE_MODIFY.'" title="'._AM_TDMPICTURE_MODIFY.'"></a>'; + echo '<a href="files.php?op=delete&file_id='.$file_id.'"><img src=' . $pathIcon16.'/delete.png border="0" alt="'._AM_TDMPICTURE_DELETE.'" title="'._AM_TDMPICTURE_DELETE.'"></a>'; + echo '<a href="files.php?op=edit_img&file_id='.$file_id.'"><img src="./../images/picture_edit.png" border="0" alt="'._AM_TDMPICTURE_EDITIMG.'" title="'._AM_TDMPICTURE_EDITIMG.'"></a>'; echo '</td>'; echo '</tr>'; } - echo '</table><input type="submit" name="op" value="'._DELETE.'" /></form><br /><br />'; + echo '</table><input type="submit" name="op" value="'._AM_TDMPICTURE_DELETE_SELECTED.'" /></form><br /><br />'; echo '<div align=right>'.$pagenav.'</div><br />'; } else{ echo '<div class="errorMsg" style="text-align: center;">' . sprintf(_AM_TDMPICTURE_THEREARE_FILE,0) . '</div>'; @@ -471,5 +473,4 @@ } -xoops_cp_footer(); -?> \ No newline at end of file +include 'admin_footer.php'; \ No newline at end of file Modified: XoopsModules/TDMPicture/trunk/TDMPicture/admin/menu.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/menu.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/menu.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -17,25 +17,79 @@ * **************************************************************************** */ + +defined("XOOPS_ROOT_PATH") or die("XOOPS root path not defined"); + +$path = dirname(dirname(dirname(dirname(__FILE__)))); +include_once $path . '/mainfile.php'; + +$dirname = basename(dirname(dirname(__FILE__))); +$module_handler = xoops_gethandler('module'); +$module = $module_handler->getByDirname($dirname); +$pathIcon32 = $module->getInfo('icons32'); +$pathModuleAdmin = $module->getInfo('dirmoduleadmin'); +$pathLanguage = $path . $pathModuleAdmin; + + +if (!file_exists($fileinc = $pathLanguage . '/language/' . $GLOBALS['xoopsConfig']['language'] . '/' . 'main.php')) { + $fileinc = $pathLanguage . '/language/english/main.php'; +} + +include_once $fileinc; + +$adminmenu = array(); + +$i = 1; +$adminmenu[$i]["title"] = _AM_MODULEADMIN_HOME; +$adminmenu[$i]["link"] = "admin/index.php"; +$adminmenu[$i]["icon"] = $pathIcon32 . '/home.png'; + +//$i++; +//$adminmenu[$i]["title"] = _MI_ISTATS_INDEX; +//$adminmenu[$i]["link"] = "admin/main.php"; +//$adminmenu[$i]["icon"] = $pathIcon32 . '/manage.png'; + +$i++; +$adminmenu[$i]["title"] = _MI_TDMPICTURE_ADMENUCAT; +$adminmenu[$i]["link"] = "admin/cat.php"; +$adminmenu[$i]["icon"] = $pathIcon32 . '/category.png'; + +$i++; +$adminmenu[$i]["title"] = _MI_TDMPICTURE_ADMENUFILE; +$adminmenu[$i]["link"] = "admin/files.php"; +$adminmenu[$i]["icon"] = 'images/decos/min_file.png'; + +$i++; +$adminmenu[$i]["title"] = _MI_TDMPICTURE_ADMENUPERMISSIONS; +$adminmenu[$i]["link"] = "admin/permissions.php"; +$adminmenu[$i]["icon"] = $pathIcon32 . '/permissions.png'; + +$i++; +$adminmenu[$i]['title'] = _AM_MODULEADMIN_ABOUT; +$adminmenu[$i]["link"] = "admin/about.php"; +$adminmenu[$i]["icon"] = $pathIcon32 . '/about.png'; + + + -$adminmenu[0]['title'] = _MI_TDMPICTURE_ADMENUINDEX; -$adminmenu[0]['link'] = "admin/index.php"; -$adminmenu[0]['icon'] = 'images/decos/min_index.png'; - -$adminmenu[1]['title'] = _MI_TDMPICTURE_ADMENUCAT; -$adminmenu[1]['link'] = "admin/cat.php"; -$adminmenu[1]['icon'] = 'images/decos/min_cat.png'; +//$adminmenu[0]['title'] = _MI_TDMPICTURE_ADMENUINDEX; +//$adminmenu[0]['link'] = "admin/index.php"; +//$adminmenu[0]['icon'] = 'images/decos/min_index.png'; +// +//$adminmenu[1]['title'] = _MI_TDMPICTURE_ADMENUCAT; +//$adminmenu[1]['link'] = "admin/cat.php"; +//$adminmenu[1]['icon'] = 'images/decos/min_cat.png'; -$adminmenu[2]['title'] = _MI_TDMPICTURE_ADMENUFILE; -$adminmenu[2]['link'] = "admin/files.php"; -$adminmenu[2]['icon'] = 'images/decos/min_file.png'; +//$adminmenu[2]['title'] = _MI_TDMPICTURE_ADMENUFILE; +//$adminmenu[2]['link'] = "admin/files.php"; +//$adminmenu[2]['icon'] = 'images/decos/min_file.png'; -$adminmenu[3]['title'] = _MI_TDMPICTURE_ADMENUPERMISSIONS; -$adminmenu[3]['link'] = "admin/permissions.php"; -$adminmenu[3]['icon'] = 'images/decos/min_permissions.png'; +//$adminmenu[3]['title'] = _MI_TDMPICTURE_ADMENUPERMISSIONS; +//$adminmenu[3]['link'] = "admin/permissions.php"; +//$adminmenu[3]['icon'] = 'images/decos/min_permissions.png'; +// +//$adminmenu[4]['title'] = _MI_TDMPICTURE_ADMENUABOUT; +//$adminmenu[4]['link'] = "admin/about.php"; +//$adminmenu[4]['icon'] = 'images/decos/min_about.png'; -$adminmenu[4]['title'] = _MI_TDMPICTURE_ADMENUABOUT; -$adminmenu[4]['link'] = "admin/about.php"; -$adminmenu[4]['icon'] = 'images/decos/min_about.png'; - ?> \ No newline at end of file Modified: XoopsModules/TDMPicture/trunk/TDMPicture/admin/permissions.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/admin/permissions.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/admin/permissions.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -84,6 +84,4 @@ echo '<div class="tips">' . _AM_TDMPICTURE_MANAGE_PERM . '</div><br />'; echo $permform->render(); -xoops_cp_footer() ; - -?> \ No newline at end of file +include 'admin_footer.php'; \ No newline at end of file Modified: XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_cat.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_cat.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_cat.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -62,14 +62,14 @@ if ($action === false) { $action = $_SERVER['REQUEST_URI']; } - $title = $this->isNew() ? sprintf(_AM_TDMPICTURE_ADD) : sprintf(_AM_TDMPICTURE_EDIT); + $title = $this->isNew() ? sprintf(_MD_TDMPICTURE_ADD) : sprintf(_MD_TDMPICTURE_EDIT); include_once(XOOPS_ROOT_PATH."/class/xoopsformloader.php"); $form = new XoopsThemeForm($title, 'form', $action, 'post', true); $form->setExtra('enctype="multipart/form-data"'); - $form->addElement(new XoopsFormText(_AM_TDMPICTURE_TITLE, 'cat_title', 80, 255, $this->getVar('cat_title'))); + $form->addElement(new XoopsFormText(_MD_TDMPICTURE_TITLE, 'cat_title', 80, 255, $this->getVar('cat_title'))); if (!$this->isNew()) { //Load groups @@ -90,7 +90,7 @@ $arr = $cat_handler->getall($criteriaUser); $mytree = new XoopsObjectTree($arr, 'cat_id', 'cat_pid'); - $form->addElement(new XoopsFormLabel(_AM_TDMPICTURE_PARENT, $mytree->makeSelBox('cat_pid', 'cat_title','-', $this->getVar('cat_pid'), true))); + $form->addElement(new XoopsFormLabel(_MD_TDMPICTURE_PARENT, $mytree->makeSelBox('cat_pid', 'cat_title','-', $this->getVar('cat_pid'), true))); //editor $editor_configs=array(); @@ -101,13 +101,13 @@ $editor_configs["width"] = "100%"; $editor_configs["height"] = "400px"; $editor_configs["editor"] = $xoopsModuleConfig["tdmpicture_editor"]; - $form->addElement( new XoopsFormEditor(_AM_TDMPICTURE_TEXT, "cat_text", $editor_configs), false ); + $form->addElement( new XoopsFormEditor(_MD_TDMPICTURE_TEXT, "cat_text", $editor_configs), false ); - //upload +//upload $img = $this->getVar('cat_img') ? $this->getVar('cat_img') : 'blank.gif'; $uploadirectory = "modules/".$xoopsModule->dirname()."/upload/cat/"; - $imgtray = new XoopsFormElementTray(_AM_TDMPICTURE_IMG,'<br />'); - $imgpath=sprintf(_AM_TDMPICTURE_PATH, $uploadirectory ); + $imgtray = new XoopsFormElementTray(_MD_TDMPICTURE_IMG,'<br />'); + $imgpath=sprintf(_MD_TDMPICTURE_PATH, $uploadirectory ); $imageselect= new XoopsFormSelect($imgpath, 'img',$img); $topics_array = XoopsLists :: getImgListAsArray(XOOPS_ROOT_PATH."/".$uploadirectory); foreach( $topics_array as $image ) { @@ -118,14 +118,14 @@ $imgtray -> addElement( new XoopsFormLabel( '', "<br /><img src='" . XOOPS_URL . "/" . $uploadirectory . "/" . $img . "' name='image3' id='image3' alt='' />" ) ); $fileseltray= new XoopsFormElementTray('','<br />'); - $fileseltray->addElement(new XoopsFormFile(_AM_TDMPICTURE_UPLOAD , 'attachedfile', $xoopsModuleConfig['tdmpicture_mimemax']),false); + $fileseltray->addElement(new XoopsFormFile(_MD_TDMPICTURE_UPLOAD , 'attachedfile', $xoopsModuleConfig['tdmpicture_mimemax']),false); $fileseltray->addElement(new XoopsFormLabel(''), false); $imgtray->addElement($fileseltray); $form->addElement($imgtray); // //poit - $form->addElement(new XoopsFormText(_AM_TDMPICTURE_WEIGHT, 'cat_weight', 10, 11, $this->getVar('cat_weight'))); + $form->addElement(new XoopsFormText(_MD_TDMPICTURE_WEIGHT, 'cat_weight', 10, 11, $this->getVar('cat_weight'))); // Permissions $gperm_handler =& xoops_gethandler('groupperm'); @@ -144,9 +144,9 @@ if(!$this->isNew()) { // Edit mode $groups_ids = $gperm_handler->getGroupIds('tdmpicture_catview', $this->getVar('cat_id'), $xoopsModule->getVar('mid')); $groups_ids = array_values($groups_ids); - $groups_news_can_view_checkbox = new XoopsFormCheckBox(_AM_TDMPICTURE_PERM_2, 'groups_view[]', $groups_ids); + $groups_news_can_view_checkbox = new XoopsFormCheckBox(_MD_TDMPICTURE_PERM_2, 'groups_view[]', $groups_ids); } else { // Creation mode - $groups_news_can_view_checkbox = new XoopsFormCheckBox(_AM_TDMPICTURE_PERM_2, 'groups_view[]', $full_list); + $groups_news_can_view_checkbox = new XoopsFormCheckBox(_MD_TDMPICTURE_PERM_2, 'groups_view[]', $full_list); } $groups_news_can_view_checkbox->addOptionArray($group_list); $form->addElement($groups_news_can_view_checkbox); @@ -155,13 +155,21 @@ // if ( is_object($xoopsUser) && $xoopsUser->isAdmin()) { - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYUSER, 'cat_display', $this->getVar('cat_display'), _YES, _NO)); - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYINDEX, 'cat_index', $this->getVar('cat_index'), _YES, _NO)); + $form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYUSER, 'cat_display', $this->getVar('cat_display'), _YES, _NO)); + + //$form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYINDEX, 'cat_index', $this->getVar('cat_index'), _YES, _NO)); + + $aff_index = new XoopsFormElementTray(_MD_TDMPICTURE_DISPLAYINDEX,''); + $aff_index->setDescription(_MD_TDMPICTURE_DISPLAYINDEXDESC); + $aff_index->addElement(new XoopsFormRadioYN('', 'cat_index', $this->getVar('cat_index'), _YES, _NO)); + $form->addElement($aff_index); + + }else { if ($gperm_handler->checkRight('tdmpicture_view', 1048, $groups, $xoopsModule->getVar('mid'))) { - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYUSER, 'cat_display', $this->getVar('cat_display'), _YES, _NO)); - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYINDEX, 'cat_index', $this->getVar('cat_index'), _YES, _NO)); + $form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYUSER, 'cat_display', $this->getVar('cat_display'), _YES, _NO)); + $form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYINDEX, 'cat_index', $this->getVar('cat_index'), _YES, _NO)); }else { $form->addElement(new XoopsFormHidden('cat_display', 0)); } Modified: XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_file.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_file.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/class/tdmpicture_file.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -56,12 +56,11 @@ function getForm($action = false) { - global $xoopsUser, $xoopsDB, $xoopsModule, $xoopsModuleConfig; + global $xoopsUser, $xoopsDB, $xoopsModule, $xoopsModuleConfig; - if ($action === false) { - $action = $_SERVER['REQUEST_URI']; + if ($action === false) { $action = $_SERVER['REQUEST_URI']; } - $title = $this->isNew() ? sprintf(_AM_TDMPICTURE_ADD) : sprintf(_AM_TDMPICTURE_EDIT); + $title = $this->isNew() ? sprintf(_MD_TDMPICTURE_ADD) : sprintf(_MD_TDMPICTURE_EDIT); include_once(XOOPS_ROOT_PATH."/class/xoopsformloader.php"); @@ -79,17 +78,17 @@ $form = new XoopsThemeForm($title, 'form', $action, 'post', true); $form->setExtra('enctype="multipart/form-data"'); - // $form->addElement(new XoopsFormText(_AM_TDMPICTURE_TITLE, 'filecat_title', 100, 255, $this->getVar('filecat_title')), true); + // $form->addElement(new XoopsFormText(_MD_TDMPICTURE_TITLE, 'filecat_title', 100, 255, $this->getVar('filecat_title')), true); if (!$this->isNew()) { //Load groups $form->addElement(new XoopsFormHidden('id', $this->getVar('file_id'))); - $form->addElement(new XoopsFormText(_AM_TDMPICTURE_TITLE, 'file_title', 100, 255, $this->getVar('file_title')), true); + $form->addElement(new XoopsFormText(_MD_TDMPICTURE_TITLE, 'file_title', 100, 255, $this->getVar('file_title')), true); } // if (!$this->isNew()) { -$button_file = new XoopsFormText(_AM_TDMPICTURE_URL, 'file_file', 100, 255, $this->getVar('file_file')); +$button_file = new XoopsFormText(_MD_TDMPICTURE_URL, 'file_file', 100, 255, $this->getVar('file_file')); $button_file->setExtra("disabled"); $form->addElement($button_file); //editor @@ -101,18 +100,18 @@ $editor_configs["width"] = "100%"; $editor_configs["height"] = "400px"; $editor_configs["editor"] = $xoopsModuleConfig["tdmpicture_editor"]; - $form->addElement( new XoopsFormEditor(_AM_TDMPICTURE_TEXT, "file_text", $editor_configs), false ); + $form->addElement( new XoopsFormEditor(_MD_TDMPICTURE_TEXT, "file_text", $editor_configs), false ); // -$form->addElement(new XoopsFormText(_AM_TDMPICTURE_SIZE, 'file_size', 10, 11, $this->getVar('file_size'))); +$form->addElement(new XoopsFormText(_MD_TDMPICTURE_SIZE, 'file_size', 10, 11, $this->getVar('file_size'))); -$form->addElement(new XoopsFormText(_AM_TDMPICTURE_WITH, 'file_res_x', 10, 11, $this->getVar('file_res_x'))); +$form->addElement(new XoopsFormText(_MD_TDMPICTURE_WIDTH, 'file_res_x', 10, 11, $this->getVar('file_res_x'))); -$form->addElement(new XoopsFormText(_AM_TDMPICTURE_HEIGHT, 'file_res_y', 10, 11, $this->getVar('file_res_y'))); +$form->addElement(new XoopsFormText(_MD_TDMPICTURE_HEIGHT, 'file_res_y', 10, 11, $this->getVar('file_res_y'))); //display if ( is_object($xoopsUser) && $xoopsUser->isAdmin()) { - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYUSER, 'file_display', $this->getVar('file_display'), _YES, _NO)); + $form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYUSER, 'file_display', $this->getVar('file_display'), _YES, _NO)); }else { $gperm_handler =& xoops_gethandler('groupperm'); @@ -151,7 +150,7 @@ $arr = $cat_handler->getall($criteriaUser); $mytree = new XoopsObjectTree($arr, 'cat_id', 'cat_pid'); - $form->addElement(new XoopsFormLabel(_AM_TDMPICTURE_CAT, $mytree->makeSelBox('file_cat', 'cat_title','-', $this->getVar('cat_pid'), true)), true); + $form->addElement(new XoopsFormLabel(_MD_TDMPICTURE_CAT, $mytree->makeSelBox('file_cat', 'cat_title','-', $this->getVar('cat_pid'), true)), true); // @@ -160,7 +159,7 @@ if ( is_object($xoopsUser) && $xoopsUser->isAdmin()) { - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYUSER, 'file_display', $this->getVar('file_display'), _YES, _NO)); + $form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYUSER, 'file_display', $this->getVar('file_display'), _YES, _NO)); }else { $gperm_handler =& xoops_gethandler('groupperm'); @@ -174,7 +173,7 @@ if ($gperm_handler->checkRight('tdmpicture_view', 16, $groups, $xoopsModule->getVar('mid'))) { $form->addElement(new XoopsFormHidden('file_display', 1)); }else { - $form->insertBreak('<div align="center">'._AM_TDMPICTURE_UPLOAD_LIMIT.'</div>', 'odd'); + $form->insertBreak('<div align="center">'._MD_TDMPICTURE_UPLOAD_LIMIT.'</div>', 'odd'); $form->addElement(new XoopsFormHidden('file_display', 0)); } } @@ -198,7 +197,7 @@ //</script>'; //note -$form->insertBreak('<div align="center">'._AM_TDMPICTURE_UPLOAD_DESC.'</div>', 'odd'); +$form->insertBreak('<div align="center">'._MD_TDMPICTURE_UPLOAD_DESC.'</div>', 'odd'); //$form->insertBreak(' @@ -237,7 +236,7 @@ //pour multi upload $form->addElement(new XoopsFormHidden('MAX_FILE_SIZE', $xoopsModuleConfig['tdmpicture_mimemax'])); -$fileseltray= new XoopsFormElementTray(_AM_TDMPICTURE_UPLOAD,'<br />'); +$fileseltray= new XoopsFormElementTray(_MD_TDMPICTURE_UPLOAD,'<br />'); $fileseltray->addElement(new XoopsFormLabel('<div id="tdmfiletext" maxlength="'.$xoopsModuleConfig["tdmpicture_upmax"].'"> <b>'.sprintf(_MD_TDMPICTURE_MULTIUPLOAD, $xoopsModuleConfig["tdmpicture_upmax"]).'</b><br /> @@ -274,14 +273,14 @@ if ($action === false) { $action = $_SERVER['REQUEST_URI']; } - $title = $this->isNew() ? sprintf(_AM_TDMPICTURE_ADD) : sprintf(_AM_TDMPICTURE_EDIT); + $title = $this->isNew() ? sprintf(_MD_TDMPICTURE_ADD) : sprintf(_MD_TDMPICTURE_EDIT); include_once(XOOPS_ROOT_PATH."/class/xoopsformloader.php"); $form = new XoopsThemeForm($title, 'form', $action, 'post', true); $form->setExtra('enctype="multipart/form-data" onsubmit="return checkCoords();"'); - //$form->addElement(new XoopsFormText(_AM_TDMPICTURE_TITLE, 'cat_title', 80, 255, $this->getVar('cat_title'))); + //$form->addElement(new XoopsFormText(_MD_TDMPICTURE_TITLE, 'cat_title', 80, 255, $this->getVar('cat_title'))); if (!$this->isNew()) { //Load groups $form->addElement(new XoopsFormHidden('id', $this->getVar('cat_id'))); @@ -331,8 +330,8 @@ <br />'; - $form->insertBreak('<div align="center">'._AM_TDMPICTURE_NEWTHUMB.'</div>', 'odd'); -$img = new XoopsFormElementTray(_AM_TDMPICTURE_RECAD,''); + $form->insertBreak('<div align="center">'._MD_TDMPICTURE_NEWTHUMB.'</div>', 'odd'); +$img = new XoopsFormElementTray(_MD_TDMPICTURE_RECAD,''); $img->addElement(new XoopsFormText('X1', 'x', 4, 4, '')); $img->addElement(new XoopsFormText('Y1', 'y', 4, 4, '')); $img->addElement(new XoopsFormText('X2', 'x2', 4, 4, '')); @@ -343,7 +342,7 @@ //visible if ( is_object($xoopsUser) && $xoopsUser->isAdmin()) { - $form->addElement(new XoopsFormRadioYN(_AM_TDMPICTURE_DISPLAYUSER, 'file_display', $this->getVar('file_display'), _YES, _NO)); + $form->addElement(new XoopsFormRadioYN(_MD_TDMPICTURE_DISPLAYUSER, 'file_display', $this->getVar('file_display'), _YES, _NO)); }else { $gperm_handler =& xoops_gethandler('groupperm'); Modified: XoopsModules/TDMPicture/trunk/TDMPicture/class/tree.php =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/class/tree.php 2012-07-07 14:10:39 UTC (rev 9793) +++ XoopsModules/TDMPicture/trunk/TDMPicture/class/tree.php 2012-07-07 14:11:46 UTC (rev 9794) @@ -68,11 +68,11 @@ //$cat_link = tdmspot_seo_genUrl( $xoopsModuleConfig['tdmspot_seo_cat'], $this->_tree[$key]['obj']->getVar('id'), $this->_tree[$key]['obj']->getVar('title'), $start, $limit, $tris ); $cat_link = TDMPICTURE_URL."/viewcat.php?ct=".$this->_tree[$key]['obj']->getVar('cat_id')."&tris=".$tris."&limit=".$limit; //recherche image - $imgpath = TDM_CAT_PATH .'/'. $this->_tree[$key]['obj']->getVar('cat_img'); + $imgpath = TDM_CAT_PATH . $this->_tree[$key]['obj']->getVar('cat_img'); if (file_exists($imgpath) && $this->_tree[$key]['obj']->getVar('cat_img') != "blank.gif") { - $picture = '<a href ="'.$cat_link.'" title="'. $this->_tree[$key]['obj']->getVar('cat_title').'"><img src="' . TDM_CAT_URL . '/'. $this->_tree[$key]['obj']->getVar('cat_img').'" class="img" width="'.$xoopsModuleConfig['tdmpicture_cat_width'].'" height="'.$xoopsModuleConfig['tdmpicture_cat_height'].'"></a>'; + $picture = '<a href ="'.$cat_link.'" title="'. $this->_tree[$key]['obj']->getVar('cat_title').'"><img src="' . TDM_CAT_URL . $this->_tree[$key]['obj']->getVar('cat_img').'" class="img" width="'.$xoopsModuleConfig['tdmpicture_cat_width'].'" height="'.$xoopsModuleConfig['tdmpicture_cat_height'].'"></a>'; } else { - $picture = '<a href ="'.$cat_link.'" title="'. $this->_tree[$key]['obj']->getVar('cat_title').'"><img src="' . TDM_CAT_URL . '/no_picture.png" class="img" width="'.$xoopsModuleConfig['tdmpicture_cat_width'].'" height="'.$xoopsModuleConfig['tdmpicture_cat_height'].'"></a>'; + $picture = '<a href ="'.$cat_link.'" title="'. $this->_tree[$key]['obj']->getVar('cat_title').'"><img src="' . TDM_CAT_URL . 'no_picture.png" class="img" width="'.$xoopsModuleConfig['tdmpicture_cat_width'].'" height="'.$xoopsModuleConfig['tdmpicture_cat_height'].'"></a>'; } //echo $selected; Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/changelog.txt =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/changelog.txt (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/changelog.txt 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,61 @@ +************************************************************ +Version 1.06 | 30-June-2012 +Dev: Xoops 2.0.16 / 2.2.3 +************************************************************ +- 2012-06-30 : more Admin GUI standardization (mamba) +- 2012-06-30 : adding /docs folder (mamba) +- 2012-06-30 : fixing English translations (mamba) +- 2012-06-30 : updating icon URL links to ModuleAdmin (mamba) +- 2012-06-30 : adding admin_footer.php (mamba) +- 2012-06-30 : adding Help file (mamba) +- 2012-06-29 : Conversion to XOOPS 2.5.x Admin GUI (Venom) +************************************************************ +Version 1.05 | 12-AVR-2010 +Dev: 2.4.4 +************************************************************ +- 12/04/10 : modifier permission bug +- 11/12/10 : multiupload +************************************************************ +Version 1.04 | 31-MAR-2010 +Dev: 2.4.4 +************************************************************ +- 31/03/10 : modifier xoops_version.php bug affichage +************************************************************ +Version 1.03 | 14-MAR-2010 +Dev: 2.4.2 +************************************************************ +- 14/03/10 : modifier all ajout multi upload +- 14/03/10 : modifier tdmpicture.css changement dans le theme +- 14/03/10 : modifier xoops_version ajout d'option. +- 14/03/10 : modifier jquery mode noConflict +- 14/03/10 : modifier search.inc.php bug info user +- 14/03/10 : modifier rss.php, bug IE. +- 14/03/10 : modifier viewcat style d'affichage cat\xE9gorie. +************************************************************ +Version 1.02 | 17-NOV-2009 +Dev: Xoops 2.4.2 +************************************************************ +- 21/12/09 : modifier xoops_version.php bug +- 21/12/09 : modifier all.php bug xoops 2.4 +- 21/12/09 : modifier all.html ajout de variable smarty +************************************************************ +Version 1.01 | 17-NOV-2009 +Dev: Xoops 2.0.16 / 2.2.3 +************************************************************ +- 17/11/09 : modifier admin/index.php ajout permission dossier upload +- 17/11/09 : modifier tdmpicture.css changement dans le theme +- 17/11/09 : modifier tpfile.html, viewfile.html changement dans le template +- 17/11/09 : modifier viewfile.php, functions.php bug de redimention +- 17/11/09 : modifier include.php jquery bug alert +- 18/11/09 : modifier xoops_version.php, tpcat.html, index.php, viewcat.php redimension image cat\xE9gories. +- 18/11/09 : modifier meta automatique +************************************************************ +Version 1.00 | 03-OCT-2009 +Dev: Xoops 2.0.16 / 2.2.3 +************************************************************ +- 10/10/09 : Ajout de l'anglais +- 10/10/09 : Suppression du .htaccess bug +************************************************************ + + + Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/credits.txt =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/credits.txt (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/credits.txt 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,4 @@ +Credits +=============== +Author: TDM + Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/index.html =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/index.html (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/index.html 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/lang_diff.txt =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/lang_diff.txt (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/lang_diff.txt 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,19 @@ +LANGUAGE DIFFERENCES +===================== + +Below are language differences from a version to next version. + +Version 1.06 +---------------- + +main.php +---------- +define("_MD_TDMPICTURE_NBFILE","# of Pictures"); +define("_MD_TDMPICTURE_MEGABYTES"," MB"); +define("_MD_TDMPICTURE_KILOBYTES"," KB"); + +admin.php +---------- +define("_AM_TDMPICTURE_DELETE_SELECTED", "Delete Selected"); +define("_AM_TDMPICTURE_BUTTON_CAT_WAITING", "Categories to Approve: "); +define("_AM_TDMPICTURE_BUTTON_FILES_WAITING", "Files to Approve: "); \ No newline at end of file Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/licence.txt =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/licence.txt (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/licence.txt 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme.txt =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme.txt (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme.txt 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,21 @@ +************************************************** ********** +TDMPicture +Version 1.06 | 2012-06-30 +************************************************** ********** + +************************************************** ********** +UPDATE +************************************************** ********** + +- Overwrite the file TDMPicture, to update the module from the site administration. +- When using a custom template set, remove the module's templates for regeneration. +- Appointments in the administration module to create permissions. + + +************************************************** ********** +INSTALLATION +************************************************** ********** + +- Upload the entire folder 'TDMPicture' folder to / modules / +- Go to Admin of your site to install the module. +- Set permissions. \ No newline at end of file Added: XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme_fr.txt =================================================================== --- XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme_fr.txt (rev 0) +++ XoopsModules/TDMPicture/trunk/TDMPicture/docs/readme_fr.txt 2012-07-07 14:11:46 UTC (rev 9794) @@ -0,0 +1,21 @@ +************************************************************ +TDMPicture +Version 1.06 | 2012-06-30 +************************************************************ + +************************************************************ +MISE A JOUR +************************************************************ + +- Ecraser le dossier TDMPicture, mettre jour le module depuis l'administration du site. +- En cas d'utilisation d'un jeu de templates personnalis�, supprimer les templates du module pour les reg�n�rer. +- Rendez-vous dans l'administration du module pour cr�er les permissions. + + +***********************************... [truncated message content] |
From: <ce...@us...> - 2012-07-07 14:10:45
|
Revision: 9793 http://xoops.svn.sourceforge.net/xoops/?rev=9793&view=rev Author: cesag Date: 2012-07-07 14:10:39 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Typo corrected on file help.html for french extcal 2.37 beta 3 Modified Paths: -------------- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html Modified: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html 2012-07-07 13:29:57 UTC (rev 9792) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html 2012-07-07 14:10:39 UTC (rev 9793) @@ -3,7 +3,7 @@ <!-- -----Help Content ---------- --> <h4 class="odd">Description</h4> <div class="even"> - <p>eXtCal est un module de calendrier des événements mis au point exclusivement pour XOOPS, il est donc parfaitement intégré. </p> + <p>eXtCal est un module de calendrier des évènements mis au point exclusivement pour XOOPS, il est donc parfaitement intégré. </p> <p>Il utilise les permissions et gestion de groupes de XOOPS, permettant ainsi une grande flexibilité dans son utilisation.</p> </div> <h4 class="odd">Installation / Désinstallation</h4> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ce...@us...> - 2012-07-07 13:30:05
|
Revision: 9792 http://xoops.svn.sourceforge.net/xoops/?rev=9792&view=rev Author: cesag Date: 2012-07-07 13:29:57 +0000 (Sat, 07 Jul 2012) Log Message: ----------- Adding Extcal 2.37 beta 3 french translation. Added Paths: ----------- XoopsLanguages/french/modules/extcal/ XoopsLanguages/french/modules/extcal/extcal 2.37/ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/admin.php XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/blocks.php XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/extcal_help.html XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/index.html XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/index.html XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_inscription.html XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/cat_new_event.tpl XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event.tpl XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event_pending.tpl XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/main.php XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/modinfo.php Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/admin.php =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/admin.php (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/admin.php 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,121 @@ +<?php +// @author Gregory Mage (Aka Mage) +//*************************************************************************************** +define('_AM_EXTCAL_CONFIG', "Configuration"); +define('_AM_EXTCAL_EVENTS_DELETED', "Évènements supprimés avec succès."); +define('_AM_EXTCAL_PEAR_PATH', "Librairie PEAR"); +define('_AM_EXTCAL_RECURRENT', "Récurrent"); +define('_AM_EXTCAL_START_RULES', "Règles"); +define('_AM_EXTCAL_WEIGHT', "Poids"); +define('_AM_EXTCAL_MANAGER_CATS', "Gestion des catégories"); +define('_AM_EXTCAL_CLONE_OF', "Copie de l'évènement #"); +define('_AM_EXTCAL_EDIT_EVENT', "Modifier l'évènement"); +define('_AM_EXTCAL_ABOUT_AUTHOR', "Auteur: "); +define('_AM_EXTCAL_ABOUT_AUTHOR_INFO', "Informations sur l'auteur"); +define('_AM_EXTCAL_ABOUT_AUTHOR_NAME', "Nom de l'auteur : "); +define('_AM_EXTCAL_ABOUT_CHANGELOG', "Journal des modifications"); +define('_AM_EXTCAL_ABOUT_CREDITS', "Remerciements : "); +define('_AM_EXTCAL_ABOUT_DESCRIPTION', "Description: "); +define('_AM_EXTCAL_ABOUT_LICENSE', "Licence : "); +define('_AM_EXTCAL_ABOUT_MODULE_INFO', "Informations sur le module"); +define('_AM_EXTCAL_ABOUT_MODULE_STATUS', "Statut : "); +define('_AM_EXTCAL_ABOUT_RELEASEDATE', "Date de sortie : "); +define('_AM_EXTCAL_ABOUT_UPDATEDATE', 'Mise à jour : '); +define('_AM_EXTCAL_ABOUT_WEBSITE', "Site internet : "); +define('_AM_EXTCAL_ACTION', "Action"); +define('_AM_EXTCAL_ADD_CATEGORY', "Ajouter une catégorie"); +define('_AM_EXTCAL_ADMINISTRATION', "Administration"); +define('_AM_EXTCAL_APPROVED', "Approuvées"); +define('_AM_EXTCAL_APPROVED_EVENT', "Approuver l'évènement"); +define('_AM_EXTCAL_AUTO_APPROVE', "Les évènements soumis n'ont pas besoin d'être approuvés"); +define('_AM_EXTCAL_AUTOAPPROVE_PERMISSION', "Permission de soumettre sans approbation"); +define('_AM_EXTCAL_AUTOAPPROVE_PERMISSION_DESC', "Sélectionner les catégories où chaque groupe peut soumette sans approbation"); +define('_AM_EXTCAL_CAN_EDIT', "Peut modifier"); +define('_AM_EXTCAL_CAN_SUBMIT', "Peut soumettre"); +define('_AM_EXTCAL_CAN_VIEW', "Peut accéder"); +define('_AM_EXTCAL_CAT_CREATED', "Catégorie créée"); +define('_AM_EXTCAL_CAT_DELETED', "La catégorie a été supprimée"); +define('_AM_EXTCAL_CAT_EDITED', "Catégorie modifiée"); +define('_AM_EXTCAL_CATEGORY', "Catégories"); +define('_AM_EXTCAL_CHECK_UPDATE_ERROR', "Impossible de trouver la dernière version d'eXtCal."); +define('_AM_EXTCAL_COLOR', "Couleur"); +define('_AM_EXTCAL_CONFIG_CHECK', "Configuration"); +define('_AM_EXTCAL_CONFIG_PHP', "Vous devez avoir au minimum la version php %s (vous avez la version %s)."); +define('_AM_EXTCAL_CONFIG_XOOPS', "Vous devez avoir au minimum la version %s (vous avez la version %s)."); +define('_AM_EXTCAL_CONFIRM_DELETE_ALL', "Tout supprimer"); +define('_AM_EXTCAL_CONFIRM_DELETE_CAT', "Confirmer pour supprimer la catégorie"); +define('_AM_EXTCAL_CONFIRM_DELETE_EVENT', "Confirmer la suppression de cet évènement."); +define('_AM_EXTCAL_CONFIRM_DELETE_SELECTION', "Supprimer la sélection"); +define('_AM_EXTCAL_DELETE', "Suppression"); +define('_AM_EXTCAL_DELETE_ALL', "Supprimer tout"); +define('_AM_EXTCAL_DELETE_SELECTION', "Supprimer la sélection"); +define('_AM_EXTCAL_DESCRIPTION', "Description"); +define('_AM_EXTCAL_DOWN_DONE', "Téléchargement complet. Cliquez ici pour installer les fichiers"); +define('_AM_EXTCAL_EDIT_CATEGORY', "Modifier une catégorie"); +define('_AM_EXTCAL_EDIT_OR_DELETE_CATEGORY', "Modifier ou supprimer une catégorie"); +define('_AM_EXTCAL_EDIT_PERMISSION', "Permission de modifier"); +define('_AM_EXTCAL_EDIT_PERMISSION_DESC', "Sélectionnez les catégories dans lesquelles chaque groupe peut modifier ses évènements"); +define('_AM_EXTCAL_ERREUR_NO_ETABLISSEMENT', "Il n'y a pas d'établissement dans la base de données"); +define('_AM_EXTCAL_ETABLISSEMENT', "Établissement"); +define('_AM_EXTCAL_ETABLISSEMENT_FORM_ACTION', "Action"); +define('_AM_EXTCAL_ETABLISSEMENT_FORM_ADRESSE', "Adresse"); +define('_AM_EXTCAL_ETABLISSEMENT_FORM_DELETE', "Supprimer l'établissement"); +define('_AM_EXTCAL_ETABLISSEMENT_FORM_EDIT', "Modifier l'établissement"); +define('_AM_EXTCAL_ETABLISSEMENT_FORM_NOM', "Nom"); +define('_AM_EXTCAL_ETABLISSEMENT_FORM_TELEPHONE', "Téléphone"); +define('_AM_EXTCAL_ETABLISSEMENT_SURDEL', "Êtes-vous sûr de vouloir le supprimer ?"); +define('_AM_EXTCAL_ETABLISSEMENTS', "Établissements"); +define('_AM_EXTCAL_EVENT', "Évènements"); +define('_AM_EXTCAL_EVENT_CREATED', "Évènement créé"); +define('_AM_EXTCAL_EVENT_DELETED', "Évenement supprimé avec succès."); +define('_AM_EXTCAL_EVENT_EDITED', "Évènement modifié"); +define('_AM_EXTCAL_FORMOK', "Sauvegardé avec succès"); +define('_AM_EXTCAL_GO_TO_MODULE', "Accéder au module"); +define('_AM_EXTCAL_GOTO_EVENTS', "Retour aux évènements"); +define('_AM_EXTCAL_GROUP_NAME', "Nom du groupe"); +define('_AM_EXTCAL_ICONE_CLONE', "Dupliquer"); +define('_AM_EXTCAL_ICONE_DELETE', "Supprimer"); +define('_AM_EXTCAL_ICONE_EDIT', "Modifier"); +define('_AM_EXTCAL_INDEX_APPROVED', "Il y a %s évènements en attente de validation"); +define('_AM_EXTCAL_INDEX_CATEGORIES', "Il y a %s catégories"); +define('_AM_EXTCAL_INDEX_EVENT', "Il y a %s évènements dans la base de données"); +define('_AM_EXTCAL_INDEX_PENDING', "Il y a %s évènements en attente"); +define('_AM_EXTCAL_INFO_APPROVE_PENDING_EVENT', "<b>Valider</b> les nouveaux évènements sans lire les informations."); +define('_AM_EXTCAL_INFO_DELETE', "<b>Supprimer</b> l'évènement."); +define('_AM_EXTCAL_INFO_DELETE_PENDING_EVENT', "<b>Supprimer</b> les nouveaux évènements."); +define('_AM_EXTCAL_INFO_EDIT', "<b>Modifier</b> l'évènement."); +define('_AM_EXTCAL_INFO_EDIT_PENDING_EVENT', "<b>Modifier</b> les nouveaux évènements avant de les approuver."); +define('_AM_EXTCAL_INFORMATION', "Information"); +define('_AM_EXTCAL_INSTALL', "Installer les fichiers"); +define('_AM_EXTCAL_INSTALL_DONE', "Installation complète. Cliquez ici pour mettre le module à jour"); +define('_AM_EXTCAL_LG_FILE_DONT_EXIST', "Le fichier de langues n'existe pas sur le serveur : <br /><b>Serveur : </b>%s<br /><b>Fichier : </b>%s"); +define('_AM_EXTCAL_MD_FILE_DONT_EXIST', "Le fichier du module n'existe pas sur le serveur : <br /><b>Serveur : </b>%s<br /><b>Fichier : </b>%s"); +define('_AM_EXTCAL_MD_FILE_DONT_EXIST_SHORT', "Le fichier du module n'existe pas"); +define('_AM_EXTCAL_MODULE_ADMIN_SUMMARY', "Administration d'eXtCal"); +define('_AM_EXTCAL_MULTIUPLOADS_NOT_OK', "Le composant « multiuploads » n'est pas installé.<br /><br /><a href='http://xoops.kiolo.com/modules/mydownloads/'>Téléchargez le composant « multiuploads » ici</a><br /><br />et installez-le dans le dossier 'class/xoopsform/'"); +define('_AM_EXTCAL_NAME', "Nom"); +define('_AM_EXTCAL_NOPERMSSET', "L'autorisation ne peut être définie : il n'y a pas encore de catégories créées ! Veuillez d'abord créer une catégorie."); +define('_AM_EXTCAL_PENDING', "En attente"); +define('_AM_EXTCAL_PENDING_EVENT', "Évènement en attente"); +define('_AM_EXTCAL_PERM_MASK_UPDATED', "Modèle de permissions mis à jour"); +define('_AM_EXTCAL_PERM_NO_CATEGORY', "Vous devez d'abord créer une catégorie"); +define('_AM_EXTCAL_PREFERENCES', "Préférences"); +define('_AM_EXTCAL_PUBLIC_PERM_MASK', "Masque de permissions"); +define('_AM_EXTCAL_PUBLIC_PERM_MASK_INFO', "Ceci vous permet de définir un masque de permissions par défaut qui sera appliqué à toutes les nouvelles catégories créées. Soyez prudent car ces permissions seront automatiquement appliquées à toutes les nouvelles catégories."); +define('_AM_EXTCAL_REDIRECT_DELOK', "Supprimé avec succès"); +define('_AM_EXTCAL_START_DATE', "Date de début"); +define('_AM_EXTCAL_SUBMIT_PERMISSION', "Permission de proposer"); +define('_AM_EXTCAL_SUBMIT_PERMISSION_DESC', "Sélectionner les catégories où chaque groupe peut soumettre"); +define('_AM_EXTCAL_SUBMITTED_EVENT', "Évènement soumis"); +define('_AM_EXTCAL_TITLE', "Titre"); +define('_AM_EXTCAL_UPDATE', "Mettre à jour le module"); +define('_AM_EXTCAL_UPDATE_INFO', "Informations de mise à jour"); +define('_AM_EXTCAL_UPDATE_KO', "Votre version d'eXtCal n'est plus à jour. Vous êtes invité à effectuer une mise à jour dès que possible."); +define('_AM_EXTCAL_UPDATE_OK', "Vous utilisez la dernière version d'eXtCal avec les dernières mises à jour de stabilité et de sécurité."); +define('_AM_EXTCAL_UPDATE_UPGRADE', "Cliquez ici pour mettre à jour le module"); +define('_AM_EXTCAL_VIEW_PERMISSION', "Permission d'accès"); +define('_AM_EXTCAL_VIEW_PERMISSION_DESC', "Sélectionner les catégories accessibles par groupe"); +define('_AM_EXTCAL_NO_PENDING_EVENT', "Pas d'évènements en attente"); +define('_AM_EXTCAL_ICONE', "Icône"); +//ModuleAdmin +define('_AM_EXTCAL_MODULEADMIN_MISSING',"Erreur : La classe ModuleAdmin est manquante. Veuillez installer la classe ModuleAdmin dans le dossier /Frameworks (voir /docs/readme.txt)."); \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/blocks.php =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/blocks.php (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/blocks.php 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,31 @@ +<?php +define('_MB_EXTCAL_BGCOLOR', "Couleur de fond"); +define('_MB_EXTCAL_CAT_TO_USE', "Catégories"); +define('_MB_EXTCAL_HEIGHT', "Hauteur"); +define('_MB_EXTCAL_HORLOGE', "Horloge"); +define('_MB_EXTCAL_HORLOGE_OPT', "Paramètres de l'horloge"); +define('_MB_EXTCAL_OPT_SHOW', "Options d'affichage"); +define('_MB_EXTCAL_OPT_SLIDE_SHOW', "Diaporama"); +define('_MB_EXTCAL_WIDTH', "Largeur"); +define('_MB_EXTCAL_ALL_CAT', "Toutes les catégories"); +define('_MB_EXTCAL_CAT_TO_USE_DESC', "Sélectionner les catégories dans lesquelles les évènements seront intégrés"); +define('_MB_EXTCAL_CURRENT', "Actuel"); +define('_MB_EXTCAL_DISPLAY', "Afficher"); +define('_MB_EXTCAL_DISPLAY_IMG', "Afficher l'image"); +define('_MB_EXTCAL_DISPLAY_MONTH', "Mois à afficher"); +define('_MB_EXTCAL_DISPLAY_SUBMIT_LINK', "Afficher le lien de soumission"); +define('_MB_EXTCAL_EVENT', "évènements"); +define('_MB_EXTCAL_IMG_CAT', "Image de la catégorie"); +define('_MB_EXTCAL_NEXT', "Suivant"); +define('_MB_EXTCAL_PREVIEW', "Précédent"); +define('_MB_EXTCAL_PX', "px"); +define('_MB_EXTCAL_SECONDES', "secondes"); +define('_MB_EXTCAL_SS_HEIGHT', "Hauteur du diaporama"); +define('_MB_EXTCAL_SS_NB_PHOTOS', "Nombre de photos du diaporama"); +define('_MB_EXTCAL_SS_PAUSE_TIME', "Temps de pause du diaporama"); +define('_MB_EXTCAL_SS_TRANS_TIME', "Temps de transition du diaporama"); +define('_MB_EXTCAL_SS_WIDTH', "Largeur du diaporama"); +define('_MB_EXTCAL_SUBMIT_LINK_TEXT', "Soumettre un évènement"); +define('_MB_EXTCAL_TITLE_LENGTH', "Longueur du titre"); + +?> \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/changelog.txt 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,406 @@ +2012/02/02: Version 2.37 (JJD.fr) +=================================== +- Ajout du champ icône dans la table event_event +- Ajout du champ icône dans la table event_cat +- Affichage de l'icône de event/cat dans l'infobulle +- Mise à jour des constantes de langue +- Patch de mise à jour des tables + +2012/01/31: Version 2.36 (JJD.fr) +=================================== +- Correction d'affichage +- Remplacement des infobulles par un autre modèle plus pro + +2012/01/21: Version 2.35 (JJD.fr) +=================================== +- Réintrégation du fichier de mise à jour extcal_2_34.php omis dans la version précédente +- Correction du zoom sur les photos dans certaines vue +- Correction valeur par défaut à 0 de event_etablissement dans la table event +- Instanciation de extcalConfig <=> xoopsModuleConfig pour les blocks + +2012/01/06: Version 2.34 (JJD.fr) +=================================== + - Correction de la gestion des images des évènements et de l'établissement + - Correction du flux RSS + - Correction du motif des expressions régulières pour la validation des dates + - Correction du lien sur le site de l'établissement + - Suppression du retour à la ligne avant la devise dans la fiche de l'établissement + +=================================== +2011/12/30: Version 2.34 (JJD.fr) +=================================== + - Champ "desc" de la table "etablissement" renomé en "description". + - Correction template, admin et font-office pour les établissements + +=================================== +2011/12/30: Version 2.33 (JJD.fr) +=================================== +- ré écriture des fonctions + bExtcalMinicalShow + bExtcalMinicaledit (utilisation de xoopsform) + bExtcalMinicalAddEventToArray (simplication du code)) + +- Ajout de la constante 'CALENDAR_ROOT' dans le fichier constantes.php + et suppression de cette déclaration dans tous les autres fichiers puisque + le fichier 'constantes.php' est inclus systématiquement. + Par ailleurs cela permettra à terme de déplacer la bibliothèque 'pear' + avec les autres libraires comme jQuery, en vue de pourvoir l'utiliser avec d'autre modules, + sans que cette librairie ne soit recopiée à chaque utilisation. + Cette librairie sera supprimée du module dans une prochaine version. + Il est d'ors et déjà possible de changer + define('_EXTCAL_PEAR_CALENDAR', XOOPS_ROOT_PATH . '/modules/extcal/class/pear/Calendar'); + par + define('_EXTCAL_PEAR_CALENDAR', XOOPS_PATH . '/pear/Calendar'); + si la librairie 'pear' est installée au même endroit que jQuery. + +- Adminstration des évènements "catégories" et "établissements" : + Ajout d'un lien sur le nom pour accéder directement à la fiche en modification. + +- Répartition des blocks dans des fichiers différents pour faciliter la lecture et le chargement + Supression du block "excal_block.php" + Création des blocks: + "minical.php" + "spotlight_events.php" + "upcoming.php" + "day_events.php" + "new_events.php" + "random_events.php" + "catetogy_events.php" + +- Ajout des onglets dans la fiche d'édition d'un évènement + +- Ajout dans le menu principal de gauche de l'accès aux onglets visibles + +- Mutualisation des listes de sélection dans le "template" "navBar" + +- Correction du CSS des infobulles + Supression de la classe "*" et ajout de la taille de la police dans "zone1" + +- Options du module : + Ajout de l'ordre d'affichage des onglets (influe également sur le menu latéral) + Ajout d'une option du module pour le positionnement des listes de sélection + +- Classe "event" : remplacement des fonctions ci-dessous par la fonction unique getEventOnPeriode + getEventDay, getEventWeek, getEventCalendarWeek, getEventCalendarMonth, + +- Ajout de l'affichage d'une horloge flash avec le mini calendrier + ajout du "template" "horloge" + +- Ajout d'un "template" pour l'image xoops affichée en option avec le mini calendrier, + et suppression du code smarty dans le block "minicalendrier". + +2011/10/21a: Version 2.32 (JJD.fr) +=================================== + - Correction de la fonction "getSearchEvent" utilisée par la recherche de Xoops; + Elle ne prenait en compte que le premier mot d'une expression. + De plus elle a été adaptée pour une recherche à partir du module lui-même + avec des critères spécifiques (expression + catégorie et par la suite sur le mois et l'année sont prévus). + Le recherche était faite sur les champs 'event_title','event_desc','event_contact','event_address'. + Le champ 'cat_name' a été ajouté dans la recherche pour permettre + de trouver des mots dans le titre de la catégorie. + + - ajout d'une vue de recherche. + Cette vue permet une recherche plus étendue sur une expression, une catégorie, + sur l'année, le mois, ... + La date aura été modifiée en "datatime" au lieu de int(11). + important: + Il faut penser à ajouter cet onglet dans ceux visibles dans les options du module. + +2011/10/21a: Version 2.31 (JJD.fr) +=================================== + - Correction du chargement des images dans le "front-office" + - Correction de la devise et ajout des constantes de devises + define('_MD_EXTCAL_DEVISE1', "Euro"); + define('_MD_EXTCAL_DEVISE2', "Euros"); + define('_MD_EXTCAL_DEVISE3', "€"); + - Modification de la feuille de style des infobulles. + Suppression de la largeur de la classe ".tip-top" + Pour permettre un redimensionnement automatique. + Ajout des attributs 'infoBulle_zone1', 'infoBulle_zone2' et 'infoBulle_zone3' + pour pemettre l'affichage de l'image et du texte. + 'infoBulle_zone1' : positionne la première infobulle image ou texte + 'infoBulle_zone2' : positionne la 2ème infobulle à droite de la première si il y une image + 'infoBulle_zone3' : positionne la 2ème infobulle sous la première si il y une image + Pour modifier la position de la deuxième infobulle changer 'infoBulle_zone2' + par 'infoBulle_zone3' dans le template extcal_infobulle.html. + - Simplification des "templates" par insertion de "templates" génériques + pour les infobulles et les catégories + +2011/10/21a: Version 2.30 (JJD.fr) +=================================== + - Ajout de la suppression par lot ou par sélection + dans la page d'administration des évènements. + suppression des images liées à l'évènement. + +2011/09/04: Version 2.29 (JJD-fr) +==================================== + - Généralisation des infobulles new look à toutes les vues. + - Masquage de l'image dans les vues "jour" et "semaine" si elle n'est pas définie. + - Corrections de mise en forme dans les vues "jour" et "semaines" et "mois":" + ajout du changement de couleur de fond 10 lignes sur 2 + class=head pour la ligne d'entête, ... + - Fichiers de langue "english" et "spanish" complètes + - Enregistrement d'un évènement clone sur validation du formulaire au lieu du click sur l'icône. + - Paramétrage dans les options du module (nbeventsByPage) du nombre d'évènements dans la liste de l'administration + +==================================== +2011/09/04: Version 2.29 (JJD-fr) +==================================== +- Ajout d'un bloc "Evènements à venir par catégorie" + Le bloc est bordé sur la gauche et au dessus de chaque catégorie + par la couleur de cette dernière. + +==================================== +2011/08/22: Version 2.28 (JJD-fr) +==================================== +- Fusion des versions "2.22 plus" de Mamba et "2.27" + * Ajout de la table "etablissement" + * Formulaire de saisie pour les établissements + * Ajout de la sélection de l'établissement dans l'évènement +- Correction du nombre de jours dans "agenda-day" +- Ajout d'infobulles dans les vues agenda_day-view et agenda_week-view +- Ajustement des zones de saisie des évènements +- Ajout d'une fonction de clonage d'un évènement. + +==================================== +2011/08/07: Version 2.27 (JJD-fr) +==================================== +- Correction include constantes dans xoops_version.php +- Correction récuperation xoopsModuleConfig dans le block minical +- Important : complément d'information dans le fichier doc/install.txt +- Correction des fichiers de langues +- Ajout de la sélection des onglets à afficher dans les options du module. +- Correcion du lien sur le mini calendrier. + Affiche maintenant la vue 'stat_page' paramétrée dans les options. + La vue 'start_page' doit être visible. + +==================================== +2011/08/07: Version 2.26 (JJD-fr) +==================================== +- Fixed include constantes.php in xoops_version.php +- Fixed the block recovery xoopsModuleConfig minical +- Important: additional information in the file doc / install.txt +- Fixed language files +- Added a selection of tabs displayed in optins module. +- Correcion the link on the mini calendar. + Now shows view 'stat_page' set in options. + View 'start_page' should be visible. + +==================================== +2011/08/03: Version 2.25 (JJD-fr) +==================================== +- Ajout de la sélection des onglets à afficher dans les options du module. +- Correction du lien sur le mini calendrier. + Affiche maintenant la vue 'stat_page' paramétrée dans les options. + La vue 'start_page' doit être visible. +- Ajout d'un vue agenda jour sous forme de grille : affiche 1 ou plusieurs journées avec des tranches horaires. + Les événements sont affiché avec un carre coloré avec son titre. +- Ajout d'un vue agenda semaine sous forme de grille : affiche 1 ou plusieurs journées avec des tranches horaires. + Les événements sont affiché avec un carre. + Le titre et les heures de début et de fin sont affiché dans l'info-bulle au survol de la souris. + Permet d'avoir une vue synthétique de la semaine ou la quinzaine par exemple. +- Ajouts des options de paramétrages pour les deux vues 'agenda' + * heures de début de la journée + * heur de fin de la journée + * Nombre de minutes par tranche + * Nb de jours pour chacune des deux vues agenda. +- Renommage de toutes les fichiers php et template de vues avec ajout du préfixe 'view' + pour faciliter la maintenance; +- remplacement du tableau '$lang' dans les template par l'équivalent '$smarty;const' +- Modification des fonctions _getEventWeekCriteria et getEventWeek. + ajout du paramètres $nbJours pour récupérer les événements sur une plage + autre que 7 jours; '$nbjours' doit être > 0; attention à l'affichage de plus de 20 jours + dans l'agenda semaine peut ne pas être pratique. + Ce sont les deux paramètres ajoutés dans les options du module; +- Ajout du fichier 'agenda_fnc.php' qui contient les fonctions de création des tableaux + pour alimenter les agenda; +- remplacement du remplissage des liste de sélection des années, moi, jours et catégories, + par des fonctions génériques. +- remplacement des codes pour la sélection des vues par des constantes (fichier 'constantes.php') +- Ajouts des options 'agenda_nb_years_before' et 'agenda_nb_years_after' + pour le remplissage des listes déroulantes de sélection des années. + Permet de limiter les années antérieures par exemple. + + + +============================ +2011/03/21: Version 2.24 +============================ + ++ Zend Coding Standard (Mamba) ++ Changed to standardized XOOPS Module GUI (mamba, Mage) ++ Spanish translation (josespi) ++ fix problem in upcoming events block (josespi) + +============================ +2008/10/09: Version 2.2.2 +============================ + +- Fix bug : Event not display in upcomming bloc if anonymous aren't allowed to view +- Fix bug : First occur for monthly reccur event could be not displayed +- Fix bug : Now, Date on RSS was replace by the event start date +- Add Flash slideshow on Minical block + + +Lang var change : + +blocks.php +_MB_EXTCAL_SS_WIDTH +_MB_EXTCAL_SS_HEIGHT +_MB_EXTCAL_SS_TRANS_TIME +_MB_EXTCAL_SS_PAUSE_TIME +_MB_EXTCAL_SS_NB_PHOTOS +_MB_EXTCAL_PX +_MB_EXTCAL_SECONDES + +============================ +2008/13/08: Version 2.2.1 +============================ + +- Fix bug : typo fix on the monthly reccur rule string +- Fix bug : 404 error when we update notifications +- Fix bug : Yearly "Same as event start date" recur option don't work. This option allow to set an event a the same day number in month as the start date. This allow to create reccuring event like birthday +- Fix bug : Member of Webmaster Group can't edit event if they aren't eXtCal edit permission +- Fix bug : Event in list view aren't sorted according to module preferences +- Fix bug : Navigation in weekly list view don't work if the first day of the week isn't Monday +- Fix bug : eXtCal upload directory isn't created when we make module update +- Fix bug : Who's not going don't work without new module install. The who's not going table isn't created when we make a module update +- Fix bug : Space in day's name on calendar pages +- Fix bug : Minical image aren't get random. +- Add Edit my event feature + + +Lang var change : + +admin.php +_AM_EXTCAL_CONFIRM_DELETE_EVENT +_AM_EXTCAL_EVENT_DELETED + +============================ +2008/14/06: Version 2.2.0 +============================ + +- Fix bug : Event year selection box don't work on year.php page +- Fix bug : Blank page when event is submitted with wrong date format +- Fix bug : Timezone offset bug on calendar pages and event page +- fix bug : Recurring bug on Monthly rule +- Fix bug : Translate error on minical day's letter + + +============================ +2008/21/05: Version 2.1.9 +============================ + +- Add tooltips box on all pages to display start and end date when mouse over the event name (need Mootools) +- Add list navig for event on admin side +- Fix bug : File isn't attached when event is submitted from admin side +- Fix bug : Timezone offset bug on block and pages + + +Lang var change : + +blocks.php +_MB_EXTCAL_DISPLAY +_MB_EXTCAL_EVENT +_MB_EXTCAL_TITLE_LENGTH + +Add mail_template directory + +============================ +2008/07/05: Version 2.1.8 +============================ + +- Add a feature to make a module update just by clicking on module admin side. The server will download, install files and update the module. +- Fix bug : User could submit event without perm by accessing directly to the submit page +- Fix bug : Recur rule aren't updated when an event is edited +- Fix bug : Timezone bug when user timezone is different than server timezone + + +============================ +2008/28/03: Version 2.1.7 +============================ + +- Fix bug : event_submitdate field wasn't created during upgrade from version before 2.0.4 +- Fix bug : wrong link when week start in month before the current view (stefan88) +- Add the send notification function +- Allow HTML for textarea fields +- Add the Comments system +- Add the Notifications system + + +============================ +2008/21/01: Version 2.1.6 +============================ + +- Fix error when submit an event from public side +- Fix Bug : Category perm are not respected to display event +- Fix Bug : Translation file isn't loaded +- Fix bug : An user could be in the who's going and who's not going list + + +============================ +2008/28/12: Version 2.1.5 +============================ + +- Add Reccuring rule description on event view +- Add the RSS page +- Extend the search function to address and contact field +- Set the update proc to upgrade from eXtCal 2.0.4 +- Add the navigation tab menu + + +============================ +2007/18/12: Version 2.1.4 +============================ + +- Add reccuring event feature + + +============================ +2007/10/07: Version 2.1.3 +============================ + +- Add a file attachement feature to the module +- Add a "who's not going" feature +- Add a version checker (display a message if a new version of the module is out) + + +============================ +2007/28/04: Version 2.1.2 +============================ + +- Add a preview feature on submit event page +- Fix a bug that disallow fresh install + + +============================ +2007/25/04: Version 2.1.1 +============================ + +- Add the "hide past event" feature + + +============================ +2007/22/04: Version 2.1.0 +============================ + +- Rewrite the module from scratch + + +============================ +2006/11/04: Version 2.0.4 RC2 +============================ + +- Add the possibility to display more than 1 event on spotlight bloc +- Bug fix : eXtCal don't work with XOOPS under 2.0.15 + + +============================ +2006/31/10: Version 2.0.4 RC1 +============================ + +- Add a "flat" monthly view +- Little display improvement +- Fix an error on pruning page +- Add property to event to set a maximum member limit per event +- Change the month template to display all event's infos Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/extcal_help.html =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/extcal_help.html (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/extcal_help.html 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,11 @@ +<div id="help-template" class="outer"> + <h1 class="head">Aide : eXtCal</h1> + <h4 class="odd">Description</h4> + <div class="even"> + <p>eXtCal est un module de calendrier des \xE9v\xE9nements d\xE9velopp\xE9 exclusivement pour XOOPS, il est donc parfaitement int\xE9gr\xE9.</p> + <p>Il utilise les permissions et la gestion de groupes de XOOPS, permettant ainsi une grande flexibilit\xE9 dans son utilisation.</p> + </div> +</div> +<div class="xo-buttons"> + <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/extcal/admin/index.php" title="Retour \xE0 l'administration d'eXtCal"><img src="<{xoAdminIcons home.png}>" alt="Retour \xE0 l'administration d'eXtCal"/> Retour \xE0 l'administration d'eXtCal</a> +</div> \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/help.html 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,26 @@ +<div id="help-template" class="outer"> + <h1 class="head">Aide : <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/extcal/admin/index.php" title="Retour à l'administration d'extCal"> extCal <img src="<{xoAdminIcons home.png}>" alt="Retour à l'administration d'extCal"/></a></h1> + <!-- -----Help Content ---------- --> + <h4 class="odd">Description</h4> + <div class="even"> + <p>eXtCal est un module de calendrier des événements mis au point exclusivement pour XOOPS, il est donc parfaitement intégré. </p> + <p>Il utilise les permissions et gestion de groupes de XOOPS, permettant ainsi une grande flexibilité dans son utilisation.</p> + </div> + <h4 class="odd">Installation / Désinstallation</h4> + <div class="even"> + <p>Aucune mesure particulière n'est nécessaire, suivez la procédure d'installation standard – extraire le dossier /extcal dans le répertoire ../modules. Installez le module par l'Admin -> Système -> Modules.</p> + <p>Des instructions détaillées sur l'installation de modules sont disponibles dans le <a href="http://goo.gl/adT2i">Manuel des opérations de XOOPS</a></p> + </div> + <h4 class="odd">Instructions d'utilisation</h4> + <div class="even"> + <p>Pour mettre en place ce module, vous devez :</p> + <ul> + <li>i) Configurer vos préférences pour le module (voir ‘Préférences’) et éventuellement le bloc partenaires si vous avez l'intention de l'utiliser (voir ‘Blocks’)</li> + <li>ii) Vérifiez que vous avez donné les droits du module nécessaires à vos groupes d'utilisateurs et bloquez ensuite les droits d'accès pour utiliser ce module. Les autorisations des groupes sont définies par le menu Administration -> Système -> Groupes.</li> + </ul> + <p>Des instructions détaillées sur la configuration des droits d'accès pour les groupes d'utilisateurs sont disponibles dans le <a href="http://goo.gl/adT2i" title="">Manuel des opérations de XOOPS</a></p> + </div> + <h4 class="odd">Tutoriel</h4> + <p class="even">Pas disponible en ce moment.</p> + <!-- -----Help Content ---------- --> +</div> \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/index.html =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/index.html (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/help/index.html 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/index.html =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/index.html (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/index.html 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_inscription.html =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_inscription.html (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_inscription.html 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,12 @@ +Message de : +toto vous informe de "message" \xE0 l\xE9vennement "nom" du "date" +Citation: +message de toto + +Lsite des membre pour cette \xE9venement +w insrip +y delegation +p message + +L'organisateur de l'\xE9vennement : + Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/cat_new_event.tpl =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/cat_new_event.tpl (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/cat_new_event.tpl 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,18 @@ +Bonjour {X_UNAME}, + +Un nouvel \xE9v\xE8nement "{EVENT_TITLE}" a \xE9t\xE9 cr\xE9\xE9 dans "{CAT_NAME}" sur {X_SITENAME}. + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand des \xE9v\xE8nements sont ajout\xE9s \xE0 notre site. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event.tpl =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event.tpl (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event.tpl 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,18 @@ +Bonjour {X_UNAME}, + +Un nouvel \xE9v\xE8nement "{EVENT_TITLE}" a \xE9t\xE9 cr\xE9\xE9 sur {X_SITENAME}. + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand des \xE9v\xE8nements sont ajout\xE9s \xE0 notre site. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event_pending.tpl =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event_pending.tpl (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/mail_template/global_new_event_pending.tpl 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,18 @@ +Bonjour {X_UNAME}, + +Un nouvel \xE9v\xE8nement "{EVENT_TITLE}" a \xE9t\xE9 soumis et est en attente de validation sur {X_SITENAME}. + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand des \xE9v\xE8nements sont ajout\xE9s \xE0 notre site. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/main.php =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/main.php (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/main.php 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,228 @@ +<?php +include_once XOOPS_ROOT_PATH . '/language/' . $GLOBALS['xoopsConfig']['language'] + . '/calendar.php'; +define('_MD_CLEAR_CRITERIA', "Initialiser les critères" ); +define('_MD_EXTCAL_1_FR', '1er ' . _CAL_FRIDAY); +define('_MD_EXTCAL_1_MO', '1er ' . _CAL_MONDAY); +define('_MD_EXTCAL_1_SA', '1er ' . _CAL_SATURDAY); +define('_MD_EXTCAL_1_SU', '1er ' . _CAL_SUNDAY); +define('_MD_EXTCAL_1_TH', '1er ' . _CAL_THURSDAY); +define('_MD_EXTCAL_1_TU', '1er ' . _CAL_TUESDAY); +define('_MD_EXTCAL_1_WE', '1er ' . _CAL_WEDNESDAY); +define('_MD_EXTCAL_2_FR', '2nd ' . _CAL_FRIDAY); +define('_MD_EXTCAL_2_MO', '2nd ' . _CAL_MONDAY); +define('_MD_EXTCAL_2_SA', '2nd ' . _CAL_SATURDAY); +define('_MD_EXTCAL_2_SU', '2nd ' . _CAL_SUNDAY); +define('_MD_EXTCAL_2_TH', '2nd ' . _CAL_THURSDAY); +define('_MD_EXTCAL_2_TU', '2nd ' . _CAL_TUESDAY); +define('_MD_EXTCAL_2_WE', '2nd ' . _CAL_WEDNESDAY); +define('_MD_EXTCAL_3_FR', '3eme ' . _CAL_FRIDAY); +define('_MD_EXTCAL_3_MO', '3eme ' . _CAL_MONDAY); +define('_MD_EXTCAL_3_SA', '3eme ' . _CAL_SATURDAY); +define('_MD_EXTCAL_3_SU', '3eme ' . _CAL_SUNDAY); +define('_MD_EXTCAL_3_TH', '3eme ' . _CAL_THURSDAY); +define('_MD_EXTCAL_3_TU', '3eme ' . _CAL_TUESDAY); +define('_MD_EXTCAL_3_WE', '3eme ' . _CAL_WEDNESDAY); +define('_MD_EXTCAL_4_FR', '4eme ' . _CAL_FRIDAY); +define('_MD_EXTCAL_4_MO', '4eme ' . _CAL_MONDAY); +define('_MD_EXTCAL_4_SA', '4eme ' . _CAL_SATURDAY); +define('_MD_EXTCAL_4_SU', '4eme' . _CAL_SUNDAY); +define('_MD_EXTCAL_4_TH', '4eme ' . _CAL_THURSDAY); +define('_MD_EXTCAL_4_TU', '4eme ' . _CAL_TUESDAY); +define('_MD_EXTCAL_4_WE', '4eme ' . _CAL_WEDNESDAY); +define('_MD_EXTCAL_ABSENT', "Absent"); +define('_MD_EXTCAL_ACTION_COME', "S'est incrit"); +define('_MD_EXTCAL_ACTION_DELEGATION', "Donner délégation"); +define('_MD_EXTCAL_ACTION_DESINSCRIPTION', "S'est désinscrit"); +define('_MD_EXTCAL_ACTION_INSCRIPTION', "S'est incrit"); +define('_MD_EXTCAL_ACTION_MESSAGE', "Informe du message suivant : "); +define('_MD_EXTCAL_ACTION_NONE', "S'est désinscrit"); +define('_MD_EXTCAL_ACTION_NOTCOME', "Sera absent"); +define('_MD_EXTCAL_ADD_ME', "Ajoutez-moi"); +define('_MD_EXTCAL_ADDRESS', "Adresse"); +define('_MD_EXTCAL_ALPHA', "Alphabétique" ); +define('_MD_EXTCAL_AND', "Et"); +define('_MD_EXTCAL_APR', "Avr"); +define('_MD_EXTCAL_AUG', "Aoû"); +define('_MD_EXTCAL_CATEGORY', "Catégorie"); +define('_MD_EXTCAL_CITATION', "Citation"); +define('_MD_EXTCAL_CONTACT', "Contact"); +define('_MD_EXTCAL_CONTACT_INFO', "Informations de contact"); +define('_MD_EXTCAL_DAILY', "Journalière"); +define('_MD_EXTCAL_DAY', "jour" ); +define('_MD_EXTCAL_DAY_NUM_MONTH', "(Jour du mois)"); +define('_MD_EXTCAL_DAYS', "jour(s)"); +define('_MD_EXTCAL_DEC', 'Dec'); +define('_MD_EXTCAL_DEL_IMG', "Supprimer l'image"); +define('_MD_EXTCAL_DESCRIPTION', "Description"); +define('_MD_EXTCAL_DEVISE1', "Euro"); +define('_MD_EXTCAL_DEVISE2', "Euros"); +define('_MD_EXTCAL_DEVISE3', "€"); +define('_MD_EXTCAL_DURING', "Pendant"); +define('_MD_EXTCAL_EDIT_EVENT', "Modifier un évènement"); +define('_MD_EXTCAL_EMAIL', "Courrier éléctronique"); +define('_MD_EXTCAL_END', "Fin"); +define('_MD_EXTCAL_END_DATE', "Date de fin"); +define('_MD_EXTCAL_ETABLISSEMENT', "Lieu"); +define('_MD_EXTCAL_ETABLISSEMENT_ADD', "Ajouter un établissement"); +define('_MD_EXTCAL_ETABLISSEMENT_ADRESSE', "Adresse"); +define('_MD_EXTCAL_ETABLISSEMENT_ADRESSE2', "Adresse 2"); +define('_MD_EXTCAL_ETABLISSEMENT_CATEGORIE', "Catégorie"); +define('_MD_EXTCAL_ETABLISSEMENT_CP', "Code Postal"); +define('_MD_EXTCAL_ETABLISSEMENT_DATE', "Date : "); +define('_MD_EXTCAL_ETABLISSEMENT_DEBUT', "Début : "); +define('_MD_EXTCAL_ETABLISSEMENT_DELETE', "Supprimer l'établissement"); +define('_MD_EXTCAL_ETABLISSEMENT_DESCRIPTION', "Description"); +define('_MD_EXTCAL_ETABLISSEMENT_DIVERS', "Divers"); +define('_MD_EXTCAL_ETABLISSEMENT_EDIT', "Modifier l'établissement"); +define('_MD_EXTCAL_ETABLISSEMENT_EVENTS_VENIR', "Les évènements à venir"); +define('_MD_EXTCAL_ETABLISSEMENT_FIN', "Fin : "); +define('_MD_EXTCAL_ETABLISSEMENT_HORAIRES', "Horaires"); +define('_MD_EXTCAL_ETABLISSEMENT_INFO_COMPL', "Informations complémentaires : "); +define('_MD_EXTCAL_ETABLISSEMENT_LIEU', "Lieu : "); +define('_MD_EXTCAL_ETABLISSEMENT_MAIL', "Adresse de messagerie"); +define('_MD_EXTCAL_ETABLISSEMENT_MAP', "Plan"); +define('_MD_EXTCAL_ETABLISSEMENT_MAP2', "Voir le plan"); +define('_MD_EXTCAL_ETABLISSEMENT_NOM', "Nom"); +define('_MD_EXTCAL_ETABLISSEMENT_ORGANISATEUR', "Organisateur : "); +define('_MD_EXTCAL_ETABLISSEMENT_PRICE', "Prix"); +define('_MD_EXTCAL_ETABLISSEMENT_SITE', "Site internet"); +define('_MD_EXTCAL_ETABLISSEMENT_TARIFS', "Tarifs"); +define('_MD_EXTCAL_ETABLISSEMENT_TEL_FIXE', "Téléphone fixe"); +define('_MD_EXTCAL_ETABLISSEMENT_TEL_PORTABLE', "Téléphone portable"); +define('_MD_EXTCAL_ETABLISSEMENT_VILLE', "Ville"); +define('_MD_EXTCAL_EVENT', "Evènement"); +define('_MD_EXTCAL_EVENT_CREATED', "Évènement créé"); +define('_MD_EXTCAL_EVENT_END', "A une fin ?"); +define('_MD_EXTCAL_EVENTS_FOUND', "%1\$s évènements trouvés" ); +define('_MD_EXTCAL_EXPRESSION', "Expression (liste)"); +define('_MD_EXTCAL_FEB', "Fév"); +define('_MD_EXTCAL_FILE_ATTACHEMENT', "Attacher un fichier"); +define('_MD_EXTCAL_FORM_IMG', "Visuel (%s)"); +define('_MD_EXTCAL_FORMAT_DATE', "l dS of F Y h:i:s A"); +define('_MD_EXTCAL_FR2', "Ve"); +define('_MD_EXTCAL_ICONE_CLONE', "Dupliquer"); +define('_MD_EXTCAL_ICONE_DELETE', "Supprimer"); +define('_MD_EXTCAL_ICONE_EDIT', "Editer"); +define('_MD_EXTCAL_ICONE_PRINT', "Imprimer"); +define('_MD_EXTCAL_IMG', "Image (%s)"); +define('_MD_EXTCAL_IMG_CONFIG', "%s ko max - largeur et/ou hauteur: %s pixels max"); +define('_MD_EXTCAL_JAN', "Jan"); +define('_MD_EXTCAL_JUL', "Jui"); +define('_MD_EXTCAL_JUN', "Jun"); +define('_MD_EXTCAL_LAST_FR', 'Dernier ' . _CAL_FRIDAY); +define('_MD_EXTCAL_LAST_MO', 'Dernier ' . _CAL_MONDAY); +define('_MD_EXTCAL_LAST_SA', 'Dernier ' . _CAL_SATURDAY); +define('_MD_EXTCAL_LAST_SU', 'Dernier ' . _CAL_SUNDAY); +define('_MD_EXTCAL_LAST_TH', 'Dernier ' . _CAL_THURSDAY); +define('_MD_EXTCAL_LAST_TU', 'Dernier ' . _CAL_TUESDAY); +define('_MD_EXTCAL_LAST_WE', 'Dernier ' . _CAL_WEDNESDAY); +define('_MD_EXTCAL_LIB_COME', "Inscription"); +define('_MD_EXTCAL_LIB_NONE', "Aucun"); +define('_MD_EXTCAL_LIB_NOTCOME', "Désinscription"); +define('_MD_EXTCAL_LOCALISATION', "Localisation"); +define('_MD_EXTCAL_MAR', "Mar"); +define('_MD_EXTCAL_MAX_MEMBER_REACHED', "Le nombre maximum de participants est atteint"); +define('_MD_EXTCAL_MAY', "Mai"); +define('_MD_EXTCAL_MEMBERS_LIST', "Liste des membres"); +define('_MD_EXTCAL_MO2', "Lu"); +define('_MD_EXTCAL_MONTH', "mois"); +define('_MD_EXTCAL_MONTHLY', "Mensuelle"); +define('_MD_EXTCAL_MSG_0', "%1\$s ne peut être inscrit"); +define('_MD_EXTCAL_MSG_1', "%1\$s vous informe de sa présence"); +define('_MD_EXTCAL_MSG_2', "%1\$s vous informe de l'annulation de sa présence"); +define('_MD_EXTCAL_MSG_3', "%1\$s vous informe de son absence"); +define('_MD_EXTCAL_MSG_4', "%1\$s vous informe de l'annulation de son absence"); +define('_MD_EXTCAL_NAV_AGENDA_DAY', "Agenda quotidien"); +define('_MD_EXTCAL_NAV_AGENDA_WEEK', "Agenda hebdomadaire"); +define('_MD_EXTCAL_NAV_CALMONTH', "Calendrier mensuel"); +define('_MD_EXTCAL_NAV_CALWEEK', "Calendrier hebdomadaire"); +define('_MD_EXTCAL_NAV_DAY', "Liste quotidienne"); +define('_MD_EXTCAL_NAV_MONTH', "Liste mensuelle"); +define('_MD_EXTCAL_NAV_NEW_EVENT', "Nouveau"); +define('_MD_EXTCAL_NAV_SEARCH', "Chercher"); +define('_MD_EXTCAL_NAV_WEEK', "Liste hebdomadaire"); +define('_MD_EXTCAL_NAV_YEAR', "Liste annuelle"); +define('_MD_EXTCAL_NBMEMBER', "Limite de participants"); +define('_MD_EXTCAL_NBMEMBER_DESC', "0 = pas de limite"); +define('_MD_EXTCAL_NO_RECCUR_EVENT', "Évènement non réccurent"); +define('_MD_EXTCAL_NONE', "Aucun"); +define('_MD_EXTCAL_NOV', "Nov"); +define('_MD_EXTCAL_OCT', "Oct"); +define('_MD_EXTCAL_ON', "le"); +define('_MD_EXTCAL_OR', "Ou"); +define('_MD_EXTCAL_OR_THE', "ou le"); +define('_MD_EXTCAL_ORDER_BY', "Ordre de tri"); +define('_MD_EXTCAL_ORDER_BY_ASC', "Croissant" ); +define('_MD_EXTCAL_ORDER_BY_DESC', "Décroissant" ); +define('_MD_EXTCAL_ORGANISATEUR', "Organisateur"); +define('_MD_EXTCAL_PERIODE', "Période"); +define('_MD_EXTCAL_POLITESSE', "Cordialement,"); +define('_MD_EXTCAL_POSTED_BY', "Posté par"); +define('_MD_EXTCAL_PRESENT', "Présent"); +define('_MD_EXTCAL_PREVIEW', "Prévisualisation"); +define('_MD_EXTCAL_PRICE', "Prix"); +define('_MD_EXTCAL_RECCUR_POLICY', "Type de récurrence"); +define('_MD_EXTCAL_RECCUR_RULE', "Régles de récurrence"); +define('_MD_EXTCAL_REMOVE_ME', "Retirez-moi"); +define('_MD_EXTCAL_RR_DAILY', "Tous les jours pendant %u jours"); +define('_MD_EXTCAL_RR_MONTHLY', "Tous les mois, le %s pendant %u mois"); +define('_MD_EXTCAL_RR_WEEKLY', "Toutes les semaines, le %s pendant %u semaines"); +define('_MD_EXTCAL_RR_YEARLY', "Toutes les années, le %s le %s, pendant %u années"); +define('_MD_EXTCAL_SA2', "Sa"); +define('_MD_EXTCAL_SAME_ST_DATE', "Identique à la date de début"); +define('_MD_EXTCAL_SEARCH', "Chercher"); +define('_MD_EXTCAL_SEP', "Sep"); +define('_MD_EXTCAL_SERACH_CRITERIA', "Critères de recherche"); +define('_MD_EXTCAL_SERACH_ORDER_BY', "Critères de tri"); +define('_MD_EXTCAL_START', "Début"); +define('_MD_EXTCAL_START_DATE', "Début"); +define('_MD_EXTCAL_STATUS', "Status"); +define('_MD_EXTCAL_STATUS_DELEGUE', "Délégation"); +define('_MD_EXTCAL_STATUS_DESINSCRIPTION', "Désinscription"); +define('_MD_EXTCAL_STATUS_INSCRIPTION', "Inscription"); +define('_MD_EXTCAL_STATUS_MESSAGE', "Information"); +define('_MD_EXTCAL_SU2', "Di"); +define('_MD_EXTCAL_SUBJECT_0', "Maximum de participations atteint"); +define('_MD_EXTCAL_SUBJECT_1', "Notification de présence"); +define('_MD_EXTCAL_SUBJECT_2', "Annulation de la notification de présence"); +define('_MD_EXTCAL_SUBJECT_3', "Notification d'absence"); +define('_MD_EXTCAL_SUBJECT_4', "Annulation de la notification d'absence"); +define('_MD_EXTCAL_SUBJECT_COME', "Inscription de "); +define('_MD_EXTCAL_SUBJECT_DELEGATION', "Délégation de "); +define('_MD_EXTCAL_SUBJECT_DESINSCRIPTION', "Désinscription de "); +define('_MD_EXTCAL_SUBJECT_INSCRIPTION', "Inscription de "); +define('_MD_EXTCAL_SUBJECT_MESSAGE', "Message de "); +define('_MD_EXTCAL_SUBJECT_NONE', "Désinscription de "); +define('_MD_EXTCAL_SUBJECT_NOTCOME', "Absence de "); +define('_MD_EXTCAL_SUBMIT_EVENT', "Soumettre un évènement"); +define('_MD_EXTCAL_SUBMITED_EVENT', "Évènement soumis"); +define('_MD_EXTCAL_TH2', "Je"); +define('_MD_EXTCAL_TITLE', "Titre"); +define('_MD_EXTCAL_TU2', "Ma"); +define('_MD_EXTCAL_URL', "URL"); +define('_MD_EXTCAL_VALIDATE', "Valider"); +define('_MD_EXTCAL_WE2', "Me"); +define('_MD_EXTCAL_WEEKLY', "Hebdomadaire"); +define('_MD_EXTCAL_WEEKS', "semaine(s)"); +define('_MD_EXTCAL_WHOS_GOING', "Qui vient ?"); +define('_MD_EXTCAL_WHOS_GOING_ADDED_TO_EVENT', "Ajouté aux participants"); +define('_MD_EXTCAL_WHOS_GOING_REMOVED_TO_EVENT', "Supprimé des participants"); +define('_MD_EXTCAL_WHOSNOT_GOING', "Qui ne vient pas ?"); +define('_MD_EXTCAL_WHOSNOT_GOING_ADDED_TO_EVENT', "Ajouté aux non participants"); +define('_MD_EXTCAL_WHOSNOT_GOING_REMOVED_TO_EVENT', "Supprimé des non participants"); +define('_MD_EXTCAL_WRONG_DATE_FORMAT', "Mauvais format de date"); +define('_MD_EXTCAL_YEAR', "année" ); +define('_MD_EXTCAL_YEARLY', "Annuelle"); +define('_MD_EXTCAL_YEARS', "année(s)"); +define('_MD_EXTCAL_DAY_MONDAY', "Lundi"); +define('_MD_EXTCAL_DAY_TUESDAY', "Mardi"); +define('_MD_EXTCAL_DAY_WEDNESDAY', "Mercredi"); +define('_MD_EXTCAL_DAY_THURSDAY', "Jeudi"); +define('_MD_EXTCAL_DAY_FRIDAY', "Vendredi"); +define('_MD_EXTCAL_DAY_SATURDAY', "Samedi"); +define('_MD_EXTCAL_DAY_SUNDAY', "Dimanche"); +define('_MD_EXTCAL_ICONE', "Icône"); +define('_MD_EXTCAL_SITE', "Site"); +define('_MD_EXTCAL_VISIT_SITE', "Visiter le site internet"); +?> \ No newline at end of file Added: XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/modinfo.php =================================================================== --- XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/modinfo.php (rev 0) +++ XoopsLanguages/french/modules/extcal/extcal 2.37/extcal/language/french/modinfo.php 2012-07-07 13:29:57 UTC (rev 9792) @@ -0,0 +1,155 @@ +<?php +include_once(XOOPS_ROOT_PATH . '/modules/extcal/include/constantes.php'); +define('_MI_EXTCAL_ABOUT', "À propos"); +define('_MI_EXTCAL_AFTER', "Après"); +define('_MI_EXTCAL_AGENDA_END_HOUR', "Agenda : Heure de fin"); +define('_MI_EXTCAL_AGENDA_END_HOUR_DESC', "L'heure de fin détermine jusqu'à quelle heure l'agenda est détaillé. Les évènements postérieurs sont regroupés sur la dernière ligne de la journée"); +define('_MI_EXTCAL_AGENDA_NB_DAYS_DAY', "Agenda des jours : nombre de jours"); +define('_MI_EXTCAL_AGENDA_NB_DAYS_DAY_DESC', "Nombre de jours à afficher en colonnes. Chaque évènement est repésenté par un carré avec son titre."); +define('_MI_EXTCAL_AGENDA_NB_DAYS_WEEK', "Agenda des semaines : nombre de jours"); +define('_MI_EXTCAL_AGENDA_NB_DAYS_WEEK_DESC', "Nombre de jours à afficher en colonnes. Chaque évènement est représenté par un carré avec une info-bulle."); +define('_MI_EXTCAL_AGENDA_SLICE_MINUTES', "Agenda : minutes"); +define('_MI_EXTCAL_AGENDA_SLICE_MINUTES_DESC', "Nombre de minutes des tranches horaires des agendas"); +define('_MI_EXTCAL_AGENDA_START_HOUR', "Agenda : Heure de début"); +define('_MI_EXTCAL_AGENDA_START_HOUR_DESC', "L'heure de début détermine à partir de quelle tranche horaire l'agenda est détaillé. Entre 0 et l'heure de début, tous les évènements sont groupés sur la première ligne '00:00'"); +define('_MI_EXTCAL_ASCENDING', "Ascendant"); +define('_MI_EXTCAL_BEFORE', "Avant"); +define('_MI_EXTCAL_BNAME1', "Minical"); +define('_MI_EXTCAL_BNAME1_DESC', "Mini calendrier"); +define('_MI_EXTCAL_BNAME2', "Évènements à la une"); +define('_MI_EXTCAL_BNAME2_DESC', "Affiche les évènements à la une"); +define('_MI_EXTCAL_BNAME3', "Évènements à venir"); +define('_MI_EXTCAL_BNAME3_DESC', "Affiche les X prochains évènements"); +define('_MI_EXTCAL_BNAME4', "Évènements du jour"); +define('_MI_EXTCAL_BNAME4_DESC', "Affiche les évènements du jour"); +define('_MI_EXTCAL_BNAME5', "Nouveaux évènements"); +define('_MI_EXTCAL_BNAME5_DESC', "Affiche les X prochains évènements"); +define('_MI_EXTCAL_BNAME6', "Évènements aléatoires"); +define('_MI_EXTCAL_BNAME6_DESC', "Affiche des évènements aléatoires"); +define('_MI_EXTCAL_BNAME7', "Évènements à venir par catégories"); +define('_MI_EXTCAL_BNAME7_DESC', "Affiche les X prochains évènements par catéories"); +define('_MI_EXTCAL_CAT_NOTIFY', "Notification sur les catégories"); +define('_MI_EXTCAL_CAT_NOTIFYDSC', "Notification pour une catégorie particulière"); +define('_MI_EXTCAL_CATEGORY', "Catégories"); +define('_MI_EXTCAL_DASHBOARD', "Tableau de bord"); +define('_MI_EXTCAL_DESC', "Module de calendrier pour XOOPS"); +define('_MI_EXTCAL_DESCENDING', "Descendant"); +define('_MI_EXTCAL_DISP_PAST_E_CAL', "Afficher les évènements passés (vue sous forme de calendrier)"); +define('_MI_EXTCAL_DISP_PAST_E_CAL_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_DISP_PAST_E_LIST', "Afficher les évènements passés (vue sous forme de liste)"); +define('_MI_EXTCAL_DISP_PAST_E_LIST_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_EB_DATE_PATTERN', "Évènement : Masque pour la vue par évènement"); +define('_MI_EXTCAL_EB_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_EB_DATE_PATTERN_VALUE', _SHORTDATESTRING); +define('_MI_EXTCAL_ED_DATE_PATTERN', "Évènement : Masque pour la vue par jour"); +define('_MI_EXTCAL_ED_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_ED_DATE_PATTERN_VALUE', _SHORTDATESTRING); +define('_MI_EXTCAL_EE_DATE_PATTERN', "Évènement : Masque pour la vue par évènement"); +define('_MI_EXTCAL_EE_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_EE_DATE_PATTERN_VALUE', "l j F Y \à H:i"); +define('_MI_EXTCAL_EM_DATE_PATTERN', "Évènement : Masque pour la vue par mois"); +define('_MI_EXTCAL_EM_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_EM_DATE_PATTERN_VALUE', _SHORTDATESTRING); +define('_MI_EXTCAL_EMAIL_MODE', 'Envoi des mails'); +define('_MI_EXTCAL_EMAIL_MODE_HTML', 'Mails au format HTML'); +define('_MI_EXTCAL_EMAIL_MODE_NONE', 'Pas de mails'); +define('_MI_EXTCAL_EMAIL_MODE_TEXT', 'Mails au format texte'); +define('_MI_EXTCAL_ETABLISSEMENT', 'Établissement'); +define('_MI_EXTCAL_ETABLISSEMENTS', 'Établissements'); +define('_MI_EXTCAL_EVENT', "Évènements"); +define('_MI_EXTCAL_EVENT_NOTIFY', "Évènement"); +define('_MI_EXTCAL_EVENT_NOTIFYDSC', "Notification d'évènement"); +define('_MI_EXTCAL_EW_DATE_PATTERN', "Évènement : Masque pour la vue par semaine"); +define('_MI_EXTCAL_EW_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_EW_DATE_PATTERN_VALUE', _SHORTDATESTRING); +define('_MI_EXTCAL_EY_DATE_PATTERN', "Évènement : Masque pour la vue par année"); +define('_MI_EXTCAL_EY_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_EY_DATE_PATTERN_VALUE', _SHORTDATESTRING); +define('_MI_EXTCAL_FILE_EXTENTION', "Types de fichiers autorisés"); +define('_MI_EXTCAL_FILE_EXTENTION_DESC', "Selectionnez les types de fichiers autorisés à être joints aux évènements"); +define('_MI_EXTCAL_GLOBAL_NOTIFY', "Notification globale"); +define('_MI_EXTCAL_GLOBAL_NOTIFYDSC', "Notification pour toutes les catégories"); +define('_MI_EXTCAL_HELP', "Aide"); +define('_MI_EXTCAL_HTML', "Autoriser le HTML"); +define('_MI_EXTCAL_HTML_DESC', "Autoriser le HTML ou non pour les champs de texte"); +define('_MI_EXTCAL_INDEX', "Index"); +define('_MI_EXTCAL_LIST_POS', "Liste de sélection"); +define('_MI_EXTCAL_LIST_POS_DESC', "Position des listes de sélection.<br>0 = au-dessus des onglets.<br>1 = sous les onglets"); +define('_MI_EXTCAL_NAME', "eXtCal"); +define('_MI_EXTCAL_NAV_AGENDA_DAY', "Agenda quotidien"); +define('_MI_EXTCAL_NAV_AGENDA_WEEK', "Agenda Hebdomadaire"); +define('_MI_EXTCAL_NAV_CALMONTH', "Calendrier mensuel"); +define('_MI_EXTCAL_NAV_CALWEEK', "Calendrier Hebdomadaire"); +define('_MI_EXTCAL_NAV_DAY', "Liste Quotidienne"); +define('_MI_EXTCAL_NAV_MONTH', "Liste Mensuelle"); +define('_MI_EXTCAL_NAV_NEW_EVENT', "Nouveau"); +define('_MI_EXTCAL_NAV_SEARCH', "Chercher"); +define('_MI_EXTCAL_NAV_WEEK', "Liste Hebdomadaire"); +define('_MI_EXTCAL_NAV_YEAR', "Liste Annuelle"); +define('_MI_EXTCAL_NB_EVENTS_BY_PAGE', "Nombre d'évènements par page"); +define('_MI_EXTCAL_NB_EVENTS_BY_PAGE_DESC', "Nombre d'évènements par page dans l'adminstation"); +define('_MI_EXTCAL_NB_YEARS_AFTER', "Liste : Nombre d'années après"); +define('_MI_EXTCAL_NB_YEARS_AFTER_DESC', "Liste de sélection des années : détermine la dernière année à afficher"); +define('_MI_EXTCAL_NB_YEARS_BEFORE', "Liste : Nombre d'années avant"); +define('_MI_EXTCAL_NB_YEARS_BEFORE_DESC', "Liste de sélection des années : détermine la première année à afficher"); +define('_MI_EXTCAL_ND_DATE_PATTERN', "Navigation : Masque pour la vue par jour"); +define('_MI_EXTCAL_ND_DATE_PATTERN_DESC', "Voir le format de date sur http://www.php.net/manual/fr/function.date.php"); +define('_MI_EXTCAL_ND_DATE_PATTERN_VALUE', "l j F Y"); +define('_MI_EXTCAL_NEW_EVENT_CAT_NOTIFY', "Nouvel évènement"); +define('_MI_EXTCAL_NEW_EVENT_CAT_NOTIFYCAP', "Notifiez-moi quand un nouvel évènement est publié dans cette catégorie"); +define('_MI_EXTCAL_NEW_EVENT_CAT_NOTIFYDSC', "Recevoir une notification quand un nouvel évènement est publié dans cette catégorie"); +define('_MI_EXTCAL_NEW_EVENT_CAT_NOTIFYSBJ', "[{X_SITENAME}] {X_MODULE} notification automatique : Nouvel évènement proposé"); +define('_MI_EXTCAL_NEW_EVENT_NOTIFY', "Nouvel évènement"); +define('_MI_EXTCAL_NEW_EVENT_NOTIFYCAP', "Notifiez-moi quand un nouvel évènement est publié"); +define('_MI_EXTCAL_NEW_EVENT_NOTIFYDSC', "Recevoir une notification quand un nouvel évènement est proposé"); +define('_MI_EXTCAL_NEW_EVENT_NOTIFYSBJ', "[{X_SITENAME}] {X_MODULE} notification automatique : Nouvel évènement proposé"); +define('_MI_EXTCAL_NEW_EVENT_PENDING_NOTIFY', "Nouvel évènement en attente"); +define('_MI_EXTCAL_NEW_EVENT_PENDING_NOTIFYCAP', "Notifiez-moi quand un nouvel évènement est publié sans approbation"); +define('_MI_EXTCAL_NEW_EVENT_PENDING_NOTIFYDSC', "Recevoir une notification quand un nouvel évènement est publié sans approbation"); +define('_MI_EXTCAL_NEW_EVENT_PENDING_NOTIFYSBJ', "[{X_SITENAME}] {X_MODULE} notification automatique : Nouvel évènement publié sans approbation"); +define('_MI_EXTCAL_NM_DATE_PATTERN', "Navigation : Masque pour la vue par mois"); +define('_MI_EXTCAL_NM_DATE_PATTERN_DESC', "Voir le for... [truncated message content] |
From: <be...@us...> - 2012-07-06 16:43:46
|
Revision: 9791 http://xoops.svn.sourceforge.net/xoops/?rev=9791&view=rev Author: beckmi Date: 2012-07-06 16:43:40 +0000 (Fri, 06 Jul 2012) Log Message: ----------- Adding missing link to preferences Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html 2012-07-05 18:13:46 UTC (rev 9790) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html 2012-07-06 16:43:40 UTC (rev 9791) @@ -47,7 +47,7 @@ </ul> </li> <li class="dropdown"> - <a class="menu dropdown-toggle" href="#"><b class="ico-cog"></b> <{$smarty.const._DEFAULT_SITEPREF}><b class="caret"></b></a> + <a class="menu dropdown-toggle" href="<{xoAppUrl modules/system/admin.php?fct=preferences}>"><b class="ico-cog"></b> <{$smarty.const._DEFAULT_SITEPREF}><b class="caret"></b></a> <ul class="dropdown-menu"> <{foreach item=pref from=$module_menu}> <{if $pref->getInfo(dirname) == 'system'}> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ce...@us...> - 2012-07-05 18:13:54
|
Revision: 9790 http://xoops.svn.sourceforge.net/xoops/?rev=9790&view=rev Author: cesag Date: 2012-07-05 18:13:46 +0000 (Thu, 05 Jul 2012) Log Message: ----------- Add TDMDownloads 1.62 new translation for final version. Added Paths: ----------- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/admin.php XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/blocks.php XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/changelog.txt XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/help.html XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/index.html XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/index.html XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_filesubmit_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_newfile_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/file_approve_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filebroken_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filemodify_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filesubmit_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newcategory_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newfile_notify.tpl XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/index.html XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/main.php XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/modinfo.php XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/new.png XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/popular.png XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/updated.png Removed Paths: ------------- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62RC/ Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/admin.php =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/admin.php (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/admin.php 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,174 @@ +<?php +/** + * TDMDownload + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Gregory Mage (Aka Mage) + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Gregory Mage (Aka Mage) + */ + +// index.php +define('_AM_TDMDOWNLOADS_INDEX_BROKEN',"Il y a %s rapports de fichiers rompus"); +define('_AM_TDMDOWNLOADS_INDEX_CATEGORIES',"Il existe %s catégories"); +define('_AM_TDMDOWNLOADS_INDEX_DOWNLOADS',"Il y a %s fichiers dans notre base de données"); +define('_AM_TDMDOWNLOADS_INDEX_DOWNLOADSWAITING',"Il y a %s téléchargements en attente d'approbation"); +define('_AM_TDMDOWNLOADS_INDEX_MODIFIED',"Il y a %s demandes de modification d'informations dans les téléchargements"); + +//category.php +define('_AM_TDMDOWNLOADS_CAT_NEW',"Nouvelle catégorie"); +define('_AM_TDMDOWNLOADS_CAT_LIST',"Liste des catégories"); +define('_AM_TDMDOWNLOADS_DELDOWNLOADS',"avec les téléchargements suivants :"); +define('_AM_TDMDOWNLOADS_DELSOUSCAT',"Les catégories suivantes seront complètement supprimées :"); + +//downloads.php +define('_AM_TDMDOWNLOADS_DOWNLOADS_LISTE',"Liste des téléchargements"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_NEW',"Nouveau téléchargement"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_SEARCH',"Recherche"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_VOTESANONYME',"Votes des anonyme (total des votes: %s)"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_VOTESUSER',"Votes des utilisateurs (total des votes: %s)"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_VOTE_USER',"Utilisateurs"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_VOTE_IP',"Adresse IP"); +define('_AM_TDMDOWNLOADS_DOWNLOADS_WAIT',"En attente de validation"); + +//broken.php +define('_AM_TDMDOWNLOADS_BROKEN_SENDER',"Signaler à l'auteur"); +define('_AM_TDMDOWNLOADS_BROKEN_SURDEL',"Êtes-vous sûr de que vouloir supprimer ce rapport ?"); + +//modified.php +define('_AM_TDMDOWNLOADS_MODIFIED_MOD',"Soumis par :"); +define('_AM_TDMDOWNLOADS_MODIFIED_ORIGINAL',"Original"); +define('_AM_TDMDOWNLOADS_MODIFIED_SURDEL',"Êtes-vous sûr de vouloir supprimer cette demande de modification de téléchargement ?"); + +//field.php +define('_AM_TDMDOWNLOADS_DELDATA',"Avec les données suivantes :"); +define('_AM_TDMDOWNLOADS_FIELD_LIST',"Liste de champs"); +define('_AM_TDMDOWNLOADS_FIELD_NEW',"Nouveaux champs"); + +//about.php +define('_AM_TDMDOWNLOADS_ABOUT_FILEPROTECTION',"Protection des fichiers"); +define('_AM_TDMDOWNLOADS_ABOUT_FILEPROTECTION_INFO1',"Pour protéger vos fichiers contre les téléchargements indésirables (par rapport aux autorisations), vous devez créer un fichier « .htaccess » dans le dossier :"); +define('_AM_TDMDOWNLOADS_ABOUT_FILEPROTECTION_INFO2',"Avec le contenu suivant :"); + +//permissions.php +define('_AM_TDMDOWNLOADS_PERMISSIONS_4',"Soumettre un téléchargement"); +define('_AM_TDMDOWNLOADS_PERMISSIONS_8',"Soumettre une modification"); +define('_AM_TDMDOWNLOADS_PERMISSIONS_16',"noter un téléchargement"); +define('_AM_TDMDOWNLOADS_PERMISSIONS_32',"Télécharger des fichiers"); +define('_AM_TDMDOWNLOADS_PERMISSIONS_64',"Approuver automatiquement les fichiers soumis"); +define('_AM_TDMDOWNLOADS_PERM_AUTRES', "Autres autorisations"); +define('_AM_TDMDOWNLOADS_PERM_AUTRES_DSC', "Sélectionnez les groupes qui peuvent :"); +define('_AM_TDMDOWNLOADS_PERM_DOWNLOAD', "Autorisations de téléchargements"); +define('_AM_TDMDOWNLOADS_PERM_DOWNLOAD_DSC', "Sélectionnez les groupes qui peuvent télécharger dans les catégories"); +define('_AM_TDMDOWNLOADS_PERM_DOWNLOAD_DSC2', "Sélectionnez les groupes qui peuvent télécharger des fichiers"); +define('_AM_TDMDOWNLOADS_PERM_SUBMIT', "Soumettre à l'autorisation"); +define('_AM_TDMDOWNLOADS_PERM_SUBMIT_DSC', "Choisir les groupes qui peuvent soumettre des fichiers à des catégories"); +define('_AM_TDMDOWNLOADS_PERM_VIEW', "Voir les autorisations"); +define('_AM_TDMDOWNLOADS_PERM_VIEW_DSC', "Choisissez les groupes que peuvent voir les fichiers dans les catégories"); + +// Import.php +define('_AM_TDMDOWNLOADS_IMPORT1',"Importation"); +define('_AM_TDMDOWNLOADS_IMPORT_CAT_IMP',"Catégories: « %s » importées"); +define('_AM_TDMDOWNLOADS_IMPORT_CONF_MYDOWNLOADS',"Êtes-vous sûr de vouloir importer les données du module Mydownloads vers TDMDownloads ?"); +define('_AM_TDMDOWNLOADS_IMPORT_CONF_WFDOWNLOADS',"Êtes-vous sûr de vouloir importer les données du module WF-Downloads vers TDMDownloads ?"); +define('_AM_TDMDOWNLOADS_IMPORT_DONT_DOWNLOADS',"Il n'y a aucun fichier à importer"); +define('_AM_TDMDOWNLOADS_IMPORT_DONT_TOPIC',"Il n'y a aucun fichier à importer"); +define('_AM_TDMDOWNLOADS_IMPORT_DOWNLOADS',"Importation de fichiers"); +define('_AM_TDMDOWNLOADS_IMPORT_DOWNLOADS_IMP',"« %s » fichiers importés ;"); +define('_AM_TDMDOWNLOADS_IMPORT_ERREUR',"Sélectionnez le répertoire de téléchargement (le chemin d'accès)"); +define('_AM_TDMDOWNLOADS_IMPORT_ERROR_DATA',"Erreur lors de l'importation de données"); +define('_AM_TDMDOWNLOADS_IMPORT_MYDOWNLOADS',"Importation à partir de Mydownloads"); +define('_AM_TDMDOWNLOADS_IMPORT_MYDOWNLOADS_PATH',"Sélectionnez le répertoire de téléchargement (le chemin d'accès) pour les captures d'écran de Mydownloads"); +define('_AM_TDMDOWNLOADS_IMPORT_MYDOWNLOADS_URL',"Choisissez l'URL correspondante pour les captures d'écran de Mydownloads"); +define('_AM_TDMDOWNLOADS_IMPORT_NB_CAT',"Il y a %s catégories d'importation"); +define('_AM_TDMDOWNLOADS_IMPORT_NB_DOWNLOADS',"Il y a %s fichiers à importer"); +define('_AM_TDMDOWNLOADS_IMPORT_NUMBER',"Données à importer"); +define('_AM_TDMDOWNLOADS_IMPORT_OK',"Importation effectuée avec succès!"); +define('_AM_TDMDOWNLOADS_IMPORT_VOTE_IMP',"« %s » votes importés ;"); +define('_AM_TDMDOWNLOADS_IMPORT_WARNING',"<span style='color:#FF0000; font-size:16px; font-weight:bold'> attention!</span><br><br>l'importation supprimera toutes les données de TDMDownloads. Il est fortement recommandé de faire une sauvegarde de toutes vos données d'abord, ainsi que de votre site Web.<br><br>TDM n'est pas responsable si vous perdez vos données. Malheureusement, les captures d'écran ne peuvent pas être copiées."); +define('_AM_TDMDOWNLOADS_IMPORT_WFDOWNLOADS',"Importation de WF Downloads(Version 3.2 RC2 uniquement)"); +define('_AM_TDMDOWNLOADS_IMPORT_WFDOWNLOADS_CATIMG',"Sélectionnez le répertoire Upload (le chemin d'accès) pour les images des catégories de WF-Downloads"); +define('_AM_TDMDOWNLOADS_IMPORT_WFDOWNLOADS_SHOTS',"Sélectionnez le répertoire Upload (le chemin d'accès) pour les captures d'écran de WF-Downloads"); + +//Pour les options de filtre +define('_AM_TDMDOWNLOADS_ORDER'," ordre : "); +define('_AM_TDMDOWNLOADS_TRIPAR',"triés par : "); + +//Formulaire et tableau +define('_AM_TDMDOWNLOADS_FORMADD',"Ajouter"); +define('_AM_TDMDOWNLOADS_FORMACTION',"Action"); +define('_AM_TDMDOWNLOADS_FORMAFFICHE',"Afficher le champ ?"); +define('_AM_TDMDOWNLOADS_FORMAFFICHESEARCH',"Champ de recherche ?"); +define('_AM_TDMDOWNLOADS_FORMAPPROVE',"Approuver"); +define('_AM_TDMDOWNLOADS_FORMCAT',"Catégorie"); +define('_AM_TDMDOWNLOADS_FORMCOMMENTS',"Nombre de commentaires"); +define('_AM_TDMDOWNLOADS_FORMDATE',"Date"); +define('_AM_TDMDOWNLOADS_FORMDATEUPDATE',"Mise à jour de la date"); +define('_AM_TDMDOWNLOADS_FORMDATEUPDATE_NO',"Non"); +define('_AM_TDMDOWNLOADS_FORMDATEUPDATE_YES',"Oui-->"); +define('_AM_TDMDOWNLOADS_FORMDEL',"Supprimer"); +define('_AM_TDMDOWNLOADS_FORMDISPLAY',"Afficher"); +define('_AM_TDMDOWNLOADS_FORMEDIT',"Editer"); +define('_AM_TDMDOWNLOADS_FORMFILE',"Fichier"); +define('_AM_TDMDOWNLOADS_FORMHITS',"Visites"); +define('_AM_TDMDOWNLOADS_FORMHOMEPAGE',"Page d'accueil"); +define('_AM_TDMDOWNLOADS_FORMLOCK',"Désactiver le téléchargement"); +define('_AM_TDMDOWNLOADS_FORMIGNORE',"Ignorer"); +define('_AM_TDMDOWNLOADS_FORMINCAT',"dans la catégorie"); +define('_AM_TDMDOWNLOADS_FORMIMAGE',"Image"); +define('_AM_TDMDOWNLOADS_FORMIMG',"Logo"); +define('_AM_TDMDOWNLOADS_FORMPAYPAL',"Adresse de PayPal pour les dons"); +define('_AM_TDMDOWNLOADS_FORMPATH',"Les fichiers existent dans : %s"); +define('_AM_TDMDOWNLOADS_FORMPERMDOWNLOAD',"Sélectionnez les groupes qui peuvent télécharger ce fichier"); +define('_AM_TDMDOWNLOADS_FORMPLATFORM',"Plate-forme"); +define('_AM_TDMDOWNLOADS_FORMPOSTER',"Posté par "); +define('_AM_TDMDOWNLOADS_FORMRATING',"Note"); +define('_AM_TDMDOWNLOADS_FORMSIZE',"Taille des fichiers(en bytes)"); +define('_AM_TDMDOWNLOADS_FORMSTATUS',"État du téléchargement"); +define('_AM_TDMDOWNLOADS_FORMSTATUS_OK',"Approuvé"); +define('_AM_TDMDOWNLOADS_FORMSUBMITTER',"Posté par"); +define('_AM_TDMDOWNLOADS_FORMSUREDEL', "Êtes-vous sûr de vouloir supprimer : <b><span style='color: Red'> %s</span></b>?"); +define('_AM_TDMDOWNLOADS_FORMTEXT',"Description"); +define('_AM_TDMDOWNLOADS_FORMTEXTDOWNLOADS',"Description : <br><br>utilisez le séparateur « <b>[pagebreak]</b> » pour définir la taille d'une courte description. <br>Cela permet de réduire la taille du texte dans la page d'accueil du module et des catégories."); +define('_AM_TDMDOWNLOADS_FORMTITLE',"Titre"); +define('_AM_TDMDOWNLOADS_FORMUPLOAD',"Télécharger"); +define('_AM_TDMDOWNLOADS_FORMURL',"Lien du téléchargement"); +define('_AM_TDMDOWNLOADS_FORMVALID',"Activer le téléchargement"); +define('_AM_TDMDOWNLOADS_FORMVERSION',"Version"); +define('_AM_TDMDOWNLOADS_FORMVOTE',"Votes"); +define('_AM_TDMDOWNLOADS_FORMWEIGHT',"Poids"); +define('_AM_TDMDOWNLOADS_FORMWITHFILE',"Avec le fichier : "); + +//Message d'erreur +define('_AM_TDMDOWNLOADS_ERREUR_CAT',"Vous ne pouvez pas utiliser cette catégorie (en boucle sur elle-même)"); +define('_AM_TDMDOWNLOADS_ERREUR_NOBMODDOWNLOADS',"Il n'y a aucune modification des téléchargements"); +define('_AM_TDMDOWNLOADS_ERREUR_NOBROKENDOWNLOADS',"Il n'y a aucun liens de téléchargements brisés"); +define('_AM_TDMDOWNLOADS_ERREUR_NOCAT',"Vous devez choisir une catégorie !"); +define('_AM_TDMDOWNLOADS_ERREUR_NODESCRIPTION',"Vous devez écrire une description"); +define('_AM_TDMDOWNLOADS_ERREUR_NODOWNLOADS',"Il n'y a aucun fichier à télécharger"); +define('_AM_TDMDOWNLOADS_ERREUR_SIZE',"la taille du fichier doit être un nombre"); +define('_AM_TDMDOWNLOADS_ERREUR_WEIGHT',"le poids doit être un nombre"); + +//Message de redirection +define('_AM_TDMDOWNLOADS_REDIRECT_DELOK',"Supprimé avec succès "); +define('_AM_TDMDOWNLOADS_REDIRECT_NOCAT',"Vous devez d'abord créer une catégorie"); +define('_AM_TDMDOWNLOADS_REDIRECT_NODELFIELD',"Vous ne pouvez pas supprimer ce champ (champ de base)"); +define('_AM_TDMDOWNLOADS_REDIRECT_SAVE',"Enregistré avec succès"); +define('_AM_TDMDOWNLOADS_REDIRECT_DEACTIVATED',"Désactivé avec succès"); + +define('_AM_TDMDOWNLOADS_NOPERMSSET', "Impossible de définir l'autorisation : aucune catégorie n'a encore été créée ! Veuillez d'abord créer une catégorie."); + +//Bytes sizes +define('_AM_TDMDOWNLOADS_BYTES','Octets'); +define('_AM_TDMDOWNLOADS_KBYTES','Ko'); +define('_AM_TDMDOWNLOADS_MBYTES','Mo'); +define('_AM_TDMDOWNLOADS_GBYTES','Go'); +define('_AM_TDMDOWNLOADS_TBYTES','To'); +// Traduction par Cesag pour frxoops.org le 1er Juin 2012 +?> \ No newline at end of file Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/blocks.php =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/blocks.php (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/blocks.php 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,35 @@ +<?php +/** + * TDMDownload + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Gregory Mage (Aka Mage) + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Gregory Mage (Aka Mage) + */ + +define("_MB_TDMDOWNLOADS_ALLCAT","Toutes les catégories"); +define("_MB_TDMDOWNLOADS_CATTODISPLAY","Sélectionnez les catégories affichées"); +define("_MB_TDMDOWNLOADS_CHARS","Longueur du titre"); +define("_MB_TDMDOWNLOADS_DESCRIPTION","Utilisez la description ?"); +define("_MB_TDMDOWNLOADS_DISP","Afficher"); +define("_MB_TDMDOWNLOADS_FILES","Fichiers"); +define("_MB_TDMDOWNLOADS_LENGTH","Caractères"); +define("_MB_TDMDOWNLOADS_LOGO","Utiliser le logo ?"); +define("_MB_TDMDOWNLOADS_SUBMITDATE","Date de soumission "); +define("_MB_TDMDOWNLOADS_SUBMITTER","Soumis par : "); +define("_MB_TDMDOWNLOADS_INFORMATIONS","Information ?"); +define("_MB_TDMDOWNLOADS_REATING","Cote : "); +define("_MB_TDMDOWNLOADS_HITS","Visites : "); +define("_MB_TDMDOWNLOADS_FLOAT","Image flottante : "); +define("_MB_TDMDOWNLOADS_FLOAT_LEFT","Gauche"); +define("_MB_TDMDOWNLOADS_FLOAT_RIGHT","Droite"); +define("_MB_TDMDOWNLOADS_WHITE","Image blanche"); +// Traduction par Cesag pour frxoops.org le 1er Juin 2012 +?> Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/changelog.txt =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/changelog.txt (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/changelog.txt 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,115 @@ +------------------------------------------------- +Version: 1.61 +Date: 2011/08/14 +------------------------------------------------- + +List of bugs: + + - bug in field.php (class moduleadmin not found) (Mage). + +List of improvements: + + - Using Frameworks "ModuleClasses" 1.1 (Mage). + +------------------------------------------------- +Version: 1.6 +Date: 2011/06/19 +------------------------------------------------- + +List of bugs: + + - It was impossible to choose categories to show in the block admin (nothing is shown) (Mage). + - In the modification request, if the logo doesn't exist, the default value wasn't "blank.gif" (Mage). + - In the editing form of a download file, the date wasn't the current date (Mage). + - Permissions by files don't run well (Mage). + - In visit.php the url of download can cause a problem (Fabrice59). + - Call of inexistent file in class tree.php (Mage). + - the category title isn't informed in the notification message "category_newfile_notify.tpl" (Mage). + - missing view.tag.php and list.tag.php added (voltan) +List of improvements: + + - Admission area has be recoded to be 100% compatible with xoops 2.5 (Mage). + - Organization of preferences by sections (Mage). + - We can now choose the number of columns to show the categories (Mage). + - We can now choose the number of columns to show the downloads (Mage). + - Add of RSS Feeds to the module (Mage). + - Categories descriptions are now shown in viewcat.php (Mage). + - We can now show the logo (or a screenshot) of the download and its description in all blocks (Mage). + - System of limitation of downloading (Voltan, Mage). + - The images 'new', 'updated' et 'popular' are now specific to each language (Mage, Mariane) + - Adding a search block (Mage, Mariane) + - Add bookmark and Social Networks (voltan) + +Informations + + - See the file "lang_diff.txt" for changes in language. + +Installation: + + 1 - You have to delete the existent folder "TDMDownloads" in "modules". + 2 - Upload the new folder "TDMDownloads" to your server in the "modules" folder. + 3 - Update the module. + 4 - Go to each block, then edit the options (important to insure the function of the blocks). + 5 - If you overloaded your templates, it will be necessary to update them. + +------------------------------------------------- +Version: 1.5 +Date: 02.04.2010 +------------------------------------------------- + +List of bugs: + + - The display sub-categories in "viewcat.php" does not work. + - Loss of many language definitions for the file : ratefile.php. + - Fixed import system. + - You could get downloads awaiting validation with their ids in "singlefile.php. + - The categories were not viewed as a tree in the file "search.php". + - Fixed file "search.php". + - Pages's title were not working when we were in sub-categories. + - When editing a download or a file, if the logo was no longer exists, the logo : "blank.gif" doesn't become the default". + - Errors in language files. + - In the preferences, if you set '0 ' as the number of new downloads on the homepage, all downloads were displayed + Bug on display mode while redirections in the admin section. + +List of improvements: + + - Performance Module (the number of request has decreased by 5). + - The pages titles has been modified to improve the ranking. + - Adding a permissions to download files. (2 types). + - Adding permissions to auto-approve the proposals for download. + - The display of categories in admin has been reviewed. + - Permissions can be set creating a category. + - You can now set manually the date of update, (allowed in the edit mode and for only administrators). + - When creating or editing, you can choose whether the download is approved (only administrators). + - The display of downloads page is modifiable only by admin side. + - Empty fields are not displayed. + - The file "search.php" has been completely redesigned to improve its speed. + - Ability to protect downloads (impossible to download with a direct link). See the tab 'About' in the administration module. + - Added a stylesheet for templates. + - Added a "Donation Button" working only with Paypal. + +Informations: + + - Adding the suffix "cat_" in all fields of the table "tdmdownloads_cat. + - See the file "lang_diff.txt" for changes in language. + +------------------------------------------------- +Version: 1.10 +Date: 11.11.2009 +------------------------------------------------- + +- The module supports the tagging system module 'TAG'. +- 2 options added in the preferences, the first to rename or not the uploaded file and the second to enter the prefix when the file is renamed. +- Added option "number of downloads per page in the administration." +- Fix a bug with the default editor of xoops (html display when editing). +- Fix a bug when deleting a category. +- Change management platforms (multi-menu selection) with the values defined in the preferences of the module. +- Added ability to rename the post and put the date of submission to date or not. +- Bug in the details of the votes in the admin, all votes were visible in all downloads. +- Fixed a bug in the admin for the download management when making a selection in the "waiting for validation", the filter brought on normal downloads. +- Added system information the last version +- Fixed French language files in uft-8 +- Fixed script import Mydownloasd 1.6 +- Fixed script import WF-Downloads 3.2 RC2 + +Voir le fichier lang_diff.txt pour les nouveaux define de langue. Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/help.html =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/help.html (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/help.html 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,43 @@ +<div id="help-template" class="outer"> + <h1 class="head">Help: + <a class="ui-corner-all tooltip" + href="<{$xoops_url}>/modules/TDMDownloads/admin/index.php" + title="Retour à l'administration de TDMDownloads"> TDMDownloads <img + src="<{xoAdminIcons home.png}>" + alt="Retour à l'administration de TDMDownloads"/> + </a> + </h1> + <!-- -----Help Content ---------- --> + <h4 class="odd">Description</h4> + <p class="even"> + Crée une section de téléchargements où les utilisateurs peuvent télécharger, envoyer ou noter différents fichiers. + Il utilise la permission de XOOPS et la gestion des groupes, permettant ainsi une grande flexibilité dans l'utilisation. + </p> + <h4 class="odd">Installation / Désinstallation</h4> + Aucune mesure spéciale n'est nécessaire, suivez la procédure standard d'installation. + Envoyez le dossier /TDMDownloads dans le répertoire .../modules. Installez le module par l'administration : Admin-> système -> Modules. + <br/><br/> + Des instructions détaillées sur l'installation de modules sont disponibles dans le + <a href="http://goo.gl/adT2i">Manuel des opérations de XOOPS</a> + <p class="even"> + <h4 class="odd">Instructions d'exploitation</h4> + Pour mettre en place ce module, vous devez : + <br/><br/> + i) Configurer vos préférences pour le module (voir « Préférences ») et + éventuellement le bloc partenaires si vous avez l'intention de l'utiliser (voir + Blocs) + <br/><br/> + ii) Vérifier que vous avez donné à vos groupes d'utilisateurs les + droits d'accès necéssaires pour le module et les blocs du module. Les autorisations des groupes sont définies par + le menu d'Administration-> système-> groupes. + <br/><br/> + Des instructions détaillées sur la configuration des droits d'accès pour les groupes d'utilisateurs sont disponibles dans le + <a href="http://goo.gl/adT2i">Manuel des opérations de XOOPS</a> + </p> + <h4 class="odd">Tutoriel</h4> + <p class="even"> + Non disponible pour le moment. + </p> + <!-- -----Help Content ---------- --> + <!-- -----Traduction par Cesag pour frxoops.org le 1er Juin 2012 ---------- --> +</div> \ No newline at end of file Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/index.html =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/index.html (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/help/index.html 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/index.html =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/index.html (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/index.html 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_filesubmit_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_filesubmit_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_filesubmit_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,21 @@ +Bonjour {X_UNAME}, + +Un nouveau fichier "{FILE_NAME}" a \xE9t\xE9 propos\xE9 dans la cat\xE9gorie "{CATEGORY_NAME}" sur {X_SITENAME} et attend d'\xEAtre approuv\xE9. + +Vous pouvez voir cette proposition de fichier ici (note : cette page affiche les fichiers en attentes de TOUTES les cat\xE9gories) : +{WAITINGFILES_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand des fichiers sont propos\xE9s dans cette cat\xE9gorie. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_newfile_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_newfile_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/category_newfile_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,24 @@ +Bonjour {X_UNAME}, + +Un nouveau fichier "{FILE_NAME}" a \xE9t\xE9 ajout\xE9 dans la cat\xE9gorie "{CATEGORY_NAME}" sur {X_SITENAME}. + +Vous pouvez voir ce fichier ici : +{FILE_URL} + +Vous pouvez voir la cat\xE9gorie enti\xE8re ici : +{CATEGORY_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand de nouveaux fichiers sont ajout\xE9s dans cette cat\xE9gorie. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/file_approve_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/file_approve_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/file_approve_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,21 @@ +Bonjour {X_UNAME}, + +Le fichier propos\xE9 "{FILE_NAME}" a \xE9t\xE9 approuv\xE9 sur {X_SITENAME}. + +Vous pouvez voir ce fichier ici : +{FILE_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand ce fichier aura \xE9t\xE9 approuv\xE9. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filebroken_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filebroken_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filebroken_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,21 @@ +Bonjour {X_UNAME}, + +Un rapport de fichier bris\xE9 a \xE9t\xE9 propos\xE9 et est en attente d'\xEAtre approuv\xE9. + +Vous pouvez voir cette demande ici : +{BROKENREPORTS_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand un rapport de fichier bris\xE9 est propos\xE9. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filemodify_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filemodify_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filemodify_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,21 @@ +Bonjour {X_UNAME}, + +Une demande de modification de fichier a \xE9t\xE9 propos\xE9 et est en attente d'\xEAtre approuv\xE9e. + +Vous pouvez voir cette demande ici : +{MODIFYREPORTS_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand une demande de modification de fichier est propos\xE9e. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filesubmit_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filesubmit_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_filesubmit_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,21 @@ +Bonjour {X_UNAME}, + +Un nouveau fichier "{FILE_NAME}" a \xE9t\xE9 propos\xE9 sur {X_SITENAME} et est en attente d'\xEAtre approuv\xE9. + +Vous pouvez voir cette proposition de fichier ici : +{WAITINGFILES_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand de nouveaux fichiers sont ajout\xE9s \xE0 notre site. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newcategory_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newcategory_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newcategory_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,24 @@ +Bonjour {X_UNAME}, + +Une nouvelle cat\xE9gorie de fichiers "{CATEGORY_NAME}" a \xE9t\xE9 cr\xE9\xE9e sur {X_SITENAME}. + +Suivez ce lien pour voir cette cat\xE9gorie de fichiers : +{CATEGORY_URL} + +Suivez ce lien pour voir l'index des cat\xE9gories : +{X_MODULE_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand de nouvelles cat\xE9gories de fichiers sont ajout\xE9es \xE0 notre site. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newfile_notify.tpl =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newfile_notify.tpl (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/global_newfile_notify.tpl 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,21 @@ +Bonjour {X_UNAME}, + +Un nouveau fichier "{FILE_NAME}" a \xE9t\xE9 ajout\xE9 sur {X_SITENAME}. + +Vous pouvez voir ce fichier ici : +{FILE_URL} + +----------- + +Vous recevez ce message parce que vous avez choisi d'\xEAtre notifi\xE9 quand de nouveaux fichiers sont ajout\xE9s \xE0 notre site. + +Si c'est une erreur ou si vous ne voulez plus recevoir de tels avis, mettez s'il vous pla\xEEt \xE0 jour vos souscriptions en visitant le lien ci-dessous : +{X_UNSUBSCRIBE_URL} + +Merci de ne pas r\xE9pondre \xE0 ce message. + +----------- + +{X_SITENAME} ({X_SITEURL}) +Le Webmestre +{X_ADMINMAIL} Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/index.html =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/index.html (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/mail_template/index.html 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/main.php =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/main.php (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/main.php 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,156 @@ +<?php +/** + * TDMDownload + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Gregory Mage (Aka Mage) + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Gregory Mage (Aka Mage) + */ + +// index.php +define("_MD_TDMDOWNLOADS_INDEX_BLDATE","Téléchargements récents :"); +define("_MD_TDMDOWNLOADS_INDEX_BLNAME","Résumé"); +define("_MD_TDMDOWNLOADS_INDEX_BLRATING","Fichiers les mieux notés :"); +define("_MD_TDMDOWNLOADS_INDEX_BLPOP","Haut de page des téléchargements :"); +define("_MD_TDMDOWNLOADS_INDEX_DLNOW","Télécharger maintenant !"); +define("_MD_TDMDOWNLOADS_INDEX_LATESTLIST","Dernières listes"); +define("_MD_TDMDOWNLOADS_INDEX_NEWTHISWEEK","Nouveautés de la semaine"); +define("_MD_TDMDOWNLOADS_INDEX_POPULAR","Populaires"); +define("_MD_TDMDOWNLOADS_INDEX_UPTHISWEEK","Mises à jour de cette semaine"); +define("_MD_TDMDOWNLOADS_INDEX_SCAT","Sous catégories : "); +define("_MD_TDMDOWNLOADS_INDEX_SUBMITDATE","Date de soumission :"); +define("_MD_TDMDOWNLOADS_INDEX_SUBMITTER","Soumis par : "); +define("_MD_TDMDOWNLOADS_INDEX_THEREARE","Il y a <b>%s</b> fichier(s) dans notre base de données"); + +// viewcat.php: +define("_MD_TDMDOWNLOADS_CAT_CURSORTBY","Fichiers actuellement triés par : %s"); +define("_MD_TDMDOWNLOADS_CAT_DATE","Date"); +define("_MD_TDMDOWNLOADS_CAT_DATENEW","Date (ordre décroissant)"); +define("_MD_TDMDOWNLOADS_CAT_DATEOLD","Date (ordre croissant)"); +define("_MD_TDMDOWNLOADS_CAT_HITS","Visites"); +define("_MD_TDMDOWNLOADS_CAT_LIST","Liste"); +define("_MD_TDMDOWNLOADS_CAT_NONEXISTENT","Cette catégorie n'existe pas"); +define("_MD_TDMDOWNLOADS_CAT_POPULARITY","Popularité"); +define("_MD_TDMDOWNLOADS_CAT_POPULARITYLTOM","Popularité (des moins aux plus téléchargés)"); +define("_MD_TDMDOWNLOADS_CAT_POPULARITYMTOL","Popularité (des plus aux moins téléchargés)"); +define("_MD_TDMDOWNLOADS_CAT_RATING","Cotes"); +define("_MD_TDMDOWNLOADS_CAT_RATINGLTOH","Cote (score de moins à plus élevé)"); +define("_MD_TDMDOWNLOADS_CAT_RATINGHTOL","Cote (score de plus à moins élevé)"); +define("_MD_TDMDOWNLOADS_CAT_SORTBY","Triés par :"); +define("_MD_TDMDOWNLOADS_CAT_SUMMARY","Résumé"); +define("_MD_TDMDOWNLOADS_CAT_THEREARE","Il y a <b>%s</b> fichier(s) dans cette catégorie"); +define("_MD_TDMDOWNLOADS_CAT_TITLE","Titre"); +define("_MD_TDMDOWNLOADS_CAT_TITLEATOZ","Titre (de A à Z)"); +define("_MD_TDMDOWNLOADS_CAT_TITLEZTOA","Titre (de Z à A)"); +define("_MD_TDMDOWNLOADS_CAT_VOTE","Votes"); + +// singlefile.php: +define("_MD_TDMDOWNLOADS_SINGLEFILE_AUTHOR","Soumis par : "); +define("_MD_TDMDOWNLOADS_SINGLEFILE_COMMENTS","(%s) Commentaires"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_DATEPROP","Date de soumission : "); +define("_MD_TDMDOWNLOADS_SINGLEFILE_ICI","Ici"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_INTFILEFOUND","Voici un fichier important %s"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_LIMITGLOBAL","Vous avez téléchargé les fichiers de %s de ce site et la limite est de s % en 24 h "); +define("_MD_TDMDOWNLOADS_SINGLEFILE_LIMITLID","Vous avez téléchargé cette fois de s fichier % et la limite est de s % en 24 h"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_MODIFY","Modifier"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_NBTELECH","Téléchargements : %s"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_NONEXISTENT","Ce téléchargement n'existe pas dans notre base de données"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_NOPERMDOWNLOAD","Vous n'avez pas le droit de télécharger ce fichier"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_RATING","Cote"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_RATHFILE","Noter cette image"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_REPORTBROKEN","Signaler un fichier brisé"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_TELLAFRIEND","Envoyer à un ami"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_VOTES","(%s votes)"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_PAYPAL","Don pour %s"); +define("_MD_TDMDOWNLOADS_SINGLEFILE_NOPERM","Vous n'avez pas les autorisations de téléchargement"); + +// ratefile.php +define("_MD_TDMDOWNLOADS_RATEFILE_BEOBJECTIVE","Veuillez être objectif, si tout le monde reçoit un 1 ou un 10, les cotes ne sont pas très utiles."); +define("_MD_TDMDOWNLOADS_RATEFILE_CANTVOTEOWN","Ne votez pas pour vos propres fichiers.<br />Tous les votes sont enregistrés et vérifiés."); +define("_MD_TDMDOWNLOADS_RATEFILE_DONOTVOTE","Ne votez pas pour vos propres fichiers."); +define("_MD_TDMDOWNLOADS_RATEFILE_NORATING","Le vote doit être comprise entre 0 et 10"); +define("_MD_TDMDOWNLOADS_RATEFILE_RATE","Notez-le !"); +define("_MD_TDMDOWNLOADS_RATEFILE_RATINGSCALE","L'échelle est de 1 à 10, avec 1 étant faible et 10 étant excellent."); +define("_MD_TDMDOWNLOADS_RATEFILE_VOTE","Votes"); +define("_MD_TDMDOWNLOADS_RATEFILE_VOTEOK","Votre vote est apprécié.<br /> Merci d'avoir pris le temps de voter ici"); +define("_MD_TDMDOWNLOADS_RATEFILE_VOTEONCE","Veuillez ne pas voter pour la même ressource plus d'une fois."); + +// brokenfile.php +define("_MD_TDMDOWNLOADS_BROKENFILE_ALREADYREPORTED","Vous avez déjà soumis un rapport de fichier brisé pour ce téléchargement."); +define("_MD_TDMDOWNLOADS_BROKENFILE_FORSECURITY","Pour des raisons de sécurité, votre nom d'utilisateur et votre adresse IP seront temporairement enregistrés."); +define("_MD_TDMDOWNLOADS_BROKENFILE_REPORTBROKEN","Rapports de fichier brisé"); +define("_MD_TDMDOWNLOADS_BROKENFILE_THANKSFORHELP","Merci de nous aider à maintenir l'intégrité de ce répertoire."); +define("_MD_TDMDOWNLOADS_BROKENFILE_THANKSFORINFO","Merci pour l'information. Nous allons examiner votre demande dans peu de temps."); + +// modfile.php +define("_MD_TDMDOWNLOADS_MODFILE_THANKSFORINFO","Merci pour l'information. Nous allons examiner votre demande dans peu de temps."); + +//submit.php +define("_MD_TDMDOWNLOADS_SUBMIT_ALLPENDING","Toutes les informations de fichier/script sont en attente de vérification."); +define("_MD_TDMDOWNLOADS_SUBMIT_DONTABUSE","Le nom d'utilisateur et l'IP sont enregistrés, donc veuillez ne pas abuser du système."); +define("_MD_TDMDOWNLOADS_SUBMIT_ISAPPROVED","Votre fichier a été approuvé"); +define("_MD_TDMDOWNLOADS_SUBMIT_PROPOSER","Soumettre un fichier"); +define("_MD_TDMDOWNLOADS_SUBMIT_RECEIVED","Nous avons reçu vos informations de fichier. Merci!"); +define("_MD_TDMDOWNLOADS_SUBMIT_SUBMITONCE","Soumettez votre fichier/script une seule fois."); +define("_MD_TDMDOWNLOADS_SUBMIT_TAKEDAYS","Cela peut prendre quelques jours avant de voir votre fichier/script ajouté avec succès à notre base de données."); + +//search.php +define("_MD_TDMDOWNLOADS_SEARCH","Filtre dans la liste des modules"); +define("_MD_TDMDOWNLOADS_SEARCH_ALL1","Tous"); +define("_MD_TDMDOWNLOADS_SEARCH_ALL2","Tous"); +define("_MD_TDMDOWNLOADS_SEARCH_BT","Recherche"); +define("_MD_TDMDOWNLOADS_SEARCH_CATEGORIES","Catégories"); +define("_MD_TDMDOWNLOADS_SEARCH_DATE","Date"); +define("_MD_TDMDOWNLOADS_SEARCH_DOWNLOAD","Télécharger "); +define("_MD_TDMDOWNLOADS_SEARCH_HITS","Visites"); +define("_MD_TDMDOWNLOADS_SEARCH_NOTE","Votes"); +define("_MD_TDMDOWNLOADS_SEARCH_PAGETITLE","Liste des fichiers"); +define("_MD_TDMDOWNLOADS_SEARCH_THEREARE","Il y a <b>%s</b>fichier(s)"); +define("_MD_TDMDOWNLOADS_SEARCH_TITLE","Nom"); + +//générique +define("_MD_TDMDOWNLOADS_EDITTHISDL","Modifier ce téléchargement"); +define("_MD_TDMDOWNLOADS_MOREDETAILS","plus de détails"); +define("_MD_TDMDOWNLOADS_DOWNLOAD","Télécharger"); +define("_MD_TDMDOWNLOADS_RSS","Flux RSS"); + +//visit.php +define("_MD_TDMDOWNLOADS_NOPERMISETOLINK", "Ce fichier n'appartient pas au site d'où vous venez.<br /><br />Merci d'écrire un courrier électronique au webmestre du site d'où vous venez et dites-lui : <br /><b>VOUS N'ÊTES PAS PROPRIÉTAIRE DE LIENS PROVENANT D'AUTRES SITES! (LEECH)</ b><br /><br />Définition de leecher : </ b> Quelqu'un qui est trop paresseux pour afficher et héberger des liens sur son propre serveur ou vole le dur travail fait par d'autres personnes.<br /><br /><b>Vous êtes déjà enregistré</ b>."); + +//Message d'erreur +define("_MD_TDMDOWNLOADS_ERREUR_NOCAT","Vous devez choisir une catégorie !"); +define("_MD_TDMDOWNLOADS_ERREUR_SIZE","La taille du fichier doit être un nombre"); + +//Bookmarks +define("_MD_TDMDOWNLOADS_BOOKMARK_ME", "Marquez-moi"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_BLINKLIST", "Marque vers Blinklist"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_DELICIOUS", "Marque vers del.icio.us"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_DIGG", "Marque vers Digg"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_FARK", "Marque vers Fark"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_FURL", "Marque vers Furl"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_NEWSVINE", "Marque vers Newsvine"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_REDDIT", "Marque vers Reddit"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_SIMPY", "Marque vers Simpy"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_SPURL", "Marque vers Spurl"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_YAHOO", "Marque vers Yahoo"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_FACEBOOK", "Marque vers Faceboom"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_TWITTER", "Marque vers Twitter"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_SCRIPSTYLE", "Marque vers Scripstyle"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_STUMBLE", "Marque vers Stumble"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_TECHNORATI", "Marque vers Technorati"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_MIXX", "Marque vers Mixx"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_MYSPACE", "Marque vers Myspace"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_DESIGNFLOAT", "Marque vers Designfloat"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_BALATARIN", "Marque vers Balatarin"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_GOOGLEPLUS", "Marque vers Google Plus"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_GOOGLEREADER", "Marque vers Google Reader"); +define("_MD_TDMDOWNLOADS_BOOKMARK_TO_GOOGLEBOOKMARKS", "Marque vers Google Bookmarks"); +// Traduction par Cesag pour frxoops.org le 1er Juin 2012 +?> \ No newline at end of file Added: XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/modinfo.php =================================================================== --- XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/modinfo.php (rev 0) +++ XoopsLanguages/french/modules/tdmdownloads/TDMDownloads 1.62/language/french/modinfo.php 2012-07-05 18:13:46 UTC (rev 9790) @@ -0,0 +1,174 @@ +<?php +/** + * TDMDownload + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Gregory Mage (Aka Mage) + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Gregory Mage (Aka Mage) + */ + +// Nom du module +define("_MI_TDMDOWNLOADS_NAME","TDMDownloads"); + +// Description du module +define("_MI_TDMDOWNLOADS_DESC","Crée une section de téléchargements où les utilisateurs peuvent télécharger, soumettre et noter différents fichiers."); + +// Bloc +define("_MI_TDMDOWNLOADS_BNAME1","Téléchargements récents"); +define("_MI_TDMDOWNLOADS_BNAMEDSC1","Affichage des téléchargements récents"); +define("_MI_TDMDOWNLOADS_BNAME2","Haut de page des téléchargements"); +define("_MI_TDMDOWNLOADS_BNAMEDSC2","Afficher le haut de la page des téléchargements"); +define("_MI_TDMDOWNLOADS_BNAME3","Téléchargements les mieux notés"); +define("_MI_TDMDOWNLOADS_BNAMEDSC3","Afficher les téléchargements les mieux notés"); +define("_MI_TDMDOWNLOADS_BNAME4","Téléchargements aléatoires"); +define("_MI_TDMDOWNLOADS_BNAMEDSC4","Afficher aléatoirement les fichiers téléchargés"); +define("_MI_TDMDOWNLOADS_BNAME5","Recherche de téléchargements"); +define("_MI_TDMDOWNLOADS_BNAMEDSC5","Formulaire de recherche sur les téléchargements"); + +// Sous menu +define("_MI_TDMDOWNLOADS_SMNAME1","Proposer"); +define("_MI_TDMDOWNLOADS_SMNAME2","Liste des fichiers"); + +// Menu administration +define("_MI_TDMDOWNLOADS_ADMENU1","Index"); +define("_MI_TDMDOWNLOADS_ADMENU2","Gestion des catégories"); +define("_MI_TDMDOWNLOADS_ADMENU3","Gestion des téléchargements"); +define("_MI_TDMDOWNLOADS_ADMENU4","Téléchargements brisés"); +define("_MI_TDMDOWNLOADS_ADMENU5","Téléchargements modifiés"); +define("_MI_TDMDOWNLOADS_ADMENU6","Gestion des champs supplémentaires"); +define("_MI_TDMDOWNLOADS_ADMENU7","Importer"); +define("_MI_TDMDOWNLOADS_ADMENU8","Autorisations"); +define("_MI_TDMDOWNLOADS_ADMENU9","À propos"); + +// Préférences +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_GENERAL", "Général"); +define("_MI_TDMDOWNLOADS_POPULAR", "Nombre de visites pour les éléments téléchargeables, à marquer comme populaire."); +define("_MI_TDMDOWNLOADS_AUTO_SUMMARY","Résumé automatique ?"); +define("_MI_TDMDOWNLOADS_SHOW_UPDATED","Montrer les images « mises à jour » et les « nouvelles » images ?"); +define("_MI_TDMDOWNLOADS_USESHOTS", "Utiliser le logo ?"); +define("_MI_TDMDOWNLOADS_IMGFLOAT", "Image flottante"); +define("_MI_TDMDOWNLOADS_IMGFLOAT_LEFT", "Gauche"); +define("_MI_TDMDOWNLOADS_IMGFLOAT_RIGHT", "Droite"); +define("_MI_TDMDOWNLOADS_SHOTWIDTH", "Hauteur du logo"); +define("_MI_TDMDOWNLOADS_PLATEFORM","Plateformes"); +define("_MI_TDMDOWNLOADS_PLATEFORM_DSC","Entrez les plateformes autorisés, séparées par un |"); +define("_MI_TDMDOWNLOADS_USETELLAFRIEND", "Utiliser le module « Tellafriend » avec le lien dites-le à un ami ?"); +define("_MI_TDMDOWNLOADS_USETELLAFRIENDDSC", "Vous devez installer le module « Tellafriend » afin d'utiliser cette option"); +define("_MI_TDMDOWNLOADS_USETAG", "Utiliser le module « TAG » pour générer des étiquettes"); +define("_MI_TDMDOWNLOADS_USETAGDSC", "Vous devez installer le module « TAG » afin d'utiliser cette option"); +define("_MI_TDMDOWNLOADS_FORM_OPTIONS","Éditeur"); +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_USER", "Utilisateur"); +define("_MI_TDMDOWNLOADS_PERPAGE", "Nombre d'éléments par page"); +define("_MI_TDMDOWNLOADS_NBDOWCOL","Cette option vous permet de choisir le nombre de colonnes des téléchargements"); +define("_MI_TDMDOWNLOADS_NEWDLS", "Nombre de nouveaux fichiers dans la Page d'accueil"); +define("_MI_TDMDOWNLOADS_TOPORDER","Comment afficher les éléments sur la page d'index ?"); +define("_MI_TDMDOWNLOADS_TOPORDER1","Date (DESC)"); +define("_MI_TDMDOWNLOADS_TOPORDER2","Date (ASC)"); +define("_MI_TDMDOWNLOADS_TOPORDER3","Visites (DESC)"); +define("_MI_TDMDOWNLOADS_TOPORDER4","Visites (ASC)"); +define("_MI_TDMDOWNLOADS_TOPORDER5","Votes (DESC)"); +define("_MI_TDMDOWNLOADS_TOPORDER6","Votes (ASC)"); +define("_MI_TDMDOWNLOADS_TOPORDER7","Titre (DESC)"); +define("_MI_TDMDOWNLOADS_TOPORDER8","Titre (ASC)"); +define("_MI_TDMDOWNLOADS_PERPAGELISTE", "Téléchargements affichés sur la liste des fichiers"); +define("_MI_TDMDOWNLOADS_SEARCHORDER","Comment afficher les éléments dans la liste de fichiers ?"); +define("_MI_TDMDOWNLOADS_SUBCATPARENT", "Nombre de sous-catégories à afficher dans la catégorie principale"); +define("_MI_TDMDOWNLOADS_NBCATCOL","Cette option vous permet de choisir le nombre de colonnes des catégories"); +define("_MI_TDMDOWNLOADS_BLDATE", "Afficher les téléchargements récents et les catégories en page d'accueil (résumé) ?"); +define("_MI_TDMDOWNLOADS_BLPOP", "Afficher les téléchargements populaires et les catégories en page d'accueil (résumé) ?"); +define("_MI_TDMDOWNLOADS_BLRATING", "Afficher les téléchargements les mieux notés et les catégories en page d'accueil (résumé) ?"); +define("_MI_TDMDOWNLOADS_NBBL", "Nombre de téléchargements à afficher dans le résumé ?"); +define("_MI_TDMDOWNLOADS_LONGBL", "Longueur de titre dans le résumé"); +define("_MI_TDMDOWNLOADS_BOOKMARK", "Marquer"); +define("_MI_TDMDOWNLOADS_BOOKMARK_DSC", "Afficher/masquer les icônes de marquage"); +define("_MI_TDMDOWNLOADS_SOCIAL", "Réseaux sociaux"); +define("_MI_TDMDOWNLOADS_SOCIAL_DSC", "Afficher/masquer les icônes de réseau social"); +define("_MI_TDMDOWNLOADS_DOWNLOADFLOAT", "Page de téléchargement flottante"); +define("_MI_TDMDOWNLOADS_DOWNLOADFLOAT_DSC", "<ul> <li>De gauche à droite : Montrez la description des téléchargements du côté gauche et la colonne d'informations du côté droit </li> <li> De droite à gauche : Montrez la description des téléchargements du côté droit et la colonne d'informations du côté gauche </li> </ul>"); +define("_MI_TDMDOWNLOADS_DOWNLOADFLOAT_LTR", "De gauche à droite"); +define("_MI_TDMDOWNLOADS_DOWNLOADFLOAT_RTL", "De droite à gauche"); +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_ADMIN", "Administration"); +define("_MI_TDMDOWNLOADS_PERPAGEADMIN", "Nombre d'éléments par page dans l'administration"); +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_DOWNLOADS", "Téléchargements"); +define("_MI_TDMDOWNLOADS_PERMISSIONDOWNLOAD","Sélectionnez le type de permission pour les « Permissions des téléchargements »"); +define("_MI_TDMDOWNLOADS_PERMISSIONDOWNLOAD1","Permissions par catégorie"); +define("_MI_TDMDOWNLOADS_PERMISSIONDOWNLOAD2","Permissions par fichier"); +define("_MI_TDMDOWNLOADS_DOWNLOAD_NAME", "Renommer les fichiers téléchargés ?"); +define("_MI_TDMDOWNLOADS_DOWNLOAD_NAMEDSC", "Si l'option est Non et que vous avez téléchargé un fichier avec un nom qui existe déjà sur le serveur, elle sera remplacée."); +define("_MI_TDMDOWNLOADS_DOWNLOAD_PREFIX", "Préfixe des fichiers téléchargés"); +define("_MI_TDMDOWNLOADS_DOWNLOAD_PREFIXDSC", "Valide uniquement si l'option pour renommer les fichiers téléchargés est Oui"); +define("_MI_TDMDOWNLOADS_MAXUPLOAD_SIZE","Taille maximum des fichiers de téléchargement"); +define("_MI_TDMDOWNLOADS_MIMETYPE","Types mime autorisés "); +define("_MI_TDMDOWNLOADS_MIMETYPE_DSC","Entrer les types mime autorisés, séparés par un |"); +define("_MI_TDMDOWNLOADS_CHECKHOST", "Interdire le téléchargement direct par des liens externes (leeching) ?"); +define("_MI_TDMDOWNLOADS_REFERERS", "Ces sites peuvent vous lier directement vers vos fichiers. Séparer par un |"); +define("_MI_TDMDOWNLOADS_DOWNLIMIT", "Limite de téléchargement"); +define("_MI_TDMDOWNLOADS_DOWNLIMITDSC", "Utiliser l'option de limite de téléchargement"); +define("_MI_TDMDOWNLOADS_LIMITGLOBAL", "Nombre de téléchargements en 24 heures"); +define("_MI_TDMDOWNLOADS_LIMITGLOBALDSC", "Nombre de téléchargements pour chaque utilisateur dans les 24 heures. Sélectionnez 0 pour illimités."); +define("_MI_TDMDOWNLOADS_LIMITLID", "Nombre de téléchargements de chaque fichier en 24 heures"); +define("_MI_TDMDOWNLOADS_LIMITLIDDSC", "Nombre de téléchargements de chaque fichier en 24 heures par chaque utilisateur. Sélectionnez 0 pour illimités."); +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_PAYPAL", "PayPal"); +define("_MI_TDMDOWNLOADS_USEPAYPAL","Utilisez le bouton « Faire un don » de Paypal "); +define("_MI_TDMDOWNLOADS_CURRENCYPAYPAL","Monnaie du don"); +define("_MI_TDMDOWNLOADS_IMAGEPAYPAL","Image pour le bouton « Faire un don »"); +define("_MI_TDMDOWNLOADS_IMAGEPAYPALDSC","Veuillez entrer l'adresse de l'image"); +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_RSS", "RSS"); +define("_MI_TDMDOWNLOADS_PERPAGERSS", "Nombre de téléchargements à afficher dans les flux RSS"); +define("_MI_TDMDOWNLOADS_PERPAGERSSDSCC", "Nombre de téléchargements affichés sur les pages RSS"); +define("_MI_TDMDOWNLOADS_TIMECACHERSS", "Temps du cache RSS"); +define("_MI_TDMDOWNLOADS_TIMECACHERSSDSC", "Temps de cache pour les pages RSS en minutes"); +define("_MI_TDMDOWNLOADS_LOGORSS", "Logo du site pour les pages RSS"); +define("_MI_TDMDOWNLOADS_PREFERENCE_BREAK_COMNOTI", "Commentaires et avis"); + +// Notifications +define("_MI_TDMDOWNLOADS_GLOBAL_NOTIFY", "Global"); +define("_MI_TDMDOWNLOADS_GLOBAL_NOTIFYDSC", "Options de notification globales pour les téléchargements ."); +define("_MI_TDMDOWNLOADS_CATEGORY_NOTIFY", "Catégorie"); +define("_MI_TDMDOWNLOADS_CATEGORY_NOTIFYDSC", "Options de notification qui s'appliquent à la catégorie du fichier actuel."); +define("_MI_TDMDOWNLOADS_FILE_NOTIFY", "Fichier"); +define("_MI_TDMDOWNLOADS_FILE_NOTIFYDSC", "Options de notification qui s'applique au fichier en cours."); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWCATEGORY_NOTIFY", "Nouvelle catégorie"); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWCATEGORY_NOTIFYCAP", "M'avertir quand une nouvelle catégorie de fichiers est créée."); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWCATEGORY_NOTIFYDSC", "Recevoir une notification lorsqu'une nouvelle catégorie de fichiers est créée."); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWCATEGORY_NOTIFYSBJ", "[{X_SITENAME}] {X_MODULE} notification automatique : nouvelle catégorie de fichier"); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEMODIFY_NOTIFY", "Modifier le fichier demandé"); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEMODIFY_NOTIFYCAP", "Me notifier lors d'une demande de modification de fichier."); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEMODIFY_NOTIFYDSC", "Recevoir une notification lorsqu'une demande de modification de fichier est soumise."); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEMODIFY_NOTIFYSBJ", "[{X_SITENAME}] {X_MODULE} notification automatique : demande de Modification de fichier"); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEBROKEN_NOTIFY", "Fichier brisé soumis"); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEBROKEN_NOTIFYCAP", "Me notifier lors d'un rapport de fichier brisé."); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEBROKEN_NOTIFYDSC", "Recevoir une notification quand un rapport de fichier brisé est soumis."); +define("_MI_TDMDOWNLOADS_GLOBAL_FILEBROKEN_NOTIFYSBJ", "[{X_SITENAME}] {X_MODULE} notification automatique : signalement de fichier brisé"); +define("_MI_TDMDOWNLOADS_GLOBAL_FILESUBMIT_NOTIFY", "Fichier soumis"); +define("_MI_TDMDOWNLOADS_GLOBAL_FILESUBMIT_NOTIFYCAP", "Me prévenir lorsqu'un nouveau fichier est soumis (en attente d'approbation)."); +define("_MI_TDMDOWNLOADS_GLOBAL_FILESUBMIT_NOTIFYDSC", "Recevoir une notification lorsqu'un nouveau fichier est soumis (en attente d'approbation)."); +define("_MI_TDMDOWNLOADS_GLOBAL_FILESUBMIT_NOTIFYSBJ", "[{X_SITENAME}] {X_MODULE} notification automatique : nouveau fichier soumis"); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWFILE_NOTIFY", "Nouveau fichier"); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWFILE_NOTIFYCAP", "M'avertir quand un nouveau fichier est affiché."); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWFILE_NOTIFYDSC", "Recevoir une notification lorsqu'un nouveau fichier est affiché."); +define("_MI_TDMDOWNLOADS_GLOBAL_NEWFILE_NOTIFYSBJ", "[{X_SITENAME}] {X_MODULE} notification automatique : nouveau fichier"); +define("_MI_TDMDOWNLOADS_CATEGORY_FILESUBMIT_NOTIFY", "Fichier soumis"); +define("_MI_TDMDOWNLOADS_CATEGORY_FILESUBMIT_NOTIFYCAP", "Me prévenir lorsqu'un nouveau fichier est soumis (en attente d'approbation) dans la catégorie actuelle."); +define("_MI_TDMDOWNLOADS_CATEGORY_FILESUBMIT_NOTIFYDSC", "Recevoir une notification lorsqu'un nouveau fichier est soumis (en attente d'approbation) dans la catégorie actuelle."); +define("_MI_TDMDOWNLOADS_CATEGORY_FILESUBMIT_NOTIFYSBJ", "[{X_SITENAME}] {X_MODULE} notification automatique : nouveau fichier présenté dans la catégorie"); +define("_MI_TDMDOWNLOADS_CATEGORY_NEWFILE_NOTIFY", "Nouveau fichier")... [truncated message content] |
From: <dh...@us...> - 2012-07-04 20:51:00
|
Revision: 9789 http://xoops.svn.sourceforge.net/xoops/?rev=9789&view=rev Author: dhcst Date: 2012-07-04 20:50:55 +0000 (Wed, 04 Jul 2012) Log Message: ----------- fix fatal error when forenid=0 Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/topicmanager.php Modified: XoopsModules/newbb/branches/alfred/newbb/topicmanager.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/topicmanager.php 2012-07-04 20:20:34 UTC (rev 9788) +++ XoopsModules/newbb/branches/alfred/newbb/topicmanager.php 2012-07-04 20:50:55 UTC (rev 9789) @@ -46,7 +46,9 @@ if ( !$topic_id ) { $redirect = empty($forum_id)? "index.php" : "viewforum.php?forum={$forum}"; + $redirect = XOOPS_URL . "/modules/newbb/" . $redirect; redirect_header($redirect, 2, _MD_ERRORTOPIC); + exit(); } $topic_handler =& xoops_getmodulehandler('topic', 'newbb'); @@ -54,7 +56,13 @@ if ( !$forum ) { $topic_obj =& $topic_handler->get(intval($topic_id)); - $forum = $topic_obj->getVar("forum_id"); + if (is_object($topic_obj)) { + $forum = $topic_obj->getVar("forum_id"); + } else { + $redirect = XOOPS_URL . "/modules/newbb/viewtopic.php?topic_id=" . $topic_id; + redirect_header($redirect, 2, _MD_FORUMNOEXIST); + exit(); + } unset($topic_obj); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dh...@us...> - 2012-07-04 20:20:41
|
Revision: 9788 http://xoops.svn.sourceforge.net/xoops/?rev=9788&view=rev Author: dhcst Date: 2012-07-04 20:20:34 +0000 (Wed, 04 Jul 2012) Log Message: ----------- fix template for notify Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewpost.html XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html Modified: XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html 2012-07-04 17:44:39 UTC (rev 9787) +++ XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html 2012-07-04 20:20:34 UTC (rev 9788) @@ -19,55 +19,55 @@ <td width="20%" class="odd" rowspan="2" valign="top"> <{if $topic_post.poster.uid != 0}> <div class="comUserRankText"><{$topic_post.poster.rank.title}><br /><{$topic_post.poster.rank.image}></div> - <{if $topic_post.poster.avatar != "blank.gif"}> - <br /><img class="comUserImg" src="<{$xoops_upload_url}>/<{$topic_post.poster.avatar}>" alt="" /> - <{else}> - <br /><img class="comUserImg" src="<{$xoops_url}>/modules/<{$xoops_dirname}>/templates/images/icon/anonym.png" alt="" /> - <{/if}> - <br /> - <{if $infobox gt 0}> - <div> - <img style="padding:2px;" onclick="ToggleBlockCategory('<{$topic_post.post_id}>', this, '<{$xoops_url}>/modules/<{$xoops_dirname}>/templates/images/icon/more.png', '<{$xoops_url}>/modules/<{$xoops_dirname}>/templates/images/icon/more.png')" src="<{$icon_path}>/more.png" alt="Benutzerinformationen" title="Benutzerinformationen" /> - </div> - <div id="<{$topic_post.post_id}>" + <{if $topic_post.poster.avatar != "blank.gif"}> + <br /><img class="comUserImg" src="<{$xoops_upload_url}>/<{$topic_post.poster.avatar}>" alt="" /> + <{else}> + <br /><img class="comUserImg" src="<{$xoops_url}>/modules/<{$xoops_dirname}>/templates/images/icon/anonym.png" alt="" /> + <{/if}> + <br /> + <{if $infobox gt 0}> + <div> + <img style="padding:2px;" onclick="ToggleBlockCategory('<{$topic_post.post_id}>', this, '<{$xoops_url}>/modules/<{$xoops_dirname}>/templates/images/icon/more.png', '<{$xoops_url}>/modules/<{$xoops_dirname}>/templates/images/icon/more.png')" src="<{$icon_path}>/more.png" alt="Benutzerinformationen" title="Benutzerinformationen" /> + </div> + <div id="<{$topic_post.post_id}>" <{if $infobox == 1}> style="display: none;" <{else}> style="display:block;" <{/if}> - > - <div class="comUserStat"><span class="comUserStatCaption"><{$smarty.const._MD_JOINED}>:</span><br /><{$topic_post.poster.regdate}></div> - <{if $topic_post.poster.from}> - <div class="comUserStat"><span class="comUserStatCaption"><{$smarty.const._MD_FROM}></span> <{$topic_post.poster.from}></div> - <{/if}> - <{if $topic_post.poster.groups}> - <div class="comUserStat"> <span class="comUserStatCaption"><{$smarty.const._MD_GROUP}></span> - <{foreachq item=group from=$topic_post.poster.groups}> <br /><{$group}><{/foreach}> - </div> - <{/if}> - <div class="comUserStat"> - <span class="comUserStatCaption"><{$smarty.const._MD_POSTS}>:</span> - <{if $topic_post.poster.posts gt 0}> - <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewpost.php?uid=<{$topic_post.poster.uid}>" title="<{$smarty.const._ALL}>" target="_self"><{$topic_post.poster.posts}></a> - <{else}> - 0 - <{/if}> - <{if $topic_post.poster.digests gt 0}> - | <span class="comUserStatCaption"><{$smarty.const._MD_DIGESTS}>:</span> <{$topic_post.poster.digests}> - <{/if}> + > + <div class="comUserStat"><span class="comUserStatCaption"><{$smarty.const._MD_JOINED}>:</span><br /><{$topic_post.poster.regdate}></div> + <{if $topic_post.poster.from}> + <div class="comUserStat"><span class="comUserStatCaption"><{$smarty.const._MD_FROM}></span> <{$topic_post.poster.from}></div> + <{/if}> + <{if $topic_post.poster.groups}> + <div class="comUserStat"> <span class="comUserStatCaption"><{$smarty.const._MD_GROUP}></span> + <{foreachq item=group from=$topic_post.poster.groups}> <br /><{$group}><{/foreach}> </div> - <{if $topic_post.poster.level}> - <div class="comUserStat" align="left"><{$topic_post.poster.level}></div> + <{/if}> + <div class="comUserStat"> + <span class="comUserStatCaption"><{$smarty.const._MD_POSTS}>:</span> + <{if $topic_post.poster.posts gt 0}> + <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewpost.php?uid=<{$topic_post.poster.uid}>" title="<{$smarty.const._ALL}>" target="_self"><{$topic_post.poster.posts}></a> + <{else}> + 0 <{/if}> - <{if $topic_post.poster.status}> - <div class="comUserStatus"><{$topic_post.poster.status}></div> + <{if $topic_post.poster.digests gt 0}> + | <span class="comUserStatCaption"><{$smarty.const._MD_DIGESTS}>:</span> <{$topic_post.poster.digests}> <{/if}> </div> - <{/if}> - <{else}> - <div class="comUserRankText"><{$anonymous_prefix}><{$topic_post.poster.name}></div> + <{if $topic_post.poster.level}> + <div class="comUserStat" align="left"><{$topic_post.poster.level}></div> + <{/if}> + <{if $topic_post.poster.status}> + <div class="comUserStatus"><{$topic_post.poster.status}></div> + <{/if}> + </div> <{/if}> - </td> + <{else}> + <div class="comUserRankText"><{$anonymous_prefix}><{$topic_post.poster.name}></div> + <{/if}> + </td> - <td colspan="2" class="even"> + <td colspan="2" class="even"> <{else}> <td colspan="3" class="even"> <{/if}> @@ -114,9 +114,11 @@ <table style="border: 0; padding: 0; margin: 0"> <tr> <td style="text-align:left;"> - <{foreachq item=btn from=$topic_post.thread_action}> - <a href="<{$btn.link}>&post_id=<{$topic_post.post_id}>" title="<{$btn.name}>" <{if $btn.target}>target="<{$btn.target}>"<{/if}>> <{$btn.image}></a> - <{/foreach}> + <{if $topic_post.thread_action}> + <{foreachq item=btn from=$topic_post.thread_action}> + <a href="<{$btn.link}>&post_id=<{$topic_post.post_id}>" title="<{$btn.name}>" <{if $btn.target}>target="<{$btn.target}>"<{/if}>> <{$btn.image}></a> + <{/foreach}> + <{/if}> </td> <td style="text-align: right;"> <{if $mode gt 1}> @@ -125,7 +127,11 @@ <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/action.post.php?post_id=<{$topic_post.post_id}>&op=split&mode=3" target="_self" title="<{$smarty.const._MD_SPLIT_ALL}>"><{$smarty.const._MD_SPLIT_ALL}></a> | <input type="checkbox" name="post_id[]" id="post_id[<{$topic_post.post_id}>]" value="<{$topic_post.post_id}>" /> <{else}> - <{foreachq item=btn from=$topic_post.thread_buttons}> <a href="<{$btn.link}>&post_id=<{$topic_post.post_id}>" title="<{$btn.name}>"> <{$btn.image}></a> <{/foreach}> + <{if $topic_post.thread_buttons}> + <{foreachq item=btn from=$topic_post.thread_buttons}> + <a href="<{$btn.link}>&post_id=<{$topic_post.post_id}>" title="<{$btn.name}>"> <{$btn.image}></a> + <{/foreach}> + <{/if}> <{/if}> <a href="#threadtop" title="<{$smarty.const._MD_TOP}>"> <{$p_up}></a> </td> Modified: XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewpost.html =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewpost.html 2012-07-04 17:44:39 UTC (rev 9787) +++ XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewpost.html 2012-07-04 20:20:34 UTC (rev 9788) @@ -136,5 +136,5 @@ <br /> <{includeq file="db:newbb_online.html"}> <{/if}> - +<{includeq file='db:newbb_notification_select.html'}> <!-- end module contents --> \ No newline at end of file Modified: XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html 2012-07-04 17:44:39 UTC (rev 9787) +++ XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html 2012-07-04 20:20:34 UTC (rev 9788) @@ -49,30 +49,29 @@ <{/if}> <{if $viewer_level gt 1}> -<div style="float: right; text-align:right;" id="admin"> - <{if $mode gt 1}> - <form name="form_posts_admin" action="topicmanager.php" method="POST" onsubmit="javascript: if(window.document.forum_posts_admin.op.value < 1){return false;}"> - <{$smarty.const._ALL}>: <input type="checkbox" name="post_check" id="post_check" value="1" onclick="xoopsCheckAll('form_posts_admin', 'post_check');" /> - <select name="mode"> - <option value="0"><{$smarty.const._SELECT}></option> - <option value="delete"><{$smarty.const._DELETE}></option> - <{if $status eq "pending"}> - <option value="approve"><{$smarty.const._MD_APPROVE}></option> - <{elseif $status eq "deleted"}> - <option value="restore"><{$smarty.const._MD_RESTORE}></option> - <{/if}> - </select> - <input type="hidden" name="topic_id" value="<{$topic_id}>" /> - <input type="submit" name="submit" value="<{$smarty.const._SUBMIT}>" /> | - <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>" target="_self" title="<{$smarty.const._MD_TYPE_VIEW}>"><{$smarty.const._MD_TYPE_VIEW}></a> - - <{else}> - <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>&status=active#admin" target="_self" title="<{$smarty.const._MD_TYPE_ADMIN}>"><{$smarty.const._MD_TYPE_ADMIN}></a> | - <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>&status=pending#admin" target="_self" title="<{$smarty.const._MD_TYPE_PENDING}>"><{$smarty.const._MD_TYPE_PENDING}></a> | - <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>&status=deleted#admin" target="_self" title="<{$smarty.const._MD_TYPE_DELETED}>"><{$smarty.const._MD_TYPE_DELETED}></a> - <{/if}> -</div> -<br /> + <div style="float: right; text-align:right;" id="admin"> + <{if $mode gt 1}> + <form name="form_posts_admin" action="topicmanager.php" method="POST" onsubmit="javascript: if(window.document.forum_posts_admin.op.value < 1){return false;}"> + <{$smarty.const._ALL}>: <input type="checkbox" name="post_check" id="post_check" value="1" onclick="xoopsCheckAll('form_posts_admin', 'post_check');" /> + <select name="mode"> + <option value="0"><{$smarty.const._SELECT}></option> + <option value="delete"><{$smarty.const._DELETE}></option> + <{if $status eq "pending"}> + <option value="approve"><{$smarty.const._MD_APPROVE}></option> + <{elseif $status eq "deleted"}> + <option value="restore"><{$smarty.const._MD_RESTORE}></option> + <{/if}> + </select> + <input type="hidden" name="topic_id" value="<{$topic_id}>" /> + <input type="submit" name="submit" value="<{$smarty.const._SUBMIT}>" /> | + <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>" target="_self" title="<{$smarty.const._MD_TYPE_VIEW}>"><{$smarty.const._MD_TYPE_VIEW}></a> + <{else}> + <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>&status=active#admin" target="_self" title="<{$smarty.const._MD_TYPE_ADMIN}>"><{$smarty.const._MD_TYPE_ADMIN}></a> | + <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>&status=pending#admin" target="_self" title="<{$smarty.const._MD_TYPE_PENDING}>"><{$smarty.const._MD_TYPE_PENDING}></a> | + <a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/viewtopic.php?topic_id=<{$topic_id}>&status=deleted#admin" target="_self" title="<{$smarty.const._MD_TYPE_DELETED}>"><{$smarty.const._MD_TYPE_DELETED}></a> + <{/if}> + </div> + <br /> <{/if}> <div class="clear"></div> <br /> @@ -148,6 +147,7 @@ <div class="clear"></div> <br /> <br /> + <{if $viewer_level gt 1 && $topic_status == 1}> <div class="resultMsg"><{$smarty.const._MD_TOPICLOCK}></div> <br /> @@ -215,26 +215,28 @@ <br /> <br /> <{/if}> + <div> -<div style="float: left; text-align: left;"> -<{foreachq item=perm from=$permission_table}> -<div><{$perm}></div> -<{/foreach}> + <div style="float: left; text-align: left;"> + <{foreachq item=perm from=$permission_table}> + <div><{$perm}></div> + <{/foreach}> + </div> + + <div style="float: right; text-align: right;"> + <form action="<{$xoops_url}>/modules/<{$xoops_dirname}>/search.php" method="get"> + <input name="term" id="term" type="text" size="15" /> + <input type="hidden" name="forum" id="forum" value="<{$forum_id}>" /> + <input type="hidden" name="sortby" id="sortby" value="p.post_time desc" /> + <input type="hidden" name="since" id="since" value="<{$forum_since}>" /> + <input type="hidden" name="action" id="action" value="yes" /> + <input type="hidden" name="searchin" id="searchin" value="both" /> + <input type="submit" class="formButton" value="<{$smarty.const._MD_SEARCH}>" /><br /> + [<a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/search.php"><{$smarty.const._MD_ADVSEARCH}></a>] + </form><br /> + <{$forum_jumpbox}> + </div> </div> -<div style="float: right; text-align: right;"> -<form action="<{$xoops_url}>/modules/<{$xoops_dirname}>/search.php" method="get"> -<input name="term" id="term" type="text" size="15" /> -<input type="hidden" name="forum" id="forum" value="<{$forum_id}>" /> -<input type="hidden" name="sortby" id="sortby" value="p.post_time desc" /> -<input type="hidden" name="since" id="since" value="<{$forum_since}>" /> -<input type="hidden" name="action" id="action" value="yes" /> -<input type="hidden" name="searchin" id="searchin" value="both" /> -<input type="submit" class="formButton" value="<{$smarty.const._MD_SEARCH}>" /><br /> -[<a href="<{$xoops_url}>/modules/<{$xoops_dirname}>/search.php"><{$smarty.const._MD_ADVSEARCH}></a>] -</form><br /> -<{$forum_jumpbox}> -</div> -</div> <div class="clear"></div> <br /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dh...@us...> - 2012-07-04 17:44:45
|
Revision: 9787 http://xoops.svn.sourceforge.net/xoops/?rev=9787&view=rev Author: dhcst Date: 2012-07-04 17:44:39 +0000 (Wed, 04 Jul 2012) Log Message: ----------- make edited Message optional Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/class/post.php XoopsModules/newbb/branches/alfred/newbb/include/form.post.php XoopsModules/newbb/branches/alfred/newbb/language/english/main.php XoopsModules/newbb/branches/alfred/newbb/language/german/main.php XoopsModules/newbb/branches/alfred/newbb/templates/newbb_notification_select.html XoopsModules/newbb/branches/alfred/newbb/xoops_version.php Modified: XoopsModules/newbb/branches/alfred/newbb/class/post.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/class/post.php 2012-07-04 02:16:46 UTC (rev 9786) +++ XoopsModules/newbb/branches/alfred/newbb/class/post.php 2012-07-04 17:44:39 UTC (rev 9787) @@ -242,8 +242,9 @@ $edit_time = intval($postedit['edit_time']); $edit_user = $myts->stripSlashesGPC($postedit['edit_user']); $edit_msg = (!empty($postedit['edit_msg'])) ? $myts->stripSlashesGPC($postedit['edit_msg']) : ''; - $post_edit = _MD_EDITEDBY . " " . $edit_user . " " . _MD_ON . " " . formatTimestamp(intval($edit_time)) . "<br/>"._MD_EDITEDMSG . " " .$edit_msg."<br />"; - //$post_edit = _MD_EDITEDBY . " " . $edit_user . " " . _MD_ON . " " . formatTimestamp(intval($edit_time)) . "<br/>"; + if ($edit_msg != "") { + $post_edit = _MD_EDITEDBY . " " . $edit_user . " " . _MD_ON . " " . formatTimestamp(intval($edit_time)) . "<br/>"._MD_EDITEDMSG . " " .$edit_msg."<br />"; + } } } return $post_edit; Modified: XoopsModules/newbb/branches/alfred/newbb/include/form.post.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/include/form.post.php 2012-07-04 02:16:46 UTC (rev 9786) +++ XoopsModules/newbb/branches/alfred/newbb/include/form.post.php 2012-07-04 17:44:39 UTC (rev 9787) @@ -100,9 +100,9 @@ $forum_form = new XoopsThemeForm(htmlspecialchars(@$form_title), 'form_post', XOOPS_URL.'/modules/newbb/post.php', 'post', true); $forum_form->setExtra('enctype="multipart/form-data"'); -if ($editby) -{ - $forum_form->addElement( new XoopsFormText(_MD_EDITEDMSG, 'editwhy', 60, 100, ''), true); + +if ($editby) { + $forum_form->addElement( new XoopsFormText(_MD_EDITEDMSG, 'editwhy', 60, 100, '')); } $uid = (is_object($xoopsUser)) ? $xoopsUser->getVar('uid') : 0; Modified: XoopsModules/newbb/branches/alfred/newbb/language/english/main.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/language/english/main.php 2012-07-04 02:16:46 UTC (rev 9786) +++ XoopsModules/newbb/branches/alfred/newbb/language/english/main.php 2012-07-04 17:44:39 UTC (rev 9787) @@ -431,7 +431,7 @@ define("_MD_NEWBB_SEENOTGUEST","<font color=\"red\"><b>Link only for registered users</b></font>"); define("_MD_NEWBB_REPORTSUBJECT","A contribution has been reported"); define("_MD_NEWBB_GOTOLASTPOST","Go to last post"); -define("_MD_EDITEDMSG","Reason:"); +define("_MD_EDITEDMSG","Reason (optional):"); define("_MD_DELEDEDMSG","Reason for deleting<br /><small>(If a reason is provided, the user will receive a message)</small>:"); define("_MD_DELEDEDMSG_SUBJECT","Deletion of your article"); define("_MD_DELEDEDMSG_BODY","Hello %s, Modified: XoopsModules/newbb/branches/alfred/newbb/language/german/main.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/language/german/main.php 2012-07-04 02:16:46 UTC (rev 9786) +++ XoopsModules/newbb/branches/alfred/newbb/language/german/main.php 2012-07-04 17:44:39 UTC (rev 9787) @@ -431,7 +431,7 @@ define("_MD_NEWBB_SEENOTGUEST","<font color=\"red\"><b>Link nur für registrierte User sichtbar</b></font>"); define("_MD_NEWBB_REPORTSUBJECT","Ein Beitrag wurde gemeldet"); define("_MD_NEWBB_GOTOLASTPOST","Gehe zum letzten Posting"); -define("_MD_EDITEDMSG","Grund:"); +define("_MD_EDITEDMSG","Grund (optional):"); define("_MD_DELEDEDMSG","Grund des Löschens<br /><small>(Wird ein Grund angegeben wird der User benachrichtigt)</small>:"); define("_MD_DELEDEDMSG_SUBJECT","Löschung deines Beitrages"); define("_MD_DELEDEDMSG_BODY","Hallo %s, Modified: XoopsModules/newbb/branches/alfred/newbb/templates/newbb_notification_select.html =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_notification_select.html 2012-07-04 02:16:46 UTC (rev 9786) +++ XoopsModules/newbb/branches/alfred/newbb/templates/newbb_notification_select.html 2012-07-04 17:44:39 UTC (rev 9787) @@ -1,6 +1,6 @@ <{if $xoops_notification.show}> <form name="notification_select" action="<{$xoops_url}>/modules/<{$xoops_dirname}>/<{$xoops_notification.target_page}>" method="post"> - <h4 class="txtcenter"><{$lang_activenotifications}></h4> + <h4 class="txtcenter"><{$lang_activenotifications}> </h4> <input type="hidden" name="not_redirect" value="<{$xoops_url}><{$xoops_notification.redirect_script}>" /> <input type="hidden" name="XOOPS_TOKEN_REQUEST" value="<{php}>echo $GLOBALS['xoopsSecurity']->createToken();<{/php}>" /> <table class="outer"> Modified: XoopsModules/newbb/branches/alfred/newbb/xoops_version.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/xoops_version.php 2012-07-04 02:16:46 UTC (rev 9786) +++ XoopsModules/newbb/branches/alfred/newbb/xoops_version.php 2012-07-04 17:44:39 UTC (rev 9787) @@ -27,7 +27,7 @@ $modversion['status_version'] = "4.2"; //about -$modversion['release_date'] = '2012/06/29'; +$modversion['release_date'] = '2012/07/04'; $modversion["module_website_url"] = "http://www.simple-xoops.de/"; $modversion["module_website_name"] = "SIMPLE-XOOPS"; $modversion["module_status"] = "RC 1"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-07-04 02:16:53
|
Revision: 9786 http://xoops.svn.sourceforge.net/xoops/?rev=9786&view=rev Author: beckmi Date: 2012-07-04 02:16:46 +0000 (Wed, 04 Jul 2012) Log Message: ----------- Commenting out Topic name in ItemInfo Modified Paths: -------------- XoopsModules/news/trunk/news/templates/news_item.html Modified: XoopsModules/news/trunk/news/templates/news_item.html =================================================================== --- XoopsModules/news/trunk/news/templates/news_item.html 2012-07-03 09:09:58 UTC (rev 9785) +++ XoopsModules/news/trunk/news/templates/news_item.html 2012-07-04 02:16:46 UTC (rev 9786) @@ -11,7 +11,7 @@ <span class="itemPostDate"><{$lang_on}> <{$story.posttime}></span> (<span class="itemStats"><{$story.hits}> <{$lang_reads}></span>) <{$news_by_the_same_author_link}> - <span class="itemTopic"><{$lang_topic}> <{$story.topic_title}></span> + <!--<span class="itemTopic"><{$lang_topic}> <{$story.topic_title}></span>--> </div> <div class="itemBody"> <{if $story.picture != ''}> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dh...@us...> - 2012-07-03 09:10:08
|
Revision: 9785 http://xoops.svn.sourceforge.net/xoops/?rev=9785&view=rev Author: dhcst Date: 2012-07-03 09:09:58 +0000 (Tue, 03 Jul 2012) Log Message: ----------- remove link to old viewall.php Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/seo_url.php Modified: XoopsModules/newbb/branches/alfred/newbb/seo_url.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/seo_url.php 2012-07-03 09:09:21 UTC (rev 9784) +++ XoopsModules/newbb/branches/alfred/newbb/seo_url.php 2012-07-03 09:09:58 UTC (rev 9785) @@ -16,7 +16,6 @@ // Search URLs of modules' directry. '/<(a|meta)([^>]*)(href|url)=([\'\"]{0,1})'.$XPS_URL.'\/'.$module_name.'\/(index.php)([^>\'\"]*)([\'\"]{1})([^>]*)>/i', '/<(a|meta)([^>]*)(href|url)=([\'\"]{0,1})'.$XPS_URL.'\/'.$module_name.'\/(viewpost.php)([^>\'\"]*)([\'\"]{1})([^>]*)>/i', - '/<(a|meta)([^>]*)(href|url)=([\'\"]{0,1})'.$XPS_URL.'\/'.$module_name.'\/(viewall.php)([^>\'\"]*)([\'\"]{1})([^>]*)>/i', '/<(a|meta)([^>]*)(href|url)=([\'\"]{0,1})'.$XPS_URL.'\/'.$module_name.'\/(rss.php)([^>\'\"]*)([\'\"]{1})([^>]*)>/i', '/<(a|meta)([^>]*)(href|url)=([\'\"]{0,1})'.$XPS_URL.'\/'.$module_name.'\/(viewforum.php)([^>\'\"]*)([\'\"]{1})([^>]*)>/i', '/<(a|meta)([^>]*)(href|url)=([\'\"]{0,1})'.$XPS_URL.'\/'.$module_name.'\/(viewtopic.php)([^>\'\"]*)([\'\"]{1})([^>]*)>/i', @@ -60,20 +59,7 @@ } else { $add_to_url = 'viewpost.php'.$matches[6]; } - break; - case 'viewall.php': - $add_to_url = ''; - $req_string = $matches[6]; - if (!empty($matches[6])) { -// replacing status=x - if(preg_match('/status=([a-z]+)/', $matches[6], $mvars)) { - $add_to_url = 'viewall.php'.$matches[6]; - $req_string = preg_replace('/status=([a-z])+/','', $matches[6]); - } else { - return $matches['0']; - } - } - break; + break; case 'rss.php': $add_to_url = ''; $req_string = $matches[6]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <txm...@us...> - 2012-07-03 09:09:31
|
Revision: 9784 http://xoops.svn.sourceforge.net/xoops/?rev=9784&view=rev Author: txmodxoops Date: 2012-07-03 09:09:21 +0000 (Tue, 03 Jul 2012) Log Message: ----------- Added _AM_MODULEADMIN_MISSING in global.php Modified Paths: -------------- XoopsCore/tags/2.6 timgno/htdocs/language/english/global.php Modified: XoopsCore/tags/2.6 timgno/htdocs/language/english/global.php =================================================================== --- XoopsCore/tags/2.6 timgno/htdocs/language/english/global.php 2012-07-03 09:04:09 UTC (rev 9783) +++ XoopsCore/tags/2.6 timgno/htdocs/language/english/global.php 2012-07-03 09:09:21 UTC (rev 9784) @@ -242,4 +242,6 @@ // For pagenav define("_PREVIOUS","Previous"); define("_NEXT","Next"); +//Error NoFrameworks +define("_AM_MODULEADMIN_MISSING","Error: You don't use the Frameworks 'admin module'. Please install this Frameworks"); ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dh...@us...> - 2012-07-03 09:04:19
|
Revision: 9783 http://xoops.svn.sourceforge.net/xoops/?rev=9783&view=rev Author: dhcst Date: 2012-07-03 09:04:09 +0000 (Tue, 03 Jul 2012) Log Message: ----------- fix permission in forum Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/delete.php XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html XoopsModules/newbb/branches/alfred/newbb/viewforum.php Modified: XoopsModules/newbb/branches/alfred/newbb/delete.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/delete.php 2012-07-03 08:45:49 UTC (rev 9782) +++ XoopsModules/newbb/branches/alfred/newbb/delete.php 2012-07-03 09:04:09 UTC (rev 9783) @@ -54,12 +54,12 @@ if ( $topic_handler->getPermission($topic->getVar("forum_id"), $topic_status, 'delete') && ( $isadmin || $post_obj->checkIdentity() )) {} else { - redirect_header(XOOPS_URL."/modules/newbb/viewtopic.php?topic_id=$topic_id&order=$order&viewmode=$viewmode&pid=$pid&forum=$forum", 2, _MD_DELNOTALLOWED); + redirect_header(XOOPS_URL."/modules/newbb/viewtopic.php?topic_id=$topic_id&pid=$pid&forum=$forum", 2, _MD_DELNOTALLOWED); exit(); } if (!$isadmin && !$post_obj->checkTimelimit('delete_timelimit')) { - redirect_header(XOOPS_URL."/modules/newbb/viewtopic.php?forum=$forum&topic_id=$topic_id&post_id=$post_id&order=$order&viewmode=$viewmode&pid=$pid",2,_MD_TIMEISUPDEL); + redirect_header(XOOPS_URL."/modules/newbb/viewtopic.php?forum=$forum&topic_id=$topic_id&post_id=$post_id&pid=$pid",2,_MD_TIMEISUPDEL); exit(); } @@ -73,7 +73,7 @@ if ($post_obj->isTopic() && $topic->getVar("topic_replies")==0) $isDeleteOne=false; if ($isDeleteOne && $post_obj->isTopic() && $topic->getVar("topic_replies")>0) { //$post_handler->emptyTopic($post_obj); - redirect_header(XOOPS_URL."/modules/newbb/viewtopic.php?topic_id=$topic_id&order=$order&viewmode=$viewmode&pid=$pid&forum=$forum", 2, _MD_POSTFIRSTWITHREPLYNODELETED); + redirect_header(XOOPS_URL."/modules/newbb/viewtopic.php?topic_id=$topic_id&pid=$pid&forum=$forum", 2, _MD_POSTFIRSTWITHREPLYNODELETED); exit(); } else { if (!empty($_POST['post_text'])) Modified: XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html 2012-07-03 08:45:49 UTC (rev 9782) +++ XoopsModules/newbb/branches/alfred/newbb/templates/newbb_thread.html 2012-07-03 09:04:09 UTC (rev 9783) @@ -1,5 +1,4 @@ <{if $post_id == $topic_post.post_id}><div id="aktuell"></div><{/if}> - <table class="outer" cellpadding="0" cellspacing="0" border="0" width="100%" align="center" style="border-bottom-width: 0px;"> <tr> <th width="20%" align="left"> Modified: XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html 2012-07-03 08:45:49 UTC (rev 9782) +++ XoopsModules/newbb/branches/alfred/newbb/templates/newbb_viewtopic.html 2012-07-03 09:04:09 UTC (rev 9783) @@ -60,7 +60,7 @@ <option value="approve"><{$smarty.const._MD_APPROVE}></option> <{elseif $status eq "deleted"}> <option value="restore"><{$smarty.const._MD_RESTORE}></option> - <{/if}> + <{/if}> </select> <input type="hidden" name="topic_id" value="<{$topic_id}>" /> <input type="submit" name="submit" value="<{$smarty.const._SUBMIT}>" /> | Modified: XoopsModules/newbb/branches/alfred/newbb/viewforum.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/viewforum.php 2012-07-03 08:45:49 UTC (rev 9782) +++ XoopsModules/newbb/branches/alfred/newbb/viewforum.php 2012-07-03 09:04:09 UTC (rev 9783) @@ -50,7 +50,7 @@ $forum_obj = $forum_handler->get($forum_id); -if (!$forum_handler->getPermission($forum_obj)) { +if (!$forum_handler->getPermission($forum_obj) || !$forum_handler->getPermission($forum_obj,'view')) { redirect_header(XOOPS_URL."/modules/".$xoopsModule->getVar("dirname")."/index.php", 2, _NOPERM); exit(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-07-03 08:45:58
|
Revision: 9782 http://xoops.svn.sourceforge.net/xoops/?rev=9782&view=rev Author: beckmi Date: 2012-07-03 08:45:49 +0000 (Tue, 03 Jul 2012) Log Message: ----------- adding missing language definition for the _MD_GO button Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/language/english/main.php Modified: XoopsModules/newbb/branches/alfred/newbb/language/english/main.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/language/english/main.php 2012-07-03 08:27:54 UTC (rev 9781) +++ XoopsModules/newbb/branches/alfred/newbb/language/english/main.php 2012-07-03 08:45:49 UTC (rev 9782) @@ -476,4 +476,6 @@ define('_MD_SHARE_DIGG', "Digg"); define('_MD_SHARE_TECHNORATI', "Technorati"); define('_MD_SHARE_MRWONG', "Mr. Wong"); -?> \ No newline at end of file +//4.3 + +define("_MD_GO", "Go"); \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dh...@us...> - 2012-07-03 08:28:00
|
Revision: 9781 http://xoops.svn.sourceforge.net/xoops/?rev=9781&view=rev Author: dhcst Date: 2012-07-03 08:27:54 +0000 (Tue, 03 Jul 2012) Log Message: ----------- fix undefined Variable online Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/viewpost.php Modified: XoopsModules/newbb/branches/alfred/newbb/viewpost.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/viewpost.php 2012-07-03 06:34:57 UTC (rev 9780) +++ XoopsModules/newbb/branches/alfred/newbb/viewpost.php 2012-07-03 08:27:54 UTC (rev 9781) @@ -188,8 +188,9 @@ $users = null; } +$online = array(); + if ($xoopsModuleConfig['wol_enabled']) { - $online = array(); if (!empty($user_criteria)) { $online_handler =& xoops_getmodulehandler('online', 'newbb'); $online_handler->init($forum_id); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <txm...@us...> - 2012-07-03 06:35:03
|
Revision: 9780 http://xoops.svn.sourceforge.net/xoops/?rev=9780&view=rev Author: txmodxoops Date: 2012-07-03 06:34:57 +0000 (Tue, 03 Jul 2012) Log Message: ----------- Added italian language Added Paths: ----------- XoopsLanguages/italian/modules/boox/ XoopsLanguages/italian/modules/boox/language/ XoopsLanguages/italian/modules/boox/language/italian/ XoopsLanguages/italian/modules/boox/language/italian/admin.php XoopsLanguages/italian/modules/boox/language/italian/help/ XoopsLanguages/italian/modules/boox/language/italian/help/help.html XoopsLanguages/italian/modules/boox/language/italian/help/index.html XoopsLanguages/italian/modules/boox/language/italian/index.html XoopsLanguages/italian/modules/boox/language/italian/modinfo.php Added: XoopsLanguages/italian/modules/boox/language/italian/admin.php =================================================================== --- XoopsLanguages/italian/modules/boox/language/italian/admin.php (rev 0) +++ XoopsLanguages/italian/modules/boox/language/italian/admin.php 2012-07-03 06:34:57 UTC (rev 9780) @@ -0,0 +1,42 @@ +<?php +/** + * **************************************************************************** + * boox - MODULE FOR XOOPS + * Copyright (c) Hervé Thouzard of Instant Zero (http://www.instant-zero.com) + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Hervé Thouzard of Instant Zero (http://www.instant-zero.com) + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU Public License + * @package boox + * @author Hervé Thouzard of Instant Zero (http://www.instant-zero.com) + * + * Version : $Id: + * **************************************************************************** + */ +define("_AM_BOOX_DBUPDATED", "Il database è stato aggiornato con successo"); +define("_AM_BOOX_GENERALSET", "Opzioni del modulo"); +define("_AM_BOOX_MODULEADMIN", "Admin del modulo"); +define("_AM_BOOX_EDIT", "modificare"); +define("_AM_BOOX_DELETE", "Elimina"); +define("_AM_BOOX_ADD", "Aggiungi"); +define("_AM_BOOX_CONFIRM", "Siete sicuri ?"); +define("_AM_BOOX_FILES", "File"); +define("_AM_BOOX_FILE", "File"); +define("_AM_BOOX_FILENAME", "Nome file"); +define("_AM_BOOX_ACTION", "Azione"); +define("_AM_BOOX_COMMAND", "Comando da includere nel tuo tema"); +define("_AM_BOOX_ERROR1", "Specificare un nome di file."); +define("_AM_BOOX_ERROR2", "Errore, Impossibile salvare il file %s"); +define("_AM_BOOX_ERROR3", "Errore, Impossibile leggere il file %s"); +define("_AM_BOOX_CONTENT", "Contenuto"); +//ModuleAdmin +define("_AM_BOOX_MODULEADMIN_MISSING", "Errore: La classe ModuleAdmin manca. Si prega di installare la classe ModuleAdmin in /Frameworks (vedi /docs/readme.txt)"); +// Translation done by XTransam & admin (in...@tx...) +// XTransam 1.2 is written by Chronolabs Co-op & The XOOPS Project - File Dumped on 2012-07-03 06:02 +?> \ No newline at end of file Added: XoopsLanguages/italian/modules/boox/language/italian/help/help.html =================================================================== --- XoopsLanguages/italian/modules/boox/language/italian/help/help.html (rev 0) +++ XoopsLanguages/italian/modules/boox/language/italian/help/help.html 2012-07-03 06:34:57 UTC (rev 9780) @@ -0,0 +1,60 @@ +<div id="help-template" class="outer"> + <h1 class="head">Help: + <a class="ui-corner-all tooltip" + href="<{$xoops_url}>/modules/boox/admin/index.php" + title="Torna all'amministrazione di Boox"> Boox <img + src="<{xoAdminIcons home.png}>" + alt="Torna all'amministrazione di Boox"/> + </a></h1> + + <h4 class="odd">Descrizione</h4><br/> + + Boox (Blocchi di Xoops) è un modulo che aiuta a gestire i contenuti che non possono accedere a Xoops ma che fanno parte del tuo sito.<br/><br/> + + In genere, questo contenuto viene creato in forma di blocchi che non sono parti di un modulo Xoops e che è anche un contenuto che è, in generale, posto nel tema. + Con il modulo, è possibile creare molti "blocchi virtuali" come si vuole, essi vengono salvati in file (il modulo non fa uso di database) e hai solo bisogno di chiamarli nel tuo tema con una riga di codice.<br/><br/> + + Quindi è possibile creare un contenuto che è possibile modificare senza mettere le mani nel tema (tranne la prima volta a scrivere i comandi Includi) + Il modulo è in esecuzione con tutti i redattori può utilizzare in Xoops: Spaw, Fck editor, Htmlarea, Tinyeditor e Kiovi<br/><br/> + + Uno dei vantaggi principale di questo modulo è che si può dare al proprietario del sito la possibilità di modificare i blocchi predefiniti di XOOPS senza dare loro accesso a blocchi admin. Devi semplicemente dare loro accesso admin a Boox. Per esempio:<br/><br/> + + * Verificare se Koivi o altro editor WYSIWYG è impostato nel Boox preferenze<br/> + * Aprire Boox admin e premere 'Aggiungi'<br/> + * Immettere un nome di file, ad esempio 'homepageblock'<br/> + * Aggiungere alcuni contenuti utilizzando l'editor<br/> + * Premere 'Invia'<br/><br/> + + Questo dovrebbe scrivere un file in /uploads chiamato 'homepageblock' (è possibile modificare il percorso del file nel prefs).<br/><br/> + + XOOPS blocchi admin, incollare l'istruzione include per il file in un blocco PHP, meno i tag PHP ad esempio<br/><br/> + + include_once '/var/www/example.com/uploads/homepageblock';<br/><br/> + + + Ora il proprietario del sito può modificare il contenuto di tale blocco via admin Boox semplicemente facendo clic sul pulsante Modifica.<br/><br/> + + + <h4 class="odd">Installa/Disinstalla</h4><br/> + + Misure speciali necessarie, non seguire il processo di installazione standard â €" + estrarre la cartella /boox nella...directory /modules. Installare il modulo + via Admin -> Sistema moduli-> moduli.<br><br>Istruzioni dettagliate su come installare i moduli sono disponibili nella <a + href="http://goo.gl/adT2i">XOOPS Operations Manual</a> <br/><br/> + + + <h4 class="odd">Istruzioni per l'uso</h4><br/> + + Per impostare questo modulo che è necessario:<br><br>i) configurare le preferenze per il modulo (vedere †˜Preferences†™) e + facoltativamente il blocco del partner se si intende utilizzarlo (cfr. + †˜Blocks†™)<br><br>II) controllare che hai dato il tuo utente raggruppa il modulo necessario e + blocco i diritti di accesso per utilizzare questo modulo. Gruppo autorizzazioni vengono impostate tramite + il Menu di Amministrazione-> sistema-> gruppi.<br><br>Istruzioni dettagliate + sulla configurazione dell'accesso dei diritti per gruppi di utenti sono disponibili nella <a + href="http://goo.gl/adT2i">XOOPS Operations Manual</a><br/><br/> + + <h4 class="odd">Tutorial</h4><br/> + + Non disponibile al momento.<br /> + +</div> \ No newline at end of file Added: XoopsLanguages/italian/modules/boox/language/italian/help/index.html =================================================================== --- XoopsLanguages/italian/modules/boox/language/italian/help/index.html (rev 0) +++ XoopsLanguages/italian/modules/boox/language/italian/help/index.html 2012-07-03 06:34:57 UTC (rev 9780) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/italian/modules/boox/language/italian/index.html =================================================================== --- XoopsLanguages/italian/modules/boox/language/italian/index.html (rev 0) +++ XoopsLanguages/italian/modules/boox/language/italian/index.html 2012-07-03 06:34:57 UTC (rev 9780) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/italian/modules/boox/language/italian/modinfo.php =================================================================== --- XoopsLanguages/italian/modules/boox/language/italian/modinfo.php (rev 0) +++ XoopsLanguages/italian/modules/boox/language/italian/modinfo.php 2012-07-03 06:34:57 UTC (rev 9780) @@ -0,0 +1,37 @@ +<?php +/** + * **************************************************************************** + * boox - MODULE FOR XOOPS + * Copyright (c) Hervé Thouzard of Instant Zero (http://www.instant-zero.com) + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Hervé Thouzard of Instant Zero (http://www.instant-zero.com) + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU Public License + * @package boox + * @author Hervé Thouzard of Instant Zero (http://www.instant-zero.com) + * + * Version : $Id: + * **************************************************************************** + */ +define("_MI_BOOX_NAME", "Boox"); +define("_MI_BOOX_DESC", "Creare blocchi per Xoops"); +define("_MI_BOOX_OPT0", "Selezionare il luogo dove si desidera memorizzare i file"); +define("_MI_BOOX_OPT0_DSC", "Tutti i file creati verranno archiviati in questo luogo."); +define("_MI_BOOX_FORM_OPTIONS", "Opzione Modulo"); +define("_MI_BOOX_FORM_COMPACT", "Compattare"); +// Added in version 1.1 +define("_MI_BOOX_OPT1", "Compattare contenuto prima di salvare?"); +define("_MI_BOOX_OPT1_DSC", "Gli spazi saranno rimossi prima che il file viene salvato"); +//1.71 +define("_MI_BOOX_MENU_00", "Dashboard"); +define("_MI_BOOX_MENU_01", "Boox Manager"); +define("_MI_BOOX_ADMIN_ABOUT", "Informazioni"); +// Translation done by XTransam & admin (in...@tx...) +// XTransam 1.2 is written by Chronolabs Co-op & The XOOPS Project - File Dumped on 2012-07-03 06:02 +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <txm...@us...> - 2012-07-03 06:20:49
|
Revision: 9779 http://xoops.svn.sourceforge.net/xoops/?rev=9779&view=rev Author: txmodxoops Date: 2012-07-03 06:20:43 +0000 (Tue, 03 Jul 2012) Log Message: ----------- Updated Modified Paths: -------------- XoopsModules/moduleclasses/branches/timgno/moduleclasses/moduleadmin/language/italian/main.php Modified: XoopsModules/moduleclasses/branches/timgno/moduleclasses/moduleadmin/language/italian/main.php =================================================================== --- XoopsModules/moduleclasses/branches/timgno/moduleclasses/moduleadmin/language/italian/main.php 2012-07-03 06:19:49 UTC (rev 9778) +++ XoopsModules/moduleclasses/branches/timgno/moduleclasses/moduleadmin/language/italian/main.php 2012-07-03 06:20:43 UTC (rev 9779) @@ -33,15 +33,13 @@ define("_AM_MODULEADMIN_DASHBOARD", "Dashboard"); define("_AM_MODULEADMIN_ABOUT", "Informazioni"); define("_AM_MODULEADMIN_PERMISSIONS", "Permessi"); -define("_AM_MODULEADMIN_ABOUT_RELEASEDATE","Rilasciato: "); define("_AM_MODULEADMIN_ABOUT_AUTHOR","Autore: "); -define("_AM_MODULEADMIN_ABOUT_CREDITS","Crediti: "); define("_AM_MODULEADMIN_ABOUT_LICENSE","Licenza: "); define("_AM_MODULEADMIN_ABOUT_AUTHOR_NAME","Nome Autore: "); define("_AM_MODULEADMIN_ABOUT_AUTHOR_INFO","Info Autore"); // About -define('_AM_MODULEADMIN_ABOUT_CHANGELOG', 'Cambiamento log'); +define('_AM_MODULEADMIN_ABOUT_CHANGELOG', 'Cambiamenti Versioni'); define('_AM_MODULEADMIN_ABOUT_DESCRIPTION', 'Descrizione'); define('_AM_MODULEADMIN_ABOUT_AUTHORINFO','Informazioni Autore'); define('_AM_MODULEADMIN_ABOUT_AUTHOREMAIL','Email:'); @@ -50,6 +48,7 @@ define('_AM_MODULEADMIN_ABOUT_MODULESTATUS', 'Stato:'); define('_AM_MODULEADMIN_ABOUT_UPDATEDATE', 'Aggiornato:'); define('_AM_MODULEADMIN_ABOUT_RELEASEDATE', 'Rilasciato:'); -define('_AM_MODULEADMIN_ABOUT_WEBSITE', "Sito Web:"); +define('_AM_MODULEADMIN_ABOUT_WEBSITE', 'Sito Web:'); -?> \ No newline at end of file +//ModuleAdmin +define("_AM_MODULEADMIN_ADMIN_FOOTER", "<div class='center smallsmall italic pad5'>Questo modulo è mantenuto da <a class='tooltip' rel='external' href='http://xoops.org/' title='Visita XOOPS Community'>XOOPS Community</a></div>"); \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <txm...@us...> - 2012-07-03 06:19:55
|
Revision: 9778 http://xoops.svn.sourceforge.net/xoops/?rev=9778&view=rev Author: txmodxoops Date: 2012-07-03 06:19:49 +0000 (Tue, 03 Jul 2012) Log Message: ----------- Added italian language Added Paths: ----------- XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/ XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/index.html XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/main.php Added: XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/index.html =================================================================== --- XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/index.html (rev 0) +++ XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/index.html 2012-07-03 06:19:49 UTC (rev 9778) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/main.php =================================================================== --- XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/main.php (rev 0) +++ XoopsModules/moduleclasses/trunk/Frameworks/moduleclasses/moduleadmin/language/italian/main.php 2012-07-03 06:19:49 UTC (rev 9778) @@ -0,0 +1,54 @@ +<?php +/** + * Frameworks Module Admin + * + * You may not change or alter any portion of this comment or credits + * of supporting developers from this source code or any supporting source code + * which is considered copyrighted (c) material of the original comment or credit authors. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * @copyright Grégory Mage (Aka Mage) + * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) + * @author Grégory Mage (Aka Mage) + * @traslaction TXMod Xoops (Timgno) + */ + +// Info +define('_AM_MODULEADMIN_CONFIG', 'Controllo configurazione'); +define('_AM_MODULEADMIN_CONFIG_CHMOD', "La cartella '%s' deve essere con chmod '%s' ( ora è impostato su %s ).'"); +define('_AM_MODULEADMIN_CONFIG_FOLDERKO', "La cartella '%s' non esiste"); +define('_AM_MODULEADMIN_CONFIG_FOLDEROK', "La cartella '%s' esiste"); +define('_AM_MODULEADMIN_CONFIG_PHP', 'PHP minimo richiesto: %s (la tua versione è %s)'); +define('_AM_MODULEADMIN_CONFIG_XOOPS', 'XOOPS minimo richiesto: %s (la tua versione è %s)'); + +define('_AM_MODULEADMIN_CONFIG_DB','Versione minima richiesta: %s (la tua versione è %s)'); +define('_AM_MODULEADMIN_CONFIG_ADMIN','ModuleAdmin minimo richiesto: %s (la tua versione è %s)'); + +// Header +define('_AM_MODULEADMIN_MISSING','Errore: Non stai utilizzando il Frameworks \"admin module\". Devi installare questo Frameworks'); + +define("_AM_MODULEADMIN_HOME", "Home"); +define("_AM_MODULEADMIN_DASHBOARD", "Dashboard"); +define("_AM_MODULEADMIN_ABOUT", "Informazioni"); +define("_AM_MODULEADMIN_PERMISSIONS", "Permessi"); +define("_AM_MODULEADMIN_ABOUT_AUTHOR","Autore: "); +define("_AM_MODULEADMIN_ABOUT_LICENSE","Licenza: "); +define("_AM_MODULEADMIN_ABOUT_AUTHOR_NAME","Nome Autore: "); +define("_AM_MODULEADMIN_ABOUT_AUTHOR_INFO","Info Autore"); + +// About +define('_AM_MODULEADMIN_ABOUT_CHANGELOG', 'Cambiamenti Versioni'); +define('_AM_MODULEADMIN_ABOUT_DESCRIPTION', 'Descrizione'); +define('_AM_MODULEADMIN_ABOUT_AUTHORINFO','Informazioni Autore'); +define('_AM_MODULEADMIN_ABOUT_AUTHOREMAIL','Email:'); +define('_AM_MODULEADMIN_ABOUT_CREDITS','Crediti:'); +define('_AM_MODULEADMIN_ABOUT_MODULEINFO', 'Informazioni Modulo'); +define('_AM_MODULEADMIN_ABOUT_MODULESTATUS', 'Stato:'); +define('_AM_MODULEADMIN_ABOUT_UPDATEDATE', 'Aggiornato:'); +define('_AM_MODULEADMIN_ABOUT_RELEASEDATE', 'Rilasciato:'); +define('_AM_MODULEADMIN_ABOUT_WEBSITE', 'Sito Web:'); + +//ModuleAdmin +define("_AM_MODULEADMIN_ADMIN_FOOTER", "<div class='center smallsmall italic pad5'>Questo modulo è mantenuto da <a class='tooltip' rel='external' href='http://xoops.org/' title='Visita XOOPS Community'>XOOPS Community</a></div>"); \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |