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) |
From: <ma...@us...> - 2012-02-13 10:28:36
|
Revision: 8949 http://xoops.svn.sourceforge.net/xoops/?rev=8949&view=rev Author: mageg Date: 2012-02-13 10:28:25 +0000 (Mon, 13 Feb 2012) Log Message: ----------- Fixed bug ID: 3201929 Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.5/htdocs/install/sql/mysql.structure.sql XoopsCore/branches/2.5.x/2.5.5/upgrade/upd-2.5.4-to-2.5.5/index.php Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/install/sql/mysql.structure.sql =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/htdocs/install/sql/mysql.structure.sql 2012-02-13 03:45:49 UTC (rev 8948) +++ XoopsCore/branches/2.5.x/2.5.5/htdocs/install/sql/mysql.structure.sql 2012-02-13 10:28:25 UTC (rev 8949) @@ -34,7 +34,7 @@ CREATE TABLE banner ( bid smallint(5) unsigned NOT NULL auto_increment, cid tinyint(3) unsigned NOT NULL default '0', - imptotal mediumint(8) unsigned NOT NULL default '0', + imptotal int(10) unsigned NOT NULL default '0', impmade mediumint(8) unsigned NOT NULL default '0', clicks mediumint(8) unsigned NOT NULL default '0', imageurl varchar(255) NOT NULL default '', Modified: XoopsCore/branches/2.5.x/2.5.5/upgrade/upd-2.5.4-to-2.5.5/index.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/upgrade/upd-2.5.4-to-2.5.5/index.php 2012-02-13 03:45:49 UTC (rev 8948) +++ XoopsCore/branches/2.5.x/2.5.5/upgrade/upd-2.5.4-to-2.5.5/index.php 2012-02-13 10:28:25 UTC (rev 8949) @@ -26,7 +26,7 @@ class upgrade_255 extends xoopsUpgrade { - var $tasks = array('keys'); + var $tasks = array('keys','imptotal'); /** @@ -85,6 +85,30 @@ } return true; } + + /** + * Check imptotal + * + * @return bool + */ + function check_imptotal() + { + return false; + } + + /** + * Apply imptotal + * + * @return bool + */ + function apply_imptotal() + { + $sql = "ALTER TABLE `" . $GLOBALS['xoopsDB']->prefix("banner") . "` CHANGE `imptotal` `imptotal` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0'"; + if (!$result = $GLOBALS['xoopsDB']->queryF($sql)) { + return false; + } + return true; + } function upgrade_255() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-13 03:45:55
|
Revision: 8948 http://xoops.svn.sourceforge.net/xoops/?rev=8948&view=rev Author: djculex Date: 2012-02-13 03:45:49 +0000 (Mon, 13 Feb 2012) Log Message: ----------- function sanitize missing in functions.php ?? Modified Paths: -------------- XoopsModules/xim/releases/1.02/modules/xim/include/functions.php XoopsModules/xim/trunk/modules/xim/include/functions.php Modified: XoopsModules/xim/releases/1.02/modules/xim/include/functions.php =================================================================== --- XoopsModules/xim/releases/1.02/modules/xim/include/functions.php 2012-02-13 03:32:51 UTC (rev 8947) +++ XoopsModules/xim/releases/1.02/modules/xim/include/functions.php 2012-02-13 03:45:49 UTC (rev 8948) @@ -124,4 +124,15 @@ return $retval; } + function xim_sanitize($text) + { + $text = htmlspecialchars($text, ENT_QUOTES); + $myts = MyTextSanitizer::getInstance(); + $text = $myts->displayTarea($text, 1, 1, 1, 1); + $text = str_replace("\n\r", "\n", $text); + $text = str_replace("\r\n", "\n", $text); + $text = str_replace("\n", "<br />", $text); + $text = str_replace("\"", "'", $text); + return $text; + } ?> \ No newline at end of file Modified: XoopsModules/xim/trunk/modules/xim/include/functions.php =================================================================== --- XoopsModules/xim/trunk/modules/xim/include/functions.php 2012-02-13 03:32:51 UTC (rev 8947) +++ XoopsModules/xim/trunk/modules/xim/include/functions.php 2012-02-13 03:45:49 UTC (rev 8948) @@ -124,4 +124,16 @@ return $retval; } + function xim_sanitize($text) + { + $text = htmlspecialchars($text, ENT_QUOTES); + $myts = MyTextSanitizer::getInstance(); + $text = $myts->displayTarea($text, 1, 1, 1, 1); + $text = str_replace("\n\r", "\n", $text); + $text = str_replace("\r\n", "\n", $text); + $text = str_replace("\n", "<br />", $text); + $text = str_replace("\"", "'", $text); + return $text; + } + ?> \ 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: <dj...@us...> - 2012-02-13 03:32:58
|
Revision: 8947 http://xoops.svn.sourceforge.net/xoops/?rev=8947&view=rev Author: djculex Date: 2012-02-13 03:32:51 +0000 (Mon, 13 Feb 2012) Log Message: ----------- - Bugfix: Json returns empty array if users online = 0 Modified Paths: -------------- XoopsModules/xim/releases/1.02/modules/xim/ajax_userlist.php XoopsModules/xim/trunk/modules/xim/ajax_userlist.php Modified: XoopsModules/xim/releases/1.02/modules/xim/ajax_userlist.php =================================================================== --- XoopsModules/xim/releases/1.02/modules/xim/ajax_userlist.php 2012-02-13 02:12:36 UTC (rev 8946) +++ XoopsModules/xim/releases/1.02/modules/xim/ajax_userlist.php 2012-02-13 03:32:51 UTC (rev 8947) @@ -38,8 +38,8 @@ if (is_object($xoopsUser)) { $uid = $xoopsUser->getVar('uid'); $uname = $xoopsUser->getVar('uname'); - $_SESSION['username'] = $uname; - xim_setPersonalConfig (); // Function to create/check personal config (culex) + $_SESSION['username'] = $uname; + xim_setPersonalConfig (); // Function to create/check personal config (culex) } else { $uid = 0; $uname = ''; @@ -54,41 +54,44 @@ $userlist=''; if (false != $onlines) { $total = count($onlines); - $count = 0; + $count = 0; for ($i = 0; $i < $total; $i++) { - if (($onlines[$i]['online_uid'] > 0) && ($onlines[$i]['online_uid']!=$uid)) { - $count++; - $user = new XoopsUser($onlines[$i]['online_uid']); - $avatar =$user->user_avatar(); - if ($avatar!='blank.gif') { - $avatarURL = XOOPS_URL."/uploads/".$avatar; - } else { - $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; - } - - // testing if avatar really exists physically on server - if (file_exists("../../uploads/".$avatar)) { - } else { - $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; - } - - - $config = im_Getconfig($onlines[$i]['online_uname']); - $status = $config['status']; - $userid=$onlines[$i]['online_uid']; - $username = $onlines[$i]['online_uname']; - if ($status == 3) {$count = $count -1;} - if ($status!=3){ - $userlist .= <<<EOD -{"id":"$userid","n":"$username","a":"$avatarURL","status":$status}, -EOD; - } - } + if (($onlines[$i]['online_uid'] > 0) && ($onlines[$i]['online_uid']!=$uid)) { + $count++; + $user = new XoopsUser($onlines[$i]['online_uid']); + $avatar =$user->user_avatar(); + if ($avatar!='blank.gif') { + $avatarURL = XOOPS_URL."/uploads/".$avatar; + } else { + $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; + } + + // testing if avatar really exists physically on server + if (file_exists("../../uploads/".$avatar)) { + } else { + $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; + } + + + $config = im_Getconfig($onlines[$i]['online_uname']); + $status = $config['status']; + $userid=$onlines[$i]['online_uid']; + $username = $onlines[$i]['online_uname']; + if ($status == 3) { + $count = $count - 1; + } + if ($status != 3) { + $userlist .= '{"id":"'.$userid.'","n":"'.$username.'","a":"'.$avatarURL.'","status":'.$status.'},'; + } + } } -$userlist = substr($userlist, 0, -1); - } - header('Content-type: application/json'); - echo "{\"total\":$count, \"users\":[$userlist]}"; + $userlist = substr($userlist, 0, -1); + header('Content-type: application/json'); + echo "{\"total\":$count, \"users\":[$userlist]}"; + } else { + header('Content-type: application/json'); + echo "{\"total\":\"0\", \"users\":\"\"}"; + } ?> \ No newline at end of file Modified: XoopsModules/xim/trunk/modules/xim/ajax_userlist.php =================================================================== --- XoopsModules/xim/trunk/modules/xim/ajax_userlist.php 2012-02-13 02:12:36 UTC (rev 8946) +++ XoopsModules/xim/trunk/modules/xim/ajax_userlist.php 2012-02-13 03:32:51 UTC (rev 8947) @@ -38,8 +38,8 @@ if (is_object($xoopsUser)) { $uid = $xoopsUser->getVar('uid'); $uname = $xoopsUser->getVar('uname'); - $_SESSION['username'] = $uname; - xim_setPersonalConfig (); // Function to create/check personal config (culex) + $_SESSION['username'] = $uname; + xim_setPersonalConfig (); // Function to create/check personal config (culex) } else { $uid = 0; $uname = ''; @@ -54,41 +54,44 @@ $userlist=''; if (false != $onlines) { $total = count($onlines); - $count = 0; + $count = 0; for ($i = 0; $i < $total; $i++) { - if (($onlines[$i]['online_uid'] > 0) && ($onlines[$i]['online_uid']!=$uid)) { - $count++; - $user = new XoopsUser($onlines[$i]['online_uid']); - $avatar =$user->user_avatar(); - if ($avatar!='blank.gif') { - $avatarURL = XOOPS_URL."/uploads/".$avatar; - } else { - $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; - } - - // testing if avatar really exists physically on server - if (file_exists("../../uploads/".$avatar)) { - } else { - $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; - } - - - $config = im_Getconfig($onlines[$i]['online_uname']); - $status = $config['status']; - $userid=$onlines[$i]['online_uid']; - $username = $onlines[$i]['online_uname']; - if ($status == 3) {$count = $count -1;} - if ($status!=3){ - $userlist .= <<<EOD -{"id":"$userid","n":"$username","a":"$avatarURL","status":$status}, -EOD; - } - } + if (($onlines[$i]['online_uid'] > 0) && ($onlines[$i]['online_uid']!=$uid)) { + $count++; + $user = new XoopsUser($onlines[$i]['online_uid']); + $avatar =$user->user_avatar(); + if ($avatar!='blank.gif') { + $avatarURL = XOOPS_URL."/uploads/".$avatar; + } else { + $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; + } + + // testing if avatar really exists physically on server + if (file_exists("../../uploads/".$avatar)) { + } else { + $avatarURL = XOOPS_URL."/modules/xim/images/default_avatar.png"; + } + + + $config = im_Getconfig($onlines[$i]['online_uname']); + $status = $config['status']; + $userid=$onlines[$i]['online_uid']; + $username = $onlines[$i]['online_uname']; + if ($status == 3) { + $count = $count - 1; + } + if ($status != 3) { + $userlist .= '{"id":"'.$userid.'","n":"'.$username.'","a":"'.$avatarURL.'","status":'.$status.'},'; + } + } } -$userlist = substr($userlist, 0, -1); - } - header('Content-type: application/json'); - echo "{\"total\":$count, \"users\":[$userlist]}"; + $userlist = substr($userlist, 0, -1); + header('Content-type: application/json'); + echo "{\"total\":$count, \"users\":[$userlist]}"; + } else { + header('Content-type: application/json'); + echo "{\"total\":\"0\", \"users\":\"\"}"; + } ?> \ 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: <dj...@us...> - 2012-02-13 02:12:42
|
Revision: 8946 http://xoops.svn.sourceforge.net/xoops/?rev=8946&view=rev Author: djculex Date: 2012-02-13 02:12:36 +0000 (Mon, 13 Feb 2012) Log Message: ----------- Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-13 02:11:21 UTC (rev 8945) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-13 02:12:36 UTC (rev 8946) @@ -21,6 +21,7 @@ 13. February - Bugfix: Removed php 5.30 function to convert dateformat and replaced with simpler function - Change: Removed php 5.30 function to calculate difference between dates in Years. +- change: Smallworld decreased min-php to >= 5.20 ------------------------------ Changelog v.1.10 RC This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-13 02:11:28
|
Revision: 8945 http://xoops.svn.sourceforge.net/xoops/?rev=8945&view=rev Author: djculex Date: 2012-02-13 02:11:21 +0000 (Mon, 13 Feb 2012) Log Message: ----------- Change: Smallworld lowered min-php version to >= 5.20 Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/xoops_version.php Modified: XoopsModules/smallworld/trunk/smallworld/xoops_version.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-13 02:08:50 UTC (rev 8944) +++ XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-13 02:11:21 UTC (rev 8945) @@ -33,7 +33,7 @@ $modversion['module_status'] = 'Release Candidate'; $modversion['release_date'] = '2011/12/24'; $modversion['help'] = 'page=help'; -$modversion['min_php'] = '5.3'; +$modversion['min_php'] = '5.2'; $modversion['min_xoops'] = '2.5'; $modversion['min_admin'] = '1.1'; $modversion['min_db'] = array('mysql' => '5.0.7', 'mysqli' => '5.0.7'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-13 02:08:58
|
Revision: 8944 http://xoops.svn.sourceforge.net/xoops/?rev=8944&view=rev Author: djculex Date: 2012-02-13 02:08:50 +0000 (Mon, 13 Feb 2012) Log Message: ----------- Change: Removed php 5.30 function to calculate difference between dates in Years. Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt XoopsModules/smallworld/trunk/smallworld/include/functions.php Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-13 01:09:36 UTC (rev 8943) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-13 02:08:50 UTC (rev 8944) @@ -20,6 +20,7 @@ 13. February - Bugfix: Removed php 5.30 function to convert dateformat and replaced with simpler function +- Change: Removed php 5.30 function to calculate difference between dates in Years. ------------------------------ Changelog v.1.10 RC Modified: XoopsModules/smallworld/trunk/smallworld/include/functions.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-13 01:09:36 UTC (rev 8943) +++ XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-13 02:08:50 UTC (rev 8944) @@ -7,345 +7,371 @@ * 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: http://www.fsf.org/copyleft/gpl.html GNU public license -* @module: Smallworld -* @Author: Michael Albertsen (http://culex.dk) <cu...@cu...> -* @copyright: 2011 Culex -* @Repository path: $HeadURL$ -* @Last committed: $Revision$ -* @Last changed by: $Author$ -* @Last changed date: $Date$ -* @ID: $Id$ +* @copyright: The XOOPS Project http://sourceforge.net/projects/xoops/ +* @license: http://www.fsf.org/copyleft/gpl.html GNU public license +* @module: Smallworld +* @Author: Michael Albertsen (http://culex.dk) <cu...@cu...> +* @copyright: 2011 Culex +* @Repository path: $HeadURL$ +* @Last committed: $Revision$ +* @Last changed by: $Author$ +* @Last changed date: $Date$ +* @ID: $Id$ **/ /* Get array of timestamps based on the timetype configured in preferences */ -function SmallworldGetTimestampsToForm () { - $timearray = array(); - $start = 1900; - $end = date('Y'); - for ( $i=$start; $i <= $end; $i++) { - $key = $i; - $timearray[$key] = $i; - } - ksort($timearray); - return $timearray; +function SmallworldGetTimestampsToForm() +{ + $timearray = array(); + $start = 1900; + $end = date('Y'); + for ($i = $start; $i <= $end; $i++) { + $key = $i; + $timearray[$key] = $i; + } + ksort($timearray); + return $timearray; } // Clean vars or arrays // If array check for magicQuotes. // Pass string to Smallworld_cleanup_string -function Smallworld_cleanup($text) { - if (is_array($text)) { - foreach ($text as $key => $value) { - $text[$key] = Smallworld_cleanup_string($value); - } - } else { - $text = Smallworld_cleanup_string($text); - } - return $text; +function Smallworld_cleanup($text) +{ + if (is_array($text)) { + foreach ($text as $key => $value) { + $text[$key] = Smallworld_cleanup_string($value); + } + } else { + $text = Smallworld_cleanup_string($text); + } + return $text; } // Sanitize string -function Smallworld_cleanup_string($text) { +function Smallworld_cleanup_string($text) +{ $text = htmlspecialchars($text, ENT_QUOTES); $myts = MyTextSanitizer::getInstance(); - $text = $myts->displayTarea($text,1,1,1,1); - $text = str_replace("\n\r","\n",$text); - $text = str_replace("\r\n","\n",$text); - $text = str_replace("\n","<br />",$text); - $text = str_replace("\"","'",$text); + $text = $myts->displayTarea($text, 1, 1, 1, 1); + $text = str_replace("\n\r", "\n", $text); + $text = str_replace("\r\n", "\n", $text); + $text = str_replace("\n", "<br />", $text); + $text = str_replace("\"", "'", $text); return $text; } // clean Array for mysql insertion // or send string to Smallworld_sanitize_string -function Smallworld_sanitize ($text) { - if (is_array($text)) { - foreach ($text as $key => $value) { - $text[$key] = Smallworld_sanitize_string($value); - } - } else { - $text = Smallworld_sanitize_string($text); - } - return $text; +function Smallworld_sanitize($text) +{ + if (is_array($text)) { + foreach ($text as $key => $value) { + $text[$key] = Smallworld_sanitize_string($value); + } + } else { + $text = Smallworld_sanitize_string($text); + } + return $text; } -function Smallworld_sanitize_string ($value) { - $myts = MyTextSanitizer::getInstance(); - if(get_magic_quotes_gpc()){ - $value = $myts->stripSlashesGPC($value); - } else { - $value = mysql_real_escape_string($value); - } - return $value; +function Smallworld_sanitize_string($value) +{ + $myts = MyTextSanitizer::getInstance(); + if(get_magic_quotes_gpc()){ + $value = $myts->stripSlashesGPC($value); + } else { + $value = mysql_real_escape_string($value); + } + return $value; } -function Smallworld_DateOfArray ($array) { - $data = array(); - foreach ($array as $k => $v) { - $data[$k] = strtotime($v); - } - return $data; +function Smallworld_DateOfArray($array) +{ + $data = array(); + foreach ($array as $k => $v) { + $data[$k] = strtotime($v); + } + return $data; } -function Smallworld_YearOfArray ($array) { - $data = array(); - foreach ($array as $k => $v) { - $data[$k] = $v; - } - return $data; +function Smallworld_YearOfArray($array) +{ + $data = array(); + foreach ($array as $k => $v) { + $data[$k] = $v; + } + return $data; } -function Smallworld_CreateIndexFiles ($folderUrl) { - $myts =& MyTextSanitizer::getInstance(); - file_put_contents($folderUrl.'index.html', "<script>history.go(-1);</script>"); +function Smallworld_CreateIndexFiles($folderUrl) +{ + $myts =& MyTextSanitizer::getInstance(); + file_put_contents($folderUrl . 'index.html', "<script>history.go(-1);</script>"); } -function smallworld_ImplodeArray ($glue = ", ", $pieces) { +function smallworld_ImplodeArray($glue = ", ", $pieces) +{ return implode($glue, $pieces); } // recursively reduces deep arrays to single-dimensional arrays // $preserve_keys: (0=>never, 1=>strings, 2=>always) -function Smallworld_array_flatten($array, $preserve_keys = 1, &$newArray = Array()) { - foreach ($array as $key => $child) { - if (is_array($child)) { - $newArray =& Smallworld_array_flatten($child, $preserve_keys, $newArray); - } elseif ($preserve_keys + is_string($key) > 1) { - $newArray[$key] = $child; - } else { - $newArray[] = $child; +function Smallworld_array_flatten($array, $preserve_keys = 1, &$newArray = Array()) +{ + foreach ($array as $key => $child) { + if (is_array($child)) { + $newArray =& Smallworld_array_flatten($child, $preserve_keys, $newArray); + } elseif ($preserve_keys + is_string($key) > 1) { + $newArray[$key] = $child; + } else { + $newArray[] = $child; + } } - } - return $newArray; + return $newArray; } -// Returns age in years -// Input birthdate -// Requires php >= 5.3 -function Smallworld_Birthday($birth, $now = NULL){ - $now = new DateTime($now); - $birth = new DateTime($birth); - return $birth->diff($now)->format('%r%y'); +/* + * Calculate years from date format (YYYY-MM-DD) + * @param date $birth + * @returns integer + */ +function Smallworld_Birthday($birth) +{ + list($year, $month, $day) = explode("-", $birth); + $yearDiff = date("Y") - $year; + $monthDiff = date("m") - $month; + $dayDiff = date("d") - $day; + if ($dayDiff < 0 || $monthDiff < 0) { + $yearDiff--; + } + return $yearDiff; } -function smallworld_isset_or($check) { +function smallworld_isset_or($check) +{ global $xoopsDB,$xoopsUser; - $query = "SELECT * FROM ".$xoopsDB->prefix('smallworld_user')." WHERE username = '".$check."'"; - $result=$xoopsDB->queryF($query); - while ($row=$xoopsDB->fetchArray($result)) { - if ($row['userid'] == '') { - return false; - } else { - return $row['userid']; - } - } + $query = "SELECT * FROM ".$xoopsDB->prefix('smallworld_user')." WHERE username = '".$check."'"; + $result=$xoopsDB->queryF($query); + while ($row=$xoopsDB->fetchArray($result)) { + if ($row['userid'] == '') { + return false; + } else { + return $row['userid']; + } + } } //Srinivas Tamada http://9lessons.info //Loading Comments link with load_updates.php -function smallworld_time_stamp($session_time) { - global $xoopsConfig; - - $time_difference = time() - $session_time ; - $seconds = $time_difference ; - $minutes = round($time_difference / 60 ); - $hours = round($time_difference / 3600 ); - $days = round($time_difference / 86400 ); - $weeks = round($time_difference / 604800 ); - $months = round($time_difference / 2419200 ); - $years = round($time_difference / 29030400 ); - - if($seconds <= 60) { - $t = "$seconds"._SMALLWORLD_SECONDSAGO; - } else if($minutes <=60) { - if($minutes==1) { - $t = _SMALLWORLD_ONEMINUTEAGO; - } - else { - $t = "$minutes"._SMALLWORLD_MINUTESAGO; - } - } else if($hours <=24) { - if($hours==1) { - $t = _SMALLWORLD_ONEHOURAGO; - } else { - $t = "$hours"._SMALLWORLD_HOURSAGO; - } - } else if($days <=7) { - if($days==1){ - $t = _SMALLWORLD_ONEDAYAGO; - } else { - $t = "$days"._SMALLWORLD_DAYSAGO; - } - } else if($weeks <=4) { - if($weeks==1) { - $t = _SMALLWORLD_ONEWEEKAGO; - } else { - $t = "$weeks"._SMALLWORLD_WEEKSAGO; - } - } else if($months <=12) { - if($months==1) { - $t = _SMALLWORLD_ONEMONTHAGO; - } else { - $t = "$months"._SMALLWORLD_MONTHSAGO; - } - } else { - if($years==1) { - $t = _SMALLWORLD_ONEYEARAGO; - } else { - $t = "$years"._SMALLWORLD_YEARSAGO; - } - } - return $t; +function smallworld_time_stamp($session_time) +{ + global $xoopsConfig; + $time_difference = time() - $session_time; + $seconds = $time_difference; + $minutes = round($time_difference / 60); + $hours = round($time_difference / 3600); + $days = round($time_difference / 86400); + $weeks = round($time_difference / 604800); + $months = round($time_difference / 2419200); + $years = round($time_difference / 29030400); + if($seconds <= 60) { + $t = "$seconds"._SMALLWORLD_SECONDSAGO; + } else if($minutes <= 60) { + if($minutes == 1) { + $t = _SMALLWORLD_ONEMINUTEAGO; + } else { + $t = "$minutes"._SMALLWORLD_MINUTESAGO; + } + } else if($hours <= 24) { + if($hours == 1) { + $t = _SMALLWORLD_ONEHOURAGO; + } else { + $t = "$hours"._SMALLWORLD_HOURSAGO; + } + } else if($days <= 7 ) { + if($days == 1){ + $t = _SMALLWORLD_ONEDAYAGO; + } else { + $t = "$days"._SMALLWORLD_DAYSAGO; + } + } else if($weeks <=4) { + if($weeks==1) { + $t = _SMALLWORLD_ONEWEEKAGO; + } else { + $t = "$weeks"._SMALLWORLD_WEEKSAGO; + } + } else if($months <= 12) { + if($months == 1) { + $t = _SMALLWORLD_ONEMONTHAGO; + } else { + $t = "$months"._SMALLWORLD_MONTHSAGO; + } + } else { + if($years == 1) { + $t = _SMALLWORLD_ONEYEARAGO; + } else { + $t = "$years"._SMALLWORLD_YEARSAGO; + } + } + return $t; } // Return only url/link // If url is image link return <img> -function smallworld_tolink($text){ - $ext = substr($text,-4,4); - $ext2 = substr($text,-5,5); - if (in_array($ext,array('.jpg','.bmp','.gif','.png')) || in_array($ext2,array('.jpeg'))){ - $text = preg_replace('/(((f|ht){1}tp:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', - '<img class="smallworldAttImg" src="\\1"><a class="smallworldAttImgTxt" href="\\1">'._SMALLWORLD_CLICKIMAGETHUMB.' </a><br>', $text); - $text = preg_replace('/(((f|ht){1}tps:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', - '<a href="\\1">lala</a>', $text); - $text = preg_replace('/([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', - '\\1<img class="smallworldAttImg" src="//\\2"><a class="smallworldAttImgTxt" href="//\\2">'._SMALLWORLD_CLICKIMAGETHUMB.'</a><br>', $text); - } else { - $text = html_entity_decode($text); - $text = " ".$text; - $text = preg_replace('/(((f|ht){1}tp:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', - '<a href="\\1">\\1</a>', $text); - $text = preg_replace('/(((f|ht){1}tps:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', - '<a href="\\1">\\1</a>', $text); - $text = preg_replace('/([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', - '\\1<a href="http://\\2">\\2</a>', $text); - $text = preg_replace('/([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})/i', - '<a href="mailto:\\1">\\1</a>', $text); - $myts = MyTextSanitizer::getInstance(); - $text = $myts->displayTarea($text,1,1,1,1); - } - - return $text; +function smallworld_tolink($text) +{ + $ext = substr($text,-4,4); + $ext2 = substr($text,-5,5); + if (in_array($ext,array('.jpg','.bmp','.gif','.png')) || in_array($ext2,array('.jpeg'))){ + $text = preg_replace('/(((f|ht){1}tp:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', + '<img class="smallworldAttImg" src="\\1"><a class="smallworldAttImgTxt" href="\\1">'._SMALLWORLD_CLICKIMAGETHUMB.' </a><br>', $text); + $text = preg_replace('/(((f|ht){1}tps:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', + '<a href="\\1">lala</a>', $text); + $text = preg_replace('/([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', + '\\1<img class="smallworldAttImg" src="//\\2"><a class="smallworldAttImgTxt" href="//\\2">'._SMALLWORLD_CLICKIMAGETHUMB.'</a><br>', $text); + } else { + $text = html_entity_decode($text); + $text = " " . $text; + $text = preg_replace('/(((f|ht){1}tp:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', + '<a href="\\1">\\1</a>', $text); + $text = preg_replace('/(((f|ht){1}tps:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', + '<a href="\\1">\\1</a>', $text); + $text = preg_replace('/([[:space:]()[{}])(www.[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', + '\\1<a href="http://\\2">\\2</a>', $text); + $text = preg_replace('/([_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3})/i', + '<a href="mailto:\\1">\\1</a>', $text); + $myts = MyTextSanitizer::getInstance(); + $text = $myts->displayTarea($text, 1, 1, 1, 1); + } + return $text; } -function Smallworld_stripWordsKeepUrl ($text) { - preg_replace('/(((f|ht){1}tps:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', +function Smallworld_stripWordsKeepUrl($text) +{ + preg_replace('/(((f|ht){1}tps:\/\/)[-a-zA-Z0-9@:%_\+.~#?&\/\/=]+)/i', '<div class=".embed"><a href="\\1">\\1</a></div>', $text); - return $text; + return $text; } -function Smallworld_sociallinks ($num, $name) { - if ($num == 0) { - $image = '<img title="Msn" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/msn.png"/>'; - $link = '<a title="Msn" id="Smallworld_socialnetwork" target="_blank" href="http://members.msn.com/'.$name.'">'; - } - if ($num == 1) { - $image = '<img title="facebook" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/facebook.png"/>'; - $link = '<a title="facebook" id="Smallworld_socialnetwork" target="_blank" href="http://www.facebook.com/'.$name.'">'; - } - if ($num == 2) { - $image = '<img title="GooglePlus" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/googleplus.png"/>'; - $link = '<a title="GooglePlus" id="Smallworld_socialnetwork" target="_blank" href="https://plus.google.com/'.$name.'">'; - } - if ($num == 3) { - $image = '<img title="Icq" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/icq.png"/>'; - $link = '<a title="icq" id="Smallworld_socialnetwork" target="_blank" href="http://www.icq.com/people/'.$name.'/">'; - } - if ($num == 4) { - $image = '<img title="Skype" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/skype.png"/>'; - $link = '<a title="Skype" id="Smallworld_socialnetwork" target="_blank" href="skype:'.$name.'?userinfo">'; - } - if ($num == 5) { - $image = '<img title="Twitter" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/twitter.png"/>'; - $link = '<a title="Twitter" id="Smallworld_socialnetwork" target="_blank" href="http://twitter.com/#!/'.$name.'">'; - } - if ($num == 6) { - $image = '<img title="MySpace" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/myspace.png"/>'; - $link = '<a title="MySpace" id="Smallworld_socialnetwork" target="_blank" href="http://www.myspace.com/'.$name.'">'; - } - if ($num == 7) { - $image = '<img title="Xoops" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/xoops.png"/>'; - $link = '<a title="Xoops" id="Smallworld_socialnetwork" target="_blank" href="http://xoops.org/modules/profile/userinfo.php?uid='.$name.'">'; - } - if ($num == 8) { - $image = '<img title="Yahoo Messenger" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/yahoo.png"/>'; - $link = '<a title="Yahoo Messenger" id="Smallworld_socialnetwork" target="_blank" href="ymsgr:sendim?'.$name.'">'; - } - if ($num == 9) { - $image = '<img title="Youtube" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/youtube.png"/>'; - $link = '<a title="Youtube" id="Smallworld_socialnetwork" target="_blank" href="http://www.youtube.com/user/'.$name.'">'; - } - return $image.$link; +function Smallworld_sociallinks($num, $name) +{ + if ($num == 0) { + $image = '<img title="Msn" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/msn.png"/>'; + $link = '<a title="Msn" id="Smallworld_socialnetwork" target="_blank" href="http://members.msn.com/'.$name.'">'; + } + if ($num == 1) { + $image = '<img title="facebook" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/facebook.png"/>'; + $link = '<a title="facebook" id="Smallworld_socialnetwork" target="_blank" href="http://www.facebook.com/'.$name.'">'; + } + if ($num == 2) { + $image = '<img title="GooglePlus" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/googleplus.png"/>'; + $link = '<a title="GooglePlus" id="Smallworld_socialnetwork" target="_blank" href="https://plus.google.com/'.$name.'">'; + } + if ($num == 3) { + $image = '<img title="Icq" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/icq.png"/>'; + $link = '<a title="icq" id="Smallworld_socialnetwork" target="_blank" href="http://www.icq.com/people/'.$name.'/">'; + } + if ($num == 4) { + $image = '<img title="Skype" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/skype.png"/>'; + $link = '<a title="Skype" id="Smallworld_socialnetwork" target="_blank" href="skype:'.$name.'?userinfo">'; + } + if ($num == 5) { + $image = '<img title="Twitter" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/twitter.png"/>'; + $link = '<a title="Twitter" id="Smallworld_socialnetwork" target="_blank" href="http://twitter.com/#!/'.$name.'">'; + } + if ($num == 6) { + $image = '<img title="MySpace" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/myspace.png"/>'; + $link = '<a title="MySpace" id="Smallworld_socialnetwork" target="_blank" href="http://www.myspace.com/'.$name.'">'; + } + if ($num == 7) { + $image = '<img title="Xoops" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/xoops.png"/>'; + $link = '<a title="Xoops" id="Smallworld_socialnetwork" target="_blank" href="http://xoops.org/modules/profile/userinfo.php?uid='.$name.'">'; + } + if ($num == 8) { + $image = '<img title="Yahoo Messenger" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/yahoo.png"/>'; + $link = '<a title="Yahoo Messenger" id="Smallworld_socialnetwork" target="_blank" href="ymsgr:sendim?'.$name.'">'; + } + if ($num == 9) { + $image = '<img title="Youtube" id="Smallworld_socialnetworkimg" src="'.XOOPS_URL.'/modules/smallworld/images/socialnetworkicons/youtube.png"/>'; + $link = '<a title="Youtube" id="Smallworld_socialnetwork" target="_blank" href="http://www.youtube.com/user/'.$name.'">'; + } + return $image.$link; } -function smallworld_GetModuleOption($option, $repmodule='smallworld') { - global $xoopsModuleConfig, $xoopsModule; - static $tbloptions= Array(); - if(is_array($tbloptions) && array_key_exists($option,$tbloptions)) { - return $tbloptions[$option]; - } - - $retval = false; - if (isset($xoopsModuleConfig) && (is_object($xoopsModule) && $xoopsModule->getVar('dirname') == $repmodule && $xoopsModule->getVar('isactive'))) { - if(isset($xoopsModuleConfig[$option])) { - $retval= $xoopsModuleConfig[$option]; - } - } else { - $module_handler =& xoops_gethandler('module'); - $module =& $module_handler->getByDirname($repmodule); - $config_handler =& xoops_gethandler('config'); - if ($module) { - $moduleConfig =& $config_handler->getConfigsByCat(0, $module->getVar('mid')); - if(isset($moduleConfig[$option])) { - $retval= $moduleConfig[$option]; - } - } - } - $tbloptions[$option]=$retval; - return $retval; +function smallworld_GetModuleOption($option, $repmodule='smallworld') +{ + global $xoopsModuleConfig, $xoopsModule; + static $tbloptions = Array(); + if(is_array($tbloptions) && array_key_exists($option,$tbloptions)) { + return $tbloptions[$option]; + } + $retval = false; + if (isset($xoopsModuleConfig) + && (is_object($xoopsModule) + && $xoopsModule->getVar('dirname') == $repmodule + && $xoopsModule->getVar('isactive')) + ) + { + if(isset($xoopsModuleConfig[$option])) { + $retval= $xoopsModuleConfig[$option]; + } + } else { + $module_handler =& xoops_gethandler('module'); + $module =& $module_handler->getByDirname($repmodule); + $config_handler =& xoops_gethandler('config'); + if ($module) { + $moduleConfig =& $config_handler->getConfigsByCat(0, $module->getVar('mid')); + if(isset($moduleConfig[$option])) { + $retval= $moduleConfig[$option]; + } + } + } + $tbloptions[$option]=$retval; + return $retval; } -function smallworld_getAvatarLink ($userid, $image) { - global $xoopsUser, $xoopsDB; - $sql = "SELECT gender FROM ".$xoopsDB->prefix('smallworld_user')." WHERE userid = '".intval($userid)."'"; - $result = $xoopsDB->queryf($sql); - while ($row = $xoopsDB->fetchArray($result)) { - $gender = $row['gender']; - } - $link = XOOPS_UPLOAD_URL."/".$image; - if ($image == 'blank.gif' or $image=='Not specifiyed' AND $gender == '1') { - $link = XOOPS_URL."/modules/smallworld/images/ano_woman.png"; - } - if ($image == 'blank.gif' or $image=='Not specifiyed' AND $gender == '2') { - $link = XOOPS_URL."/modules/smallworld/images/ano_man.png"; - } - if ($image == '' or $image=='Not specifiyed' AND $gender == '1') { - $link = XOOPS_URL."/modules/smallworld/images/ano_woman.png"; - } - if ($image == '' or $image=='Not specifiyed' AND $gender == '2') { - $link = XOOPS_URL."/modules/smallworld/images/ano_man.png"; - } - if ($image == 'blank.gif' or $image=='Not specifiyed' AND $gender == '') { - $link = XOOPS_URL."/modules/smallworld/images/genderless.png"; - } - if ($image == '' or $image=='Not specifiyed' AND $gender == '') { - $link = XOOPS_URL."/modules/smallworld/images/genderless.png"; - } - return $link; +function smallworld_getAvatarLink($userid, $image) +{ + global $xoopsUser, $xoopsDB; + $sql = "SELECT gender FROM ".$xoopsDB->prefix('smallworld_user')." WHERE userid = '".intval($userid)."'"; + $result = $xoopsDB->queryf($sql); + while ($row = $xoopsDB->fetchArray($result)) { + $gender = $row['gender']; + } + $link = XOOPS_UPLOAD_URL."/".$image; + if ($image == 'blank.gif' or $image=='Not specifiyed' AND $gender == '1') { + $link = XOOPS_URL."/modules/smallworld/images/ano_woman.png"; + } + if ($image == 'blank.gif' or $image=='Not specifiyed' AND $gender == '2') { + $link = XOOPS_URL."/modules/smallworld/images/ano_man.png"; + } + if ($image == '' or $image=='Not specifiyed' AND $gender == '1') { + $link = XOOPS_URL."/modules/smallworld/images/ano_woman.png"; + } + if ($image == '' or $image=='Not specifiyed' AND $gender == '2') { + $link = XOOPS_URL."/modules/smallworld/images/ano_man.png"; + } + if ($image == 'blank.gif' or $image=='Not specifiyed' AND $gender == '') { + $link = XOOPS_URL."/modules/smallworld/images/genderless.png"; + } + if ($image == '' or $image=='Not specifiyed' AND $gender == '') { + $link = XOOPS_URL."/modules/smallworld/images/genderless.png"; + } + return $link; } -function smallworld_checkForXim () { - $filename = XOOPS_ROOT_PATH."/modules/xim/chat.php"; - if (file_exists($filename)) { - return true; - } else { - return false; - } +function smallworld_checkForXim() +{ + $filename = XOOPS_ROOT_PATH."/modules/xim/chat.php"; + if (file_exists($filename)) { + return true; + } else { + return false; + } } /* @@ -353,246 +379,255 @@ * Return owner of thread (original poster) * Return Integer */ -function Smallworld_getOwnerFromComment ($msg_id_fk) { - global $xoopsDB; - $sql = "Select uid_fk from ".$xoopsDB->prefix('smallworld_messages')." where msg_id = '".$msg_id_fk."'"; - $result = $xoopsDB->queryF($sql); - while ($r = $xoopsDB->fetchArray($result)) { - $owner = $r['uid_fk']; - } - return $owner; +function Smallworld_getOwnerFromComment($msg_id_fk) +{ + global $xoopsDB; + $sql = "Select uid_fk from ".$xoopsDB->prefix('smallworld_messages')." where msg_id = '".$msg_id_fk."'"; + $result = $xoopsDB->queryF($sql); + while ($r = $xoopsDB->fetchArray($result)) { + $owner = $r['uid_fk']; + } + return $owner; } // Get username from userID -function Smallworld_getName($userID){ - global $xoopsUser, $xoopsDB; - $sql = "SELECT username FROM ".$xoopsDB->prefix('smallworld_user')." WHERE userid = '".intval($userID)."'"; - $result = $xoopsDB->queryf($sql); - while ($row = $xoopsDB->fetchArray($result)) { - $name = $row['username']; - } - return $name; +function Smallworld_getName($userID) +{ + global $xoopsUser, $xoopsDB; + $sql = "SELECT username FROM ".$xoopsDB->prefix('smallworld_user')." WHERE userid = '".intval($userID)."'"; + $result = $xoopsDB->queryf($sql); + while ($row = $xoopsDB->fetchArray($result)) { + $name = $row['username']; + } + return $name; } // Check if user has been taken down for inspection by admin // Userid = user id of user to check // return array -function Smallworld_isInspected ($userid) { - global $xoopsDB; - $data = array(); - $sql = "SELECT inspect_start, inspect_stop FROM ".$xoopsDB->prefix('smallworld_admin')." WHERE userid = '".$userid."' AND (inspect_start+inspect_stop) > ".time().""; - $result = $xoopsDB->queryF($sql); - if ($xoopsDB->getRowsNum($result) > 0) { - while ($row = $xoopsDB->fetchArray($result)) { - $data['inspect'] = 'yes'; - $data['totaltime'] = ($row['inspect_start'] + $row['inspect_stop'])-time(); - } - } else { - $data['inspect'] = 'no'; - } - return $data; +function Smallworld_isInspected($userid) +{ + global $xoopsDB; + $data = array(); + $sql = "SELECT inspect_start, inspect_stop FROM ".$xoopsDB->prefix('smallworld_admin')." WHERE userid = '".$userid."' AND (inspect_start+inspect_stop) > ".time().""; + $result = $xoopsDB->queryF($sql); + if ($xoopsDB->getRowsNum($result) > 0) { + while ($row = $xoopsDB->fetchArray($result)) { + $data['inspect'] = 'yes'; + $data['totaltime'] = ($row['inspect_start'] + $row['inspect_stop'])-time(); + } + } else { + $data['inspect'] = 'no'; + } + return $data; } // Auto delete all inspects from DB where time has passed // inspect_start + inspect_stop - time() is deleted if negative intval -function SmallworldDeleteOldInspects () { - global $xoopsDB; - $sql = "UPDATE ".$xoopsDB->prefix('smallworld_admin')." SET inspect_start = '', inspect_stop = '' WHERE (inspect_start+inspect_stop) <= ".time().""; - $result = $xoopsDB->queryF($sql); +function SmallworldDeleteOldInspects() +{ + global $xoopsDB; + $sql = "UPDATE ".$xoopsDB->prefix('smallworld_admin')." SET inspect_start = '', inspect_stop = '' WHERE (inspect_start+inspect_stop) <= ".time().""; + $result = $xoopsDB->queryF($sql); } // Function to get sum of users in you following array // Used to calculate new message flash in jQuery intval fetch -function smallworld_getCountFriendMessagesEtc () { -global $xoopsUser, $xoopsDB; - $user = new xoopsUser; - $Wall = new Wall_Updates(); - $userid = $xoopsUser->getVar('uid'); - $followers = Smallworld_array_flatten($Wall->getFollowers($userid),0); - if (smallworld_GetModuleOption('usersownpostscount', $repmodule='smallworld') == 1) { - array_push($followers, $userid); - } - $ids = join(',',$followers); - $sql = "SELECT COUNT(*) AS total " - ." FROM ( " - ." SELECT com_id , count( * ) as comments FROM ".$xoopsDB->prefix('smallworld_comments')." WHERE uid_fk IN ($ids) Group by com_id " - ." UNION ALL " - ." Select msg_id , count( * ) as messages FROM ".$xoopsDB->prefix('smallworld_messages')." WHERE uid_fk IN ($ids) group by msg_id " - ." ) as d"; - $result = $xoopsDB->queryF($sql); - while ($r = $xoopsDB->fetchArray($result)) { - $total = $r['total']; - } - return $total; +function smallworld_getCountFriendMessagesEtc() +{ + global $xoopsUser, $xoopsDB; + $user = new xoopsUser; + $Wall = new Wall_Updates(); + $userid = $xoopsUser->getVar('uid'); + $followers = Smallworld_array_flatten($Wall->getFollowers($userid),0); + if (smallworld_GetModuleOption('usersownpostscount', $repmodule='smallworld') == 1) { + array_push($followers, $userid); + } + $ids = join(',',$followers); + $sql = "SELECT COUNT(*) AS total " + ." FROM ( " + ." SELECT com_id , count( * ) as comments FROM ".$xoopsDB->prefix('smallworld_comments')." WHERE uid_fk IN ($ids) Group by com_id " + ." UNION ALL " + ." Select msg_id , count( * ) as messages FROM ".$xoopsDB->prefix('smallworld_messages')." WHERE uid_fk IN ($ids) group by msg_id " + ." ) as d"; + $result = $xoopsDB->queryF($sql); + while ($r = $xoopsDB->fetchArray($result)) { + $total = $r['total']; + } + return $total; } // Function to get sum of users in you following array // Used to calculate new message flash in jQuery intval fetch -function smallworld_countUsersMessages ($id) { -global $xoopsUser, $xoopsDB; - $user = new xoopsUser; - $Wall = new Wall_Updates(); - $sql = "SELECT COUNT(*) AS total " - ." FROM ( " - ." SELECT com_id , count( * ) as comments FROM ".$xoopsDB->prefix('smallworld_comments')." WHERE uid_fk = ".intval($id)." Group by com_id " - ." UNION ALL " - ." Select msg_id , count( * ) as messages FROM ".$xoopsDB->prefix('smallworld_messages')." WHERE uid_fk = ".intval($id)."group by msg_id " - ." ) as d"; - $result = $xoopsDB->queryF($sql); - while ($r = $xoopsDB->fetchArray($result)) { - $total = $r['total']; - } - return $total; +function smallworld_countUsersMessages($id) +{ + global $xoopsUser, $xoopsDB; + $user = new xoopsUser; + $Wall = new Wall_Updates(); + $sql = "SELECT COUNT(*) AS total " + ." FROM ( " + ." SELECT com_id , count( * ) as comments FROM ".$xoopsDB->prefix('smallworld_comments')." WHERE uid_fk = ".intval($id)." Group by com_id " + ." UNION ALL " + ." Select msg_id , count( * ) as messages FROM ".$xoopsDB->prefix('smallworld_messages')." WHERE uid_fk = ".intval($id)."group by msg_id " + ." ) as d"; + $result = $xoopsDB->queryF($sql); + while ($r = $xoopsDB->fetchArray($result)) { + $total = $r['total']; + } + return $total; } // Get the three newest members to array -function smallworld_Stats_newest () { - global $xoopsDB, $xoopsUser; - $nu = array(); - $sql = "SELECT * FROM ".$xoopsDB->prefix('smallworld_user')." ORDER BY regdate DESC limit 3"; - $result = $xoopsDB->queryF($sql); - if ($xoopsDB->getRowsNum($result) > 0) { - $i = 0; - while ($r = $xoopsDB->fetchArray($result)) { - $nu[$i]['userid'] = $r['userid']; - $nu[$i]['username'] = $r['username']; - $nu[$i]['regdate'] = date('d-m-Y',$r['regdate']); - $nu[$i]['username_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$r['username']."'>"; - $nu[$i]['username_link'] .= $r['username']." (".$r['realname'].") [".$nu[$i]['regdate']."] </a>"; - $nu[$i]['userimage'] = $r['userimage']; - $nu[$i]['userimage_link'] = smallworld_getAvatarLink ($r['userid'], Smallworld_Gravatar($r['userid'])); - - $i++; - } - } - return $nu; +function smallworld_Stats_newest() +{ + global $xoopsDB, $xoopsUser; + $nu = array(); + $sql = "SELECT * FROM ".$xoopsDB->prefix('smallworld_user')." ORDER BY regdate DESC limit 3"; + $result = $xoopsDB->queryF($sql); + if ($xoopsDB->getRowsNum($result) > 0) { + $i = 0; + while ($r = $xoopsDB->fetchArray($result)) { + $nu[$i]['userid'] = $r['userid']; + $nu[$i]['username'] = $r['username']; + $nu[$i]['regdate'] = date('d-m-Y',$r['regdate']); + $nu[$i]['username_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$r['username']."'>"; + $nu[$i]['username_link'] .= $r['username']." (".$r['realname'].") [".$nu[$i]['regdate']."] </a>"; + $nu[$i]['userimage'] = $r['userimage']; + $nu[$i]['userimage_link'] = smallworld_getAvatarLink ($r['userid'], Smallworld_Gravatar($r['userid'])); + $i++; + } + } + return $nu; } //Avatar Image -function Smallworld_Gravatar($uid) { - global $xoopsUser, $xoopsDB; - $image=''; - $sql = "SELECT userimage FROM ".$xoopsDB->prefix('smallworld_user')." WHERE userid = '".$uid."'"; - $result = $xoopsDB->queryF($sql); - while ($r = $xoopsDB->fetchArray($result)) { - $image = $r['userimage']; - } - if ($image == 'Not specifiyed' || $image == '') { - $avt = new XoopsUser($uid); - $avatar = $avt->user_avatar(); - } else { - $avatar = $image; - } - return $avatar; +function Smallworld_Gravatar($uid) +{ + global $xoopsUser, $xoopsDB; + $image=''; + $sql = "SELECT userimage FROM ".$xoopsDB->prefix('smallworld_user')." WHERE userid = '".$uid."'"; + $result = $xoopsDB->queryF($sql); + while ($r = $xoopsDB->fetchArray($result)) { + $image = $r['userimage']; + } + if ($image == 'Not specifiyed' || $image == '') { + $avt = new XoopsUser($uid); + $avatar = $avt->user_avatar(); + } else { + $avatar = $image; + } + return $avatar; } - + // find user with most posted messages -function Smallworld_mostactiveusers_allround() { - global $xoopsDB,$xoopsUser; - $sql = "SELECT uid_fk, COUNT( * ) as cnt "; - $sql .= "FROM ( "; - $sql .= "SELECT uid_fk "; - $sql .= "FROM ".$xoopsDB->prefix('smallworld_messages')." "; - $sql .= "UNION ALL SELECT uid_fk "; - $sql .= "FROM ".$xoopsDB->prefix('smallworld_comments')." "; - $sql .= ") AS u "; - $sql .= "GROUP BY uid_fk "; - $sql .= "ORDER BY count( * ) DESC limit 3"; - $result = $xoopsDB->queryF($sql); - $counter = $xoopsDB->getRowsNum($result); - - if ($counter < 1) { - - } else { - $msg = array(); - $counter = 1; - while ($row = $xoopsDB->fetchArray($result)) { - $msg[$counter]["counter"] = $counter; - $msg[$counter]["img"] = smallworld_getAvatarLink ($row['uid_fk'], Smallworld_Gravatar($row['uid_fk'])); - $msg[$counter]["msgs"] = _SMALLWORLD_TOTALPOSTS." : ".$row["cnt"]; - $msg[$counter]["cnt"] = $row["cnt"]; - $msg[$counter]["username"] = $xoopsUser->getUnameFromId($row["uid_fk"]); - $msg[$counter]["username_link"] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$msg[$counter]["username"]."'>"; - $msg[$counter]["username_link"] .= $msg[$counter]["username"]." (".$msg[$counter]["msgs"].")</a>"; - $counter++; - } - } - return $msg; +function Smallworld_mostactiveusers_allround() +{ + global $xoopsDB,$xoopsUser; + $sql = "SELECT uid_fk, COUNT( * ) as cnt "; + $sql .= "FROM ( "; + $sql .= "SELECT uid_fk "; + $sql .= "FROM ".$xoopsDB->prefix('smallworld_messages')." "; + $sql .= "UNION ALL SELECT uid_fk "; + $sql .= "FROM ".$xoopsDB->prefix('smallworld_comments')." "; + $sql .= ") AS u "; + $sql .= "GROUP BY uid_fk "; + $sql .= "ORDER BY count( * ) DESC limit 3"; + $result = $xoopsDB->queryF($sql); + $counter = $xoopsDB->getRowsNum($result); + if ($counter < 1) { + } else { + $msg = array(); + $counter = 1; + while ($row = $xoopsDB->fetchArray($result)) { + $msg[$counter]["counter"] = $counter; + $msg[$counter]["img"] = smallworld_getAvatarLink ($row['uid_fk'], Smallworld_Gravatar($row['uid_fk'])); + $msg[$counter]["msgs"] = _SMALLWORLD_TOTALPOSTS." : ".$row["cnt"]; + $msg[$counter]["cnt"] = $row["cnt"]; + $msg[$counter]["username"] = $xoopsUser->getUnameFromId($row["uid_fk"]); + $msg[$counter]["username_link"] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$msg[$counter]["username"]."'>"; + $msg[$counter]["username_link"] .= $msg[$counter]["username"]." (".$msg[$counter]["msgs"].")</a>"; + $counter++; + } + } + return $msg; } // Find worst rated users overall -function Smallworld_worstratedusers() { - global $xoopsUser, $xoopsDB; - $array = array(); - $counter = 1; - $sql = "SELECT owner, ("; - $sql .= "sum( up ) - sum( down )"; - $sql .= ") AS total"; - $sql .= " FROM ".$xoopsDB->prefix('smallworld_vote').""; - $sql .= " GROUP BY owner ORDER by total ASC LIMIT 5"; - $result = $xoopsDB->queryF($sql); - while ($row = $xoopsDB->fetchArray($result)) { - $array[$counter]['counter'] = $counter; - $array[$counter]['img'] = smallworld_getAvatarLink ($row["owner"], Smallworld_Gravatar($row["owner"])); - $array[$counter]['user'] = $xoopsUser->getUnameFromId($row["owner"]); - $array[$counter]['rating'] = $row["total"]; - $array[$counter]['user_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$array[$counter]['user']."'>"; - $array[$counter]['user_link'] .= $array[$counter]['user']." (".$array[$counter]['rating'].")</a>"; - $counter++; - } - return $array; +function Smallworld_worstratedusers() +{ + global $xoopsUser, $xoopsDB; + $array = array(); + $counter = 1; + $sql = "SELECT owner, ("; + $sql .= "sum( up ) - sum( down )"; + $sql .= ") AS total"; + $sql .= " FROM ".$xoopsDB->prefix('smallworld_vote').""; + $sql .= " GROUP BY owner ORDER by total ASC LIMIT 5"; + $result = $xoopsDB->queryF($sql); + while ($row = $xoopsDB->fetchArray($result)) { + $array[$counter]['counter'] = $counter; + $array[$counter]['img'] = smallworld_getAvatarLink ($row["owner"], Smallworld_Gravatar($row["owner"])); + $array[$counter]['user'] = $xoopsUser->getUnameFromId($row["owner"]); + $array[$counter]['rating'] = $row["total"]; + $array[$counter]['user_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$array[$counter]['user']."'>"; + $array[$counter]['user_link'] .= $array[$counter]['user']." (".$array[$counter]['rating'].")</a>"; + $counter++; + } + return $array; } // Find best rated users overall -function Smallworld_topratedusers() { - global $xoopsUser, $xoopsDB; - $array = array(); - $counter = 1; - $sql = "SELECT owner, ("; - $sql .= "sum( up ) - sum( down )"; - $sql .= ") AS total"; - $sql .= " FROM ".$xoopsDB->prefix('smallworld_vote').""; - $sql .= " GROUP BY owner ORDER by total DESC LIMIT 5"; - $result = $xoopsDB->queryF($sql); - while ($row = $xoopsDB->fetchArray($result)) { - $array[$counter]['counter'] = $counter; - $array[$counter]['img'] = smallworld_getAvatarLink ($row["owner"], Smallworld_Gravatar($row["owner"])); - $array[$counter]['user'] = $xoopsUser->getUnameFromId($row["owner"]); - $array[$counter]['rating'] = $row["total"]; - $array[$counter]['user_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$array[$counter]['user']."'>"; - $array[$counter]['user_link'] .= $array[$counter]['user']." (".$array[$counter]['rating'].")</a>"; - $counter++; - } - return $array; +function Smallworld_topratedusers() +{ + global $xoopsUser, $xoopsDB; + $array = array(); + $counter = 1; + $sql = "SELECT owner, ("; + $sql .= "sum( up ) - sum( down )"; + $sql .= ") AS total"; + $sql .= " FROM ".$xoopsDB->prefix('smallworld_vote').""; + $sql .= " GROUP BY owner ORDER by total DESC LIMIT 5"; + $result = $xoopsDB->queryF($sql); + while ($row = $xoopsDB->fetchArray($result)) { + $array[$counter]['counter'] = $counter; + $array[$counter]['img'] = smallworld_getAvatarLink ($row["owner"], Smallworld_Gravatar($row["owner"])); + $array[$counter]['user'] = $xoopsUser->getUnameFromId($row["owner"]); + $array[$counter]['rating'] = $row["total"]; + $array[$counter]['user_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$array[$counter]['user']."'>"; + $array[$counter]['user_link'] .= $array[$counter]['user']." (".$array[$counter]['rating'].")</a>"; + $counter++; + } + return $array; } -function smallworld_nextBirthdays () { - global $xoopsDB,$xoopsUser; - $now = date('d-m'); - $res = array(); - $sql = 'SELECT userid, username, userimage, realname, birthday, CURDATE(),' - . ' DATE_FORMAT(birthday, "%d / %m") AS daymon , ' +function smallworld_nextBirthdays() +{ + global $xoopsDB,$xoopsUser; + $now = date('d-m'); + $res = array(); + $sql = 'SELECT userid, username, userimage, realname, birthday, CURDATE(),' + . ' DATE_FORMAT(birthday, "%d / %m") AS daymon , ' . ' (YEAR(CURDATE())-YEAR(birthday))' . ' - (RIGHT(CURDATE(),5)<RIGHT(birthday,5))' . ' AS age_now' . ' FROM xoops_smallworld_user WHERE right(birthday,5) = right(CURDATE(),5)' - . ' ORDER BY MONTH( birthday ) , DAY( birthday ) ' - . ' LIMIT 10 '; - $result = $xoopsDB->queryF($sql); - $counter = $xoopsDB->getRowsNum($result); - $i = 0; - while ($r = $xoopsDB->fetchArray($result)) { - $res[$i]['amount'] = $counter; - $res[$i]['userid'] = $r['userid']; - $res[$i]['userimage'] = smallworld_getAvatarLink ($r['userid'], Smallworld_Gravatar($r["userid"])); - $res[$i]['birthday'] = $r['daymon']; - $res[$i]['agenow'] = $r['age_now']; - $res[$i]['username'] = $xoopsUser->getUnameFromId($r['userid']); - $res[$i]['username_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$res[$i]['username']."'>"; - $res[$i]['username_link'] .= $res[$i]['username']." (".$r['daymon'].") ".$r['age_now']." "._SMALLWORLD_BDAY_YEARS; - $res[$i]['username_link'] .="</a>"; - $i++; - } - return $res; + . ' ORDER BY MONTH( birthday ) , DAY( birthday ) ' + . ' LIMIT 10 '; + $result = $xoopsDB->queryF($sql); + $counter = $xoopsDB->getRowsNum($result); + $i = 0; + while ($r = $xoopsDB->fetchArray($result)) { + $res[$i]['amount'] = $counter; + $res[$i]['userid'] = $r['userid']; + $res[$i]['userimage'] = smallworld_getAvatarLink ($r['userid'], Smallworld_Gravatar($r["userid"])); + $res[$i]['birthday'] = $r['daymon']; + $res[$i]['agenow'] = $r['age_now']; + $res[$i]['username'] = $xoopsUser->getUnameFromId($r['userid']); + $res[$i]['username_link'] = "<a href = '".XOOPS_URL."/modules/smallworld/userprofile.php?username=".$res[$i]['username']."'>"; + $res[$i]['username_link'] .= $res[$i]['username']." (".$r['daymon'].") ".$r['age_now']." "._SMALLWORLD_BDAY_YEARS; + $res[$i]['username_link'] .="</a>"; + $i++; + } + return $res; } /* @@ -600,8 +635,9 @@ * @param date $stringDate * $returns date */ -function Smallworld_euroToUsDate($stringDate) { - if ($stringDate != 0 || $stringDate != '') { +function Smallworld_euroToUsDate($stringDate) +{ + if ($stringDate != 0 || $stringDate != '') { $theData = split("-", trim($stringDate)); $ret = $theData[2] . "-" . $theData[1] . "-" . $theData[0]; return $ret; @@ -615,8 +651,9 @@ * @param date $stringDate * $returns date */ -function Smallworld_UsToEuroDate($stringDate) { - if ($stringDate != 0 || $stringDate != '') { +function Smallworld_UsToEuroDate($stringDate) +{ + if ($stringDate != 0 || $stringDate != '') { $theData = split("-", trim($stringDate)); $ret = $theData[2] . "-" . $theData[1] . "-" . $theData[0]; return $ret; @@ -625,71 +662,76 @@ } } -function smallworld_sp () { - $sp = array(); - $sp[0]['spimage'] = "<img id = 'smallworld_img_sp' src = '".XOOPS_URL."/modules/smallworld/images/sp.png' height='30px' width='30px' />"; - return $sp; +function smallworld_sp () +{ + $sp = array(); + $sp[0]['spimage'] = "<img id = 'smallworld_img_sp' src = '" + . XOOPS_URL . "/modules/smallworld/images/sp.png' height='30px' width='30px' />"; + return $sp; } //Check privacy settings in permapage -function smallworldCheckPriv ($id) { - global $xoopsDB; - $public = "SELECT priv FROM ".$xoopsDB->prefix('smallworld_messages')." WHERE msg_id = ".$id.""; - $result = $xoopsDB->queryF($public); - while ($row = $xoopsDB->fetchArray($result)){ - $priv = $row['priv']; - } - return $priv; +function smallworldCheckPriv ($id) +{ + global $xoopsDB; + $public = "SELECT priv FROM ".$xoopsDB->prefix('smallworld_messages')." WHERE msg_id = ".$id.""; + $result = $xoopsDB->queryF($public); + while ($row = $xoopsDB->fetchArray($result)){ + $priv = $row['priv']; + } + return $priv; } // Function to calculate remaining seconds until user's birthday // Input $d : date('Y-m-d') format // return seconds until date at midnight, or // return 0 if date ('Y-m-d') is equal to today -function smallworldNextBDaySecs($d) { - $olddate = substr($d, 4); - $exactdate = date('Y')."".$olddate; - $newdate = date('Y') ."".$olddate." 00:00:00"; - $nextyear = date('Y')+1 ."".$olddate." 00:00:00"; - if ($exactdate != date('Y-m-d')) { - if($newdate > date("Y-m-d H:i:s")) { - $start_ts = strtotime($newdate); - $end_ts = strtotime(date("Y-m-d H:i:s")); - $diff = $end_ts - $start_ts; - $n = round($diff); - $return = substr($n, 1); - return $return; - } - else { - $start_ts = strtotime($nextyear); - $end_ts = strtotime(date("Y-m-d H:i:s")); - $diff = $end_ts - $start_ts; - $n = round($diff); - $return = substr($n, 1); - return $return; - } - } else { - return 0; - } +function smallworldNextBDaySecs($d) +{ + $olddate = substr($d, 4); + $exactdate = date('Y') . "" . $olddate; + $newdate = date('Y') . "" . $olddate . " 00:00:00"; + $nextyear = date('Y') + 1 . "" . $olddate . " 00:00:00"; + if ($exactdate != date('Y-m-d')) { + if($newdate > date("Y-m-d H:i:s")) { + $start_ts = strtotime($newdate); + $end_ts = strtotime(date("Y-m-d H:i:s")); + $diff = $end_ts - $start_ts; + $n = round($diff); + $return = substr($n, 1); + return $return; + } else { + $start_ts = strtotime($nextyear); + $end_ts = strtotime(date("Y-m-d H:i:s")); + $diff = $end_ts - $start_ts; + $n = round($diff); + $return = substr($n, 1); + return $return; + } + } else { + return 0; + } } //Function to get value from xoopsConfig array -function smallworldGetValfromArray ($key, $array) { - $ar = smallworld_GetModuleOption($array, $repmodule='smallworld'); - $ret = 0; - if (in_array($key, $ar,true)) { - $ret = 1; - return $ret; - } else { - return 0; - } - +function smallworldGetValfromArray($key, $array) +{ + $ar = smallworld_GetModuleOption($array, $repmodule='smallworld'); + $ret = 0; + if (in_array($key, $ar,true)) { + $ret = 1; + return $ret; + } else { + return 0; + } + } //Function to resize images proportionally // Using imagesize($imageurl) returns $img[0], $img[1] // Target = new max height or width in px -function smallworld_imageResize($width, $height, $target) { +function smallworld_imageResize($width, $height, $target) +{ //takes the larger size of the width and height and applies the //formula accordingly...this is so this script will work //dynamically with any size image This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-13 01:09:42
|
Revision: 8943 http://xoops.svn.sourceforge.net/xoops/?rev=8943&view=rev Author: djculex Date: 2012-02-13 01:09:36 +0000 (Mon, 13 Feb 2012) Log Message: ----------- Bugfix: Removed php 5.30 function to convert dateformat and replaced with simpler function Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt XoopsModules/smallworld/trunk/smallworld/include/functions.php Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-12 23:10:22 UTC (rev 8942) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-13 01:09:36 UTC (rev 8943) @@ -18,6 +18,9 @@ 12. Fevruary 2012 - Bugfix: Keep imagegallery in colorbox even if imageData.index is null +13. February +- Bugfix: Removed php 5.30 function to convert dateformat and replaced with simpler function + ------------------------------ Changelog v.1.10 RC ------------------------------ Modified: XoopsModules/smallworld/trunk/smallworld/include/functions.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-12 23:10:22 UTC (rev 8942) +++ XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-13 01:09:36 UTC (rev 8943) @@ -595,22 +595,31 @@ return $res; } -// Return new date format US for MySql -// Require php>5.2 using DateTime class -function Smallworld_euroToUsDate ($stringDate) { +/* + * Return date format (YYYY-MM-DD) for MySql + * @param date $stringDate + * $returns date +*/ +function Smallworld_euroToUsDate($stringDate) { if ($stringDate != 0 || $stringDate != '') { - $date = DateTime::createFromFormat('d-m-Y', $stringDate); - return $date->format("Y-m-d"); + $theData = split("-", trim($stringDate)); + $ret = $theData[2] . "-" . $theData[1] . "-" . $theData[0]; + return $ret; } else { return "1900-01-01"; } } -// Return new date format EU For display -function Smallworld_UsToEuroDate ($stringDate) { +/* + * Return date format (DD-MM-YYYY) for display + * @param date $stringDate + * $returns date +*/ +function Smallworld_UsToEuroDate($stringDate) { if ($stringDate != 0 || $stringDate != '') { - $date = DateTime::createFromFormat('Y-m-d', $stringDate); - return $date->format("d-m-Y"); + $theData = split("-", trim($stringDate)); + $ret = $theData[2] . "-" . $theData[1] . "-" . $theData[0]; + return $ret; } else { return "01-01-1900"; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-02-12 23:10:29
|
Revision: 8942 http://xoops.svn.sourceforge.net/xoops/?rev=8942&view=rev Author: beckmi Date: 2012-02-12 23:10:22 +0000 (Sun, 12 Feb 2012) Log Message: ----------- Removing wrong language files Modified Paths: -------------- XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/admin.php XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/main.php Modified: XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/admin.php =================================================================== --- XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/admin.php 2012-02-12 20:32:16 UTC (rev 8941) +++ XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/admin.php 2012-02-12 23:10:22 UTC (rev 8942) @@ -1,8 +1,6 @@ <?php /** - * **************************************************************************** - * marquee - MODULE FOR XOOPS - * Copyright (c) Hervé Thouzard (http://www.herve-thouzard.com) + * Module Installer * * 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 @@ -11,77 +9,10 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * @copyright Hervé Thouzard (http://www.herve-thouzard.com) - * @license http://www.fsf.org/copyleft/gpl.html GNU public license - * @package marquee - * @author Hervé Thouzard (http://www.herve-thouzard.com) - * - * Version : $Id: - * **************************************************************************** - */ -define("_AM_MARQUEE_CONFIG","Marquees Configuration"); -define("_AM_MARQUEE_ID","ID"); -define("_AM_MARQUEE_GENERALSET", "Preferences" ); -define("_AM_MARQUEE_MODULEADMIN","Module's administration"); -define("_AM_MARQUEE_DIRECTION","Direction"); -define("_AM_MARQUEE_BEHAVIOUR","Behaviour"); -define("_AM_MARQUEE_STOP","Stop when mouse is over"); -define("_AM_MARQUEE_CONTENT","Content"); -define("_AM_MARQUEE_EDIT","Edit"); -define("_AM_MARQUEE_DELETE","Delete"); -define("_AM_MARQUEE_DIRECTION1","left->right"); -define("_AM_MARQUEE_DIRECTION2","right->left"); -define("_AM_MARQUEE_DIRECTION3","bottom->top"); -define("_AM_MARQUEE_DIRECTION4","top->bottom"); -define("_AM_MARQUEE_BEHAVIOUR1","scroll"); -define("_AM_MARQUEE_BEHAVIOUR2","slide"); -define("_AM_MARQUEE_BEHAVIOUR3","alternate"); -define("_AM_MARQUEE_ADDMARQUEE","Add a marquee"); -define("_AM_MARQUEE_ACTION","Action"); -define("_AM_MARQUEE_LOOP","Loop"); -define("_AM_MARQUEE_INFINITELOOP","Infinite"); -define("_AM_MARQUEE_ALIGN","Align"); -define("_AM_MARQUEE_ALIGN1","Top"); -define("_AM_MARQUEE_ALIGN2","Bottom"); -define("_AM_MARQUEE_ALIGN3","Middle"); -define("_AM_MARQUEE_ADDBUTTON","Add"); -define("_AM_MARQUEE_RESETBUTTON","Reset"); -define("_AM_MARQUEE_ERROR_ADD_MARQUEE","Error, the recquired fields have not been typed"); -define("_AM_MARQUEE_ADDED_OK","The marquee has been succesfully added"); -define("_AM_MARQUEE_DBUPDATED","The database has been sucesfully updated"); -define("_AM_MARQUEE_RUSUREDEL","Are you sure you want to delete this item ?"); -define("_AM_MARQUEE_UPDATE","Update"); -define("_AM_MARQUEE_BGCOLOR","Background color <br />(don't forget to put a #<br /> if you specify a color code)"); -define("_AM_MARQUEE_WIDTH","Width (in pixels or percent)"); -define("_AM_MARQUEE_HEIGHT","Height (in pixels)"); -define("_AM_MARQUEE_SCRAMOUNT","Scroll amount"); -define("_AM_MARQUEE_HSPACE","Horizontal space (in pixels)"); -define("_AM_MARQUEE_VSPACE","Vertical space (in pixels)"); -define("_AM_MARQUEE_SCRDELAY","Delay between<br />two moves in milliseconds"); -define("_AM_MARQUEE_ERROR_MODIFY_DB","Error while updating the database"); -define("_AM_MARQUEE_SOURCE","Content's source"); -define("_AM_MARQUEE_SOURCE_FIXED","A fixed text"); - -//2.4.8 - -// About.php -define("_AM_MARQUEE_ABOUT_RELEASEDATE", "Released: "); -define("_AM_MARQUEE_ABOUT_UPDATEDATE", "Updated: "); -define("_AM_MARQUEE_ABOUT_AUTHOR", "Author: "); -define("_AM_MARQUEE_ABOUT_CREDITS", "Credits: "); -define("_AM_MARQUEE_ABOUT_LICENSE", "License: "); -define("_AM_MARQUEE_ABOUT_MODULE_STATUS", "Status: "); -define("_AM_MARQUEE_ABOUT_WEBSITE", "Website: "); -define("_AM_MARQUEE_ABOUT_AUTHOR_NAME", "Author name: "); -define("_AM_MARQUEE_ABOUT_CHANGELOG", "Change Log"); -define("_AM_MARQUEE_ABOUT_MODULE_INFO", "Module Info"); -define("_AM_MARQUEE_ABOUT_AUTHOR_INFO", "Author Info"); -define("_AM_MARQUEE_ABOUT_DESCRIPTION", "Description: "); - -// Configuration -define("_AM_MARQUEE_CONFIG_CHECK","Configuration Check"); -define("_AM_MARQUEE_CONFIG_PHP","Minimum PHP required: %s (your version is %s)"); -define("_AM_MARQUEE_CONFIG_XOOPS","Minimum XOOPS required: %s (your version is %s)"); - -//ModuleAdmin -define('_AM_MODULEADMIN_MISSING','Error: The ModuleAdmin class is missing. Please install the ModuleAdmin Class into /Frameworks (see /docs/readme.txt)'); \ No newline at end of file + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU Public License + * @package moduleinstaller + * @since 1.0 + * @author Michael Beck (Mamba), XOOPS Development Team + * @version $Id $ +**/ Modified: XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/main.php =================================================================== --- XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/main.php 2012-02-12 20:32:16 UTC (rev 8941) +++ XoopsModules/moduleinstaller/trunk/moduleinstaller/language/english/main.php 2012-02-12 23:10:22 UTC (rev 8942) @@ -1,6 +1,6 @@ <?php /** - * Marquee module + * Module Installer * * 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 @@ -10,16 +10,9 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ - * @license http://www.fsf.org/copyleft/gpl.html GNU public license - * @package Marquee - * @since 2.5.0 - * @author Michael Beck (Mamba) + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU Public License + * @package moduleinstaller + * @since 1.0 + * @author Michael Beck (Mamba), XOOPS Development Team * @version $Id $ -**/ - -// upgrade old version -define("_AM_MARQUEE_UPDATE_DONE","Done!"); -define("_AM_MARQUEE_UPDATE_DONE1","Click me for normal upgrade now!"); -define("_AM_MARQUEE_UPDATE_DONE2","After the process of updating, remember to delete the upgrade.php file in this module!!!"); - -?> +**/ \ 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-02-12 20:32:27
|
Revision: 8941 http://xoops.svn.sourceforge.net/xoops/?rev=8941&view=rev Author: txmodxoops Date: 2012-02-12 20:32:16 +0000 (Sun, 12 Feb 2012) Log Message: ----------- radiostream 3 versions Added Paths: ----------- XoopsModules/radiostrem/ XoopsModules/radiostrem/branches/ XoopsModules/radiostrem/releases/ XoopsModules/radiostrem/releases/1.01/ XoopsModules/radiostrem/releases/1.01/radiostream/ XoopsModules/radiostrem/releases/1.01/radiostream/action.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/ XoopsModules/radiostrem/releases/1.01/radiostream/admin/about.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/action.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_footer.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_header.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.html XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/info_header.php XoopsModules/radiostrem/releases/1.01/radiostream/admin/menu.php XoopsModules/radiostrem/releases/1.01/radiostream/blocks/ XoopsModules/radiostrem/releases/1.01/radiostream/blocks/index.html XoopsModules/radiostrem/releases/1.01/radiostream/blocks/radio_block.php XoopsModules/radiostrem/releases/1.01/radiostream/class/ XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class.php XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.php XoopsModules/radiostrem/releases/1.01/radiostream/config_version.php XoopsModules/radiostrem/releases/1.01/radiostream/images/ XoopsModules/radiostrem/releases/1.01/radiostream/images/Thumbs.db XoopsModules/radiostrem/releases/1.01/radiostream/images/blank.png XoopsModules/radiostrem/releases/1.01/radiostream/images/brokenimg.png XoopsModules/radiostrem/releases/1.01/radiostream/images/icons/ XoopsModules/radiostrem/releases/1.01/radiostream/images/icons/Thumbs.db XoopsModules/radiostrem/releases/1.01/radiostream/images/icons/delete.gif XoopsModules/radiostrem/releases/1.01/radiostream/images/icons/edit.gif XoopsModules/radiostrem/releases/1.01/radiostream/images/icons/index.html XoopsModules/radiostrem/releases/1.01/radiostream/images/index.html XoopsModules/radiostrem/releases/1.01/radiostream/images/logo-txmod.png XoopsModules/radiostrem/releases/1.01/radiostream/images/logo.png XoopsModules/radiostrem/releases/1.01/radiostream/images/radiostream_slogo (1).png XoopsModules/radiostrem/releases/1.01/radiostream/images/radiostream_slogo.png XoopsModules/radiostrem/releases/1.01/radiostream/images/slogo.ico XoopsModules/radiostrem/releases/1.01/radiostream/include/ XoopsModules/radiostrem/releases/1.01/radiostream/include/functions.php XoopsModules/radiostrem/releases/1.01/radiostream/include/index.html XoopsModules/radiostrem/releases/1.01/radiostream/include/open.php XoopsModules/radiostrem/releases/1.01/radiostream/include/popup.php XoopsModules/radiostrem/releases/1.01/radiostream/index.php XoopsModules/radiostrem/releases/1.01/radiostream/info/ XoopsModules/radiostrem/releases/1.01/radiostream/info/index.html XoopsModules/radiostrem/releases/1.01/radiostream/info/readme.txt XoopsModules/radiostrem/releases/1.01/radiostream/language/ XoopsModules/radiostrem/releases/1.01/radiostream/language/english/ XoopsModules/radiostrem/releases/1.01/radiostream/language/english/admin.php XoopsModules/radiostrem/releases/1.01/radiostream/language/english/blocks.php XoopsModules/radiostrem/releases/1.01/radiostream/language/english/index.html XoopsModules/radiostrem/releases/1.01/radiostream/language/english/main.php XoopsModules/radiostrem/releases/1.01/radiostream/language/english/modinfo.php XoopsModules/radiostrem/releases/1.01/radiostream/language/index.html XoopsModules/radiostrem/releases/1.01/radiostream/language/italian/ XoopsModules/radiostrem/releases/1.01/radiostream/language/italian/admin.php XoopsModules/radiostrem/releases/1.01/radiostream/language/italian/blocks.php XoopsModules/radiostrem/releases/1.01/radiostream/language/italian/index.html XoopsModules/radiostrem/releases/1.01/radiostream/language/italian/main.php XoopsModules/radiostrem/releases/1.01/radiostream/language/italian/modinfo.php XoopsModules/radiostrem/releases/1.01/radiostream/sql/ XoopsModules/radiostrem/releases/1.01/radiostream/sql/index.html XoopsModules/radiostrem/releases/1.01/radiostream/sql/radio_stream.sql XoopsModules/radiostrem/releases/1.01/radiostream/streamlist.php XoopsModules/radiostrem/releases/1.01/radiostream/style/ XoopsModules/radiostrem/releases/1.01/radiostream/style/index.html XoopsModules/radiostrem/releases/1.01/radiostream/style/style_rs.css XoopsModules/radiostrem/releases/1.01/radiostream/submit.php XoopsModules/radiostrem/releases/1.01/radiostream/templates/ XoopsModules/radiostrem/releases/1.01/radiostream/templates/blocks/ XoopsModules/radiostrem/releases/1.01/radiostream/templates/blocks/index.html XoopsModules/radiostrem/releases/1.01/radiostream/templates/blocks/radio_block.html XoopsModules/radiostrem/releases/1.01/radiostream/templates/index.html XoopsModules/radiostrem/releases/1.01/radiostream/templates/radio_index.html XoopsModules/radiostrem/releases/1.01/radiostream/templates/radio_streamlist.html XoopsModules/radiostrem/releases/1.01/radiostream/templates/radio_submit.html XoopsModules/radiostrem/releases/1.01/radiostream/xoops_version.php XoopsModules/radiostrem/releases/1.12/ XoopsModules/radiostrem/releases/1.12/radiostream/ XoopsModules/radiostrem/releases/1.12/radiostream/admin/ XoopsModules/radiostrem/releases/1.12/radiostream/admin/about.php XoopsModules/radiostrem/releases/1.12/radiostream/admin/admin_footer.php XoopsModules/radiostrem/releases/1.12/radiostream/admin/admin_header.php XoopsModules/radiostrem/releases/1.12/radiostream/admin/index.html XoopsModules/radiostrem/releases/1.12/radiostream/admin/index.php XoopsModules/radiostrem/releases/1.12/radiostream/admin/menu.php XoopsModules/radiostrem/releases/1.12/radiostream/admin/param.php XoopsModules/radiostrem/releases/1.12/radiostream/admin/stream.php XoopsModules/radiostrem/releases/1.12/radiostream/blocks/ XoopsModules/radiostrem/releases/1.12/radiostream/blocks/blocks_stream.php XoopsModules/radiostrem/releases/1.12/radiostream/blocks/index.html XoopsModules/radiostrem/releases/1.12/radiostream/class/ XoopsModules/radiostrem/releases/1.12/radiostream/class/index.html XoopsModules/radiostrem/releases/1.12/radiostream/class/menu.php XoopsModules/radiostrem/releases/1.12/radiostream/class/object.php XoopsModules/radiostrem/releases/1.12/radiostream/class/param.php XoopsModules/radiostrem/releases/1.12/radiostream/class/stream.php XoopsModules/radiostrem/releases/1.12/radiostream/header.php XoopsModules/radiostrem/releases/1.12/radiostream/images/ XoopsModules/radiostrem/releases/1.12/radiostream/images/TDMLogo.png XoopsModules/radiostrem/releases/1.12/radiostream/images/brokenimg.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/ XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/about.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/arrow.gif XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/contact.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/delete.gif XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/edit.gif XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/index.html XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/index.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/list_search.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/off.gif XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/on.gif XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/permissions.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/pref.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/stream_search.png XoopsModules/radiostrem/releases/1.12/radiostream/images/deco/update.png XoopsModules/radiostrem/releases/1.12/radiostream/images/index.html XoopsModules/radiostrem/releases/1.12/radiostream/images/logo-txmod.png XoopsModules/radiostrem/releases/1.12/radiostream/images/menu/ XoopsModules/radiostrem/releases/1.12/radiostream/images/menu/bg.png XoopsModules/radiostrem/releases/1.12/radiostream/images/menu/index.html XoopsModules/radiostrem/releases/1.12/radiostream/images/menu/left_both.png XoopsModules/radiostrem/releases/1.12/radiostream/images/menu/right_both.png XoopsModules/radiostrem/releases/1.12/radiostream/images/radiostream_slogo.png XoopsModules/radiostrem/releases/1.12/radiostream/images/txmod_logo.png XoopsModules/radiostrem/releases/1.12/radiostream/include/ XoopsModules/radiostrem/releases/1.12/radiostream/include/functions.php XoopsModules/radiostrem/releases/1.12/radiostream/include/index.html XoopsModules/radiostrem/releases/1.12/radiostream/include/install.php XoopsModules/radiostrem/releases/1.12/radiostream/include/popup.php XoopsModules/radiostrem/releases/1.12/radiostream/include/search.inc.php XoopsModules/radiostrem/releases/1.12/radiostream/include/style.css XoopsModules/radiostrem/releases/1.12/radiostream/index.php XoopsModules/radiostrem/releases/1.12/radiostream/language/ XoopsModules/radiostrem/releases/1.12/radiostream/language/english/ XoopsModules/radiostrem/releases/1.12/radiostream/language/english/admin.php XoopsModules/radiostrem/releases/1.12/radiostream/language/english/blocks.php XoopsModules/radiostrem/releases/1.12/radiostream/language/english/index.html XoopsModules/radiostrem/releases/1.12/radiostream/language/english/main.php XoopsModules/radiostrem/releases/1.12/radiostream/language/english/modinfo.php XoopsModules/radiostrem/releases/1.12/radiostream/language/french/ XoopsModules/radiostrem/releases/1.12/radiostream/language/french/admin.php XoopsModules/radiostrem/releases/1.12/radiostream/language/french/blocks.php XoopsModules/radiostrem/releases/1.12/radiostream/language/french/index.html XoopsModules/radiostrem/releases/1.12/radiostream/language/french/main.php XoopsModules/radiostrem/releases/1.12/radiostream/language/french/modinfo.php XoopsModules/radiostrem/releases/1.12/radiostream/language/index.html XoopsModules/radiostrem/releases/1.12/radiostream/language/italian/ XoopsModules/radiostrem/releases/1.12/radiostream/language/italian/admin.php XoopsModules/radiostrem/releases/1.12/radiostream/language/italian/blocks.php XoopsModules/radiostrem/releases/1.12/radiostream/language/italian/index.html XoopsModules/radiostrem/releases/1.12/radiostream/language/italian/main.php XoopsModules/radiostrem/releases/1.12/radiostream/language/italian/modinfo.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/ XoopsModules/radiostrem/releases/1.12/radiostream/resource/comment_delete.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/comment_edit.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/comment_new.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/comment_post.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/comment_reply.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/index.php XoopsModules/radiostrem/releases/1.12/radiostream/resource/xoops_version.php XoopsModules/radiostrem/releases/1.12/radiostream/sql/ XoopsModules/radiostrem/releases/1.12/radiostream/sql/index.html XoopsModules/radiostrem/releases/1.12/radiostream/sql/mysql.sql XoopsModules/radiostrem/releases/1.12/radiostream/sql/x00a_radiostream_list.sql XoopsModules/radiostrem/releases/1.12/radiostream/sql/xoops245b.sql XoopsModules/radiostrem/releases/1.12/radiostream/streamlist.php XoopsModules/radiostrem/releases/1.12/radiostream/submit.php XoopsModules/radiostrem/releases/1.12/radiostream/templates/ XoopsModules/radiostrem/releases/1.12/radiostream/templates/blocks/ XoopsModules/radiostrem/releases/1.12/radiostream/templates/blocks/index.html XoopsModules/radiostrem/releases/1.12/radiostream/templates/blocks/radiostream_block.html XoopsModules/radiostrem/releases/1.12/radiostream/templates/index.html XoopsModules/radiostrem/releases/1.12/radiostream/templates/radiostream_index.html XoopsModules/radiostrem/releases/1.12/radiostream/templates/radiostream_streamlist.html XoopsModules/radiostrem/releases/1.12/radiostream/templates/radiostream_submit.html XoopsModules/radiostrem/releases/1.12/radiostream/xoops_version.php XoopsModules/radiostrem/releases/1.21/ XoopsModules/radiostrem/releases/1.21/radiostream/ XoopsModules/radiostrem/releases/1.21/radiostream/admin/ XoopsModules/radiostrem/releases/1.21/radiostream/admin/about.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/admin_footer.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/admin_header.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/index.html XoopsModules/radiostrem/releases/1.21/radiostream/admin/index.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/menu.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/newstreams.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/param.php XoopsModules/radiostrem/releases/1.21/radiostream/admin/stream.php XoopsModules/radiostrem/releases/1.21/radiostream/blocks/ XoopsModules/radiostrem/releases/1.21/radiostream/blocks/blocks_stream.php XoopsModules/radiostrem/releases/1.21/radiostream/blocks/blocks_stream_bis.php XoopsModules/radiostrem/releases/1.21/radiostream/blocks/index.html XoopsModules/radiostrem/releases/1.21/radiostream/class/ XoopsModules/radiostrem/releases/1.21/radiostream/class/index.html XoopsModules/radiostrem/releases/1.21/radiostream/class/menu.php XoopsModules/radiostrem/releases/1.21/radiostream/class/object.php XoopsModules/radiostrem/releases/1.21/radiostream/class/param.php XoopsModules/radiostrem/releases/1.21/radiostream/class/stream.php XoopsModules/radiostrem/releases/1.21/radiostream/header.php XoopsModules/radiostrem/releases/1.21/radiostream/images/ XoopsModules/radiostrem/releases/1.21/radiostream/images/blank.gif XoopsModules/radiostrem/releases/1.21/radiostream/images/brokenimg.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/ XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/about.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/arrow.gif XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/contact.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/delete.gif XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/edit.gif XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/index.html XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/index.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/list_search.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/off.gif XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/on.gif XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/permissions.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/pref.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/stream_search.png XoopsModules/radiostrem/releases/1.21/radiostream/images/deco/update.png XoopsModules/radiostrem/releases/1.21/radiostream/images/index.html XoopsModules/radiostrem/releases/1.21/radiostream/images/logo-big.png XoopsModules/radiostrem/releases/1.21/radiostream/images/logo-txmod.png XoopsModules/radiostrem/releases/1.21/radiostream/images/menu/ XoopsModules/radiostrem/releases/1.21/radiostream/images/menu/bg.png XoopsModules/radiostrem/releases/1.21/radiostream/images/menu/index.html XoopsModules/radiostrem/releases/1.21/radiostream/images/menu/left_both.png XoopsModules/radiostrem/releases/1.21/radiostream/images/menu/right_both.png XoopsModules/radiostrem/releases/1.21/radiostream/images/radiostream_slogo.png XoopsModules/radiostrem/releases/1.21/radiostream/images/txmod_logo.png XoopsModules/radiostrem/releases/1.21/radiostream/include/ XoopsModules/radiostrem/releases/1.21/radiostream/include/functions.php XoopsModules/radiostrem/releases/1.21/radiostream/include/index.html XoopsModules/radiostrem/releases/1.21/radiostream/include/install.php XoopsModules/radiostrem/releases/1.21/radiostream/include/notification.inc XoopsModules/radiostrem/releases/1.21/radiostream/include/notification.php XoopsModules/radiostrem/releases/1.21/radiostream/include/open.php XoopsModules/radiostrem/releases/1.21/radiostream/include/popup.php XoopsModules/radiostrem/releases/1.21/radiostream/include/search.inc.php XoopsModules/radiostrem/releases/1.21/radiostream/include/style.css XoopsModules/radiostrem/releases/1.21/radiostream/index.php XoopsModules/radiostrem/releases/1.21/radiostream/language/ XoopsModules/radiostrem/releases/1.21/radiostream/language/english/ XoopsModules/radiostrem/releases/1.21/radiostream/language/english/admin.php XoopsModules/radiostrem/releases/1.21/radiostream/language/english/blocks.php XoopsModules/radiostrem/releases/1.21/radiostream/language/english/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/ XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/.htaccess XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/global_newstream_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/global_streambroken_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/global_streammodified_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/global_streammodify_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/global_streamsubmit_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/stream_approve_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/stream_streammodified_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/mail_template/streambroken_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/english/main.php XoopsModules/radiostrem/releases/1.21/radiostream/language/english/modinfo.php XoopsModules/radiostrem/releases/1.21/radiostream/language/french/ XoopsModules/radiostrem/releases/1.21/radiostream/language/french/admin.php XoopsModules/radiostrem/releases/1.21/radiostream/language/french/blocks.php XoopsModules/radiostrem/releases/1.21/radiostream/language/french/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/ XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/.htaccess XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/global_newstream_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/global_streambroken_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/global_streammodified_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/global_streammodify_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/global_streamsubmit_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/stream_approve_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/stream_streammodified_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/mail_template/streambroken_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/french/main.php XoopsModules/radiostrem/releases/1.21/radiostream/language/french/modinfo.php XoopsModules/radiostrem/releases/1.21/radiostream/language/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/ XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/admin.php XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/blocks.php XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/ XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/.htaccess XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/global_newstream_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/global_streambroken_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/global_streammodified_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/global_streammodify_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/global_streamsubmit_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/index.html XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/stream_approve_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/stream_streammodified_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/mail_template/streambroken_notify.tpl XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/main.php XoopsModules/radiostrem/releases/1.21/radiostream/language/italian/modinfo.php XoopsModules/radiostrem/releases/1.21/radiostream/notification_update.php XoopsModules/radiostrem/releases/1.21/radiostream/sql/ XoopsModules/radiostrem/releases/1.21/radiostream/sql/index.html XoopsModules/radiostrem/releases/1.21/radiostream/sql/mysql.sql XoopsModules/radiostrem/releases/1.21/radiostream/streamlist.php XoopsModules/radiostrem/releases/1.21/radiostream/submit.php XoopsModules/radiostrem/releases/1.21/radiostream/templates/ XoopsModules/radiostrem/releases/1.21/radiostream/templates/blocks/ XoopsModules/radiostrem/releases/1.21/radiostream/templates/blocks/index.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/blocks/radiostream_block.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/blocks/radiostream_block_inp.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/blocks/radiostream_block_sel.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/blocks/x_radiostream_block.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/index.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/radiostream_index.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/radiostream_streamlist.html XoopsModules/radiostrem/releases/1.21/radiostream/templates/radiostream_submit.html XoopsModules/radiostrem/releases/1.21/radiostream/xoops_version.php XoopsModules/radiostrem/trunk/ Added: XoopsModules/radiostrem/releases/1.01/radiostream/action.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/action.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/action.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,60 @@ +<?php +// +// --------------------------------------------------- +// Module: radiostream +// File: action.php +// Version: 1.0 +// Date-Time: 2008/06/18 15:03:18 +// Author: timgno +// Email: txm...@gm... +// URL: http://txmod.freehostia.com +// --------------------------------------------------- +// +include "../../mainfile.php"; +$myts = &MyTextSanitizer::getInstance(); +$rsl = "radio_stream_list"; +//ADD NEW STREAM +if($_POST['action'] == 'add_stream') +{ + $name = $myts->addslashes(trim($_POST['name'])); + $source = $myts->addslashes(trim($_POST['source'])); + $frequence = $myts->addslashes(trim($_POST['frequence'])); + $website = $myts->addslashes(trim($_POST['website'])); + $city = $myts->addslashes(trim($_POST['city'])); + if($_POST['rid'] > 0) + $xoopsDB->query("UPDATE ".$xoopsDB->prefix($rsl)." + SET rid = $rid, name = '".mysql_escape_string($name)."', + source = '$source', frequence = '$frequence', + website = '$website', city = '$city' WHERE rid = $rid"); + else + $xoopsDB->query("INSERT INTO " . $xoopsDB->prefix($rsl) . " values ('','".mysql_escape_string($name)."','".$source."','".$frequence."','".$website."','".$city."')"); + include(XOOPS_ROOT_PATH.'/header.php'); + redirect_header('index.php', 1, sprintf(_MD_RS_SUCCESFULLYADDED, $name)); + include(XOOPS_ROOT_PATH.'/footer.php'); +} +//EDIT STREAM +if($_POST['action'] == 'edit_stream') +{ + $name = $myts->addslashes(trim($_POST['name'])); + $source = $myts->addslashes(trim($_POST['source'])); + $frequence = $myts->addslashes(trim($_POST['frequence'])); + $website = $myts->addslashes(trim($_POST['website'])); + $city = $myts->addslashes(trim($_POST['city'])); + $xoopsDB->query("UPDATE " . $xoopsDB->prefix($rsl) . " SET name = '".mysql_escape_string($name)."', + source = '$source', frequence = '$frequence', + website = '$website', city = '$city' WHERE rid = '".$_POST['rid']."'"); + include(XOOPS_ROOT_PATH.'/header.php'); + redirect_header('index.php', 1, sprintf(_MD_RS_SUCCESFULLYUPDATE, $name)); + include(XOOPS_ROOT_PATH.'/footer.php'); +} + +//DELETE STREAM +if($_POST['action'] == 'delete_stream') +{ + $name = $_POST['name']; + $xoopsDB->query("DELETE FROM ".$xoopsDB->prefix($rsl)." WHERE rid=".$_POST['rid'].""); + include(XOOPS_ROOT_PATH.'/header.php'); + redirect_header('index.php', 1, sprintf(_MD_RS_SUCCESFULLYDELETED, $name)); + include(XOOPS_ROOT_PATH.'/footer.php'); +} +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/about.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/about.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/about.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,61 @@ +<?php +// +// --------------------------------------------------- +// File: admin/about.php +// Version: 1.0 +// Date-Time: 2008/02/18 14:53:14 +// Author: timgno +// Email: ris...@ne... +// URL: http://www.risorseweb.netsons.org +// --------------------------------------------------- +// + +include "admin_header.php"; + +xoops_cp_header(); +$myts = &MyTextSanitizer::getInstance(); + +include "info_header.php"; +am_menuheader(); + +// Author Information +$sform = new XoopsThemeForm(_AM_RS_AUTHOR_INFO, "", ""); +if ( $versioninfo->getInfo('author_realname')) + $author_name = $versioninfo->getInfo('author') . " (" . $versioninfo->getInfo('author_realname') . ")"; +else + $author_name = $versioninfo->getInfo('author'); +$sform -> addElement(new XoopsFormLabel(_AM_RS_AUTHOR_NAME, $author_name)); +$author_sites = $versioninfo -> getInfo('author_website'); +$author_site_info = ""; +foreach($author_sites as $site){ + $author_site_info .= "<a href='" . $site['url'] . "' target='blank'>" . $site['name'] . "</a>; "; +} +$sform -> addElement(new XoopsFormLabel(_AM_RS_AUTHOR_WEBSITE, $author_site_info)); +$sform -> addElement(new XoopsFormLabel(_AM_RS_AUTHOR_EMAIL, "<a href='mailto:" . $versioninfo -> getInfo('author_email') . "'>" . $versioninfo -> getInfo('author_email') . "</a>")); +$sform -> addElement(new XoopsFormLabel(_AM_RS_AUTHOR_CREDITS, $versioninfo -> getInfo('credits'))); +$sform -> display(); +echo "<br />"; +$sform = new XoopsThemeForm(_AM_RS_MODULE_INFO, "", ""); +$sform -> addElement(new XoopsFormLabel(_AM_RS_MODULE_STATUS, $versioninfo -> getInfo('status'))); +$sform -> addElement(new XoopsFormLabel(_AM_RS_MODULE_XOOPSVERSION, $versioninfo -> getInfo('xoopsversion'))); +$sform -> addElement(new XoopsFormLabel(_AM_RS_MODULE_DEMO, "<a href='" . $versioninfo -> getInfo('demo_site_url') . "' target='blank'>" . $versioninfo -> getInfo('demo_site_name') . "</a>")); +$sform -> addElement(new XoopsFormLabel(_AM_RS_MODULE_SUPPORT, "<a href='" . $versioninfo -> getInfo('support_site_url') . "' target='blank'>" . $versioninfo -> getInfo('support_site_name') . "</a>")); +$sform -> display(); +echo "<br />"; +$file = "../info/readme.txt"; +if (@file_exists($file)) +{ + $fp = @fopen($file, "r"); + $readmetext = @fread($fp, filesize($file)); + @fclose($file); + $sform = new XoopsThemeForm(_AM_RS_ABOUT, "", ""); + ob_start(); + echo "<div class='even' align='left'>".$myts->displayTarea($readmetext)."</div>"; + $sform -> addElement(new XoopsFormLabel('', ob_get_contents(), 0)); + ob_end_clean(); + $sform -> display(); + unset($file); +} + +xoops_cp_footer(); +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/action.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/action.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/action.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,59 @@ +<?php +// +// --------------------------------------------------- +// Module: radiostream +// File: admin/action.php +// Version: 1.0 +// Date-Time: 2008/06/18 15:03:18 +// Author: timgno +// Email: txm...@gm... +// URL: http://txmod.freehostia.com +// --------------------------------------------------- +// +include "../../../mainfile.php"; +$myts = &MyTextSanitizer::getInstance(); +$rsl = "radio_stream_list"; +//ADD NEW STREAM +if($_POST['action'] == 'add_stream') +{ + $name = $myts->addslashes(trim($_POST['name'])); + $source = $myts->addslashes(trim($_POST['source'])); + $frequence = $myts->addslashes(trim($_POST['frequence'])); + $website = $myts->addslashes(trim($_POST['website'])); + $city = $myts->addslashes(trim($_POST['city'])); + if($_POST['rid'] > 0) + $xoopsDB->query("UPDATE ".$xoopsDB->prefix($rsl) . " + SET rid = $rid, name = '".mysql_escape_string($name)."', source = '$source', frequence = '$frequence', + website = '$website', city = '$city' WHERE rid = $rid"); + else + $xoopsDB->query("INSERT INTO " . $xoopsDB->prefix($rsl) . " values ('','".mysql_escape_string($name)."','".$source."','".$frequence."','".$website."','".$city."')"); + include(XOOPS_ROOT_PATH.'/header.php'); + redirect_header('index.php', 1, sprintf(_AM_RS_SUCCESFULLYADDED, $name)); + include(XOOPS_ROOT_PATH.'/footer.php'); +} +//EDIT STREAM +if($_POST['action'] == 'edit_stream') +{ + $name = $myts->addslashes(trim($_POST['name'])); + $source = $myts->addslashes(trim($_POST['source'])); + $frequence = $myts->addslashes(trim($_POST['frequence'])); + $website = $myts->addslashes(trim($_POST['website'])); + $city = $myts->addslashes(trim($_POST['city'])); + $xoopsDB->query("UPDATE " . $xoopsDB->prefix($rsl) . " SET name = '".mysql_escape_string($name)."', + source = '$source', frequence = '$frequence', + website = '$website', city = '$city' WHERE rid = '".$_POST['rid']."'"); + include(XOOPS_ROOT_PATH.'/header.php'); + redirect_header('index.php', 1, sprintf(_AM_RS_SUCCESFULLYUPDATE, $name)); + include(XOOPS_ROOT_PATH.'/footer.php'); +} + +//DELETE STREAM +if($_POST['action'] == 'delete_stream') +{ + $name = $_POST['name']; + $xoopsDB->query("DELETE FROM ".$xoopsDB->prefix($rsl)." WHERE rid=".$_POST['rid'].""); + include(XOOPS_ROOT_PATH.'/header.php'); + redirect_header('index.php', 1, sprintf(_AM_RS_SUCCESFULLYDELETED, $name)); + include(XOOPS_ROOT_PATH.'/footer.php'); +} +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_footer.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_footer.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_footer.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,3 @@ +<?php +xoops_cp_footer(); +?> Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_header.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_header.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/admin_header.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,64 @@ +<?php +// +// --------------------------------------------------- +// File: admin/admin_header.php +// Version: 1.0 +// Date-Time: 2008/06/10 10:03:11 +// Author: timgno +// Email: ris...@ne... +// URL: http://www.risorseweb.netsons.org +// --------------------------------------------------- +// +$admin = "1"; +$debug = "0"; +include '../../../mainfile.php'; +include '../../../include/cp_header.php'; +include_once(XOOPS_ROOT_PATH.'/modules/radiostream/include/functions.php'); + +if ( !file_exists(XOOPS_ROOT_PATH."/modules/radiostream/language/".$xoopsConfig['language']."/admin.php") ){ + include XOOPS_ROOT_PATH."/modules/radiostream/language/".$xoopsConfig['language']."/admin.php"; +} else { + include XOOPS_ROOT_PATH."/modules/radiostream/language/english/admin.php"; +} + +include_once XOOPS_ROOT_PATH . '/class/xoopslists.php'; +include_once XOOPS_ROOT_PATH . '/class/xoopsformloader.php'; +include_once XOOPS_ROOT_PATH . '/class/uploader.php'; + +$myts = &MyTextSanitizer::getInstance(); + +global $xoopsDB; +$op = ""; +if (isset($_POST)) +{ + foreach ($_POST as $k => $v) + { + ${$k} = $v; + } +} + +if (isset($_GET)) +{ + foreach ($_GET as $k => $v) + { + ${$k} = $v; + } +} + +if (isset($_GET['op'])) $op = $_GET['op']; +if (isset($_POST['op'])) $op = $_POST['op']; + + +if (is_object($xoopsUser)) { + $xoopsModule = XoopsModule::getByDirname("radiostream"); + if (!$xoopsUser->isAdmin($xoopsModule->mid())) { + redirect_header(XOOPS_URL."/",1,_NOPERM); + exit(); + } +} else { + redirect_header(XOOPS_URL."/",1,_NOPERM); + exit(); +} + +//xoops_cp_header(); +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.html =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.html (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.html 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/index.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,31 @@ +<?php +include ('admin_header.php'); +switch ( $op ) +{ + case "add": + xoops_cp_header(); + am_menuheader(); + addStream(); + break; + + case "edit": + xoops_cp_header(); + am_menuheader(); + editStream(); + break; + + case "delete": + xoops_cp_header(); + am_menuheader(); + deleteStream(); + break; + + case "main": + default: + xoops_cp_header(); + am_menuheader(); + Stream(); + break; +} +include ('admin_footer.php'); +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/info_header.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/info_header.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/info_header.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,40 @@ +<?php +// +// --------------------------------------------------- +// File: admin/info_header.php +// Version: 1.0 +// Date-Time: 2008/05/11 11:34:40 +// Author: timgno +// Email: ris...@ne... +// URL: http://www.risorseweb.netsons.org +// --------------------------------------------------- +// + +include "admin_header.php"; + +$module_handler =& xoops_gethandler('module'); +$versioninfo =& $module_handler->get($xoopsModule->getVar('mid')); + +// Left headings... +echo "<a href='index.php'><img src='" . XOOPS_URL . "/modules/" . $xoopsModule -> dirname() . "/" . $versioninfo -> getInfo('image') . "' alt='' hspace='10' vspace='0' align='left'></a>"; +echo "<div style='margin-top: 10px; color: #33538e; margin-bottom: 4px; font-size: 18px; line-height: 18px; font-weight: bold; display: block;'>" . $versioninfo->getInfo('name') . " ver " . $versioninfo->getInfo('version') . "</div>"; +echo "</div>"; +echo " -------------------------------- "; +echo "<div>" . _AM_RS_RELEASE . ": " . $versioninfo -> getInfo('releasedate') . "</div><br />"; +echo '<div align="center">'._AM_RS_DONMESSAGE.'<br /> + <form action="https://www.paypal.com/it/cgi-bin/webscr" target="paypal" method="post"> + <input type="hidden" name="cmd" value="_xclick" /> + <input type="hidden" name="amount" id="paypal" value="5"> + <input type="hidden" name="business" value="txm...@gm..."> + <input type="hidden" name="rm" value="2"> + <input type="hidden" name="on0" value="List your name? "> + <input type="hidden" name="item_number" value="110"> + <input type="hidden" name="notify_url" value="http://mcdirectory.netsons.org/txmod/modules/donations/ipnppd.php"> + <input type="hidden" name="currency_code" value="EUR"> + <input type="hidden" name="cn" value="Comments"> + <input type="hidden" name="custom" value="txm...@gm..."> + <input type="hidden" name="image_url" value="http://mcdirectory.netsons.org/txmod/themes/obscene/img/logo.gif"> + <input type="image" src="https://www.paypal.com/it_IT/i/btn/x-click-but04.gif" border="0" name="submit" alt="Paga con PayPal - veloce, gratuito e sicuro!" /> + </form> + </div>'; +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/admin/menu.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/admin/menu.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/admin/menu.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,19 @@ +<?php +// +// --------------------------------------------------- +// File: menu.php +// Version: 1.0 +// Date-Time: 2008/02/15 10:33:10 +// Author: timgno +// Email: ris...@ne... +// URL: http://www.risorseweb.netsons.org +// --------------------------------------------------- +// +$adminmenu[0]['title'] = _MI_RS_ADMENU0; +$adminmenu[0]['link'] = "admin/index.php"; +$adminmenu[1]['title'] = _MI_RS_ADMENU1; +$adminmenu[1]['link'] = "admin/index.php?op=add"; +$adminmenu[2]['title'] = _MI_RS_ADMENU2; +$adminmenu[2]['link'] = "admin/about.php"; + +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/blocks/index.html =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/blocks/index.html (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/blocks/index.html 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/blocks/radio_block.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/blocks/radio_block.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/blocks/radio_block.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,56 @@ +<?php +/* +function radio_show() +{ + global $xoopsDB; + $allow_users = "1"; + + $block = array(); + $result = $xoopsDB->query("SELECT rid, name FROM " . $xoopsDB->prefix("radio_stream") . " WHERE rid > 0 ORDER BY name DESC"); + $stream = array(); + while($myrow = $xoopsDB->fetchArray($result)) + { + $stream['name'] = "<option value='".$myrow["rid"]."'>".$myrow["name"]."</option>"; + $block['names'][] = $stream; + } + $block['lang_choice'] = _choice; + $block['lang_url'] = _url; + $block['lang_name'] = _name; + $block['lang_listen'] = _listen; + $block['lang_error'] = _error; + $block['allow_users'] = $allow_users; + return $block; +} */ + +function radio_show() +{ + global $xoopsDB; + $allow_users = "1"; + $block = array(); + ///////////////////////////////////// + //Select form to change Kewords view + $result = $xoopsDB->query( "SELECT * FROM ".$xoopsDB->prefix("radio_stream_list")." ORDER By name ASC"); + $datas = array(); + while ( $myrow = $xoopsDB->fetchArray($result) ) + { + $datas[]=$myrow; + } + $radiobox="<form style='margin:0; padding:0;' action='".XOOPS_URL."/modules/radiostream/include/open.php' target='radio' name='radiostream' onsubmit='popupradio(this)' method='get'> + <select name='predefstream' size='1' onChange='popupradio(this); document.radiostream.submit();'> + <option value='' selected>----------</option>"; + foreach($datas as $data) + { + $radiobox = $radiobox . "<option value='".$data['name']."'>".$data['name']."</option>"; + } + $radiobox = $radiobox."</select>"; // form end in template file = </form> + $block['lang_choice'] = _choice; + $block['lang_url'] = _url; + $block['lang_name'] = _name; + $block['lang_listen'] = _listen; + $block['lang_error'] = _error; + $block['allow_users'] = $allow_users; + $block['radiobox'] = $radiobox; + ///////////////////////////////////// + return $block; +} +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,269 @@ +<?php + +class radio_stream +{ + + /*** + * DB Fields: rid + **/ + var $rid; + + /*** + * DB Fields: name + **/ + var $name; + + /*** + * DB Fields: source + **/ + var $source; + + /*** + * DB Fields: frequence + **/ + var $frequence; + + /*** + * DB Fields: website + **/ + var $website; + + /*** + * DB Fields: city + **/ + var $city; + +//--------------- GET METHODS ----------------------------- // + /*** + * Get value for field: rid + * @result rid + **/ + function get_rid( ) { + // returns the value of rid + return $this->rid; + } + + /*** + * Get value for field: name + * @result name + **/ + function get_name( ) { + // returns the value of name + return $this->name; + } + + /*** + * Get value for field: source + * @result source + **/ + function get_source( ) { + // returns the value of source + return $this->source; + } + + /*** + * Get value for field: frequence + * @result frequence + **/ + function get_frequence( ) { + // returns the value of frequence + return $this->frequence; + } + + /*** + * Get value for field: website + * @result website + **/ + function get_website( ) { + // returns the value of website + return $this->website; + } + + /*** + * Get value for field: city + * @result city + **/ + function get_city( ) { + // returns the value of city + return $this->city; + } + +//--------------- SET METHODS ----------------------------- // + /*** + * Set value for field: rid + * @param rid + * @result void + **/ + function set_rid( $rid ) { + // sets the value of rid + $this->rid = $rid; + } + /*** + * Set value for field: name + * @param name + * @result void + **/ + function set_name( $name ) { + // sets the value of name + $this->name = $name; + } + /*** + * Set value for field: source + * @param source + * @result void + **/ + function set_source( $source ) { + // sets the value of source + $this->source = $source; + } + /*** + * Set value for field: frequence + * @param frequence + * @result void + **/ + function set_frequence( $frequence ) { + // sets the value of frequence + $this->frequence = $frequence; + } + /*** + * Set value for field: website + * @param website + * @result void + **/ + function set_website( $website ) { + // sets the value of website + $this->website = $website; + } + /*** + * Set value for field: city + * @param city + * @result void + **/ + function set_city( $city ) { + // sets the value of city + $this->city = $city; + } +//--------------- CRUD METHODS ----------------------------- // + /*** + * Create a new Record: radio_stream + * @param rid + * @param name + * @param source + * @param frequence + * @param website + * @param city + * @result void + **/ + function createnew_radio_stream( $rid, $name, $source, $frequence, $website, $city ) { + + // items to be inserted in the database + $_obj = array($rid, + $name, + $source, + $frequence, + $website, + $city); + + // database object connection + $dbConn = $GLOBALS['dbConn']; + + // perform insert in the database + $dbConn->insert("radio_stream", $_obj); + } + /*** + * Retrived an existing record: radio_stream + * @param rid + * @result new radio_stream + **/ + function get_radio_stream( $rid ) { + + // retrive the data + $dbConn = $GLOBALS['dbConn']; + + // retrieved value in the database + $_resultSet = $dbConn->doQuery("SELECT * FROM radio_stream WHERE rid = '$rid'"); + + $__radio_streamObj = new radio_stream(); + // return the retrived from the database + + // create a new object + $__obj = new radio_stream(); + $__obj->set_rid($_resultSet[0]['rid']); + $__obj->set_name($_resultSet[0]['name']); + $__obj->set_source($_resultSet[0]['source']); + $__obj->set_frequence($_resultSet[0]['frequence']); + $__obj->set_website($_resultSet[0]['website']); + $__obj->set_city($_resultSet[0]['city']); + + + return $__obj; + } + /*** + * Update an existing record: radio_stream + * @param rid + * @param itemsToBeUpdated = array() + * @result void + **/ + function update_radio_stream( $rid, $itemsToBeUpdated = array() ) { + + // get database connection + $dbConn = $GLOBALS['dbConn']; + + // performs update in the database + foreach($itemsToBeUpdated as $_fName => $_fVal) { + $dbConn->addValuePair($_fName, $_fVal); + } + + // perform update operation + $dbConn->update("radio_stream", "rid = '$rid'"); + } + /*** + * Delete an existing record: radio_stream + * @param rid + * @result void + **/ + function delete_radio_stream( $rid ) { + + // get database connection + $dbConn = $GLOBALS['dbConn']; + + // performs deletion of data + $dbConn->delete("radio_stream", "rid = '$rid'"); + } + /*** + * Retrived list of objects base on a given parameters: radio_stream + * @param conditionalStatement = '' + * @result collection of objects: radio_stream + **/ + function list_radio_stream( $conditionalStatement = '' ) { + + $dbConn = $GLOBALS['dbConn']; + // check if there is a given parameter list + if(!empty($conditionalStatement)) { + $sqlStatement = "SELECT * FROM radio_stream WHERE $conditionalStatement"; + } else { + $sqlStatement = "SELECT * FROM radio_stream"; + } + + // retrieve the values base on the query result + $__resObj = $dbConn->doQuery($sqlStatement); + + $__collectionOfObjects = array(); + foreach($__resObj as $__rs) { + $__newObj = new radio_stream(); + + $__newObj->set_rid($__rs['rid']); + $__newObj->set_name($__rs['name']); + $__newObj->set_source($__rs['source']); + $__newObj->set_frequence($__rs['frequence']); + $__newObj->set_website($__rs['website']); + $__newObj->set_city($__rs['city']); + + // add object to collection + array_push($__collectionOfObjects, $__newObj); + } + + // return collection of objects + return $__collectionOfObjects; + } +} ?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.class.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,270 @@ +<?php + +class radio_stream +{ + /*** + * DB Fields: rid + **/ + var $rid; + + /*** + * DB Fields: name + **/ + var $name; + + /*** + * DB Fields: source + **/ + var $source; + + /*** + * DB Fields: frequence + **/ + var $frequence; + + /*** + * DB Fields: website + **/ + var $website; + + /*** + * DB Fields: city + **/ + var $city; + +//--------------- GET METHODS ----------------------------- // + /*** + * Get value for field: rid + * @result rid + **/ + function get_rid( ) { + // returns the value of rid + return $this->rid; + } + + /*** + * Get value for field: name + * @result name + **/ + function get_name( ) { + // returns the value of name + return $this->name; + } + + /*** + * Get value for field: source + * @result source + **/ + function get_source( ) { + // returns the value of source + return $this->source; + } + + /*** + * Get value for field: frequence + * @result frequence + **/ + function get_frequence( ) { + // returns the value of frequence + return $this->frequence; + } + + /*** + * Get value for field: website + * @result website + **/ + function get_website( ) { + // returns the value of website + return $this->website; + } + + /*** + * Get value for field: city + * @result city + **/ + function get_city( ) { + // returns the value of city + return $this->city; + } + +//--------------- SET METHODS ----------------------------- // + /*** + * Set value for field: rid + * @param rid + * @result void + **/ + function set_rid( $rid ) { + // sets the value of rid + $this->rid = $rid; + } + /*** + * Set value for field: name + * @param name + * @result void + **/ + function set_name( $name ) { + // sets the value of name + $this->name = $name; + } + /*** + * Set value for field: source + * @param source + * @result void + **/ + function set_source( $source ) { + // sets the value of source + $this->source = $source; + } + /*** + * Set value for field: frequence + * @param frequence + * @result void + **/ + function set_frequence( $frequence ) { + // sets the value of frequence + $this->frequence = $frequence; + } + /*** + * Set value for field: website + * @param website + * @result void + **/ + function set_website( $website ) { + // sets the value of website + $this->website = $website; + } + /*** + * Set value for field: city + * @param city + * @result void + **/ + function set_city( $city ) { + // sets the value of city + $this->city = $city; + } +//--------------- CRUD METHODS ----------------------------- // + /*** + * Create a new Record: radio_stream + * @param rid + * @param name + * @param source + * @param frequence + * @param website + * @param city + * @result void + **/ + function createnew_radio_stream( $rid, $name, $source, $frequence, $website, $city ) { + + // items to be inserted in the database + $_obj = array($rid, + $name, + $source, + $frequence, + $website, + $city); + + // database object connection + $dbConn = $GLOBALS['dbConn']; + + // perform insert in the database + $dbConn->insert("radio_stream", $_obj); + } + /*** + * Retrived an existing record: radio_stream + * @param rid + * @result new radio_stream + **/ + function get_radio_stream( $rid ) { + + // retrive the data + $dbConn = $GLOBALS['dbConn']; + + // retrieved value in the database + $_resultSet = $dbConn->doQuery("SELECT * FROM radio_stream WHERE rid = '$rid'"); + + $__radio_streamObj = new radio_stream(); + // return the retrived from the database + + // create a new object + $__obj = new radio_stream(); + $__obj->set_rid($_resultSet[0]['rid']); + $__obj->set_name($_resultSet[0]['name']); + $__obj->set_source($_resultSet[0]['source']); + $__obj->set_frequence($_resultSet[0]['frequence']); + $__obj->set_website($_resultSet[0]['website']); + $__obj->set_city($_resultSet[0]['city']); + + + return $__obj; + } + /*** + * Update an existing record: radio_stream + * @param rid + * @param itemsToBeUpdated = array() + * @result void + **/ + function update_radio_stream( $rid, $itemsToBeUpdated = array() ) { + + // get database connection + $dbConn = $GLOBALS['dbConn']; + + // performs update in the database + foreach($itemsToBeUpdated as $_fName => $_fVal) { + $dbConn->addValuePair($_fName, $_fVal); + } + + // perform update operation + $dbConn->update("radio_stream", "rid = '$rid'"); + } + /*** + * Delete an existing record: radio_stream + * @param rid + * @result void + **/ + function delete_radio_stream( $rid ) { + + // get database connection + $dbConn = $GLOBALS['dbConn']; + + // performs deletion of data + $dbConn->delete("radio_stream", "rid = '$rid'"); + } + /*** + * Retrived list of objects base on a given parameters: radio_stream + * @param conditionalStatement = '' + * @result collection of objects: radio_stream + **/ + function list_radio_stream( $conditionalStatement = '' ) { + + $dbConn = $GLOBALS['dbConn']; + // check if there is a given parameter list + if(!empty($conditionalStatement)) { + $sqlStatement = "SELECT * FROM radio_stream WHERE $conditionalStatement"; + } else { + $sqlStatement = "SELECT * FROM radio_stream"; + } + + // retrieve the values base on the query result + $__resObj = $dbConn->doQuery($sqlStatement); + + $__collectionOfObjects = array(); + foreach($__resObj as $__rs) + { + $__newObj = new radio_stream(); + + $__newObj->set_rid($__rs['rid']); + $__newObj->set_name($__rs['name']); + $__newObj->set_source($__rs['source']); + $__newObj->set_frequence($__rs['frequence']); + $__newObj->set_website($__rs['website']); + $__newObj->set_city($__rs['city']); + + // add object to collection + array_push($__collectionOfObjects, $__newObj); + } + + // return collection of objects + return $__collectionOfObjects; + } +} +?> \ No newline at end of file Added: XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.php =================================================================== --- XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.php (rev 0) +++ XoopsModules/radiostrem/releases/1.01/radiostream/class/radio_stream.php 2012-02-12 20:32:16 UTC (rev 8941) @@ -0,0 +1,163 @@ +<?php +/* + * Class Radio Stream + * + */ +class radio_stream +{ + var $db; + var $url; + var $table; + var $params; + var $attribs; + var $rid; + var $value; + var $size; + var $selected; + var $emptyselect; + + function radio_stream($rid, $value = null, $selected = '', $size = 1, $emptyselect = 0) + { + $this->db =& Database::getInstance(); + $this->table = $this->db->prefix("radio_stream_list"); + $this->rid = $rid; + $this->value = $value; + $this->selection = $selected; + $this->path = $path; + $this->size = intval($size); + $this->emptyselect = ($emptyselect) ? 0 : 1; + } + + function getObject($url, $width, $height) + { + echo '<object id="NSPlay" width="'.$width.'" height="'.$height.'" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" align="center">'; + echo $this->getParam(); + echo $this->getEmbed($url, $width, $height); + echo '</object>'; + } + /* + * Function get embedded line + */ + function getEmbed($url, $width, $height) + { + $tmp = ""; + $this->attribs = $this->getAttribs($url, $width, $height); + foreach($this->attribs as $name => $value) + { + $tmp .= " $name='$value'"; + } + return "<embed$tmp></embed>"; + } + /* + * Function get param + */ + function getParam() + ... [truncated message content] |
From: <ma...@us...> - 2012-02-12 19:59:36
|
Revision: 8940 http://xoops.svn.sourceforge.net/xoops/?rev=8940&view=rev Author: mageg Date: 2012-02-12 19:59:29 +0000 (Sun, 12 Feb 2012) Log Message: ----------- fixed bug (ID: 3432275) Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/pm/language/english/help/help.html XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/profile/language/english/help/help.html XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/protector/language/english/help/help.html Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/pm/language/english/help/help.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/pm/language/english/help/help.html 2012-02-12 19:00:44 UTC (rev 8939) +++ XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/pm/language/english/help/help.html 2012-02-12 19:59:29 UTC (rev 8940) @@ -1,39 +1,19 @@ <div id="help-template" class="outer"> - <h1 class="head">Help: - <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/pm/admin/admin.php" - title="Back to the administration of PM"> Private Messaging - <img src="<{xoAdminIcons home.png}>" - alt="Back to the Administration of >M"/> - </a></h1> - <!-- ===== Help Content ======= --> - - <h4 class="odd">Description</h4><br/> - - The PM module is for private messaging between users<br/><br/> - <h4 class="odd">Install/uninstall</h4><br/> - - No special measures necessary, follow the standard installation process – - extract the /pm folder into the - ../modules directory. Install the module through Admin -> System Module -> - Modules. <br/><br/> - Detailed instructions on installing modules are available in the - <a href="http://goo.gl/adT2i">XOOPS Operations - Manual</a><br/><br/> - - <h4 class="odd">Operating instructions</h4><br/> - To set up this module you need to:<br/><br/> - i) You enter your Inbox directly from the front page, or by clicking on the - top link "Go to module" in the PM's Admin area <br/><br/> - ii) Configure your preferences for the module (see ‘Preferences’) and - optionally the PM block if you intend to - use it (see ‘Blocks’)<br/><br/> - iii) You can do mass deleting of your messages by using the "Prune Messages" - tab<br/><br/> - <h4 class="odd">Tutorial</h4><br/> - - - Tutorial coming soon.<br/> - - <!-- ===== Help Content ======= --> - + <h1 class="head">Help: <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/pm/admin/admin.php" title="Back to the administration of PM"> Private Messaging <img src="<{xoAdminIcons home.png}>" alt="Back to the administration of PM"/></a></h1> + <!-- -----Help Content ---------- --> + <h4 class="odd">Description</h4> + <p class="even">The PM module is for private messaging between users</p> + <h4 class="odd">Install/uninstall</h4> + <p>No special measures necessary, follow the standard installation process – extract the /pm folder into the ../modules directory. Install the module through Admin -> System Module -> Modules.</p> + <p>Detailed instructions on installing modules are available in the <a href="http://goo.gl/adT2i" title="XOOPS Operations Manual">XOOPS Operations Manual</a> </p> + <h4 class="odd">Operating instructions</h4> + <p class="even">To set up this module you need to:</p> + <ul> + <li>You enter your Inbox directly from the front page, or by clicking on the top link "Go to module" in the PM's Admin area.</li> + <li>Configure your preferences for the module (see ‘Preferences’) and optionally the PM block if you intend to use it (see ‘Blocks’).</li> + <li>ou can do mass deleting of your messages by using the "Prune Messages" tab.</li> + </ul> + <h4 class="odd">Tutorial</h4> + <p class="even">Tutorial coming soon.</p> + <!-- -----Help Content ---------- --> </div> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/profile/language/english/help/help.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/profile/language/english/help/help.html 2012-02-12 19:00:44 UTC (rev 8939) +++ XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/profile/language/english/help/help.html 2012-02-12 19:59:29 UTC (rev 8940) @@ -1,36 +1,21 @@ <div id="help-template" class="outer"> - <h1 class="head">Help: - <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/profile/admin/index.php" - title="Back to the administration of User Profile"> Profile <img src="<{xoAdminIcons home.png}>" - alt="Back to the Administration of Profile"/> - </a></h1> - <!-- ===== Help Content ======= --> - - <h4 class="odd">Description</h4><br/> - - - The Profile module is for managing custom user profile fields.<br/><br/> - <h4 class="odd">Install/uninstall</h4><br/> - - No special measures necessary, follow the standard installation process – extract the xoopspartners folder into the - ../modules directory. Install the module through Admin -> System Module -> Modules. <br/><br/> - Detailed instructions on installing modules are available in the <a href="http://goo.gl/adT2i">XOOPS Operations - Manual</a><br/><br/> - - - <h4 class="odd">Operating instructions</h4><br/> - To set up this module you need to:<br/><br/> - i) Configure your preferences for the module (see ‘Preferences’) and optionally the Partners block if you intend to - use it (see ‘Blocks’)<br/><br/> - ii) Edit existing Categories or add new ones.<br/><br/> - iii) Edit existing Fields or add new ones. Here you can specify which fields will be visible in which category, and if they will be visible during user registration<br/><br/> - iv) Define the order of Registration steps <br/><br/> - v) And finally, you can set permissions for individual fields - which ones are editable, which ones are searchable<br/><br/> - <h4 class="odd">Tutorial</h4><br/> - - - A Tutorial is coming soon. <br/><br/> - - <!-- ===== Help Content ======= --> - + <h1 class="head">Help: <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/profile/admin/index.php" title="Back to the Administration of Profile"> Profile <img src="<{xoAdminIcons home.png}>" alt="Back to the Administration of Profile"/></a></h1> + <!-- -----Help Content ---------- --> + <h4 class="odd">Description</h4> + <p class="even">The Profile module is for managing custom user profile fields.</p> + <h4 class="odd">Install/uninstall</h4> + <p>No special measures necessary, follow the standard installation process – extract the /profile folder into the ../modules directory. Install the module through Admin -> System Module -> Modules.</p> + <p>Detailed instructions on installing modules are available in the <a href="http://goo.gl/adT2i" title="XOOPS Operations Manual">XOOPS Operations Manual</a> </p> + <h4 class="odd">Operating instructions</h4> + <p class="even">To set up this module you need to:</p> + <ul> + <li>Configure your preferences for the module (see ‘Preferences’) and optionally the Profile block if you intend to use it (see ‘Blocks’).</li> + <li>Edit existing Categories or add new ones.</li> + <li>Edit existing Fields or add new ones. Here you can specify which fields will be visible in which category, and if they will be visible during user registration.</li> + <li>Define the order of Registration steps.</li> + <li>And finally, you can set permissions for individual fields - which ones are editable, which ones are searchable.</li> + </ul> + <h4 class="odd">Tutorial</h4> + <p class="even">Tutorial coming soon.</p> + <!-- -----Help Content ---------- --> </div> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/protector/language/english/help/help.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/protector/language/english/help/help.html 2012-02-12 19:00:44 UTC (rev 8939) +++ XoopsCore/branches/2.5.x/2.5.5/htdocs/modules/protector/language/english/help/help.html 2012-02-12 19:59:29 UTC (rev 8940) @@ -1,4 +1,77 @@ <div id="help-template" class="outer"> + <h1 class="head">Help: <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/protector/admin/index.php" title="Back to the administration of Protector"> Protector <img src="<{xoAdminIcons home.png}>" alt="Back to the administration of Protector"/></a></h1> + <!-- -----Help Content ---------- --> + <h4 class="odd">Description</h4> + <p class="even">Protector is a module to defend your XOOPS CMS from various malicious attacks.</p> + <h4 class="odd">Install/uninstall</h4> + <p>First, define XOOPS_TRUST_PATH into mainfile.php if you've never done it yet.</p> + <br /> + <p>Copy html/modules/protector in the archive into your XOOPS_ROOT_PATH/modules/</p> + <p>Copy xoops_trust_path/modules/protector in the archive into your XOOPS_TRUST_PATH/modules/</p> + <br /> + <p>Turn permission of XOOPS_TRUST_PATH/modules/protector/configs writable</p> + <h4 class="odd">= How to rescue =</h4> + <p class="even">If you've been banned from Protector, just delete files under XOOPS_TRUST_PATH/modules/protector/configs/</p> + <h4 class="odd">Introduction for filter-plugins in this archive.</h4> + <p class="even">- postcommon_post_deny_by_rbl.php + <br /> + an anti-SPAM plugin. + <br /> + All of Post from IP registered in RBL will be rejected. + <br /> + This plugin can slow the performance of Post, especially chat modules. + </p> + <p>- postcommon_post_deny_by_httpbl.php + <br /> + an anti-SPAM plugin. + <br /> + All of Post from IP registered in http:BL will be rejected. + <br /> + Before using it, get HTTPBL_KEY from http://www.projecthoneypot.org/ and set it into the filter file. + <br /> + define( 'PROTECTOR_HTTPBL_KEY' , '............' ) ; + </p> + <p class="even">- postcommon_post_need_multibyte.php + <br /> + an anti-SPAM plugin. + <br /> + Post without multi-byte characters will be rejected. + <br /> + This plugin is only for sites of japanese, tchinese, schinese, and korean. + </p> + <p>- postcommon_post_htmlpurify4guest.php + <br /> + All post data sent by guests will be purified by HTMLPurifier. + <br /> + If you allow guests posting HTML, I strongly recommend you to enable it. + </p> + <p class="even">-postcommon_register_insert_js_check.php + <br /> + This plugin prevents your site from robot's user registering. + <br /> + Required JavaScript working on the vistors browser. + </p> + <p>- bruteforce_overrun_message.php + <br /> + Specify a message for visitors tried wrong passwords more than the specified times. + <br /> + All plugins named *_message.php specifys the message for rejected accesses. + </p> + <p class="even">- precommon_bwlimit_errorlog.php + <br /> + When band width limitaion works unfortunately, this plugin logs it into Apache's error_log. + </p> + <p>All plugins named *_errorlog.php log some informations into Apaches error_log.</p> + <h4 class="odd">Tutorial</h4> + <p class="even">Tutorial coming soon.</p> + <!-- -----Help Content ---------- --> +</div> + + + + + +<div id="help-template" class="outer"> <h1 class="head">Help: <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/protector/admin/index.php" title="Back to the administration of Protector"> Protector This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2012-02-12 19:00:51
|
Revision: 8939 http://xoops.svn.sourceforge.net/xoops/?rev=8939&view=rev Author: beckmi Date: 2012-02-12 19:00:44 +0000 (Sun, 12 Feb 2012) Log Message: ----------- fixing bug for Anonymous user Modified Paths: -------------- XoopsModules/extcal/branches/jjdai/extcal/class/event.php Modified: XoopsModules/extcal/branches/jjdai/extcal/class/event.php =================================================================== --- XoopsModules/extcal/branches/jjdai/extcal/class/event.php 2012-02-12 16:17:54 UTC (rev 8938) +++ XoopsModules/extcal/branches/jjdai/extcal/class/event.php 2012-02-12 19:00:44 UTC (rev 8939) @@ -1997,13 +1997,17 @@ $searchExp, $andor, $orderBy) { global $xoopsDB, $xoopsUser; - $userId = $xoopsUser->getVar('uid'); + if (isset($xoopsUser)) { + $userId = $xoopsUser->getVar('uid'); + $result = $this->getSearchEvents( + $year, $month, $day, $cat, $searchExp, $andor, $orderBy, 0, 0, $userId, $xoopsUser + ); + } else { + $result = $this->getSearchEvents( + $year, $month, $day, $cat, $searchExp, $andor, $orderBy, 0, 0 + ); + } - $result = $this->getSearchEvents($year, $month, $day, $cat, - $searchExp, $andor, $orderBy, - 0,0, - $userId,$xoopsUser); - $ret = array(); while ($myrow = $xoopsDB->fetchArray($result)) { $myrow['cat']['cat_name'] = $myrow['cat_name']; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2012-02-12 16:18:00
|
Revision: 8938 http://xoops.svn.sourceforge.net/xoops/?rev=8938&view=rev Author: renetjuh Date: 2012-02-12 16:17:54 +0000 (Sun, 12 Feb 2012) Log Message: ----------- Update NL language files fmcontent 1.06 Modified Paths: -------------- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/Thumbs.db Modified: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/Thumbs.db =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2012-02-12 16:17:03
|
Revision: 8937 http://xoops.svn.sourceforge.net/xoops/?rev=8937&view=rev Author: renetjuh Date: 2012-02-12 16:16:57 +0000 (Sun, 12 Feb 2012) Log Message: ----------- Update NL language files fmcontent 1.06 Modified Paths: -------------- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html Modified: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html 2012-02-12 13:38:34 UTC (rev 8936) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html 2012-02-12 16:16:57 UTC (rev 8937) @@ -6,18 +6,7 @@ </a></h1> <!-- -----Help Content ---------- --> - <h4 class="odd">Omschrijving</h4> - - <p class="even"> - fmContent is een XOOPS module waarmee scrollende teksten gemaakt worden (fmContents). Er kan een onbeperkt aantal aan fmContents aangemaakt worden - en hiervoor 4 verschillende blokken gebruiken. Teksten kunnen scrollen van rechts naar links en van boven naar beneden.</p> - - <p class="even"> - Maak gebruik een WYSIWYG-editor om de content nog aantrekkelijker te maken.</p> - - <!-- -----Help Content ---------- --> - - <h4 class="odd">Hoofdlijn</h4> + <h4 class="odd">Omschrijving</h4> <ul> <li>Deze module biedt content management voor XOOPS.</li> <li>Daarnaast zorgt het voor beheer van pagina-inhoud en een dynamisch menu</li> @@ -36,27 +25,27 @@ </ul> <h4 class="odd">Content</h4> <ul> - <li>Add some different content for Xoops like page, link, section header and separator.</li> - <li>All differnet content permit to create a dynamic menu link to the content page.</li> + <li>Maak verschillende content aan voor een XOOPS site zoals pagina's, linken, sectietitels en scheiding tussen twee linken.</li> + <li>Alle content staat toe dat een link wordt toegevoegd aan het dynamische menu.</li> <li> - "content": create your own page.<br /> - You must specify a page title, a menu title and the text of your page.<br /> - You can also define a page alias for choose an unique page name which is use for the url. (This is not mandatory, module can create the alias with the page name define) + "content": maak een eigen pagina.<br /> + Een paginatitel, menutitel en content dient aangemaakt te worden.<br /> + Een pagina-alias kan aangemaakt worden om een unieke paginanaam te gebruiken in de URL. (This is not mandatory, module can create the alias with the page name define) </li> <li> - "link": add an internal or external link in your dynamic menu.<br /> - For exemple, you can create a simple link for redirect the the homepage of your site. + "link": Toevoegen van een interne of externe link aan het dynamische menu.<br /> + Bijvoorbeeld: maak een link aan om terug te keren naar de hoofdpagina van de website. </li> - <li>"section header": create a non-clickable section for your menu.</li> - <li>"Scheiding": create a separator for your menu.</li> + <li>"Sectie naam": Maak een sectie aan in het menu die niet aanklikbaar is.</li> + <li>"Scheiding": maak een scheiding in het menu tussen 2 verschillende linken.</li> </ul> <h4 class="odd">Instellingen</h4> <ul> - <li>"Form Option": Choose your WYSIWYG editor. This setting need to have the xoops editor class made by phppp (DJ)</li> - <li>"Use friendly url?": Use the standard mode for have url like 'index.php?page=My-Content', or use the friendly mode for have url like 'index.php/My-Content' and finally you can activate the url rewriting if your server permit this option for have url like 'content/My-Content.html' (You must copy the .htaccess in your modules directory or in the root path see the extras/readme.txt for more information)</li> - <li>"Choose the url rewriting base": this setting work only if url rewriting module is activate on your server. This option permit to choose if you want to display the '/module/' in your url.</li> - <li>"Groups access": Define the genral rule for group access.</li> - <li>"Use module Tell a friend?": If Tell a friend module is installed on your Xoops, you can see this option and use it for send email.</li> + <li>"Formulieropties": Kies een WYSIWYG editor. Voor deze instelling is de XOOPs editor class benodigd gemaakt door phppp (DJ)</li> + <li>"gebruikersvriendelijke URL?": Gebruik de standaard voor URL's zoals 'index.php?page=My-Content', of gebruik de vriendelijke methode om URL's te gebruiken zoals 'index.php/My-Content' en als laatste kan de URL rewriting van de server geactiveerd worden (als dit is toegestaan) om links te krijgen zoals 'content/My-Content.html' (De .htaccess moet gekopieerd zijn in de modules map of in het root pad. Zie ook de extras/readme.txt voor meer informatie)</li> + <li>"Kies de URL herschrijf methode": Deze instelling is alleen werkzaam als de URL herschrijf methode is geactiveerd. De optie staat toe of de '/module/' deel getoond wordt in in de URL.</li> + <li>"Groepenpermissies": Defineer de standaard instellingen voor groepenpermissies.</li> + <li>"gebruik module Tell a friend?": Als de Tell a friend module is geinstalleerd in de website, is deze optie zichtbaar en kan een gebruiker hiermee een mail sturen om de content te delen.</li> </ul> </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: <dj...@us...> - 2012-02-12 13:38:41
|
Revision: 8936 http://xoops.svn.sourceforge.net/xoops/?rev=8936&view=rev Author: djculex Date: 2012-02-12 13:38:34 +0000 (Sun, 12 Feb 2012) Log Message: ----------- Bugfix: Keep imagegallery in colorbox even if imageData.index is null Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt XoopsModules/smallworld/trunk/smallworld/js/jquery.galleriffic.js Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 22:15:12 UTC (rev 8935) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-12 13:38:34 UTC (rev 8936) @@ -14,6 +14,10 @@ - Bugfix: Added missing function previously added to svn ?? wierd! - Bugfix: Gender was missing in select multi for form items - Bugfix: Remove error in json reply + +12. Fevruary 2012 +- Bugfix: Keep imagegallery in colorbox even if imageData.index is null + ------------------------------ Changelog v.1.10 RC ------------------------------ Modified: XoopsModules/smallworld/trunk/smallworld/js/jquery.galleriffic.js =================================================================== --- XoopsModules/smallworld/trunk/smallworld/js/jquery.galleriffic.js 2012-02-11 22:15:12 UTC (rev 8935) +++ XoopsModules/smallworld/trunk/smallworld/js/jquery.galleriffic.js 2012-02-12 13:38:34 UTC (rev 8936) @@ -279,14 +279,20 @@ isPreloadComplete: false, - // Initalizes the image preloader - preloadInit: function() { - if (this.preloadAhead == 0) return this; - - this.preloadStartIndex = this.currentImage.index; - var nextIndex = this.getNextIndex(this.preloadStartIndex); - return this.preloadRecursive(this.preloadStartIndex, nextIndex); - }, + // Initalizes the image preloader + preloadInit: function() { + // edit. Cgheck to see if defined + if (!this.currentImage) { + return this; + } + // end edit + if (this.preloadAhead == 0) { + return this; + } + this.preloadStartIndex = this.currentImage.index; + var nextIndex = this.getNextIndex(this.preloadStartIndex); + return this.preloadRecursive(this.preloadStartIndex, nextIndex); + }, // Changes the location in the gallery the preloader should work // @param {Integer} index The index of the image where the preloader should restart at. @@ -500,21 +506,23 @@ }, // This function is garaunteed to be called anytime a gallery slide changes. - // @param {Object} imageData An object holding the image metadata of the image to navigate to. - gotoImage: function(imageData) { - var index = imageData.index; + // @param {Object} imageData An object holding the image metadata of the image to navigate to. + gotoImage: function(imageData) { + // edit. check to see if defined + if (!imageData) { + return this; + } + // end edit + var index = imageData.index; + if (this.onSlideChange) { + this.onSlideChange(this.currentImage.index, index); + } + this.currentImage = imageData; + this.preloadRelocate(index); + this.refresh(); + return this; + }, - if (this.onSlideChange) - this.onSlideChange(this.currentImage.index, index); - - this.currentImage = imageData; - this.preloadRelocate(index); - - this.refresh(); - - return this; - }, - // Returns the default transition duration value. The value is halved when not // performing a synchronized transition. // @param {Boolean} isSync Specifies whether the transitions are synchronized. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-11 22:15:18
|
Revision: 8935 http://xoops.svn.sourceforge.net/xoops/?rev=8935&view=rev Author: djculex Date: 2012-02-11 22:15:12 +0000 (Sat, 11 Feb 2012) Log Message: ----------- - Bugfix: Remove error in json reply Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/Get_Count.php XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt Modified: XoopsModules/smallworld/trunk/smallworld/Get_Count.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/Get_Count.php 2012-02-11 18:06:24 UTC (rev 8934) +++ XoopsModules/smallworld/trunk/smallworld/Get_Count.php 2012-02-11 22:15:12 UTC (rev 8935) @@ -25,11 +25,12 @@ global $xoopsUser, $xoopsLogger, $xoopsDB; $xoopsLogger->activated = false; +$_COOKIE[session_name()] = session_id(); if ($xoopsUser) { if($_GET['SmallworldGetUserMsgCount']) { - $counts = smallworld_getCountFriendMessagesEtc (); - header('Content-type: application/json'); - echo "{\"NewUserMsgCount\":$counts}"; + $counts = smallworld_getCountFriendMessagesEtc (); + header('Content-type: application/json'); + echo "{\"NewUserMsgCount\":$counts}"; } } ?> \ No newline at end of file Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 18:06:24 UTC (rev 8934) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 22:15:12 UTC (rev 8935) @@ -13,6 +13,7 @@ - Bugfix: check if gender or country images are set else return '' - Bugfix: Added missing function previously added to svn ?? wierd! - Bugfix: Gender was missing in select multi for form items +- Bugfix: Remove error in json reply ------------------------------ Changelog v.1.10 RC ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-11 18:06:30
|
Revision: 8934 http://xoops.svn.sourceforge.net/xoops/?rev=8934&view=rev Author: djculex Date: 2012-02-11 18:06:24 +0000 (Sat, 11 Feb 2012) Log Message: ----------- Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/xoops_version.php Modified: XoopsModules/smallworld/trunk/smallworld/xoops_version.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-11 16:52:14 UTC (rev 8933) +++ XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-11 18:06:24 UTC (rev 8934) @@ -33,7 +33,7 @@ $modversion['module_status'] = 'Release Candidate'; $modversion['release_date'] = '2011/12/24'; $modversion['help'] = 'page=help'; -$modversion['min_php'] = '5.2'; +$modversion['min_php'] = '5.3'; $modversion['min_xoops'] = '2.5'; $modversion['min_admin'] = '1.1'; $modversion['min_db'] = array('mysql' => '5.0.7', 'mysqli' => '5.0.7'); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-11 16:52:20
|
Revision: 8933 http://xoops.svn.sourceforge.net/xoops/?rev=8933&view=rev Author: djculex Date: 2012-02-11 16:52:14 +0000 (Sat, 11 Feb 2012) Log Message: ----------- - Check if 'interested in' and 'searchrelat' isset else create default serialized array Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/class/db.php XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt XoopsModules/smallworld/trunk/smallworld/xoops_version.php Modified: XoopsModules/smallworld/trunk/smallworld/class/db.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/class/db.php 2012-02-11 16:27:44 UTC (rev 8932) +++ XoopsModules/smallworld/trunk/smallworld/class/db.php 2012-02-11 16:52:14 UTC (rev 8933) @@ -204,9 +204,13 @@ $username = $user->uname(); $realname = Smallworld_sanitize($_POST['realname']); $gender = (isset($_POST['gender'])) ? $_POST['gender'] : ''; - $intingender = Smallworld_sanitize(serialize($_POST['intingender'])); + $intingender = (isset($_POST['intingender'])) ? + Smallworld_sanitize(serialize($_POST['intingender'])) : + Smallworld_sanitize(serialize(array(0 => '3'))); $relationship = Smallworld_sanitize($_POST['relationship']); - $searchrelat = Smallworld_sanitize(serialize($_POST['searchrelat'])); + $searchrelat = (isset($_POST['searchrelat'])) ? + Smallworld_sanitize(serialize($_POST['searchrelat'])) : + Smallworld_sanitize(serialize(array(0 => '0'))); $birthday = Smallworld_sanitize(Smallworld_euroToUsDate($_POST['birthday'])); $birthplace = Smallworld_sanitize($_POST['birthplace']); $birthplace_lat = Smallworld_sanitize($_POST['birthplace_lat']); Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 16:27:44 UTC (rev 8932) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 16:52:14 UTC (rev 8933) @@ -5,6 +5,7 @@ - Bugfix: Takeover links not using XOOPS_URL correct(djculex) - Bugfix: Created function smallworld_getImageSize to test if allow_url_fopen = on else try cUrl else return default for image sizes(djculex) - Bugfix: ../js/smallworld.js added smallworld_url (xoops_url) to submit in registration (djculex) +- Bugfix: Check if 'interested in' and 'searchrelat' isset else create default serialized array 11. Februar 2012 - Bugfix: Added check to see if user images folder already exists in uploads Modified: XoopsModules/smallworld/trunk/smallworld/xoops_version.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-11 16:27:44 UTC (rev 8932) +++ XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-11 16:52:14 UTC (rev 8933) @@ -20,7 +20,7 @@ **/ $modversion['name'] = _MI_SMALLWORLD_MODULE_NAME; -$modversion['version'] = 1.14; +$modversion['version'] = 1.15; $modversion['description'] = _MI_SMALLWORLD_MODULE_DESC; $modversion['author'] = "Michael Albertsen"; $modversion['nickname'] = 'Culex'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-11 16:27:51
|
Revision: 8932 http://xoops.svn.sourceforge.net/xoops/?rev=8932&view=rev Author: djculex Date: 2012-02-11 16:27:44 +0000 (Sat, 11 Feb 2012) Log Message: ----------- - Bugfix: Added check to see if user images folder already exists in uploads - Bugfix: Check if dateTime obj is != null else return 01-01-1900 or 1900-01-01 - Bugfix: check if gender or country images are set else return '' - Bugfix: Added missing function previously added to svn ?? wierd! - Bugfix: Gender was missing in select multi for form items Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/class/db.php XoopsModules/smallworld/trunk/smallworld/class/images.php XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt XoopsModules/smallworld/trunk/smallworld/include/functions.php XoopsModules/smallworld/trunk/smallworld/xoops_version.php Modified: XoopsModules/smallworld/trunk/smallworld/class/db.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/class/db.php 2012-02-11 15:08:40 UTC (rev 8931) +++ XoopsModules/smallworld/trunk/smallworld/class/db.php 2012-02-11 16:27:44 UTC (rev 8932) @@ -203,7 +203,7 @@ $regdate = time(); $username = $user->uname(); $realname = Smallworld_sanitize($_POST['realname']); - $gender = Smallworld_sanitize($_POST['gender']); + $gender = (isset($_POST['gender'])) ? $_POST['gender'] : ''; $intingender = Smallworld_sanitize(serialize($_POST['intingender'])); $relationship = Smallworld_sanitize($_POST['relationship']); $searchrelat = Smallworld_sanitize(serialize($_POST['searchrelat'])); @@ -212,7 +212,8 @@ $birthplace_lat = Smallworld_sanitize($_POST['birthplace_lat']); $birthplace_lng = Smallworld_sanitize($_POST['birthplace_lng']); $birthplace_country = Smallworld_sanitize($_POST['birthplace_country']); - $birthplace_country_img = Smallworld_sanitize($_POST['birthplace_country_img']); + $birthplace_country_img = (isset($_POST['birthplace_country_img'])) ? + Smallworld_sanitize($_POST['birthplace_country_img']) : ''; $politic = Smallworld_sanitize($_POST['politic']); $religion = Smallworld_sanitize($_POST['religion']); $emailtype = Smallworld_sanitize(serialize($_POST['emailtype'])); @@ -225,7 +226,8 @@ $present_lat = Smallworld_sanitize($_POST['present_lat']); $present_lng = Smallworld_sanitize($_POST['present_lng']); $present_country = Smallworld_sanitize($_POST['present_country']); - $present_country_img = Smallworld_sanitize($_POST['present_country_img']); + $present_country_img = (isset($_POST['present_country_img'])) ? + Smallworld_sanitize($_POST['present_country_img']) : ''; $website = Smallworld_sanitize($_POST['website']); $interests = Smallworld_sanitize($_POST['interests']); $music = Smallworld_sanitize($_POST['music']); Modified: XoopsModules/smallworld/trunk/smallworld/class/images.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/class/images.php 2012-02-11 15:08:40 UTC (rev 8931) +++ XoopsModules/smallworld/trunk/smallworld/class/images.php 2012-02-11 16:27:44 UTC (rev 8932) @@ -30,15 +30,16 @@ function createAlbum ($userID) { $dir = XOOPS_ROOT_PATH.'/uploads/albums_smallworld'; - echo $dir.'/'.$userID."/thumbnails"; - if(!is_dir($dir."/")) { - mkdir($dir, 0777); - } else { - mkdir($dir.'/'.$userID, 0777); - mkdir($dir.'/'.$userID."/thumbnails", 0777); - Smallworld_CreateIndexFiles ($dir.'/'); - Smallworld_CreateIndexFiles($dir.'/'.$userID."/"); - Smallworld_CreateIndexFiles($dir.'/'.$userID."/thumbnails/"); + if (!file_exists($dir.'/'.$userID.'/thumbnails') || !file_exists($dir.'/'.$userID.'/')) { + if(!is_dir($dir."/")) { + mkdir($dir, 0777); + } else { + mkdir($dir.'/'.$userID, 0777); + mkdir($dir.'/'.$userID."/thumbnails", 0777); + Smallworld_CreateIndexFiles ($dir.'/'); + Smallworld_CreateIndexFiles($dir.'/'.$userID."/"); + Smallworld_CreateIndexFiles($dir.'/'.$userID."/thumbnails/"); + } } } Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 15:08:40 UTC (rev 8931) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-11 16:27:44 UTC (rev 8932) @@ -5,6 +5,13 @@ - Bugfix: Takeover links not using XOOPS_URL correct(djculex) - Bugfix: Created function smallworld_getImageSize to test if allow_url_fopen = on else try cUrl else return default for image sizes(djculex) - Bugfix: ../js/smallworld.js added smallworld_url (xoops_url) to submit in registration (djculex) + +11. Februar 2012 +- Bugfix: Added check to see if user images folder already exists in uploads +- Bugfix: Check if dateTime obj is != null else return 01-01-1900 or 1900-01-01 +- Bugfix: check if gender or country images are set else return '' +- Bugfix: Added missing function previously added to svn ?? wierd! +- Bugfix: Gender was missing in select multi for form items ------------------------------ Changelog v.1.10 RC ------------------------------ Modified: XoopsModules/smallworld/trunk/smallworld/include/functions.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-11 15:08:40 UTC (rev 8931) +++ XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-11 16:27:44 UTC (rev 8932) @@ -598,14 +598,22 @@ // Return new date format US for MySql // Require php>5.2 using DateTime class function Smallworld_euroToUsDate ($stringDate) { - $date = DateTime::createFromFormat('d-m-Y', $stringDate); - return $date->format("Y-m-d"); + if ($stringDate != 0 || $stringDate != '') { + $date = DateTime::createFromFormat('d-m-Y', $stringDate); + return $date->format("Y-m-d"); + } else { + return "1900-01-01"; + } } // Return new date format EU For display function Smallworld_UsToEuroDate ($stringDate) { - $date = DateTime::createFromFormat('Y-m-d', $stringDate); - return $date->format("d-m-Y"); + if ($stringDate != 0 || $stringDate != '') { + $date = DateTime::createFromFormat('Y-m-d', $stringDate); + return $date->format("d-m-Y"); + } else { + return "01-01-1900"; + } } function smallworld_sp () { @@ -732,4 +740,20 @@ return array(0 => '0', 1 => '0'); } } + +/** + * Check weather requests are set or not + * If not return '' else return false + * @param string $req + * @returns string or void + */ + + function smallworld_isset($req) + { + if(isset($req) || !empty($req)) { + return $req; + } else { + return ''; + } + } ?> Modified: XoopsModules/smallworld/trunk/smallworld/xoops_version.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-11 15:08:40 UTC (rev 8931) +++ XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-11 16:27:44 UTC (rev 8932) @@ -7,20 +7,20 @@ * 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: http://www.fsf.org/copyleft/gpl.html GNU public license -* @module: Smallworld -* @Author: Michael Albertsen (http://culex.dk) <cu...@cu...> -* @copyright: 2011 Culex -* @Repository path: $HeadURL$ -* @Last committed: $Revision$ -* @Last changed by: $Author$ -* @Last changed date: $Date$ -* @ID: $Id$ +* @copyright: The XOOPS Project http://sourceforge.net/projects/xoops/ +* @license: http://www.fsf.org/copyleft/gpl.html GNU public license +* @module: Smallworld +* @Author: Michael Albertsen (http://culex.dk) <cu...@cu...> +* @copyright: 2011 Culex +* @Repository path: $HeadURL$ +* @Last committed: $Revision$ +* @Last changed by: $Author$ +* @Last changed date: $Date$ +* @ID: $Id$ **/ $modversion['name'] = _MI_SMALLWORLD_MODULE_NAME; -$modversion['version'] = 1.13; +$modversion['version'] = 1.14; $modversion['description'] = _MI_SMALLWORLD_MODULE_DESC; $modversion['author'] = "Michael Albertsen"; $modversion['nickname'] = 'Culex'; @@ -170,58 +170,59 @@ $modversion['config'][$i]['description'] = '_MI_SMALLWORLD_VIEWFIELDS_DESC'; $modversion['config'][$i]['formtype'] = 'select_multi'; $modversion['config'][$i]['valuetype'] = 'array'; -$modversion['config'][$i]['options'] = array( '_MI_SMALLWORLD_REALNAME' => 'realname', - '_MI_SMALLWORLD_INTERESTEDIN' => 'interestedin', - '_MI_SMALLWORLD_RELATIONSHIPSTATUS' => 'relationshipstatus', - '_MI_SMALLWORLD_PARTNER' => 'partner', - '_MI_SMALLWORLD_LOOKINGFOR' => 'lookingfor', - '_MI_SMALLWORLD_BIRTHDAY' => 'birthday', - '_MI_SMALLWORLD_BIRTHPLACE' => 'birthplace', - '_MI_SMALLWORLD_POLITICALVIEWS' => 'politicalview', - '_MI_SMALLWORLD_RELIGIOUSVIEWS' => 'religiousview', - '_MI_SMALLWORLD_EMAILS' => 'emails', - '_MI_SMALLWORLD_SCREENNAMES' => 'screennames', - '_MI_SMALLWORLD_MOBILE' => 'mobile', - '_MI_SMALLWORLD_LANDPHONE' => 'landphone', - '_MI_SMALLWORLD_STREETADRESS' => 'streetadress', - '_MI_SMALLWORLD_PRESENTCITY' => 'presentcity', - '_MI_SMALLWORLD_COUNTRY' => 'country', - '_MI_SMALLWORLD_WEBSITE' => 'website', - '_MI_SMALLWORLD_INTERESTS' => 'interests', - '_MI_SMALLWORLD_FAVOURITEMUSIC' => 'favouritemusic', - '_MI_SMALLWORLD_FAVOURITETVSHOWS' => 'favouritetvshows', - '_MI_SMALLWORLD_FAVOURITEMOVIES' => 'favouritemovies', - '_MI_SMALLWORLD_FAVOURITEBOOKS' => 'favouritebooks', - '_MI_SMALLWORLD_ABOUTME' => 'aboutme', - '_MI_SMALLWORLD_EDUCATION' => 'education', - '_MI_SMALLWORLD_EMPLOYMENT' => 'employment',); -$modversion['config'][$i]['default'] = array( 'realname', - 'gender', - 'interestedin', - 'relationshipstatus', - 'partner', - 'lookingfor', - 'birthday', - 'birthplace', - 'politicalview', - 'religiousview', - 'emails', - 'screennames', - 'mobile', - 'landphone', - 'streetadress', - 'presentcity', - 'country', - 'website', - 'interests', - 'favouritemusic', - 'favouritetvshows', - 'favouritemovies', - 'favouritebooks', - 'aboutme', - 'education', - 'employment'); - +$modversion['config'][$i]['options'] = array( '_MI_SMALLWORLD_REALNAME' => 'realname', + '_MI_SMALLWORLD_GENDER' => 'gender', + '_MI_SMALLWORLD_INTERESTEDIN' => 'interestedin', + '_MI_SMALLWORLD_RELATIONSHIPSTATUS' => 'relationshipstatus', + '_MI_SMALLWORLD_PARTNER' => 'partner', + '_MI_SMALLWORLD_LOOKINGFOR' => 'lookingfor', + '_MI_SMALLWORLD_BIRTHDAY' => 'birthday', + '_MI_SMALLWORLD_BIRTHPLACE' => 'birthplace', + '_MI_SMALLWORLD_POLITICALVIEWS' => 'politicalview', + '_MI_SMALLWORLD_RELIGIOUSVIEWS' => 'religiousview', + '_MI_SMALLWORLD_EMAILS' => 'emails', + '_MI_SMALLWORLD_SCREENNAMES' => 'screennames', + '_MI_SMALLWORLD_MOBILE' => 'mobile', + '_MI_SMALLWORLD_LANDPHONE' => 'landphone', + '_MI_SMALLWORLD_STREETADRESS' => 'streetadress', + '_MI_SMALLWORLD_PRESENTCITY' => 'presentcity', + '_MI_SMALLWORLD_COUNTRY' => 'country', + '_MI_SMALLWORLD_WEBSITE' => 'website', + '_MI_SMALLWORLD_INTERESTS' => 'interests', + '_MI_SMALLWORLD_FAVOURITEMUSIC' => 'favouritemusic', + '_MI_SMALLWORLD_FAVOURITETVSHOWS' => 'favouritetvshows', + '_MI_SMALLWORLD_FAVOURITEMOVIES' => 'favouritemovies', + '_MI_SMALLWORLD_FAVOURITEBOOKS' => 'favouritebooks', + '_MI_SMALLWORLD_ABOUTME' => 'aboutme', + '_MI_SMALLWORLD_EDUCATION' => 'education', + '_MI_SMALLWORLD_EMPLOYMENT' => 'employment',); +$modversion['config'][$i]['default'] = array( 'realname', + 'gender', + 'interestedin', + 'relationshipstatus', + 'partner', + 'lookingfor', + 'birthday', + 'birthplace', + 'politicalview', + 'religiousview', + 'emails', + 'screennames', + 'mobile', + 'landphone', + 'streetadress', + 'presentcity', + 'country', + 'website', + 'interests', + 'favouritemusic', + 'favouritetvshows', + 'favouritemovies', + 'favouritebooks', + 'aboutme', + 'education', + 'employment'); + // Mandatory fields $i++; $modversion['config'][$i]['name'] = 'smallworldmandatoryfields'; @@ -229,43 +230,43 @@ $modversion['config'][$i]['description'] = '_MI_SMALLWORLD_VERIFYFIELDS_DESC'; $modversion['config'][$i]['formtype'] = 'select_multi'; $modversion['config'][$i]['valuetype'] = 'array'; -$modversion['config'][$i]['options'] = array( '_MI_SMALLWORLD_REALNAME' => 'realname', - '_MI_SMALLWORLD_GENDER' => 'gender', - '_MI_SMALLWORLD_INTERESTEDIN' => 'interestedin', - '_MI_SMALLWORLD_RELATIONSHIPSTATUS' => 'relationshipstatus', - '_MI_SMALLWORLD_PARTNER' => 'partner', - '_MI_SMALLWORLD_LOOKINGFOR' => 'lookingfor', - '_MI_SMALLWORLD_BIRTHDAY' => 'birthday', - '_MI_SMALLWORLD_BIRTHPLACE' => 'birthplace', - '_MI_SMALLWORLD_POLITICALVIEWS' => 'politicalview', - '_MI_SMALLWORLD_RELIGIOUSVIEWS' => 'religiousview', - '_MI_SMALLWORLD_EMAILS' => 'emails', - '_MI_SMALLWORLD_SCREENNAMES' => 'screennames', - '_MI_SMALLWORLD_MOBILE' => 'mobile', - '_MI_SMALLWORLD_LANDPHONE' => 'landphone', - '_MI_SMALLWORLD_STREETADRESS' => 'streetadress', - '_MI_SMALLWORLD_PRESENTCITY' => 'presentcity', - '_MI_SMALLWORLD_COUNTRY' => 'country', - '_MI_SMALLWORLD_WEBSITE' => 'website', - '_MI_SMALLWORLD_INTERESTS' => 'interests', - '_MI_SMALLWORLD_FAVOURITEMUSIC' => 'favouritemusic', - '_MI_SMALLWORLD_FAVOURITETVSHOWS' => 'favouritetvshows', - '_MI_SMALLWORLD_FAVOURITEMOVIES' => 'favouritemovies', - '_MI_SMALLWORLD_FAVOURITEBOOKS' => 'favouritebooks', - '_MI_SMALLWORLD_ABOUTME' => 'aboutme', - '_MI_SMALLWORLD_EDUCATION' => 'education', - '_MI_SMALLWORLD_EMPLOYMENT' => 'employment',); -$modversion['config'][$i]['default'] = array( 'realname', - 'gender', - 'interestedin', - 'relationshipstatus', - 'lookingfor', - 'birthday', - 'birthplace', - 'emails', - 'screennames', - 'streetadress', - 'presentcity', - 'country'); +$modversion['config'][$i]['options'] = array( '_MI_SMALLWORLD_REALNAME' => 'realname', + '_MI_SMALLWORLD_GENDER' => 'gender', + '_MI_SMALLWORLD_INTERESTEDIN' => 'interestedin', + '_MI_SMALLWORLD_RELATIONSHIPSTATUS' => 'relationshipstatus', + '_MI_SMALLWORLD_PARTNER' => 'partner', + '_MI_SMALLWORLD_LOOKINGFOR' => 'lookingfor', + '_MI_SMALLWORLD_BIRTHDAY' => 'birthday', + '_MI_SMALLWORLD_BIRTHPLACE' => 'birthplace', + '_MI_SMALLWORLD_POLITICALVIEWS' => 'politicalview', + '_MI_SMALLWORLD_RELIGIOUSVIEWS' => 'religiousview', + '_MI_SMALLWORLD_EMAILS' => 'emails', + '_MI_SMALLWORLD_SCREENNAMES' => 'screennames', + '_MI_SMALLWORLD_MOBILE' => 'mobile', + '_MI_SMALLWORLD_LANDPHONE' => 'landphone', + '_MI_SMALLWORLD_STREETADRESS' => 'streetadress', + '_MI_SMALLWORLD_PRESENTCITY' => 'presentcity', + '_MI_SMALLWORLD_COUNTRY' => 'country', + '_MI_SMALLWORLD_WEBSITE' => 'website', + '_MI_SMALLWORLD_INTERESTS' => 'interests', + '_MI_SMALLWORLD_FAVOURITEMUSIC' => 'favouritemusic', + '_MI_SMALLWORLD_FAVOURITETVSHOWS' => 'favouritetvshows', + '_MI_SMALLWORLD_FAVOURITEMOVIES' => 'favouritemovies', + '_MI_SMALLWORLD_FAVOURITEBOOKS' => 'favouritebooks', + '_MI_SMALLWORLD_ABOUTME' => 'aboutme', + '_MI_SMALLWORLD_EDUCATION' => 'education', + '_MI_SMALLWORLD_EMPLOYMENT' => 'employment',); +$modversion['config'][$i]['default'] = array( 'realname', + 'gender', + 'interestedin', + 'relationshipstatus', + 'lookingfor', + 'birthday', + 'birthplace', + 'emails', + 'screennames', + 'streetadress', + 'presentcity', + 'country'); ?> \ 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: <dj...@us...> - 2012-02-11 15:08:47
|
Revision: 8931 http://xoops.svn.sourceforge.net/xoops/?rev=8931&view=rev Author: djculex Date: 2012-02-11 15:08:40 +0000 (Sat, 11 Feb 2012) Log Message: ----------- How did this dissapear :-S.. putting back function to check dimentions of image Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/include/functions.php Modified: XoopsModules/smallworld/trunk/smallworld/include/functions.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-11 14:08:50 UTC (rev 8930) +++ XoopsModules/smallworld/trunk/smallworld/include/functions.php 2012-02-11 15:08:40 UTC (rev 8931) @@ -689,4 +689,47 @@ return "width=\"$width\" height=\"$height\""; } + +/** + * Fetch image width and height + * will attempt to use the getimagesiz method first, then curl + * @param int $w + * @param int $h + * @param url $url + * @returns array + */ +function smallworld_getImageSize($w, $h, $url) +{ + $bn = basename($url); + if ($bn != 'blank.gif' + && $bn != 'blank.png' + && $bn != 'blank.jpg' + ) + { + if (ini_get('allow_url_fopen')) { + $imagesize = getimagesize($url); + } else { + $imagesize['0'] = $w; + $imagesize['1'] = $h; + } + + if (!ini_get('allow_url_fopen')) { + if (function_exists('curl_init')) { + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + $result = curl_exec($ch); + $img = ImageCreateFromString($result); + $imagesize['0'] = imagesx($img); + $imagesize['1'] = imagesy($img); + } else { + $imagesize['0'] = $w; + $imagesize['1'] = $h; + } + } + return $imagesize; + } else { + return array(0 => '0', 1 => '0'); + } +} ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ren...@us...> - 2012-02-11 14:08:57
|
Revision: 8930 http://xoops.svn.sourceforge.net/xoops/?rev=8930&view=rev Author: renetjuh Date: 2012-02-11 14:08:50 +0000 (Sat, 11 Feb 2012) Log Message: ----------- Dutch language files xforms 1.21 Added Paths: ----------- XoopsLanguages/dutch/modules/xforms/ XoopsLanguages/dutch/modules/xforms/xforms 1.21/ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/admin.php XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/help.html XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/index.html XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/index.html XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/index.html XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/xforms.tpl XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/main.php XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/modinfo.php Property changes on: XoopsLanguages/dutch/modules/xforms ___________________________________________________________________ Added: bugtraq:number + true Property changes on: XoopsLanguages/dutch/modules/xforms/xforms 1.21 ___________________________________________________________________ Added: bugtraq:number + true Property changes on: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/admin.php =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/admin.php (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/admin.php 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1,109 @@ +<?php +######### (liaise) version 1.0 additions ######### +define("_AM_SAVE","Opslaan"); +define("_AM_COPIED","%s kopieren"); +define("_AM_DBUPDATED","Database succesvol bijgewerkt!"); +define("_AM_ELE_CREATE","Formulierelement aanmaken"); +define("_AM_ELE_EDIT","Formulierelement bewerken: %s"); + +define("_AM_ELE_CAPTION","Onderschrift"); +define("_AM_ELE_DEFAULT","Standaardwaarde"); +define("_AM_ELE_DETAIL","Detail"); +define("_AM_ELE_REQ","Verplicht"); +define("_AM_ELE_ORDER","Volgorde"); +define("_AM_ELE_DISPLAY","Weergave"); + +define("_AM_ELE_TEXT","Tekstregel"); +define("_AM_ELE_TEXT_DESC","{UNAME} toont gebruikersnaam;<br />{EMAIL} toont e-mailadres gebruiker."); +define("_AM_ELE_TAREA","Tekstvak"); +define("_AM_ELE_SELECT","Selecties"); +define("_AM_ELE_CHECK","Selectievakken"); +define("_AM_ELE_RADIO","keuzeknoppen"); +define("_AM_ELE_YN","Ja/nee keuzeknoppen"); + +define("_AM_ELE_SIZE","Grootte"); +define("_AM_ELE_MAX_LENGTH","Maximum lengte"); +define("_AM_ELE_ROWS","Rijen"); +define("_AM_ELE_COLS","Kolommen"); +define("_AM_ELE_OPT","Opties"); +define("_AM_ELE_OPT_DESC","Vink de selectievakken voor het selecteren van de standaardwaarden"); +define("_AM_ELE_OPT_DESC1","<br />Alleen de eerste is aangevinkt wanneer meerdere keuzes niet is toegestaan"); +define("_AM_ELE_OPT_DESC2","Selecteer de standaardwaarde door het selecteren van de keuzeknoppen"); +define("_AM_ELE_ADD_OPT","%s opties toevoegen"); +define("_AM_ELE_ADD_OPT_SUBMIT","Toevoegen"); +define("_AM_ELE_SELECTED","Geselecteerd"); +define("_AM_ELE_CHECKED","Gekozen"); +define("_AM_ELE_MULTIPLE","Meerdere selecties toestaan"); + +define("_AM_ELE_CONFIRM_DELETE","Het formulierelement verwijderen?"); + +######### (liaise) version 1.1 ######### +define("_AM_ELE_OTHER", 'Voor de optie "Anders", plaats {OTHER|*nummer*} in 1 van de tekstvakken. b.v. {OTHER|30} creert een tekstvak voor een breedte van 30 karakters.'); + +######### (liaise) version 1.2 additions ######### +define("_AM_FORM_LISTING", "Contact Form Listing"); +define("_AM_FORM_ORDER","Weergavevolgorde"); +define("_AM_FORM_ORDER_DESC","0 = formulier verbergen"); +define("_AM_FORM_TITLE", "Titel formulier"); +define("_AM_FORM_PERM", "Groepen die dit formulier mogen gebruiken"); +define("_AM_FORM_SENDTO", "Verzenden aan"); +define("_AM_FORM_SENDTO_ADMIN", "E-mail webmaster"); +define("_AM_FORM_SEND_METHOD", "Verzendmethode"); +define("_AM_FORM_SEND_METHOD_DESC", "Informatie kan niet verzonden worden via een privebericht wanneer het formulier wordt verzonden aan "._AM_FORM_SENDTO_ADMIN." of verstuurd wordt door anonieme bezoekers"); +define("_AM_FORM_SEND_METHOD_MAIL", "E-mail"); +define("_AM_FORM_SEND_METHOD_PM", "Prive bericht"); +define("_AM_FORM_DELIMETER", "Scheiding tussen selectievakken en keuzeknoppen"); +define("_AM_FORM_DELIMETER_SPACE", "Witte ruimte"); +define("_AM_FORM_DELIMETER_BR", "Scheidingslijn"); +define("_AM_FORM_SUBMIT_TEXT", "Tekst op knop om op te slaan"); +define("_AM_FORM_DESC", "Omschrijving formulier"); +define("_AM_FORM_DESC_DESC", "Tekst die wordt weergegeven op de hoofdpagina wanneer meer dan 1 formulier is vermeld."); +define("_AM_FORM_INTRO", "Introductie formulier"); +define("_AM_FORM_INTRO_DESC", "Tekst die wordt weergegeven op de formulierpagina."); +define("_AM_FORM_WHERETO", "URL om naartoe te gaan nadat het formulier is ingediend"); +define("_AM_FORM_WHERETO_DESC", "Laat dit veld leeg om naar de hoofdpagina van de site te gaan; {SITE_URL} toont ".XOOPS_URL); + +define("_AM_FORM_ACTION_EDITFORM", "Formulierinstellingen bewerken"); +define("_AM_FORM_ACTION_EDITELEMENT", "formulierelementen bewerken"); +define("_AM_FORM_ACTION_CLONE", "Formulier klonen"); + +define("_AM_FORM_NEW", "Formulier aanmaken"); +define("_AM_FORM_EDIT", "Formulier: %s bewerken"); +define("_AM_FORM_CONFIRM_DELETE", "Zeker weten om dit formulier te verwijderen met alle formulierelementen?"); + +define("_AM_ID", "ID"); +define("_AM_ACTION", "Actie"); +define("_AM_RESET_ORDER", "Volgorde bijwerken"); +define("_AM_SAVE_THEN_ELEMENTS", "Opslaan en formulierelementen wijzigen"); +define("_AM_SAVE_THEN_FORM", "Opslaan en formulieren instellingen wijzigen"); +define("_AM_NOTHING_SELECTED", "Niets geselecteerd."); +define("_AM_GO_CREATE_FORM", "Maak eerst een formulier aan."); + +define("_AM_ELEMENTS_OF_FORM", "Formulierelementen van %s"); +define("_AM_ELE_APPLY_TO_FORM", "Formulier toepassen"); +define("_AM_ELE_HTML", "Platte tekst / HTML"); + +######### (liaise) version 1.23 additions ######### +define("_AM_XOOPS_VERSION_WRONG", "Versie van XOOPS komt niet overeen met de benodigde versie. xforms werkelijk mogelijk niet correct."); +define("_AM_ELE_UPLOADFILE","Bestand uploaden"); +define("_AM_ELE_UPLOADIMG","Afbeelding uploaden"); +define("_AM_ELE_UPLOADIMG_MAXWIDTH","Maximum breedte (pixels)"); +define("_AM_ELE_UPLOADIMG_MAXHEIGHT","Maximum hoogte (pixels)"); +define("_AM_ELE_UPLOAD_MAXSIZE","Maximum bestandsgrootte (bytes)"); +define("_AM_ELE_UPLOAD_MAXSIZE_DESC","1k = 1024 bytes"); +define("_AM_ELE_UPLOAD_DESC_SIZE_NOLIMIT","0 = geen limiet"); +define("_AM_ELE_UPLOAD_ALLOWED_EXT","Toegestande bestandsextensies"); +define("_AM_ELE_UPLOAD_ALLOWED_EXT_DESC","Bestandsextensies scheiden met een |, hoofdlettergevoelig. b.v. 'jpg|jpeg|gif|png|tif|tiff'"); +define("_AM_ELE_UPLOAD_ALLOWED_MIME","Toegestane MIME types"); +define("_AM_ELE_UPLOAD_ALLOWED_MIME_DESC","MIME types scheiden met een |, hoofdlettergevoelig. b.v. 'image/jpeg|image/pjpeg|image/png|image/x-png|image/gif|image/tiff'"); +define("_AM_ELE_UPLOAD_DESC_NOLIMIT","Leeglaten voor geen limiet (niet aangeraden voor veiligheidsredenen)"); +define("_AM_ELE_UPLOAD_SAVEAS","Geladen bestand toevoegen aan"); +define("_AM_ELE_UPLOAD_SAVEAS_MAIL","E-mail bijgevoegd bestand"); +define("_AM_ELE_UPLOAD_SAVEAS_FILE","Upload map"); + +######### (xforms) version 1.0 additions ########## +define("_AM_IMPORT_SUCCES", "xForms heeft alle liaise formulieren succesvol geimporteerd."); +define("_AM_IMPORT_FAILED", "ERROR: xForms heeft alle liaise formulieren NIET succesvol geimporteerd."); +define("_AM_IMPORT_NFND", "Liaise is niet gevonden als module!"); + +?> \ No newline at end of file Property changes on: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/help.html =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/help.html (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/help.html 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1,38 @@ +<div id="help-template" class="outer"> + <h1 class="head">Help: + <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/xforms/admin/index.php" + title="Terug naar de administratie van xForms"> xForms <img src="<{xoAdminIcons home.png}>" + alt="Terug naar de administratie van xForms"/> + </a></h1> + <!-- -----Help Content ---------- --> + + <h4 class="odd">Omschrijving</h4> + + <p class="even"> + xForms is een module voor XOOPS die ruim aanpasbare formulieren aanbiedt. xForms genereert vershillende soorten formulierelemelementen b.v. tekstvakken, selectievakken of keuzeknoppen die de webmaster gebruikt om eigen "Contacteer ons" formulieren te maken. Ingevulde informatie kan verstuurd worden via e-mail of via het priveberichtensysteem van XOOPS, en ontvangen bij de geselecteerde gebruikersgroep. + <h4 class="odd">Installeren/de-installeren</h4> + + Geen speciale maatregelen zijn nodig, volg de standaard installatieprocedure – + pak de /contact map uit in de ../modules map. Installeer de module + via Administratie -> Modules -> Systeembeheer -> Modules. <br/><br/> + Gedetailleerde instructies voor het installeren van modules zijn beschikbaar in de <a + href="http://goo.gl/adT2i">XOOPS Gebruikershandleiding</a> </p> + + <p class="even"> + <h4 class="odd">Gebruikersaanwijzing</h4> + Om deze module te gebruiken dient het volgende te gebeuren:<br/><br/> + i) Maak een nieuw formulier aan<br/><br/> + ii) Voeg de benodige elementen toe aan het formulier en bewaar dit.<br/><br/> + i ii) Controleer dat de groepen de juiste rechten bezitten die benodigd zijn voor toegang + tot en gebruik van de module en blokken. Permissies zijn in te stellen via + de Administratie -> Modules -> Systeembeheer -> Groepen. <br/><br/> + Gedetailleerde instructies voor het instellen van permissies voor gebruikersgroepen zijn beschikbaar in de <a + href="http://goo.gl/adT2i">XOOPS Gebruikershandleiding</a></p> + <h4 class="odd">Handleiding</h4> + + <p class="even"> + Niet beschikbaar op dit moment. + + <!-- -----Help Content ---------- --> + +</div> \ No newline at end of file Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/index.html =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/index.html (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/help/index.html 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/index.html =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/index.html (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/index.html 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Property changes on: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/index.html =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/index.html (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/index.html 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/xforms.tpl =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/xforms.tpl (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/mail_template/xforms.tpl 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1,6 @@ +{MSG} + +{UNAME} {ULINK} +{IP} +{AGENT} +{FORMURL} Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/main.php =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/main.php (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/main.php 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1,30 @@ +<?php +######### (liaise) version 1.0 additions ######### +define("_xforms_MSG_SUBJECT", '%s'); // Site name removed since verion 1.22 +define("_xforms_MSG_SENT", "het bericht is verzonden.<br />Bedankt voor de reactie."); + +######### (liaise) version 1.1 ######### +// "Anders" optie voor check boxes/radio buttons/selecties +define("_xforms_OPT_OTHER", "Anders: "); +define("_xforms_PROXY", " (Proxy: %s)"); + +// error messages +define("_xforms_ERR_HEADING", "Wacht even..."); +define("_xforms_ERR_INVALIDMAIL", "Formaat e-mailadres onjuist.."); +define("_xforms_ERR_REQ", 'Vul in het verplichte veld: "%s"'); + +######### (liaise) version 1.2 additions ######### +define("_xforms_FORM_IS_HIDDEN", "Dit formulier is verborgen voor bezoekers."); +define("_xforms_MSG_UNAME", "Ingediend door: %s"); +define("_xforms_MSG_UINFO", "\nURL naar pagina met gebruikersinformatie:\n%s"); +define("_xforms_MSG_IP", "IP adres: %s"); +define("_xforms_MSG_AGENT", "Gebruikersagent: %s"); +define("_xforms_MSG_FORMURL", "Dit bericht is verstuurd door gebruik te maken van de volgende URL:\n%s"); + +######### (liaise) version 1.23 additions ######### +define("_xforms_ATTACHED_FILE", "Toegevoegd bestand: %s"); +define("_xforms_UPLOADED_FILE", "Opgeslagen bestand: %s"); + +######### (xforms) version 1.0 additions ########## +// No additions yet :-D +?> \ No newline at end of file Added: XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/modinfo.php =================================================================== --- XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/modinfo.php (rev 0) +++ XoopsLanguages/dutch/modules/xforms/xforms 1.21/nederlands/modinfo.php 2012-02-11 14:08:50 UTC (rev 8930) @@ -0,0 +1,66 @@ +<?php +######### (liaise) version 1.0 additions ######### +// The name of this module +define("_MI_xforms_NAME","xForms"); + +// A brief description of this module +define("_MI_xforms_DESC","Contactformulier generator"); + +// admin/menu.php +define("_MI_xforms_ADMENU1","Formulieren beheren"); +define("_MI_xforms_ADMENU2","Formulier toevoegen"); + +// preferences +define("_MI_xforms_TEXT_WIDTH","Standaard breedte voor tekstregels"); +define("_MI_xforms_TEXT_MAX","Standaard maximum lengte voor tekstregels"); +define("_MI_xforms_TAREA_ROWS","Standaard aantal rijen voor tekstvakken"); +define("_MI_xforms_TAREA_COLS","Standaard aantal kolommen voor tekstvakken"); + +######### (liaise) version 1.1 additions ######### +// preferences +define("_MI_xforms_MAIL_CHARSET","Tekst-codering voor het verzenden van e-mailberichten"); + +// template descriptions +define("_MI_xforms_TMPL_MAIN_DESC","Hoofdpagina van xforms"); +define("_MI_xforms_TMPL_ERROR_DESC","Deze pagina weergeven wanneer er fouten optreden"); + +######### (liaise) version 1.2 additions ######### +// template descriptions +define("_MI_xforms_TMPL_FORM_DESC","Sjabloon voor formulieren"); + +// preferences +define("_MI_xforms_MOREINFO","Verstuur extra informatie mee gezamelijk met het ingediende formulier"); +define("_MI_xforms_MOREINFO_USER","Gebruikersnaam en URL naar gebruikersprofiel"); +define("_MI_xforms_MOREINFO_IP","IP adres van de indiener"); +define("_MI_xforms_MOREINFO_AGENT","useragent van de indiener (browser info)"); +define("_MI_xforms_MOREINFO_FORM","URL van het ingediende formulier"); +define("_MI_xforms_MAIL_CHARSET_DESC","Laat leeg voor "._CHARSET); +define("_MI_xforms_PREFIX","Tekst voorvoegsel voor verplichte velden"); +define("_MI_xforms_SUFFIX","Tekst achtervoegsel voor verpichte velden"); +define("_MI_xforms_INTRO","Introductietekst op hoofdpagina"); +define("_MI_xforms_GLOBAL","Tekst die wordt weergegeven op iedere formulierpagina"); + +// admin/menu.php +define("_MI_xforms_ADMENU3","Elementen toevoegen"); +define("_MI_xforms_ADMENU5","Over"); + +######### (liaise) version 1.21 additions ######### +// preferences default values +define("_MI_xforms_INTRO_DEFAULT","Neem contact op via het volgende betekend:"); +define("_MI_xforms_GLOBAL_DEFAULT","[b]* Verplicht[/b]"); + +######### (liaise) version 1.23 additions ######### +define("_MI_xforms_UPLOADDIR","Fysiek pad om bestanden op te slaan ZONDER // (trailing slash) "); +define("_MI_xforms_UPLOADDIR_DESC","Alle bestanden worden hier opgeslagen wanneer een formulierwordt verstuurd via priveboodschap"); + +######### (xforms) version 1.0 additions ########## +define( "_MI_xforms_CAPTCHA", "Captcha gebruiken in formulier?" ); +define( "_MI_xforms_CAPTCHADSC", "Selecteer <em>Ja</em> om captcha te gebruiken in het formulier.<br />Standaard: <em>Ja</em>" ); +define("_MI_xforms_ADMENU4","Importeren vanuit Liaise"); + +######### (xforms) version 1.0.0.1 additions ########## +define("_MI_xforms_NOFORM","Tekst die getoond wordt aan de gebruiker wanneer er geen formulieren zichtbaar zijn."); +define("_MI_xforms_NOFORM_DEFAULT","Sorry, er zijn op dit moment geen formulieren (zichtbaar)."); + +define("_MI_xforms_ADMENU0","Home"); +?> \ 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: <ren...@us...> - 2012-02-11 14:07:31
|
Revision: 8929 http://xoops.svn.sourceforge.net/xoops/?rev=8929&view=rev Author: renetjuh Date: 2012-02-11 14:07:24 +0000 (Sat, 11 Feb 2012) Log Message: ----------- Dutch language files fmcontent 1.06 Added Paths: ----------- XoopsLanguages/dutch/modules/fmcontent/ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/admin.php XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/blocks.php XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/index.html XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/Thumbs.db XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/arrow.png XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/index.html XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-blank.gif XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-close.gif XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-next.gif XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-prev.gif XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-ico-loading.gif XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/index.html XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/main.php XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/modinfo.php Property changes on: XoopsLanguages/dutch/modules/fmcontent ___________________________________________________________________ Added: bugtraq:number + true Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06 ___________________________________________________________________ Added: bugtraq:number + true Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/admin.php =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/admin.php (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/admin.php 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1,184 @@ +<?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. +*/ + +/** + * FmContent language file + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @author Andricq Nicolas (AKA MusS) + * @version $Id$ + */ + +if (!defined('_FMCONTENT_PREFERENCES')) { + // Index page + define('_FMCONTENT_ADD_CONTENT', 'Content toevoegen'); + define('_FMCONTENT_ADD_TOPIC', 'Onderwerp toevoegen'); + define('_FMCONTENT_ADD_MENU', 'Link toevoegen'); + define('_FMCONTENT_LAST_TOPIC', 'Laatste onderwerpen'); + define('_FMCONTENT_LAST_CONTENTS', 'Laatste content'); +// Topic page + define('_FMCONTENT_FORM_TOPIC', 'Onderwerpen beheren'); + define('_FMCONTENT_TOPIC_ID', 'ID'); + define('_FMCONTENT_TOPIC_NUM', 'Gewicht'); + define('_FMCONTENT_TOPIC_NAME', 'Titel'); + define('_FMCONTENT_TOPIC_PARENT', 'Ouder onderwerp'); + define('_FMCONTENT_TOPIC_DESC', 'Omschrijving'); + define('_FMCONTENT_TOPIC_IMG', 'Afbeelding'); + define('_FMCONTENT_TOPIC_WEIGHT', 'Gewicht'); + define('_FMCONTENT_TOPIC_SHOWTYPE', 'Weergavemodus'); + define('_FMCONTENT_TOPIC_SHOWTYPE_DESC', 'Content weergavesjabloon voor dit onderwerp<br />"Module gebaseerd" gebruikt weergave-opties ingesteld bij de module-instellingen.'); + define('_FMCONTENT_TOPIC_PERPAGE', 'Per pagina'); + define('_FMCONTENT_TOPIC_COLUMNS', 'Kolommen'); + define('_FMCONTENT_TOPIC_ONLINE', 'Online'); + define('_FMCONTENT_TOPIC_MENU', 'Menu'); + define('_FMCONTENT_TOPIC_ACTION', 'Acties'); + define('_FMCONTENT_TOPIC_PID', 'Ouder'); + define('_FMCONTENT_TOPIC_COLOR', 'Onderwerpkleur'); + define('_FMCONTENT_TOPIC_DATE_CREATED', 'Tijd aangemaakt'); + define('_FMCONTENT_TOPIC_DATE_UPDATE', 'Tijd bijgewerkte'); + define('_FMCONTENT_TOPIC_SHOWTOPIC', 'Onderwerptitel weergeven'); + define('_FMCONTENT_TOPIC_SHOWAUTHOR', 'Auteur weergeven'); + define('_FMCONTENT_TOPIC_SHOWDATE', 'Datum weergeven'); + define('_FMCONTENT_TOPIC_SHOWDPF', 'PDF icoon weergeven'); + define('_FMCONTENT_TOPIC_SHOWPRINT', 'Print icoon weergeven'); + define('_FMCONTENT_TOPIC_SHOWMAIL', 'E-mail icoon weergeven'); + define('_FMCONTENT_TOPIC_SHOWNAV', 'Vorige/Volgende navigatie weergeven'); + define('_FMCONTENT_TOPIC_SHOWHITS', 'Klikken weergeven'); + define('_FMCONTENT_TOPIC_SHOWCOMS', 'Reacties tellen weergeven'); + define('_FMCONTENT_TOPIC_HOMEPAGE', 'Onderwerppagina instellen'); + define('_FMCONTENT_TOPIC_HOMEPAGE_DESC', 'Instellen van het weergavetype om inhoud weer te geven op de onderwerppagina'); + define('_FMCONTENT_TOPIC_HOMEPAGE_1', 'Een lijst met alle content van alle onderwerpen'); + define('_FMCONTENT_TOPIC_HOMEPAGE_2', 'Een lijst met alle onderwerpen'); + define('_FMCONTENT_TOPIC_HOMEPAGE_3', "Een lijst met alle statische pagina's"); + define('_FMCONTENT_TOPIC_HOMEPAGE_4', 'Toon geselecteerde statische inhoud'); + define('_FMCONTENT_TOPIC_OPTIONS', 'Selecteer opties om onderwerpen weer te geven'); + define('_FMCONTENT_TOPIC_OPTIONS_DESC', 'Instellen van de weergave-opties om onderwerpen weer te geven.'); + define('_FMCONTENT_TOPIC_ALIAS', 'Alias (voor URL)'); +// Content page + define('_FMCONTENT_FORM', 'Content beheren'); + define('_FMCONTENT_FORMTYPE', 'Type'); + define('_FMCONTENT_FORMTYPE_CONTENT', 'Content'); + define('_FMCONTENT_FORMTYPE_LINK', 'Link'); + define('_FMCONTENT_FORMTYPE_HEADER', 'Inleiding'); + define('_FMCONTENT_FORMTYPE_SEPARATOR', 'Scheidingslijn'); + define('_FMCONTENT_FORMTITLE', 'Titel'); + define('_FMCONTENT_FORMTITLE_DISP', 'Paginatitel weergeven?'); + define('_FMCONTENT_FORMAUTHOR', 'Bron (Naam)'); + define('_FMCONTENT_FORMSOURCE', 'Bron (URL)'); + define('_FMCONTENT_FORMPARENT', 'Ouder'); + define('_FMCONTENT_FORMTEXT', 'Tekst'); + define('_FMCONTENT_FORMTEXT_DESC', 'Hoofdcontent van de pagina'); + define('_FMCONTENT_FORMGROUP', 'Groepen'); + define('_FMCONTENT_FORMALIAS', 'Alias (voor URL)'); + define('_FMCONTENT_FORMACTIF', 'Online'); + define('_FMCONTENT_FORMDISPLAY', 'Menu'); + define('_FMCONTENT_FORMLINK', 'Link'); + define('_FMCONTENT_FORMDEFAULT', 'Standaard'); + define('_FMCONTENT_THEME', 'Thema'); + define('_FMCONTENT_FORMOPTION', 'Opties'); + define('_FMCONTENT_FORMHTML', 'HTML'); + define('_FMCONTENT_FORMPREV', 'Vorige link'); + define('_FMCONTENT_FORMNEXT', 'Volgende link'); + define('_FMCONTENT_DOHTML', 'HTML code toestaan'); + define('_FMCONTENT_BREAKS', 'Regeleinde omzetten'); + define('_FMCONTENT_DOIMAGE', 'XOOPS Afbeeldingen toestaan'); + define('_FMCONTENT_DOXCODE', 'XOOPS BBcode toestaan'); + define('_FMCONTENT_DOSMILEY', 'XOOPS Smilies toestaan'); + define('_FMCONTENT_SHORT', 'Verkorte tekst'); + define('_FMCONTENT_IMG', 'Afbeelding'); + define('_FMCONTENT_FORMUPLOAD', 'Selecteer Afbeelding'); + define('_FMCONTENT_CONTENT_TITLE', 'Titel'); + define('_FMCONTENT_CONTENT_MANAGER', 'Contentbeheer'); + define('_FMCONTENT_CONTENT_ID', 'ID'); + define('_FMCONTENT_CONTENT_NUM', 'Gewicht'); + define('_FMCONTENT_CONTENT_PAGE', 'Pagina'); + define('_FMCONTENT_CONTENT_TYPE', 'Type'); + define('_FMCONTENT_CONTENT_OWNER', 'Eigenaar'); + define('_FMCONTENT_CONTENT_ACTIF', 'Actief'); + define('_FMCONTENT_CONTENT_DEFAULT', 'Standaard'); + define('_FMCONTENT_CONTENT_ORDER', 'Volgorde'); + define('_FMCONTENT_CONTENT_ACTION', 'Acties'); + define('_FMCONTENT_CONTENT_VIEW', 'Bekijken'); + define('_FMCONTENT_CONTENT_EDIT', 'Bewerken'); + define('_FMCONTENT_CONTENT_DELETE', 'Verwijderen'); + define('_FMCONTENT_CONTENT_DOWN', 'Beneden'); + define('_FMCONTENT_CONTENT_UP', 'Boven'); + define('_FMCONTENT_CONTENT_SHORT', 'Verkorte omschrijving'); + define('_FMCONTENT_CONTENT_TOPIC', 'Onderwerp'); + define('_FMCONTENT_CONTENT_TOPIC_DESC', 'Selectie legen stelt de content in als een statische pagina'); + define('_FMCONTENT_MENU_TOPIC', 'Menunaam'); + define('_FMCONTENT_CONTENT_MENU', 'Menutitel'); + define('_FMCONTENT_STATIC', 'Statische pagina'); + define('_FMCONTENT_STATICS', "Statische pagina's"); + define('_FMCONTENT_ALL_ITEMS', 'Alle content/item lijst'); + define('_FMCONTENT_ALL_ITEMS_FROM', 'Item lijst gefilterd op: '); +// Menu page + define('_FMCONTENT_MENU_DEFAULT', 'Standaard'); + define('_FMCONTENT_CONTENT_CHILD', 'Kind'); +// Tools page + define('_FMCONTENT_FORMFOLDER_TITLE', 'Kloon module'); + define('_FMCONTENT_FORMFOLDER_NAME', 'Mapnaam'); + define('_FMCONTENT_LOG_TITLE', 'Kloon module log'); + define('_FMCONTENT_FORMPURGE_TITLE', 'PVerwijder pagina of kloon'); + define('_FMCONTENT_ALIAS_TITLE', 'Alias vernieuwen'); + define('_FMCONTENT_ALIAS_CONTENT', 'Content alias vernieuwen'); + define('_FMCONTENT_ALIAS_TOPIC', 'Onderwerp alias vernieuwen'); +// Permissions + define('_FMCONTENT_PERMISSIONS_ACCESS', 'Toegangspermissies'); + define('_FMCONTENT_PERMISSIONS_SUBMIT', 'Indienpermissies'); + define('_FMCONTENT_PERMISSIONS_GLOBAL', 'Globale permissies'); + define('_FMCONTENT_PERMISSIONS_GLOBAL_4', 'Stemmen'); + define('_FMCONTENT_PERMISSIONS_GLOBAL_8', 'Indienen vanuit de gebruikerszijde'); + define('_FMCONTENT_PERMISSIONS_GLOBAL_16', 'Automatisch goedkeuren'); +// Admin message + define('_FMCONTENT_MSG_DBUPDATE', 'Database succevol bijgewerkt!'); + define('_FMCONTENT_MSG_ERRORDELETE', 'Deze content kan niet worden verwijderd! <br />Verwijder of verplaats alle onderliggende content.'); + define('_FMCONTENT_MSG_WAIT', 'Even wachten...'); + define('_FMCONTENT_MSG_DELETE', 'Zeker weten dat het volgende verwijderd moet worden: %s ?'); + define('_FMCONTENT_MSG_EDIT_ERROR', 'Kon de pagina niet vinden of pagina ID bestaat niet!'); + define('_FMCONTENT_MSG_UPDATE_ERROR', 'Database niet bijgewerkt! Bijwerken content mislukt'); + define('_FMCONTENT_MSG_INSERT_ERROR', 'Database niet bijgewerkt! Invoegen content mislukt '); + define('_FMCONTENT_MSG_CLONE_ERROR', 'Deze map bestaat reeds!'); + define('_FMCONTENT_MSG_NOPERMSSET', 'Permissie kan niet ingesteld worden: Nog geen onderwerpen aangemaakt! Please create a Topic first.'); + define('_FMCONTENT_MSG_ALIASERROR', 'De geselecteerde Alias bestaat reeds. Pas de Alias aan en probeer opnieuw'); +// Tips + define('_FMCONTENT_HOME_TIPS', + '<ul> + <li>Nog niet</li> + </ul>'); + define('_FMCONTENT_TOPIC_TIPS', + '<ul> + <li>Opnieuw ordenen, bekijken, bewerken, of verwijderen van elk onderwerp</li> + <li>Onderwerp en bijbehorende content weergeven in een blok als menu</li> + <!--<li>Acief, gebruik diverse onderwerpen me AJAX</li>--> + <li>Klik op een titel van het onderwerp om alle bijbehorende content weer te geven</li> + </ul>'); + define('_FMCONTENT_CONTENT_TIPS', + "<ul> + <li>Opnieuw ordenen, bekijken, bewerken of verwijderen van alle content en pagina's</li> + <li>Aanmaken van content, link, sectie hoofd of deler</li> + <li>Om de volgorde van de content te wijzigen (wat direct te zien is in het menu), klik en sleep de content naar de gewenste positie.</li> + </ul>"); + define('_FMCONTENT_TOOLS_TIPS', + '<ul> + <li>Nog niet</li> + </ul>'); + define('_FMCONTENT_PERMISSIONS_TIPS', + '<ul> + <li>Toegangs, indienen en globale permissies voor de module</li> + </ul>'); +// Configuration + define("_FMCONTENT_CONFIG_CHECK", "Configuratiecontrole"); + define("_FMCONTENT_CONFIG_PHP", "Minimum PHP benodigd: %s (huidige versie is %s)"); + define("_FMCONTENT_CONFIG_XOOPS", "Minimum XOOPS benodigd: %s (huidige versie is %s)"); +} +?> \ No newline at end of file Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/blocks.php =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/blocks.php (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/blocks.php 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1,41 @@ +<?php +/** + * Module language page + * + * LICENSE + * + * 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. + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @author Andricq Nicolas (AKA MusS) + * @version $Id$ + * @since 2.3.0 + */ + +if (!defined('_FMCONTENT_TYPE')) { + //Menu + define("_MI_FMCONTENT_MENUTODISPLAY", "Selecteer contenttype/onderwerp om weer te geven"); + define("_MI_FMCONTENT_DISPLAY", "Weergeven"); + define('_MI_FMCONTENT_MENU_DEFAULT', "Statische pagina's"); + define('_MI_FMCONTENT_TYPE', 'Menusjabloon: '); + define('_MI_FMCONTENT_HORIZ', 'Horizontaal'); + define('_MI_FMCONTENT_VERT', 'Verticaal'); + define('_MI_FMCONTENT_SIMPLE', 'Standaard'); + define('_MI_FMCONTENT_MENU_ALL', 'Alle content'); +//Page + define('_MI_FMCONTENT_SELECTPAGE', 'Selecteer de pagina om weer te geven: '); +//List + define('_MI_FMCONTENT_ALLMENUS', 'Alle onderwerpen'); + define('_MI_FMCONTENT_TOPICDISPLAY', 'Selecteer onderwerpen om weer te geven'); + define('_MI_FMCONTENT_NUMBER', 'Aantal van de genoemde inhoud'); + define('_MI_FMCONTENT_CHARS', 'Titellengte (karakters)'); + define('_MI_FMCONTENT_IMG', 'Afbeelding weergeven'); + define('_MI_FMCONTENT_WIDTH', 'Max breedte afbeelding (pixel)'); + define('_MI_FMCONTENT_DESCRIPTION', 'Contenttekst weergeven'); + define('_MI_FMCONTENT_DATE', 'Datum gepubliceerd weergeven'); + define('_MI_FMCONTENT_MORE', 'Lees meer'); +} +?> \ No newline at end of file Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/help.html 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1,62 @@ +<div id="help-template" class="outer"> + <h1 class="head">Help: + <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/fmcontent/admin/index.php" + title="Terug naar de administratie van fmContent"> fmContent <img src="<{xoAdminIcons home.png}>" + alt="Terug naar de administratie van fmContent"/> + </a></h1> + <!-- -----Help Content ---------- --> + + <h4 class="odd">Omschrijving</h4> + + <p class="even"> + fmContent is een XOOPS module waarmee scrollende teksten gemaakt worden (fmContents). Er kan een onbeperkt aantal aan fmContents aangemaakt worden + en hiervoor 4 verschillende blokken gebruiken. Teksten kunnen scrollen van rechts naar links en van boven naar beneden.</p> + + <p class="even"> + Maak gebruik een WYSIWYG-editor om de content nog aantrekkelijker te maken.</p> + + <!-- -----Help Content ---------- --> + + <h4 class="odd">Hoofdlijn</h4> + <ul> + <li>Deze module biedt content management voor XOOPS.</li> + <li>Daarnaast zorgt het voor beheer van pagina-inhoud en een dynamisch menu</li> + </ul> + <h4 class="odd">Home</h4> + <ul> + <li>Bekijk alle gecre\xEBerde contentpagina's door gebruik te maken van de volgende pictogrammen.</li> + <li> + <img src="<{$xoops_url}>/modules/fmcontent/images/icons/up.png" alt="<{$smarty.const._CONTENT_INDEX_UP}>" title="<{$smarty.const._CONTENT_INDEX_UP}>" /> + <img src="<{$xoops_url}>/modules/fmcontent/images/icons/down.png" alt="<{$smarty.const._CONTENT_INDEX_DOWN}>" title="<{$smarty.const._CONTENT_INDEX_DOWN}>" /> : Herordenen pagina en sub-pagina. + </li> + <li> + <img src="<{$xoops_url}>/modules/fmcontent/images/icons/display.png" alt="<{$smarty.const._PREVIEW}>" title="<{$smarty.const._PREVIEW}>" /> Bekijken, + <img src="<{$xoops_url}>/modules/fmcontent/images/icons/edit.png" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /> bewerken en + <img src="<{$xoops_url}>/modules/fmcontent/images/icons/delete.png" alt="<{$smarty.const._DELETE}" title="<{$smarty.const._DELETE}" /> verwijderen van een pagina.</li> + </ul> + <h4 class="odd">Content</h4> + <ul> + <li>Add some different content for Xoops like page, link, section header and separator.</li> + <li>All differnet content permit to create a dynamic menu link to the content page.</li> + <li> + "content": create your own page.<br /> + You must specify a page title, a menu title and the text of your page.<br /> + You can also define a page alias for choose an unique page name which is use for the url. (This is not mandatory, module can create the alias with the page name define) + </li> + <li> + "link": add an internal or external link in your dynamic menu.<br /> + For exemple, you can create a simple link for redirect the the homepage of your site. + </li> + <li>"section header": create a non-clickable section for your menu.</li> + <li>"Scheiding": create a separator for your menu.</li> + </ul> + <h4 class="odd">Instellingen</h4> + <ul> + <li>"Form Option": Choose your WYSIWYG editor. This setting need to have the xoops editor class made by phppp (DJ)</li> + <li>"Use friendly url?": Use the standard mode for have url like 'index.php?page=My-Content', or use the friendly mode for have url like 'index.php/My-Content' and finally you can activate the url rewriting if your server permit this option for have url like 'content/My-Content.html' (You must copy the .htaccess in your modules directory or in the root path see the extras/readme.txt for more information)</li> + <li>"Choose the url rewriting base": this setting work only if url rewriting module is activate on your server. This option permit to choose if you want to display the '/module/' in your url.</li> + <li>"Groups access": Define the genral rule for group access.</li> + <li>"Use module Tell a friend?": If Tell a friend module is installed on your Xoops, you can see this option and use it for send email.</li> + </ul> + +</div> \ No newline at end of file Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/index.html =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/index.html (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/help/index.html 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/Thumbs.db =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/Thumbs.db ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/arrow.png =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/arrow.png ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/index.html =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/index.html (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/index.html 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-blank.gif =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-blank.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-close.gif =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-close.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-next.gif =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-next.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-prev.gif =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-btn-prev.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-ico-loading.gif =================================================================== (Binary files differ) Property changes on: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/images/lightbox-ico-loading.gif ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/index.html =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/index.html (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/index.html 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/main.php =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/main.php (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/main.php 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1,85 @@ +<?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. +*/ + +/** + * FmContent language file + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @author Andricq Nicolas (AKA MusS) + * @version $Id$ + */ + +if (!defined('_FMCONTENT_NEXT')) { + // All + define('_FMCONTENT_ID', 'ID'); + define('_FMCONTENT_TITLE', 'Titel'); + define('_FMCONTENT_PUBLICDATE', 'Datum'); + define('_FMCONTENT_MORE', 'Lees meer'); + define('_FMCONTENT_HITS', 'Gelezen'); + define("_FMCONTENT_SOURCE", "Bron: "); + define("_FMCONTENT_PUBTOPIC", "gepubliseerd in"); + define("_FMCONTENT_AUTHOR_ALL", "Alles lezen"); + define("_FMCONTENT_AUTHOR_ALL_DESC", "Bekijk alle bijdragen van "); + define('_FMCONTENT_COM', 'Reactie'); + define('_FMCONTENT_RELATED', 'Gerelateerde content'); +// Link + define('_FMCONTENT_NEXT', 'Volgende pagina'); + define('_FMCONTENT_PREV', 'Vorige pagina'); + define('_FMCONTENT_EDIT', 'Pagina bewerken'); + define('_FMCONTENT_DELETE', 'Pagina verwijderen'); + define('_FMCONTENT_PRINT', 'Printbare versie'); + define('_FMCONTENT_PDF', 'Omzetten naar PDF'); + define('_FMCONTENT_MAIL', 'Aanbevelen per e-mail'); + define('_FMCONTENT_COMS', 'Reacties'); + define('_FMCONTENT_NOCOMS', '0 reacties'); +// Pdf + define('_FMCONTENT_AUTHOR', 'Auteur'); + define('_FMCONTENT_DATE', 'Gepubliceerd'); + define('_FMCONTENT_UPDATE', 'Bijgewerkt'); +// Error message + define('_FMCONTENT_ERROR_DEFAULT', 'Module Error: De standaardpagina is niet ingesteld !'); + define('_FMCONTENT_ERROR_NOPAGE', 'Er is nog geen pagina aangemaakt'); + define('_FMCONTENT_TOPIC_ERROR', 'Geselecteerde onderwerp bestaat niet'); +// Light box + define('_FMCONTENT_LIGHTBOX_IMAGE', 'Afbeelding'); + define('_FMCONTENT_LIGHTBOX_OF', 'of'); +// Public bookmarks + define("_FMCONTENT_BOOKMARK_ME", "Delen via"); + define("_FMCONTENT_BOOKMARK_TO_BLINKLIST", "Delen via Blinklist"); + define("_FMCONTENT_BOOKMARK_TO_DELICIOUS", "Delen via del.icio.us"); + define("_FMCONTENT_BOOKMARK_TO_DIGG", "Delen via Digg"); + define("_FMCONTENT_BOOKMARK_TO_FARK", "Delen via Fark"); + define("_FMCONTENT_BOOKMARK_TO_FURL", "Delen via Furl"); + define("_FMCONTENT_BOOKMARK_TO_NEWSVINE", "Delen via Newsvine"); + define("_FMCONTENT_BOOKMARK_TO_REDDIT", "Delen via Reddit"); + define("_FMCONTENT_BOOKMARK_TO_SIMPY", "Delen via Simpy"); + define("_FMCONTENT_BOOKMARK_TO_SPURL", "Delen via Spurl"); + define("_FMCONTENT_BOOKMARK_TO_YAHOO", "Delen via Yahoo"); + define("_FMCONTENT_BOOKMARK_TO_FACEBOOK", "Delen via Faceboom"); + define("_FMCONTENT_BOOKMARK_TO_TWITTER", "Delen via Twitter"); + define("_FMCONTENT_BOOKMARK_TO_SCRIPSTYLE", "Delen via Scripstyle"); + define("_FMCONTENT_BOOKMARK_TO_STUMBLE", "Delen via Stumble"); + define("_FMCONTENT_BOOKMARK_TO_TECHNORATI", "Delen via Technorati"); + define("_FMCONTENT_BOOKMARK_TO_MIXX", "Delen via Mixx"); + define("_FMCONTENT_BOOKMARK_TO_MYSPACE", "Delen via Myspace"); + define("_FMCONTENT_BOOKMARK_TO_DESIGNFLOAT", "Delen via Designfloat"); + define("_FMCONTENT_BOOKMARK_TO_BALATARIN", "Delen via Balatarin"); + define("_FMCONTENT_BOOKMARK_TO_GOOLGEBUZZ", "Delen via Google Buzz"); + define("_FMCONTENT_BOOKMARK_TO_GOOLGEREADER", "Delen via Google Reader"); + define("_FMCONTENT_BOOKMARK_TO_GOOLGEBOOKMARKS", "Delen via Google Bookmarks"); +// topic + define("_FMCONTENT_TOPIC_ID", "ID"); + define("_FMCONTENT_TOPIC_NAME", "Titel"); + define("_FMCONTENT_TOPIC_DESC", "Omschrijving"); + define("_FMCONTENT_TOPIC_IMG", "Afbeelding"); +} +?> \ No newline at end of file Added: XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/modinfo.php =================================================================== --- XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/modinfo.php (rev 0) +++ XoopsLanguages/dutch/modules/fmcontent/fmcontent 1.06/nederlands/modinfo.php 2012-02-11 14:07:24 UTC (rev 8929) @@ -0,0 +1,301 @@ +<?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. +*/ + +/** + * FmContent language file + * + * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @author Andricq Nicolas (AKA MusS) + * @version $Id$ + */ + +if (!defined('_MI_FMCONTENT_NAME')) { + // Module info + define('_MI_FMCONTENT_NAME', 'fmContent'); + define('_MI_FMCONTENT_DESC', 'Beheer paginacontent'); +// Menu + define('_FMCONTENT_HOME', 'Home'); + define('_FMCONTENT_TOPIC', 'Onderwerp'); + define('_FMCONTENT_CONTENT', 'Content'); + define('_FMCONTENT_PERM', 'Permissies'); + define('_FMCONTENT_TOOLS', 'Gereedschap'); + define('_FMCONTENT_ABOUT', 'Over'); + define('_FMCONTENT_HELP', 'Hulp'); + define('_FMCONTENT_SUBMIT', 'Indienen'); +// Block + define('_FMCONTENT_MENU', 'Contentmenu'); + define('_FMCONTENT_PAGE', 'Contentpagina'); + define('_FMCONTENT_LIST', 'Contentlijst'); +// Editor + define("_FMCONTENT_FORM_EDITOR", "Formulieroptie"); + define("_FMCONTENT_FORM_EDITOR_DESC", "Selecteer de editor om te gebruiken voor het bewerken van de content."); +// Urls + define('_FMCONTENT_FRIENDLYURL', 'URL herschrijfmethode'); + define('_FMCONTENT_FRIENDLYURL_DESC', 'Selecteer de URL herschrijfmethode om te gebruiken.<ul> + <li>"Standaard Mode": Module standard URL</li> + <li>"HerschrijfMode": you must use .htaccess file and edit .htaccess sample code if you change SEO / URL Rewrite options</li> + <li>"Verkorte herschrijving": you can make URL whit out page id and module use alias for get page info. you must edit .htaccess, you can remove module name and Url extension and use Root base for have short URL</li></ul>'); + define('_FMCONTENT_URL_STANDARD', 'Standaard Mode'); + define('_FMCONTENT_URL_REWRITE', 'Herschrijfmode'); + define('_FMCONTENT_URL_SHORT', 'Verkorte herschrijving'); +// Rewrite Mode + define('_FMCONTENT_REWRITEBASE', 'HerschrijfMode: .htaccess bestandspositie'); + define('_FMCONTENT_REWRITEBASE_DESC', ' + "Module": .htaccess bestand moet in de modulemap staan.<br /> + "Root": .htaccess bestand moet in de XOOPS rootmap staan.'); + define('_FMCONTENT_REWRITEBASE_MODS', 'Module'); + define('_FMCONTENT_REWRITEBASE_ROOT', 'Root'); +// Rewrite Name + define('_FMCONTENT_REWRITENAME', 'Herschrijfmode: modulenaam'); + define('_FMCONTENT_REWRITENAME_DESC', 'Definieer de modulenaam te gebruiken in URL herschrijven.<br />Door wijzigen/verwijderen van deze waarde, dient het .htaccess bestand aangepast te worden.'); +// Rewrite Extension + define('_FMCONTENT_REWRITEEXT', 'Herschrijfmode: Url extensie'); + define('_FMCONTENT_REWRITEEXT_DESC', 'Definieer extensie voor URL herschrijven (standaard .html)<br />Door wijzigen/verwijderen van deze waarde, dient het .htaccess bestand aangepast te worden.'); +// static name + define('_FMCONTENT_STATICNAME', 'Herschrijfmode: onderwerp statische paginas'); + define('_FMCONTENT_STATICNAME_DESC', 'Onderwerpnaam van statische pagina in herschreven URL'); +// Lenght Id + define('_FMCONTENT_LENGHTID', 'Herschrijfmode:: lengte voor pagina-ID'); + define('_FMCONTENT_LENGHTID_DESC', 'Aantal digits in gebruik voor URL voor pagina-ID'); +// Group Access + define('_FMCONTENT_GROUPS', 'Permissies groepen'); + define('_FMCONTENT_GROUPS_DESC', 'Selecteer algemene toegangspermissies voor groepen.'); +//Advertisement + define('_FMCONTENT_ADVERTISEMENT', 'advertentie'); + define('_FMCONTENT_ADVERTISEMENT_DESC', 'Tekst invullen Enter text or html/Javascript code for your contents'); +// Edit in place + define('_FMCONTENT_EDITINPLACE', 'Inline bewerkingen gebruiken?'); + define('_FMCONTENT_EDITINPLACE_DESC', 'Inline bewerkingen van de content'); +// Tell a friend + define('_FMCONTENT_TELLAFRIEND', 'Gebruik Tell a friend module?'); + define('_FMCONTENT_TELLAFRIEND_DESC', 'De Tell a friend module dient ge\xEFnstalleerd te zijn om deze optie te laten werken.'); +// Tell a friend + define('_FMCONTENT_USETAG', 'Gebruik TAG module om labels te generen'); + define('_FMCONTENT_USETAG_DESC', 'De TAG module dient ge\xEFnstalleerd te zijn om deze optie te laten werken.'); +// minimum length of single words + define('_FMCONTENT_MINWORDLENGHT', 'Lengte Meta Keywords'); + define('_FMCONTENT_MINWORDLENGHT_DESC', 'Kies de minimum lengte van losse woorden'); +// minimum length of single words + define('_FMCONTENT_MINWORDOCCUR', 'Meta Keywords Zichtbaar'); + define('_FMCONTENT_MINWORDOCCUR_DESC', 'Kies de minimum zichtbaarheid van losse woorden'); +// Show options + define('_FMCONTENT_DISP_OPTION', 'Algemene weergavemethode'); + define('_FMCONTENT_DISP_OPTION_DESC', 'Selecteer welke weergaveopties worden gebruikt in content<br />"Onderwerpgebaseerd" gebruikt weergave-opties ingesteld bij onderwerpinstellingen'); + define('_FMCONTENT_DISP_OPTION_MODULE', 'Modulegebaseerd'); + define('_FMCONTENT_DISP_OPTION_TOPIC', 'Onderwerpgebaseerd'); +// Title + define('_FMCONTENT_DISPTITLE', 'Titel weergeven'); + define('_FMCONTENT_DISPTITLE_DESC', ''); +// Topic + define('_FMCONTENT_DISPTOPIC', 'Onderwerptitel weergeven'); + define('_FMCONTENT_DISPTOPIC_DESC', ''); +// Date + define('_FMCONTENT_DISPDATE', 'Datum weergeven'); + define('_FMCONTENT_DISPDATE_DESC', ''); +// Author + define('_FMCONTENT_DISPAUTHOR', 'Auteur weergeven'); + define('_FMCONTENT_DISPAUTHOR_DESC', ''); +// Navigation Link + define('_FMCONTENT_DISPNAV', 'Vorige/volgende navigatie weergeven'); + define('_FMCONTENT_DISPNAV_DESC', ''); +// PDF Link + define('_FMCONTENT_DISPPDF', 'PDF icoon weergeven'); + define('_FMCONTENT_DISPPDF_DESC', ''); +// Print Link + define('_FMCONTENT_DISPPRINT', 'Print icoon weergeven'); + define('_FMCONTENT_DISPPRINT_DESC', ''); +// Hits Link + define('_FMCONTENT_DISHITS', 'Aantal klikken weergeven'); + define('_FMCONTENT_DISHITS_DESC', ''); +// Mail Link + define('_FMCONTENT_DISPMAIL', 'E-mail icoon weergeven'); + define('_FMCONTENT_DISPMAIL_DESC', ''); +// Comments + define('_FMCONTENT_DISPCOMS', 'Reacties tellen weergeven'); + define('_FMCONTENT_DISPCOMS_DESC', ''); +// Per page + define('_FMCONTENT_PERPAGE', 'Inhoud per pagina'); + define('_FMCONTENT_PERPAGE_DESC', 'Aantal content weergevenin onderwerp/indexpagina'); +// Columns + define('_FMCONTENT_COLUMNS', 'Kolommen'); + define('_FMCONTENT_COLUMNS_DESC', 'Aantal kolommen in elke pagina'); +// Show type + define('_FMCONTENT_SHOWTYPE', 'Weergavemodus'); + define('_FMCONTENT_SHOWTYPE_DESC', 'Weergave sjabloon voor de content vermeld in onderwerp/indexpagina'); + define('_FMCONTENT_SHOWTYPE_0', 'Modulegebaseerd'); + define('_FMCONTENT_SHOWTYPE_1', 'Nieuwsweergave'); + define('_FMCONTENT_SHOWTYPE_2', 'Tabelweergave'); + define('_FMCONTENT_SHOWTYPE_3', 'Afbeeldingsweergave'); + define('_FMCONTENT_SHOWTYPE_4', 'Lijstweergave'); +//Template + define('_FMCONTENT_TEMPLATE', 'Sjabloon'); + define('_FMCONTENT_TEMPLATE_DESC', 'Algemeen sjabloon voor de module instellen'); + define('_FMCONTENT_TEMPLATE_1', 'Legacy'); + define('_FMCONTENT_TEMPLATE_2', 'jQuery UI'); + define('_FMCONTENT_TEMPLATE_3', 'HTML 5'); +// Show order + define('_FMCONTENT_SHOWORDER', 'Weergavevolgorde'); + define('_FMCONTENT_SHOWORDER_DESC', 'Selecteer aflopende/oplopende volgorde'); + define('_FMCONTENT_DESC', 'Aflopend'); + define('_FMCONTENT_ASC', 'Oplopend'); +// Show sort + define('_FMCONTENT_SHOWSORT', 'Sorteren op'); + define('_FMCONTENT_SHOWSORT_DESC', 'Sorteermethode voor de content weergegeven in de module'); + define('_FMCONTENT_SHOWSORT_1', 'Content id'); + define('_FMCONTENT_SHOWSORT_2', 'Content aangemaakt'); + define('_FMCONTENT_SHOWSORT_3', 'Content bijgewerkt'); + define('_FMCONTENT_SHOWSORT_4', 'Content titel'); + define('_FMCONTENT_SHOWSORT_5', 'Ingesteld paginavolgorde'); + define('_FMCONTENT_SHOWSORT_6', 'Willekeurig'); +// Admin page + define('_FMCONTENT_ADMIN_PERPAGE', 'Contentpagina aantal items Admin'); + define('_FMCONTENT_ADMIN_PERPAGE_DESC', 'Aantal items weergeven op contentpagina aan Adminzijde'); +// Admin Show order + define('_FMCONTENT_ADMIN_SHOWORDER', 'Contentpagina weergavevolgorde Admin'); + define('_FMCONTENT_ADMIN_SHOWORDER_DESC', 'Selecteer aflopende/oplopende volgorde voor contentpagina aan Adminzijde'); +// Admin sort + define('_FMCONTENT_ADMIN_SHOWSORT', 'Contentpagina sorteervolgorde Admin'); + define('_FMCONTENT_ADMIN_SHOWSORT_DESC', 'Sorteermethode voor items weergeven op contentpagina aan Adminzijde<br />Elke optie behalve "Admin contentvolgorde" wjzigt alle handmatige ingestelde volgorde van contentpaginas.'); +// Admin topic page + define('_FMCONTENT_ADMIN_PERPAGE_TOPIC', 'Onderwerppagina aantal items Admin'); + define('_FMCONTENT_ADMIN_PERPAGE_TOPIC_DESC', 'Aantal items weergeven op onderwerpagina aan Adminzijde'); +// Admin topic Show order + define('_FMCONTENT_ADMIN_SHOWORDER_TOPIC', 'Onderwerppagina weergavevolgorde Admin'); + define('_FMCONTENT_ADMIN_SHOWORDER_TOPIC_DESC', 'Select Descendant/Ascendant order for admin Topic page'); + define('_FMCONTENT_ADMIN_SHOWSORT_TOPIC_1', 'Onderwerp ID'); + define('_FMCONTENT_ADMIN_SHOWSORT_TOPIC_2', 'Onderwerp gewicht'); + define('_FMCONTENT_ADMIN_SHOWSORT_TOPIC_3', 'Datum onderwerp aangemaakt'); +// Admin topic sort + define('_FMCONTENT_ADMIN_SHOWSORT_TOPIC', 'Volgorde onderwerppagina aan Adminzijde'); + define('_FMCONTENT_ADMIN_SHOWSORT_TOPIC_DESC', 'Sorteervolgorde voor items opgesomd op onderwerppagina aan adminzijde'); +// Admin index limit + define('_FMCONTENT_ADMIN_INDEX_LIMIT', 'Items in Admin index'); + define('_FMCONTENT_ADMIN_INDEX_LIMIT_DESC', 'Aantal items in admin indexpagina'); +//rss + define('_FMCONTENT_RSS_SHOW', 'RSS icoon weergeven'); + define('_FMCONTENT_RSS_SHOW_DESC', 'Weergeven/verbergen RSS icoon in module'); + define('_FMCONTENT_RSS_TIMECACHE', 'RSS cache tijd'); + define('_FMCONTENT_RSS_TIMECACHE_DESC', 'Cache tijd voor RSS paginas in minuten'); + define('_FMCONTENT_RSS_PERPAGE', 'RSS nummer'); + define('_FMCONTENT_RSS_PERPAGE_DESC', 'Selecteer aantal items weergegeven in RSS pagina'); + define('_FMCONTENT_RSS_LOGO', 'RSS logo URL'); + define('_FMCONTENT_RSS_LOGO_DESC', 'Pad voor sitelogo weergegeven in RSS (relatief tot Xoops root map)'); +// Print + define('_FMCONTENT_PRINT_LOGO', 'Sitetitel weergeven'); + define('_FMCONTENT_PRINT_LOGO_DESC', 'Weergeven/verbergen sitetitel op printpagina'); + define('_FMCONTENT_PRINT_LOGOFLOAT', 'Uitlijnen Printlogo'); + define('_FMCONTENT_PRINT_LOGOFLOAT_DESC', 'Selecteer links, rechts of midden als positie voor printlogo'); + define('_FMCONTENT_PRINT_LEFT', 'Links'); + define('_FMCONTENT_PRINT_RIGHT', 'Rechts'); + define('_FMCONTENT_PRINT_CENTER', 'Midden'); + define('_FMCONTENT_PRINT_LOGOURL', 'URL Printlogo'); + define('_FMCONTENT_PRINT_LOGOURL_DESC', 'Pad voor sitelogo weergegeven in printpagina (relatief tot Xoops root map)'); + define('_FMCONTENT_PRINT_TITLE', 'Titel weergeven'); + define('_FMCONTENT_PRINT_TITLE_DESC', ''); + define('_FMCONTENT_PRINT_IMG', 'Afbeelding weergeven'); + define('_FMCONTENT_PRINT_IMG_DESC', ''); + define('_FMCONTENT_PRINT_SHORT', 'verkorte tekst weergeven'); + define('_FMCONTENT_PRINT_SHORT_DESC', ''); + define('_FMCONTENT_PRINT_TEXT', 'Hoofdtekst weergeven'); + define('_FMCONTENT_PRINT_TEXT_DESC', ''); + define('_FMCONTENT_PRINT_DATE', 'Datum weergeven'); + define('_FMCONTENT_PRINT_DATE_DESC', ''); + define('_FMCONTENT_PRINT_AUTHOR', 'Auteur weergeven'); + define('_FMCONTENT_PRINT_AUTHOR_DESC', ''); + define('_FMCONTENT_PRINT_LINK', 'Pagina URL weergeven'); + define('_FMCONTENT_PRINT_LINK_DESC', ''); +//img + define('_FMCONTENT_IMAGE_DIR', 'Uploadpad voor afbeeldingen'); + define('_FMCONTENT_IMAGE_DIR_DESC', 'Uploadpad voor afbeeldingen gebruikt bij content'); + define('_FMCONTENT_IMAGE_SIZE', 'Bestandsgrootte afbeeldingen (in bytes)'); + define('_FMCONTENT_IMAGE_SIZE_DESC', 'Max toegestane bestandsgrootte voor afbeeldingen (1048576 bytes = 1 MegaByte)'); + define('_FMCONTENT_IMAGE_MAXWIDTH', 'Max breedte afbeeldingen (pixel)'); + define('_FMCONTENT_IMAGE_MAXWIDTH_DESC', 'Max toegestane breedte voor uploaden van afbeeldingen'); + define('_FMCONTENT_IMAGE_MAXHEIGHT', 'Max hoogte afbeeldingen (pixel)'); + define('_FMCONTENT_IMAGE_MAXHEIGHT_DESC', 'Max toegestane hoogte voor uploaden van afbeeldingen'); + define('_FMCONTENT_IMAGE_MIME', 'Afbeelding mime types'); + define('_FMCONTENT_IMAGE_MIME_DESC', 'Toegestane mime-types voor uploaden van afbeeldingen'); + define('_FMCONTENT_IMAGE_WIDTH', 'Max breedte afbeelding in contentlijst (pixel)'); + define('_FMCONTENT_IMAGE_WIDTH_DESC', 'Max toegestane breedte voor afbeeldingen in content opgesomd in index-/onderwerppaginas<br /> Een max breedte/hoogte voor afbeeldingen in contentpaginags is ingesteld in /css/style.css'); + define('_FMCONTENT_IMAGE_FLOAT', 'Afbeeldingsuitlijning'); + define('_FMCONTENT_IMAGE_FLOAT_DESC', 'Selecteer linker- of rechterpositie om afbeeldingen weer te geven die toegevoegd zijn aan content'); + define('_FMCONTENT_IMAGE_LEFT', 'Links'); + define('_FMCONTENT_IMAGE_RIGHT', 'Rechts'); + define('_FMCONTENT_IMAGE_LIGHTBOX', 'Lightbox gebruiken'); + define('_FMCONTENT_IMAGE_LIGHTBOX_DESC', 'Lightbox effect gebruiken om afbeeldingen weer te geven in origineel formaat'); +//social + define('_FMCONTENT_SOCIAL', 'Delen via /Social links weergeven'); + define('_FMCONTENT_SOCIAL_DESC', 'Sociale netwerk and Delen via iconen weergeven in elke content'); + define('_FMCONTENT_BOOKMARK', 'Delen via'); + define('_FMCONTENT_SOCIALNETWORM', 'Sociale netwerken'); + define('_FMCONTENT_NONE', 'Geen'); + define('_FMCONTENT_BOTH', 'Beiden'); +//Multiple Columns + define('_FMCONTENT_MULTIPLE_COLUMNS', 'Meerdere kolommen'); + define('_FMCONTENT_MULTIPLE_COLUMNS_DESC', 'Selecteer het aantal kolommen om content weer te geven. <br />Deze optie werkt alleen in contentpagina en voor content in <b>tekst</b> velden'); + define('_FMCONTENT_MULTIPLE_COLUMNS_1', 'Een kolom'); + define('_FMCONTENT_MULTIPLE_COLUMNS_2', 'Twee kolommen'); + define('_FMCONTENT_MULTIPLE_COLUMNS_3', 'Drie kolommen'); + define('_FMCONTENT_MULTIPLE_COLUMNS_4', 'Vier kolommen'); +// All user posts + define('_FMCONTENT_ALLUSERPOST', '"content van dezelfde auteur" link weergeven'); + define('_FMCONTENT_ALLUSERPOST_DESC', 'Weergeven/verbergen van content van dezelfde auteur in elke content'); +// regular expression + define('_FMCONTENT_REGULAR_EXPRESSION', 'Automatisch Alias URL-patroon'); + define('_FMCONTENT_REGULAR_EXPRESSION_DESC', 'Reguliere Expressie voor genereren van automatisch Alias URL-patroon. <br />Wanneer de taal niet wordt ondersteund, in Alias URL de reguliere expressie kan worden ingesteld. Standaardinstellingen zijn : <b>`[^a-z0-9]`i</b>'); + define('_FMCONTENT_REGULAR_EXPRESSION_CONFIG', '`[^a-z0-9]`i'); +// Breadcrumb + define('_FMCONTENT_BREADCRUMB_SHOW', 'Broodkruimelpad weergeven'); + define('_FMCONTENT_BREADCRUMB_MODNAME', 'modulenaam weergeven'); + define('_FMCONTENT_BREADCRUMB_TOHOME', 'Startpagina link weergeven'); +// break + define('_FMCONTENT_BREAK_GENERAL', 'Algemeen'); + define('_FMCONTENT_BREAK_SEO', 'SEO / URL herschrijven'); + define('_FMCONTENT_BREAK_DISPLAY', 'Weergeven'); + define('_FMCONTENT_BREAK_RSS', 'RSS'); + define('_FMCONTENT_BREAK_IMAGE', 'Afbeelding'); + define('_FMCONTENT_BREAK_ADMIN', 'Beheer'); + define('_FMCONTENT_BREAK_PRINT', 'Afdrukken'); + define('_FMCONTENT_BREAK_BREADCRUMB', 'Broodkruimelpad'); + define('_FMCONTENT_BREAK_COMNOTI', 'Reacties en notificaties'); +// about + define('_FMCONTENT_ADMIN_ABOUT', 'Over'); + define('_FMCONTENT_ABOUT_DESCRIPTION', 'Omschrijving:'); + define('_FMCONTENT_ABOUT_AUTHOR', 'Auteur:'); + define('_FMCONTENT_ABOUT_CREDITS', 'Credits:'); + define('_FMCONTENT_ABOUT_LICENSE', 'Licentie:'); + define('_FMCONTENT_ABOUT_MODULE_INFO', 'Module Info:'); + define('_FMCONTENT_ABOUT_RELEASEDATE', 'Vrijgegeven:'); + define("_FMCONTENT_ABOUT_UPDATEDATE", "Bijgewerkt: "); + define('_FMCONTENT_ABOUT_MODULE_STATUS', 'Status:'); + define('_FMCONTENT_ABOUT_WEBSITE', 'Website:'); + define('_FMCONTENT_ABOUT_AUTHOR_INFO', 'Info auteur'); + define('_FMCONTENT_ABOUT_AUTHOR_NAME', 'Naam auteur:'); + define('_FMCONTENT_ABOUT_CHANGELOG', 'Wijzigingsbeheer'); +//install/action + define('_FMCONTENT_SQL_FOUND', 'SQL Database gevonden'); + define('_FMCONTENT_CREATE_TABLES', 'Tabellen aanmaken'); + define('_FMCONTENT_TABLE_CREATED', 'Tabellen aangemaakt'); + define('_FMCONTENT_TABLE_RESERVED', 'Tabellen gereserveerd'); + define('_FMCONTENT_SQL_NOT_FOUND', 'SQL Database niet gevonden'); + define('_FMCONTENT_SQL_NOT_VALID', 'SQL Database niet valide'); + define('_FMCONTENT_INSERT_DATA', 'Invoegen van gegevens'); + +// homepage + define('_FMCONTENT_HOMEPAGE', 'Instellen startpagina'); + define('_FMCONTENT_HOMEPAGE_DESC', 'Het instellen van content weergavemodus in module indexpagina'); + define('_FMCONTENT_HOMEPAGE_1', 'Lijst van alle content van alle onderwerpen'); + define('_FMCONTENT_HOMEPAGE_2', 'Lijst van alle onderwerpen'); + define('_FMCONTENT_HOMEPAGE_3', "Lijst van alle statische pagina's"); + define('_FMCONTENT_HOMEPAGE_4', 'Geselecteerde statische content weergeven'); +} +?> \ 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: <ren...@us...> - 2012-02-11 14:06:23
|
Revision: 8928 http://xoops.svn.sourceforge.net/xoops/?rev=8928&view=rev Author: renetjuh Date: 2012-02-11 14:06:16 +0000 (Sat, 11 Feb 2012) Log Message: ----------- Dutch Language files marquee 2.49 Added Paths: ----------- XoopsLanguages/dutch/modules/marquee/ XoopsLanguages/dutch/modules/marquee/marquee 2.49/ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/admin.php XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/blocks.php XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/changelog.txt XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/extension.php XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/help.html XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/index.html XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/index.html XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/main.php XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/modinfo.php Property changes on: XoopsLanguages/dutch/modules/marquee ___________________________________________________________________ Added: bugtraq:number + true Property changes on: XoopsLanguages/dutch/modules/marquee/marquee 2.49 ___________________________________________________________________ Added: bugtraq:number + true Property changes on: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/admin.php =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/admin.php (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/admin.php 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,87 @@ +<?php +/** + * **************************************************************************** + * marquee - MODULE FOR XOOPS + * Copyright (c) Hervé Thouzard (http://www.herve-thouzard.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 (http://www.herve-thouzard.com) + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @package marquee + * @author Hervé Thouzard (http://www.herve-thouzard.com) + * + * Version : $Id: + * **************************************************************************** + */ +define("_AM_MARQUEE_CONFIG","Scrollende teksten configuratie"); +define("_AM_MARQUEE_ID","ID"); +define("_AM_MARQUEE_GENERALSET", "Instellingen" ); +define("_AM_MARQUEE_MODULEADMIN","Module's administratie"); +define("_AM_MARQUEE_DIRECTION","Richting"); +define("_AM_MARQUEE_BEHAVIOUR","Gedrag"); +define("_AM_MARQUEE_STOP","Stop wanneer de muis erover beweegt"); +define("_AM_MARQUEE_CONTENT","Inhoud"); +define("_AM_MARQUEE_EDIT","Bewerken"); +define("_AM_MARQUEE_DELETE","Verwijderen"); +define("_AM_MARQUEE_DIRECTION1","links->rechts"); +define("_AM_MARQUEE_DIRECTION2","rechts->links"); +define("_AM_MARQUEE_DIRECTION3","beneden->boven"); +define("_AM_MARQUEE_DIRECTION4","boven->beneden"); +define("_AM_MARQUEE_BEHAVIOUR1","scrollen"); +define("_AM_MARQUEE_BEHAVIOUR2","schuiven"); +define("_AM_MARQUEE_BEHAVIOUR3","alternatief"); +define("_AM_MARQUEE_ADDMARQUEE","Scrollende tekst toevoegen"); +define("_AM_MARQUEE_ACTION","Actie"); +define("_AM_MARQUEE_LOOP","Loop"); +define("_AM_MARQUEE_INFINITELOOP","Oneindig"); +define("_AM_MARQUEE_ALIGN","Uitlijning"); +define("_AM_MARQUEE_ALIGN1","Boven"); +define("_AM_MARQUEE_ALIGN2","Beneden"); +define("_AM_MARQUEE_ALIGN3","Midden"); +define("_AM_MARQUEE_ADDBUTTON","Toevoegen"); +define("_AM_MARQUEE_RESETBUTTON","Annuleren"); +define("_AM_MARQUEE_ERROR_ADD_MARQUEE","ERROR, de verplichte velden zijn niet ingevuld."); +define("_AM_MARQUEE_ADDED_OK","De scrollende tekst is succesvol toegevoegd."); +define("_AM_MARQUEE_DBUPDATED","De database is succesvol bijgewerkt."); +define("_AM_MARQUEE_RUSUREDEL","Zeker weten om dit item verwijderen?"); +define("_AM_MARQUEE_UPDATE","Bijwerken"); +define("_AM_MARQUEE_BGCOLOR","Achtergrondkleur <br />(Vergeet niet om een #<br /> te gebruiken om een kleurcode te specificeren)"); +define("_AM_MARQUEE_WIDTH","Breedte (in pixels of percentage)"); +define("_AM_MARQUEE_HEIGHT","Hoogte (in pixels)"); +define("_AM_MARQUEE_SCRAMOUNT","Scroll waarde"); +define("_AM_MARQUEE_HSPACE","Horizontale ruimte (in pixels)"); +define("_AM_MARQUEE_VSPACE","Verticale ruimte (in pixels)"); +define("_AM_MARQUEE_SCRDELAY","Vertraging tussen<br />twee bewegingen in miliseconden"); +define("_AM_MARQUEE_ERROR_MODIFY_DB","ERROR : fout tijdens het bijwerken van de database"); +define("_AM_MARQUEE_SOURCE","bron van de inhoud"); +define("_AM_MARQUEE_SOURCE_FIXED","een vaste tekst"); + +//2.4.8 + +// About.php +define("_AM_MARQUEE_ABOUT_RELEASEDATE", "Vrijgegeven: "); +define("_AM_MARQUEE_ABOUT_UPDATEDATE", "Bijgewerkt: "); +define("_AM_MARQUEE_ABOUT_AUTHOR", "Auteur: "); +define("_AM_MARQUEE_ABOUT_CREDITS", "Credits: "); +define("_AM_MARQUEE_ABOUT_LICENSE", "Licentie: "); +define("_AM_MARQUEE_ABOUT_MODULE_STATUS", "Status: "); +define("_AM_MARQUEE_ABOUT_WEBSITE", "Website: "); +define("_AM_MARQUEE_ABOUT_AUTHOR_NAME", "Naam auteur: "); +define("_AM_MARQUEE_ABOUT_CHANGELOG", "Wijzigingsbeheer"); +define("_AM_MARQUEE_ABOUT_MODULE_INFO", "Module Info"); +define("_AM_MARQUEE_ABOUT_AUTHOR_INFO", "Auteur Info"); +define("_AM_MARQUEE_ABOUT_DESCRIPTION", "Omschrijving: "); + +// Configuration +define("_AM_MARQUEE_CONFIG_CHECK","Configuratiecontrole"); +define("_AM_MARQUEE_CONFIG_PHP","Minimum PHP benodigd: %s (huidige versie is %s)"); +define("_AM_MARQUEE_CONFIG_XOOPS","Minimum XOOPS benodigd: %s (huidige versie is %s)"); + +//ModuleAdmin +define('_AM_MODULEADMIN_MISSING','ERROR: De ModuleAdmin class ontbreekt. Installeer ModuleAdmin Class in de map /Frameworks (zie ook /docs/readme.txt)'); \ No newline at end of file Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/blocks.php =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/blocks.php (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/blocks.php 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,23 @@ +<?php +/** + * **************************************************************************** + * marquee - MODULE FOR XOOPS + * Copyright (c) Hervé Thouzard (http://www.herve-thouzard.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 (http://www.herve-thouzard.com) + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @package marquee + * @author Hervé Thouzard (http://www.herve-thouzard.com) + * + * Version : $Id: + * **************************************************************************** + */ +define("_MB_MARQUEE_SELECT","Selecteer de marquee om te gebruiken"); +?> Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/changelog.txt =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/changelog.txt (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/changelog.txt 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,74 @@ +v2.49 2011/03/31: +================================= +- added new Admin Menu Class (Mage, mamba) + +v2.48 2011/02/23: +================================= +- updated GUI to XOOPS Standard (mamba) + +v2.47 +================================= +- You can use different editors (not only kiovi) + +v2.46 +================================= +- Bugs corrections + +v2.42 +================================= +- I have replaced the PHP glob() function with another one (because of some hosts) +- I have corrected a bug in the administration's menu (bad link) + +v2.41 +================================= +- Two new plugins, one for article 0.95 and another one for TplLeagueStats 1 - thank you very much Defkon1 ! + +v2.4 +================================= +- I have added a plugin for catads + +v2.0 & 2.2 +================================= +- You can use kiovi to create, in the module's admin part, kiovi to create your marquees +- If the module detects that a web spyder is reading its content then it will replace the marquees with pure text +- You can add blocks on-fly as following (so it means that you can create as many marquees as you want, not only 4). + 1 Enter 'Administration Menu'=>"block admin"=>"Add new block" + 2 In the "Add a new block": + 2.1 Block Type: choose anyone as you prefer + 2.2 Weight: input any valid value as you prefer + 2.3 Visible: select any one as you prefer + 2.4 Visible in: set any one as you prefer + 2.5 Title: input any valid text as you prefer + 2.6 Content: + + include_once(XOOPS_ROOT_PATH . '/modules/marquee/blocks/marquee_bloc.php'); + b_marquee_custom(1); + + 2.7 Content Type: MUSTBE "PHP Script" + 2.8 Cache lifetime: choose any one as you prefer + 2.9 Preview, Submit: press any one as you prefer, BE SURE press at least one time "submit" before leaving block admin + + Explanation : the number between parenthesis, in b_marquee_custom(1), is the marquee's ID you want to display. + You can see this ID in the module's admin part (that's the first column in the admin's index) +- You have the choice to use a dhtml marquee or the html marquee's tag +- You can show the last informations from the folowing modules : + - Xoops comments + - News (1.2 or greater) + - Newbb & CBB + - Mylinks + - Mydownloads + - XoopsFaq + - XoopsPoll + - Smartclient + - Smartfaq + - Smartmedia + - Smartpartner + - Smartsection + - Wfdownloads 3 + - Wfsection 1 + - Xfsection + - Xoopspartners + + +- You can select the number of items to display if you have selected to display a content coming from a module +- You can select the date's format \ No newline at end of file Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/extension.php =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/extension.php (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/extension.php 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,26 @@ +<?php +/** + * **************************************************************************** + * marquee - MODULE FOR XOOPS + * Copyright (c) Hervé Thouzard (http://www.herve-thouzard.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 (http://www.herve-thouzard.com) + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @package marquee + * @author Hervé Thouzard (http://www.herve-thouzard.com) + * + * Version : $Id: + * **************************************************************************** + */ + +define("_EXT_MARQUEE_ALTWMP","Marquee toevoegen vanuit de Marquee module"); +define("_EXT_MARQUEE_TEXTID","Marquee's ID om weer te geven"); +define("_EXT_MARQUEE_TEXTTITLE","Marquee titel invoeren"); +?> \ No newline at end of file Property changes on: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help ___________________________________________________________________ Added: bugtraq:number + true Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/help.html =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/help.html (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/help.html 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,40 @@ +<div id="help-template" class="outer"> + <h1 class="head">Help: + <a class="ui-corner-all tooltip" href="<{$xoops_url}>/modules/marquee/admin/index.php" + title="Terug naar de administratie van Marquee"> Marquee <img src="<{xoAdminIcons home.png}>" + alt="Terug naar de administratie van Marquee"/> + </a></h1> + <!-- -----Help Content ---------- --> + + <h4 class="odd">Omschrijving</h4> + + <p class="even"> + Marquee is een XOOPS module voor het aanmaken van scrollende teksten (marquees). + Er kunnen oneindig veel scrollende teksten toegevoegd worden en gebruikt worden in 4 verschillende blokken. + Teksten kunnen horizontaal bewegen (van rechts naar links of van links naar rechts) en verticaal bewegen (van boven naar beneden of beneden naar boven). Ook de loop is in te stellen, m.a.w. hoe veel keer dient de scrollende tekst opnieuw te beginnen (van 1 tot 100, of oneindig).</p> + + <p class="even"> + Gebruik een WYSIWYG editor om de scrollende teksten opvallender te maken.</p> + <h4 class="odd">Install/uninstall</h4> + +Geen speciale maatregelen zijn nodig, volg de standaard installatieprocedure – + pak de /extcal map uit in de ../modules map. Installeer de module + via Administratie -> Modules -> Systeembeheer -> Modules. <br/><br/> + Gedetailleerde instructies voor het installeren van modules zijn beschikbaar in de <a + href="http://goo.gl/adT2i">XOOPS Gebruikershandleiding</a> </p> + + <p class="even"> + <h4 class="odd">Gebruiksaanwijzing</h4> +De module en het gebruik is gebruikersvriendelijk:<br /><br /> +i) Configureer de voorkeuren voor de module(b.v. selecteren van de teksteditor)<br /><br /> +ii) Scrollende tekst toevoegen<br /><br /> +iii) Selecteer een blok om de scrollende tekst zichtbaar te maken en doe de benodigde instellingen.<br /><br /> +iv) Zorg ervoor dat de juiste gebruikersgroepen de juiste permissies bezitten scrollende teksten te bekijken. +Gedetailleerde instructies voor het instellen van permissies voor gebruikersgroepen zijn beschikbaar in de <a href="http://goo.gl/adT2i">XOOPS Gebruikershandleiding</a></p> +<h4 class="odd">Handleiding</h4> + <p class="even"> + Vindt een meer gedetaileerde handleiding <a href="http://goo.gl/ZqCFb">hier</a> + + <!-- -----Help Content ---------- --> + +</div> \ No newline at end of file Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/index.html =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/index.html (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/help/index.html 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/index.html =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/index.html (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/index.html 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/main.php =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/main.php (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/main.php 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,25 @@ +<?php +/** + * Marquee module + * + * 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 http://www.fsf.org/copyleft/gpl.html GNU public license + * @package Marquee + * @since 2.5.0 + * @author Michael Beck (Mamba) + * @version $Id $ +**/ + +// upgrade old version +define("_AM_MARQUEE_UPDATE_DONE","Klasr!"); +define("_AM_MARQUEE_UPDATE_DONE1","Klik hier om de module bij te werken!"); +define("_AM_MARQUEE_UPDATE_DONE2","Na het proces van bijwerken, vergeet niet het upgrade.php van deze module te verwijderen!!!"); + +?> Added: XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/modinfo.php =================================================================== --- XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/modinfo.php (rev 0) +++ XoopsLanguages/dutch/modules/marquee/marquee 2.49/nederlands/modinfo.php 2012-02-11 14:06:16 UTC (rev 8928) @@ -0,0 +1,65 @@ +<?php +/** + * **************************************************************************** + * marquee - MODULE FOR XOOPS + * Copyright (c) Hervé Thouzard (http://www.herve-thouzard.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 (http://www.herve-thouzard.com) + * @license http://www.fsf.org/copyleft/gpl.html GNU public license + * @package marquee + * @author Hervé Thouzard (http://www.herve-thouzard.com) + * + * Version : $Id: + * **************************************************************************** + */ +define("_MI_MARQUEE_NAME", "Scrollende tekst"); +define("_MI_MARQUEE_DESC", "Hiermee zijn scrollende teksten (marquees) te maken"); +define("_MI_MARQUEE_BNAME_01", "Scrollende tekst 01"); +define("_MI_MARQUEE_BDESC_01", "Scrollende tekst 01 weergeven"); +define("_MI_MARQUEE_BNAME_02", "Scrollende tekst 02"); +define("_MI_MARQUEE_BDESC_02", "Scrollende tekst 02 weergeven"); +define("_MI_MARQUEE_BNAME_03", "Scrollende tekst 03"); +define("_MI_MARQUEE_BDESC_03", "Scrollende tekst 03 weergeven"); +define("_MI_MARQUEE_BNAME_04", "Scrollende tekst 04"); +define("_MI_MARQUEE_BDESC_04", "Scrollende tekst 04 weergeven"); +define("_MI_MARQUEE_MENU_01", "Scrollende teksten"); +define("_MI_MARQUEE_USE_KIOVI", "Kiovi gebruiken?"); +define("_MI_MARQUEE_USE_KIOVI_DESC","Indien gedetecteerd wordt koivi gebruikt"); +define("_MI_MARQUEE_METHOD","Methode om te gebruiken"); +define("_MI_MARQUEE_METHOD_DESC","Wanneer de 'Scrollende tekst' methode is geselecteerd dan gebruikt de module de html marquee's code, Deze methode is niet compatibel met alle browsers maar biedt vele opties.<br> +Wanneer de 'dhtml' methode is geselecteerd, dan werkt de scrollende tekst in meerdere browsers maar het behoefte meer code en de pagina en er zijn minder opties beschikbaar."); +define("_MI_MARQUEE_MARQUEE","Scrollende tekst"); +define("_MI_MARQUEE_DHTML","Javascript"); +define("_MI_MARQUEE_DATEFORMAT","Datumformaat"); +define("_MI_MARQUEE_DATEFORMAT_DESC","Bekijk het datumformaat op http://fr.php.net/manual/en/function.date.php). Noot, De standaardwaarde wordt gebruikt als er niets is ingevuld."); +define("_MI_MARQUE_ITEMSCOUNT",""); +define("_MI_MARQUE_ITEMSCOUNT_DESC","Wanneer de content van een andere module wordt gebruikt (en geen vaste tekst) om scrollende teksten te maken, dit is het aantal items op de lijst."); +define("_MI_MARQUE_TITLELENGTH","Titel lengte"); +define("_MI_MARQUE_TITLELENGTH_DESC","Stel de maximale lengte in voor de titellengte van de scrollende teksten (0=geen limiet)"); + +define("_MI_MARQUEE_TEXT_EDITOR", "Teksteditor gebruiken"); +define("_MI_MARQUEE_FORM_COMPACT","Compact"); +define("_MI_MARQUEE_FORM_DHTML","DHTML"); +define("_MI_MARQUEE_FORM_SPAW","Spaw Editor"); +define("_MI_MARQUEE_FORM_HTMLAREA","HtmlArea Editor"); +define("_MI_MARQUEE_FORM_FCK","FCK Editor"); +define("_MI_MARQUEE_FORM_KOIVI","Koivi Editor"); +define("_MI_MARQUEE_FORM_TINYEDITOR","TinyEditor"); + +//2.48 +// index.php + +define('_MI_MARQUEE_MENU_00',"Home"); +define("_MI_MARQUEE_ADMIN_HOME_DESC","Terug naar Home"); + +define("_MI_MARQUEE_ADMIN_ABOUT" , "Over"); +define("_MI_MARQUEE_ADMIN_ABOUT_DESC" , "Over deze module"); + +?> \ 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-02-10 15:22:36
|
Revision: 8927 http://xoops.svn.sourceforge.net/xoops/?rev=8927&view=rev Author: dhcst Date: 2012-02-10 15:22:29 +0000 (Fri, 10 Feb 2012) Log Message: ----------- fixed typo Modified Paths: -------------- XoopsModules/newbb/branches/alfred/newbb/admin/admin_cat_manager.php XoopsModules/newbb/branches/alfred/newbb/language/english/modinfo.php XoopsModules/newbb/branches/alfred/newbb/language/german/modinfo.php Modified: XoopsModules/newbb/branches/alfred/newbb/admin/admin_cat_manager.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/admin/admin_cat_manager.php 2012-02-09 20:43:00 UTC (rev 8926) +++ XoopsModules/newbb/branches/alfred/newbb/admin/admin_cat_manager.php 2012-02-10 15:22:29 UTC (rev 8927) @@ -71,7 +71,7 @@ $category_obj->setVar('cat_image', ''); $category_obj->setVar('cat_description', ''); $category_obj->setVar('cat_order', 0); - $category_obj->setVar('cat_url', 'http://www.myxoops.org myXOOPS Support'); + $category_obj->setVar('cat_url', 'http://www.simple-xoops.de newBB Support'); } $sform->addElement(new XoopsFormText(_AM_NEWBB_SETCATEGORYORDER, 'cat_order', 5, 10, $category_obj->getVar('cat_order')), false); Modified: XoopsModules/newbb/branches/alfred/newbb/language/english/modinfo.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/language/english/modinfo.php 2012-02-09 20:43:00 UTC (rev 8926) +++ XoopsModules/newbb/branches/alfred/newbb/language/english/modinfo.php 2012-02-10 15:22:29 UTC (rev 8927) @@ -62,7 +62,7 @@ define("_MI_IMAGELIB_DESC", "Select which Image library to use for creating Thumbnails. Leave AUTO for automatic choice."); define("_MI_MAX_IMG_WIDTH", "Maximum Image Width"); define("_MI_MAX_IMG_WIDTH_DESC", "Sets the maximum allowed <strong>Width</strong> size of an uploaded image otherwise thumbnail will be used. <br >Input 0 if you do not want to create thumbnails."); -define("_MI_MAX_IMAGE_WIDTH", "Maximum Image Width for thumbnail generation"); +define("_MI_MAX_IMAGE_WIDTH", "Maximum Image Width for creating thumbnail"); define("_MI_MAX_IMAGE_WIDTH_DESC", "Sets the maximum width of an uploaded image to create thumbnail. <br >Image with width larger than the value will not use thumbnail."); define("_MI_MAX_IMAGE_HEIGHT", "Maximum Image Height for creating thumbnail"); define("_MI_MAX_IMAGE_HEIGHT_DESC", "Sets the maximum height of an uploaded image to create thumbnail. <br >Image with height larger than the value will not use thumbnail."); Modified: XoopsModules/newbb/branches/alfred/newbb/language/german/modinfo.php =================================================================== --- XoopsModules/newbb/branches/alfred/newbb/language/german/modinfo.php 2012-02-09 20:43:00 UTC (rev 8926) +++ XoopsModules/newbb/branches/alfred/newbb/language/german/modinfo.php 2012-02-10 15:22:29 UTC (rev 8927) @@ -225,7 +225,7 @@ Für Fragen hinsichtlich des NewBB steht die lokale Supportseite oder - die [url=http://www.simple-xoops.de/]NewBB Modul Seite[/url] zur Verfügung. + die [url=http://www.simple-xoops.de/]NewBB Modul Support-Seite[/url] zur Verfügung. "); define("_MI_NEWBB_ADMENU_GROUPMOD", "Gruppen Moderation"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-09 20:43:10
|
Revision: 8926 http://xoops.svn.sourceforge.net/xoops/?rev=8926&view=rev Author: djculex Date: 2012-02-09 20:43:00 +0000 (Thu, 09 Feb 2012) Log Message: ----------- Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/js/smallworld.js Modified: XoopsModules/smallworld/trunk/smallworld/js/smallworld.js =================================================================== --- XoopsModules/smallworld/trunk/smallworld/js/smallworld.js 2012-02-09 20:37:51 UTC (rev 8925) +++ XoopsModules/smallworld/trunk/smallworld/js/smallworld.js 2012-02-09 20:43:00 UTC (rev 8926) @@ -521,7 +521,7 @@ var uname = xoops_smallworld(this).text(); var tempArray = xoops_smallworld(this).attr("href").split("/"); var baseURL = tempArray[0]; - this.href = this.href.replace(oldurl, smallworld_url + "/modules/smallworld/userprofile.php?username="+uname); + this.href = this.href.replace(oldurl, smallworld_url + "userprofile.php?username="+uname); }); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dj...@us...> - 2012-02-09 20:37:57
|
Revision: 8925 http://xoops.svn.sourceforge.net/xoops/?rev=8925&view=rev Author: djculex Date: 2012-02-09 20:37:51 +0000 (Thu, 09 Feb 2012) Log Message: ----------- Bugfix: ../js/smallworld.js added smallworld_url (xoops_url) to submit in registration (djculex) Modified Paths: -------------- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt XoopsModules/smallworld/trunk/smallworld/js/smallworld.js XoopsModules/smallworld/trunk/smallworld/xoops_version.php Modified: XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt =================================================================== --- XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-09 20:13:23 UTC (rev 8924) +++ XoopsModules/smallworld/trunk/smallworld/docs/changelog.txt 2012-02-09 20:37:51 UTC (rev 8925) @@ -2,8 +2,9 @@ Changelog v.1.11 RC ------------------------------ 9. february 2012 -- Bugfix: Takeover links not using XOOPS_URL correct -- Bugfix: Created function smallworld_getImageSize to test if allow_url_fopen = on else try cUrl else return default for image sizes +- Bugfix: Takeover links not using XOOPS_URL correct(djculex) +- Bugfix: Created function smallworld_getImageSize to test if allow_url_fopen = on else try cUrl else return default for image sizes(djculex) +- Bugfix: ../js/smallworld.js added smallworld_url (xoops_url) to submit in registration (djculex) ------------------------------ Changelog v.1.10 RC ------------------------------ Modified: XoopsModules/smallworld/trunk/smallworld/js/smallworld.js =================================================================== --- XoopsModules/smallworld/trunk/smallworld/js/smallworld.js 2012-02-09 20:13:23 UTC (rev 8924) +++ XoopsModules/smallworld/trunk/smallworld/js/smallworld.js 2012-02-09 20:37:51 UTC (rev 8925) @@ -346,7 +346,7 @@ } else { xoops_smallworld.ajax({ type: "POST", - url: "submit.php", + url: smallworld_url+"submit.php", data: dataString, success: function(){ location.href = smallworld_url+'index.php'; Modified: XoopsModules/smallworld/trunk/smallworld/xoops_version.php =================================================================== --- XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-09 20:13:23 UTC (rev 8924) +++ XoopsModules/smallworld/trunk/smallworld/xoops_version.php 2012-02-09 20:37:51 UTC (rev 8925) @@ -20,7 +20,7 @@ **/ $modversion['name'] = _MI_SMALLWORLD_MODULE_NAME; -$modversion['version'] = 1.12; +$modversion['version'] = 1.13; $modversion['description'] = _MI_SMALLWORLD_MODULE_DESC; $modversion['author'] = "Michael Albertsen"; $modversion['nickname'] = 'Culex'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |