From blaine at iowaoutdoors.org Wed Nov 3 09:54:46 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Wed, 03 Nov 2004 14:54:46 +0000 Subject: [geeklog-cvs] geeklog-1.3/system lib-custom.php,1.10,1.11 Message-ID: <20041103145446.EC9ED44CFA@iowaoutdoors> Update of /var/cvs/geeklog-1.3/system In directory www:/tmp/cvs-serv24955/system Modified Files: lib-custom.php Log Message: Added a few more comments on how to use for the function custom_showBlocks Index: lib-custom.php =================================================================== RCS file: /var/cvs/geeklog-1.3/system/lib-custom.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lib-custom.php 9 Oct 2004 20:42:26 -0000 1.10 --- lib-custom.php 3 Nov 2004 14:54:43 -0000 1.11 *************** *** 270,276 **** /** ! * Custom function to retrieve and return a formatted block that is enabled. ! * @param array $showblocks An array of block names to retrieve and format ! * @return string Formated HTML containing site footer and optionally right blocks */ function custom_showBlocks($showblocks) { --- 270,287 ---- /** ! * Custom function to retrieve and return a formatted list of blocks ! * Can be used when calling COM_siteHeader or COM_SiteFooter ! ! * Example: ! * 1: Setup an array of blocks to display ! * 2: Call COM_siteHeader or COM_siteFooter ! * ! * $myblocks = array ('site_menu','site_news','poll_block'); ! ! * COM_siteHeader( array('COM_showCustomBlocks',$myblocks) ) ; ! * COM_siteFooter( true, array('COM_showCustomBlocks',$myblocks)); ! ! * @param array $showblocks An array of block names to retrieve and format ! * @return string Formated HTML containing site footer and optionally right blocks */ function custom_showBlocks($showblocks) { *************** *** 278,282 **** $retval = ''; foreach($showblocks as $block) { ! $sql = "SELECT bid, name,type,title,content,rdfurl,phpblockfn,help FROM {$_TABLES['blocks']} WHERE name='$block' and is_enabled = '1'"; $result = DB_query($sql); if (DB_numRows($result) == 1) { --- 289,293 ---- $retval = ''; foreach($showblocks as $block) { ! $sql = "SELECT bid, name,type,title,content,rdfurl,phpblockfn,help FROM {$_TABLES['blocks']} WHERE name='$block'"; $result = DB_query($sql); if (DB_numRows($result) == 1) { From dhaun at iowaoutdoors.org Fri Nov 5 13:41:13 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Fri, 05 Nov 2004 18:41:13 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/layout/professional/admin/story listitem.thtml,1.1.1.1,1.2 Message-ID: <20041105184113.5E3893D285@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/layout/professional/admin/story In directory www:/tmp/cvs-serv18367/professional/admin/story Modified Files: listitem.thtml Log Message: Synced with the other themes, so that the list of stories uses the "rewritten" article url, if enabled. Index: listitem.thtml =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/layout/professional/admin/story/listitem.thtml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** listitem.thtml 26 Sep 2004 09:59:48 -0000 1.1.1.1 --- listitem.thtml 5 Nov 2004 18:41:10 -0000 1.2 *************** *** 4,8 **** ! {story_title} {story_access} --- 4,8 ---- ! {story_title} {story_access} From blaine at iowaoutdoors.org Sat Nov 6 12:13:50 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Sat, 06 Nov 2004 17:13:50 +0000 Subject: [geeklog-cvs] geeklog-1.3 config.php,1.142,1.143 Message-ID: <20041106171350.C517D51DB9@iowaoutdoors> Update of /var/cvs/geeklog-1.3 In directory www:/tmp/cvs-serv25063 Modified Files: config.php Log Message: Added new function COM_displayName($uid) that can be used by Plugin's or Core Fuctions to return either the members username or fullname. $_CONF[show_fullname] added to allow the site admin to configure. Index: config.php =================================================================== RCS file: /var/cvs/geeklog-1.3/config.php,v retrieving revision 1.142 retrieving revision 1.143 diff -C2 -d -r1.142 -r1.143 *** config.php 24 Oct 2004 08:39:24 -0000 1.142 --- config.php 6 Nov 2004 17:13:48 -0000 1.143 *************** *** 224,227 **** --- 224,229 ---- $_CONF['hide_author_exclusion'] = 0; + // Used by COM_displayName to return Members's Full Name else username (1 = yes, 0 = no) + $_CONF['show_fullname'] = 0; // +---------------------------------------------------------------------------+ From blaine at iowaoutdoors.org Sat Nov 6 12:13:50 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Sat, 06 Nov 2004 17:13:50 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html lib-common.php,1.395,1.396 Message-ID: <20041106171350.E92BE61000@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv25063/public_html Modified Files: lib-common.php Log Message: Added new function COM_displayName($uid) that can be used by Plugin's or Core Fuctions to return either the members username or fullname. $_CONF[show_fullname] added to allow the site admin to configure. Index: lib-common.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/lib-common.php,v retrieving revision 1.395 retrieving revision 1.396 diff -C2 -d -r1.395 -r1.396 *** lib-common.php 30 Oct 2004 14:57:31 -0000 1.395 --- lib-common.php 6 Nov 2004 17:13:48 -0000 1.396 *************** *** 4095,4098 **** --- 4095,4129 ---- } + + /** + * Return the username or fullname for the passed member id (uid) + * + * Allows the siteAdmin to determine if loginname (username) or fullname + * should be displayed. + * + * @param int $uid site member id + * @return string username or fullname - default is username + * + */ + function COM_getDisplayName($uid='') { + global $_TABLES,$_USER,$_CONF; + + if ($uid == '') { + $uid = $_USER['uid']; + } + + $query = DB_query("SELECT username, fullname FROM {$_TABLES['users']} WHERE uid='$uid' "); + list ($username,$fullname) = DB_fetchArray($query); + + if ($fullname != '' AND $_CONF['show_fullname'] == 1) { + return $fullname; + } else { + return $username; + } + } + + + + /** * Adds a hit to the system From blaine at iowaoutdoors.org Sat Nov 6 12:16:58 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Sat, 06 Nov 2004 17:16:58 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html index.php,1.68,1.69 Message-ID: <20041106171659.2EB575304C@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv25122/public_html Modified Files: index.php Log Message: If story is automatically archived - then also reset the featured flag in case it was set on. Index: index.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/index.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** index.php 29 Oct 2004 11:18:41 -0000 1.68 --- index.php 6 Nov 2004 17:16:56 -0000 1.69 *************** *** 137,141 **** if (!empty ($archivetid)) { COM_errorLOG("Archive Story: $sid, Topic:$archivetid, Title: $title. Expired :$expire"); ! DB_query ("UPDATE {$_TABLES['stories']} SET tid = '$archivetid', frontpage = '0' WHERE sid='{$sid}'"); } } else if ($statuscode == STORY_DELETE_ON_EXPIRE) { --- 137,141 ---- if (!empty ($archivetid)) { COM_errorLOG("Archive Story: $sid, Topic:$archivetid, Title: $title. Expired :$expire"); ! DB_query ("UPDATE {$_TABLES['stories']} SET tid = '$archivetid', frontpage = '0', featured = '0' WHERE sid='{$sid}'"); } } else if ($statuscode == STORY_DELETE_ON_EXPIRE) { From blaine at iowaoutdoors.org Sat Nov 13 10:29:09 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Sat, 13 Nov 2004 15:29:09 +0000 Subject: [geeklog-cvs] geeklog-1.3/plugins/spamx ViewBlacklist.Admin.class.php,1.3,NONE Message-ID: <20041113152909.1FE363D29F@iowaoutdoors> Update of /var/cvs/geeklog-1.3/plugins/spamx In directory www:/tmp/cvs-serv1212/plugins/spamx Removed Files: ViewBlacklist.Admin.class.php Log Message: Removed as per Tom Willet - this class allowed you to register your site to share your blacklist but the supporting files are now not part of the distribution. --- ViewBlacklist.Admin.class.php DELETED --- From blaine at iowaoutdoors.org Sat Nov 13 12:18:58 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Sat, 13 Nov 2004 17:18:58 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html comment.php,1.82,1.83 Message-ID: <20041113171858.4DFFB668D@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv3360/public_html Modified Files: comment.php Log Message: Added call to used htmlentities on comment TITLE for link - Quotes were messing it up. Index: comment.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/comment.php,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** comment.php 31 Oct 2004 03:04:39 -0000 1.82 --- comment.php 13 Nov 2004 17:18:56 -0000 1.83 *************** *** 903,905 **** echo $display; ! ?> --- 903,905 ---- echo $display; ! ?> \ No newline at end of file From blaine at iowaoutdoors.org Sat Nov 13 12:44:16 2004 From: blaine at iowaoutdoors.org (blaine at iowaoutdoors.org) Date: Sat, 13 Nov 2004 17:44:16 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html lib-common.php,1.396,1.397 Message-ID: <20041113174416.604571B1AC@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv3744/public_html Modified Files: lib-common.php Log Message: Fixed links to main and categores when showing the file comments Index: lib-common.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/lib-common.php,v retrieving revision 1.396 retrieving revision 1.397 diff -C2 -d -r1.396 -r1.397 *** lib-common.php 6 Nov 2004 17:13:48 -0000 1.396 --- lib-common.php 13 Nov 2004 17:44:14 -0000 1.397 *************** *** 2911,2914 **** --- 2911,2915 ---- $A['title'] = stripslashes( $A['title'] ); $A['title'] = str_replace( '$', '$', $A['title'] ); + $A['title'] = htmlentities($A['title']); // and finally: format the actual text of the comment From dhaun at iowaoutdoors.org Sat Nov 13 13:08:19 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 13 Nov 2004 18:08:19 +0000 Subject: [geeklog-cvs] geeklog-1.3/system lib-plugins.php,1.49,1.50 Message-ID: <20041113180819.6DE0A32536@iowaoutdoors> Update of /var/cvs/geeklog-1.3/system In directory www:/tmp/cvs-serv4101/system Modified Files: lib-plugins.php Log Message: Added an option to disable autolinks Index: lib-plugins.php =================================================================== RCS file: /var/cvs/geeklog-1.3/system/lib-plugins.php,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** lib-plugins.php 23 Oct 2004 17:58:44 -0000 1.49 --- lib-plugins.php 13 Nov 2004 18:08:17 -0000 1.50 *************** *** 937,941 **** function PLG_collectTags () { ! global $_PLUGINS; // Determine which Core Modules and Plugins support AutoLinks --- 937,946 ---- function PLG_collectTags () { ! global $_CONF, $_PLUGINS; ! ! if (isset ($_CONF['disable_autolinks']) && ($_CONF['disable_autolinks'] == 1)) { ! // autolinks are disabled - return an empty array ! return array (); ! } // Determine which Core Modules and Plugins support AutoLinks *************** *** 975,978 **** --- 980,988 ---- global $_CONF, $_PLUGINS, $LANG32; + if (isset ($_CONF['disable_autolinks']) && ($_CONF['disable_autolinks'] == 1)) { + // autolinks are disabled - return $content unchanged + return $content; + } + $autolinkModules = PLG_collectTags (); From dhaun at iowaoutdoors.org Sat Nov 13 13:08:19 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 13 Nov 2004 18:08:19 +0000 Subject: [geeklog-cvs] geeklog-1.3 config.php,1.143,1.144 Message-ID: <20041113180819.877BB3D257@iowaoutdoors> Update of /var/cvs/geeklog-1.3 In directory www:/tmp/cvs-serv4101 Modified Files: config.php Log Message: Added an option to disable autolinks Index: config.php =================================================================== RCS file: /var/cvs/geeklog-1.3/config.php,v retrieving revision 1.143 retrieving revision 1.144 diff -C2 -d -r1.143 -r1.144 *** config.php 6 Nov 2004 17:13:48 -0000 1.143 --- config.php 13 Nov 2004 18:08:17 -0000 1.144 *************** *** 660,663 **** --- 660,665 ---- $_CONF['allowed_protocols'] = array ('http:', 'https:', 'ftp:'); + // disables autolinks if set to 1 + $_CONF['disable_autolinks'] = 0; // 0 = autolinks enabled // Parameters for checking for "bad" words *************** *** 697,701 **** } if (!defined ('VERSION')) { ! define('VERSION', '1.3.10rc2'); } --- 699,703 ---- } if (!defined ('VERSION')) { ! define('VERSION', '1.3.10rc3'); } From dhaun at iowaoutdoors.org Sat Nov 13 13:08:20 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 13 Nov 2004 18:08:20 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/docs config.html,1.40,1.41 Message-ID: <20041113180820.15FFC60FA2@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/docs In directory www:/tmp/cvs-serv4101/public_html/docs Modified Files: config.html Log Message: Added an option to disable autolinks Index: config.html =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/config.html,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** config.html 30 Oct 2004 17:45:04 -0000 1.40 --- config.html 13 Nov 2004 18:08:17 -0000 1.41 *************** *** 892,895 **** --- 892,900 ---- Defines which protocols are allowed in links (i.e. HTML <a> tags).
Note: The kses class used to filter these protocols has a hard-coded list of allowed protocols to which the above will be added. It is currently not possible to remove any of the default protocols (which include, for example, 'mailto:', 'gopher:', and 'news:'). + disable_autolinks + 0 + If set to 1, disables the autolinks. I.e. links using the + [story:] etc. syntax are not interpreted any more. + censormode 1 From dhaun at iowaoutdoors.org Sat Nov 13 16:42:02 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 13 Nov 2004 21:42:02 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html comment.php,1.83,1.84 lib-common.php,1.397,1.398 Message-ID: <20041113214202.3468F6784@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv7649 Modified Files: comment.php lib-common.php Log Message: Links in plain text comments are now made "clickable" when the comment is saved (not when it's displayed). Index: comment.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/comment.php,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** comment.php 13 Nov 2004 17:18:56 -0000 1.83 --- comment.php 13 Nov 2004 21:41:59 -0000 1.84 *************** *** 127,134 **** --- 127,140 ---- $commenttext = htmlspecialchars (COM_stripslashes ($comment)); + $fakepostmode = $postmode; if ($postmode == 'html') { $comment = COM_checkWords (COM_checkHTML (addslashes (COM_stripslashes ($comment)))); } else { $comment = htmlspecialchars (COM_checkWords (COM_stripslashes ($comment))); + $newcomment = COM_makeClickableLinks ($comment); + if (strcmp ($comment, $newcomment) != 0) { + $comment = nl2br ($newcomment); + $fakepostmode = 'html'; + } } // Replace $, {, and } with special HTML equivalents *************** *** 145,149 **** $newcomment = $comment; if (!empty ($sig)) { ! if (!$postmode == 'html') { $newcomment .= '

---
' . nl2br ($sig); } else { --- 151,155 ---- $newcomment = $comment; if (!empty ($sig)) { ! if (($postmode == 'html') || ($fakepostmode == 'html')) { $newcomment .= '

---
' . nl2br ($sig); } else { *************** *** 310,313 **** --- 316,324 ---- } else { $comment = htmlspecialchars (COM_checkWords (COM_stripslashes ($comment))); + $newcomment = COM_makeClickableLinks ($comment); + if (strcmp ($comment, $newcomment) != 0) { + $comment = nl2br ($newcomment); + $postmode = 'html'; + } } *************** *** 903,905 **** echo $display; ! ?> \ No newline at end of file --- 914,916 ---- echo $display; ! ?> Index: lib-common.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/lib-common.php,v retrieving revision 1.397 retrieving revision 1.398 diff -C2 -d -r1.397 -r1.398 *** lib-common.php 13 Nov 2004 17:44:14 -0000 1.397 --- lib-common.php 13 Nov 2004 21:41:59 -0000 1.398 *************** *** 2917,2921 **** if( preg_match( '/<.*>/', $A['comment'] ) == 0 ) { ! $A['comment'] = nl2br( COM_makeClickableLinks( $A['comment'] )); } --- 2917,2921 ---- if( preg_match( '/<.*>/', $A['comment'] ) == 0 ) { ! $A['comment'] = nl2br( $A['comment'] ); } From dhaun at iowaoutdoors.org Sun Nov 14 09:06:14 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 14 Nov 2004 14:06:14 +0000 Subject: [geeklog-cvs] geeklog-1.3/system lib-story.php,1.10,1.11 Message-ID: <20041114140614.DEB5C529BF@iowaoutdoors> Update of /var/cvs/geeklog-1.3/system In directory www:/tmp/cvs-serv11840/system Modified Files: lib-story.php Log Message: Make links in plain text stories "clickable" when the story is saved. Also fixes bug #308 (messing up image URLs). Index: lib-story.php =================================================================== RCS file: /var/cvs/geeklog-1.3/system/lib-story.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** lib-story.php 8 Sep 2004 02:30:45 -0000 1.10 --- lib-story.php 14 Nov 2004 14:06:12 -0000 1.11 *************** *** 64,69 **** if( $A['postmode'] == 'plaintext' ) { ! $A['introtext'] = nl2br( COM_makeClickableLinks( $A['introtext'] )); ! $A['bodytext'] = nl2br( COM_makeClickableLinks( $A['bodytext'] )); } --- 64,69 ---- if( $A['postmode'] == 'plaintext' ) { ! $A['introtext'] = nl2br( $A['introtext'] ); ! $A['bodytext'] = nl2br( $A['bodytext'] ); } From dhaun at iowaoutdoors.org Sun Nov 14 09:06:15 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 14 Nov 2004 14:06:15 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html lib-common.php,1.398,1.399 submit.php,1.76,1.77 Message-ID: <20041114140615.9658B60F77@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv11840/public_html Modified Files: lib-common.php submit.php Log Message: Make links in plain text stories "clickable" when the story is saved. Also fixes bug #308 (messing up image URLs). Index: submit.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/submit.php,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** submit.php 30 Oct 2004 17:13:23 -0000 1.76 --- submit.php 14 Nov 2004 14:06:13 -0000 1.77 *************** *** 214,218 **** $retval .= $eventform->finish($eventform->get_var('theform')); $retval .= COM_endBlock(); ! return $retval; } --- 214,218 ---- $retval .= $eventform->finish($eventform->get_var('theform')); $retval .= COM_endBlock(); ! return $retval; } *************** *** 231,235 **** $linkform->set_file('linkform', 'submitlink.thtml'); $linkform->set_var('site_url', $_CONF['site_url']); ! $linkform->set_var('lang_title', $LANG12[10]); $linkform->set_var('lang_link', $LANG12[11]); $linkform->set_var('lang_category', $LANG12[17]); --- 231,235 ---- $linkform->set_file('linkform', 'submitlink.thtml'); $linkform->set_var('site_url', $_CONF['site_url']); ! $linkform->set_var('lang_title', $LANG12[10]); $linkform->set_var('lang_link', $LANG12[11]); $linkform->set_var('lang_category', $LANG12[17]); *************** *** 300,310 **** $A['show_topic_icon'] = 1; $A['hits'] = 0; ! $res = DB_query("SELECT username, fullname, photo FROM {$_TABLES['users']} WHERE uid = {$A['uid']}"); ! $A += DB_fetchArray($res); ! $res = DB_query("SELECT topic, imageurl FROM {$_TABLES['topics']} WHERE tid = '{$A['tid']}'"); ! $A += DB_fetchArray($res); $retval .= COM_startBlock($LANG12[32]) ! . STORY_renderArticle ($A, 'n') ! . COM_endBlock(); } --- 300,313 ---- $A['show_topic_icon'] = 1; $A['hits'] = 0; ! $res = DB_query("SELECT username, fullname, photo FROM {$_TABLES['users']} WHERE uid = {$A['uid']}"); ! $A += DB_fetchArray($res); ! $res = DB_query("SELECT topic, imageurl FROM {$_TABLES['topics']} WHERE tid = '{$A['tid']}'"); ! $A += DB_fetchArray($res); ! if ($A['postmode'] == 'plaintext') { ! $A['introtext'] = COM_makeClickableLinks ($A['introtext']); ! } $retval .= COM_startBlock($LANG12[32]) ! . STORY_renderArticle ($A, 'n') ! . COM_endBlock(); } *************** *** 333,337 **** $storyform->set_var('lang_title', $LANG12[10]); ! $storyform->set_var('story_title', htmlspecialchars ($title)); $storyform->set_var('lang_topic', $LANG12[28]); if (empty ($A['tid']) && !empty ($topic)) { --- 336,340 ---- $storyform->set_var('lang_title', $LANG12[10]); ! $storyform->set_var('story_title', htmlspecialchars ($title)); $storyform->set_var('lang_topic', $LANG12[28]); if (empty ($A['tid']) && !empty ($topic)) { *************** *** 662,666 **** if (!PLG_saveSubmission($type, $A)) { COM_errorLog("Could not save your submission. Bad type: $type"); ! } // plugin should include its own redirect - but in case handle // it here and redirect to the main page --- 665,669 ---- if (!PLG_saveSubmission($type, $A)) { COM_errorLog("Could not save your submission. Bad type: $type"); ! } // plugin should include its own redirect - but in case handle // it here and redirect to the main page *************** *** 675,679 **** $A['introtext'] = addslashes(COM_checkHTML(COM_checkWords($A['introtext']))); } else { ! $A['introtext'] = addslashes(htmlspecialchars(COM_checkWords($A['introtext']))); } $A['sid'] = COM_makeSid(); --- 678,682 ---- $A['introtext'] = addslashes(COM_checkHTML(COM_checkWords($A['introtext']))); } else { ! $A['introtext'] = addslashes (COM_makeClickableLinks (htmlspecialchars (COM_checkWords ($A['introtext'])))); } $A['sid'] = COM_makeSid(); *************** *** 682,686 **** } else { $A['uid'] = 1; ! } COM_updateSpeedlimit ('submit'); if (($_CONF['storysubmission'] == 1) && !SEC_hasRights('story.submit')) { --- 685,689 ---- } else { $A['uid'] = 1; ! } COM_updateSpeedlimit ('submit'); if (($_CONF['storysubmission'] == 1) && !SEC_hasRights('story.submit')) { Index: lib-common.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/lib-common.php,v retrieving revision 1.398 retrieving revision 1.399 diff -C2 -d -r1.398 -r1.399 *** lib-common.php 13 Nov 2004 21:41:59 -0000 1.398 --- lib-common.php 14 Nov 2004 14:06:13 -0000 1.399 *************** *** 5731,5734 **** --- 5731,5749 ---- /** + * Undo the conversion of URLs to clickable links (in plain text posts), + * e.g. so that we can present the user with the post as they entered them. + * + * @param string $txt story text + * @param string story text without links + * + */ + function COM_undoClickableLinks( $text ) + { + $text = preg_replace( '/([^<]*)<\/a>/', '\1', $text ); + + return $text; + } + + /** * Highlight the words from a search query in a given text string. * From dhaun at iowaoutdoors.org Sun Nov 14 09:06:15 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 14 Nov 2004 14:06:15 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/admin story.php,1.136,1.137 Message-ID: <20041114140615.CFC7B6B147@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/admin In directory www:/tmp/cvs-serv11840/public_html/admin Modified Files: story.php Log Message: Make links in plain text stories "clickable" when the story is saved. Also fixes bug #308 (messing up image URLs). Index: story.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/admin/story.php,v retrieving revision 1.136 retrieving revision 1.137 diff -C2 -d -r1.136 -r1.137 *** story.php 29 Sep 2004 17:43:43 -0000 1.136 --- story.php 14 Nov 2004 14:06:13 -0000 1.137 *************** *** 146,149 **** --- 146,153 ---- } $A['old_sid'] = $A['sid']; + if ($A['postmode'] == 'plaintext') { + $A['introtext'] = COM_undoClickableLinks ($A['introtext']); + $A['bodytext'] = COM_undoClickableLinks ($A['bodytext']); + } } elseif (!empty($sid) && $mode == 'editsubmission') { $result = DB_query ("SELECT STRAIGHT_JOIN s.*, UNIX_TIMESTAMP(s.date) as unixdate, " *************** *** 162,165 **** --- 166,173 ---- $A['title'] = htmlspecialchars ($A['title']); $A['old_sid'] = $A['sid']; + if ($A['postmode'] == 'plaintext') { + $A['introtext'] = COM_undoClickableLinks ($A['introtext']); + $A['bodytext'] = COM_undoClickableLinks ($A['bodytext']); + } } else { // that submission doesn't seem to be there any more (may have been *************** *** 216,221 **** $A['title'] = COM_checkHTML(htmlspecialchars(COM_checkWords($A['title']))); } else { ! $A['introtext'] = htmlspecialchars(COM_checkWords($A['introtext'])); ! $A['bodytext'] = htmlspecialchars(COM_checkWords($A['bodytext'])); $A['title'] = htmlspecialchars(COM_checkWords($A['title'])); } --- 224,229 ---- $A['title'] = COM_checkHTML(htmlspecialchars(COM_checkWords($A['title']))); } else { ! $A['introtext'] = COM_undoClickableLinks (htmlspecialchars(COM_checkWords($A['introtext']))); ! $A['bodytext'] = COM_undoClickableLinks (htmlspecialchars(COM_checkWords($A['bodytext']))); $A['title'] = htmlspecialchars(COM_checkWords($A['title'])); } *************** *** 243,248 **** $publish_hour += 12; } ! $A['unixdate'] = strtotime($A['publish_year'] . '-' . $A['publish_month'] . '-' . $A['publish_day'] ! . ' ' . $publish_hour . ':' . $A['publish_minute'] . ':00'); } --- 251,257 ---- $publish_hour += 12; } ! $A['unixdate'] = strtotime ($A['publish_year'] . '-' ! . $A['publish_month'] . '-' . $A['publish_day'] . ' ' ! . $publish_hour . ':' . $A['publish_minute'] . ':00'); } *************** *** 254,258 **** $A['hits'] = 0; } ! $display .= STORY_renderArticle ($A, 'n'); $display .= COM_endBlock (COM_getBlockTemplate ('_admin_block', 'footer')); } --- 263,274 ---- $A['hits'] = 0; } ! if ($A['postmode'] == 'plaintext') { ! $B = $A; ! $B['introtext'] = COM_makeClickableLinks ($B['introtext']); ! $B['bodytext'] = COM_makeClickableLinks ($B['bodytext']); ! $display .= STORY_renderArticle ($B, 'n'); ! } else { ! $display .= STORY_renderArticle ($A, 'n'); ! } $display .= COM_endBlock (COM_getBlockTemplate ('_admin_block', 'footer')); } *************** *** 348,352 **** $story_templates->set_var('story_unixstamp', $A['unixdate']); ! /* Auto Story Arhive or Delete Feature */ if ($A['expiredate'] == 0 or date('Y', $A['expiredate']) < 2000) { $A['expiredate'] = time(); --- 364,368 ---- $story_templates->set_var('story_unixstamp', $A['unixdate']); ! /* Auto Story Archive or Delete Feature */ if ($A['expiredate'] == 0 or date('Y', $A['expiredate']) < 2000) { $A['expiredate'] = time(); *************** *** 429,433 **** $story_templates->set_var('frontpage_options', COM_optionList($_TABLES['frontpagecodes'],'code,name',$A['frontpage'])); list($newintro, $newbody) = replace_images($A['sid'], stripslashes($A['introtext']), stripslashes($A['bodytext'])); ! $story_templates->set_var('lang_introtext', $LANG24[16]); if ($A['postmode'] == 'plaintext') { --- 445,454 ---- $story_templates->set_var('frontpage_options', COM_optionList($_TABLES['frontpagecodes'],'code,name',$A['frontpage'])); list($newintro, $newbody) = replace_images($A['sid'], stripslashes($A['introtext']), stripslashes($A['bodytext'])); ! ! if ($A['postmode'] == 'plaintext') { ! $newintro = COM_undoClickableLinks ($newintro); ! $newbody = COM_undoClickableLinks ($newbody); ! } ! $story_templates->set_var('lang_introtext', $LANG24[16]); if ($A['postmode'] == 'plaintext') { *************** *** 1081,1084 **** --- 1102,1110 ---- } + if ($postmode == 'plaintext') { + $introtext = COM_makeClickableLinks ($introtext); + $bodytext = COM_makeClickableLinks ($bodytext); + } + if ($_CONF['maximagesperarticle'] > 0) { if ($delete_old_story) { From dhaun at iowaoutdoors.org Sun Nov 14 15:55:16 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 14 Nov 2004 20:55:16 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html usersettings.php,1.107,1.108 Message-ID: <20041114205516.A170965AC@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html In directory www:/tmp/cvs-serv27315 Modified Files: usersettings.php Log Message: Rename userphoto when changing a username (bug #321) Index: usersettings.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/usersettings.php,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** usersettings.php 9 Oct 2004 20:44:41 -0000 1.107 --- usersettings.php 14 Nov 2004 20:55:14 -0000 1.108 *************** *** 798,801 **** --- 798,819 ---- $A['new_username'] = addslashes ($A['new_username']); if (DB_count ($_TABLES['users'], 'username', $A['new_username']) == 0) { + if ($_CONF['allow_user_photo'] == 1) { + $photo = DB_getItem ($_TABLES['users'], 'photo', + "uid = {$_USER['uid']}"); + $newphoto = preg_replace ('/' . $_USER['username'] . '/', + $A['new_username'], $photo, 1); + $imgpath = $_CONF['path_images'] . 'userphotos/'; + if (rename ($imgpath . $photo, + $imgpath . $newphoto) === false) { + $display = COM_siteHeader ('menu'); + $display .= COM_errorLog ('Could not rename userphoto "' + . $photo . '" to "' . $newphoto . '".'); + $display .= COM_siteFooter (); + return $display; + } + DB_change ($_TABLES['users'], 'photo', + addslashes ($newphoto), "uid", $_USER['uid']); + } + DB_change ($_TABLES['users'], 'username', $A['new_username'], "uid", $_USER['uid']); From dhaun at iowaoutdoors.org Sun Nov 14 15:55:16 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 14 Nov 2004 20:55:16 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/admin user.php,1.86,1.87 Message-ID: <20041114205516.BC8ED1B195@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/admin In directory www:/tmp/cvs-serv27315/admin Modified Files: user.php Log Message: Rename userphoto when changing a username (bug #321) Index: user.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/admin/user.php,v retrieving revision 1.86 retrieving revision 1.87 diff -C2 -d -r1.86 -r1.87 *** user.php 7 Oct 2004 21:10:23 -0000 1.86 --- user.php 14 Nov 2004 20:55:14 -0000 1.87 *************** *** 331,334 **** --- 331,356 ---- $curphoto = ''; } + + if (($_CONF['allow_user_photo'] == 1) && !empty ($curphoto)) { + $curusername = DB_getItem ($_TABLES['users'], 'username', + "uid = $uid"); + if ($curusername != $username) { + // user has been renamed - rename the photo, too + $newphoto = preg_replace ('/' . $curusername . '/', + $username, $curphoto, 1); + $imgpath = $_CONF['path_images'] . 'userphotos/'; + if (rename ($imgpath . $curphoto, + $imgpath . $newphoto) === false) { + $display = COM_siteHeader ('menu'); + $display .= COM_errorLog ('Could not rename userphoto "' + . $photo . '" to "' . $newphoto . '".'); + $display .= COM_siteFooter (); + return $display; + } + $curphoto = $newphoto; + } + } + + $curphoto = addslashes ($curphoto); DB_query("UPDATE {$_TABLES['users']} SET username = '$username', fullname = '$fullname', passwd = '$passwd', email = '$email', homepage = '$homepage', photo = '$curphoto' WHERE uid = $uid"); if ($_CONF['custom_registration'] AND (function_exists('custom_usersave'))) { From dhaun at iowaoutdoors.org Sun Nov 14 15:58:25 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 14 Nov 2004 20:58:25 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/docs history,1.253,1.254 Message-ID: <20041114205825.5E8B64AA35@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/docs In directory www:/tmp/cvs-serv27432/public_html/docs Modified Files: history Log Message: Updated list of changes Index: history =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/history,v retrieving revision 1.253 retrieving revision 1.254 diff -C2 -d -r1.253 -r1.254 *** history 30 Oct 2004 17:45:04 -0000 1.253 --- history 14 Nov 2004 20:58:22 -0000 1.254 *************** *** 4,7 **** --- 4,14 ---- ------------ + - When changing a username, make sure to change the name of the user's photo, + too (bug #321) [Dirk] + - Links in "plain text" stories and comments are now made clickable (i.e. + enclosed in tags) when the post is saved instead of when it's displayed, + as in the previous release candidates. This also fixes bug #308. [Dirk] + - Added $_CONF['disable_autolinks'] config option to disable autolinks [Dirk] + - Removed ViewBlacklist.Admin.class.php from the SpamX plugin [Tom Willet] - Overhauled handling of personal events [Dirk]: + Fixed deleting personal events (again). *************** *** 14,18 **** - When deleting a story (automatically), make sure we're only deleting comments belonging to that story (i.e. added a check for type = 'article') [Dirk] ! - Added {event_type}, {lang_event_type}, and {edit_icon} in all the theme's calendar/eventdetails.thtml template file [Dirk] - Fixed some URLs in the calendar (missing slash) [Dirk] --- 21,25 ---- - When deleting a story (automatically), make sure we're only deleting comments belonging to that story (i.e. added a check for type = 'article') [Dirk] ! - Added {event_type}, {lang_event_type}, and {edit_icon} in all the themes' calendar/eventdetails.thtml template file [Dirk] - Fixed some URLs in the calendar (missing slash) [Dirk] From dhaun at iowaoutdoors.org Sat Nov 20 07:16:14 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 12:16:14 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/admin user.php,1.87,1.88 Message-ID: <20041120121614.B308549031@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/admin In directory www:/tmp/cvs-serv15500 Modified Files: user.php Log Message: Display a message when using the "changepw" button. Index: user.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/admin/user.php,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -d -r1.87 -r1.88 *** user.php 14 Nov 2004 20:55:14 -0000 1.87 --- user.php 20 Nov 2004 12:16:11 -0000 1.88 *************** *** 226,229 **** --- 226,230 ---- * @param int $uid ID of user to change password for * @param string $passwd New password + * @return string HTML redirect or error message * */ *************** *** 237,248 **** $passwd = md5 ($passwd); $result = DB_change ($_TABLES['users'], 'passwd', "$passwd", ! 'uid', $uid, $_CONF['site_admin_url'] . '/user.php?mode=none'); } else { $retval .= COM_siteHeader ('menu'); $retval .= COM_errorLog ('CHANGEPW ERROR: There was nothing to do!', 3); $retval .= COM_siteFooter (); - echo $retval; - exit; } } --- 238,251 ---- $passwd = md5 ($passwd); $result = DB_change ($_TABLES['users'], 'passwd', "$passwd", ! 'uid', $uid); ! ! $retval .= COM_refresh ($_CONF['site_admin_url'] . '/user.php?msg=5'); } else { $retval .= COM_siteHeader ('menu'); $retval .= COM_errorLog ('CHANGEPW ERROR: There was nothing to do!', 3); $retval .= COM_siteFooter (); } + + return $retval; } *************** *** 716,721 **** } } else if (($mode == $LANG28[17]) && !empty ($LANG28[17])) { // change password ! changepw (COM_applyFilter ($HTTP_POST_VARS['uid'], true), ! $HTTP_POST_VARS['passwd']); } else if ($mode == 'edit') { $display .= COM_siteHeader('menu', $LANG28[1]); --- 719,724 ---- } } else if (($mode == $LANG28[17]) && !empty ($LANG28[17])) { // change password ! $display .= changepw (COM_applyFilter ($HTTP_POST_VARS['uid'], true), ! $HTTP_POST_VARS['passwd']); } else if ($mode == 'edit') { $display .= COM_siteHeader('menu', $LANG28[1]); From dhaun at iowaoutdoors.org Sat Nov 20 07:18:39 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 12:18:39 +0000 Subject: [geeklog-cvs] geeklog-1.3 config.php,1.144,1.145 Message-ID: <20041120121839.6F6E449031@iowaoutdoors> Update of /var/cvs/geeklog-1.3 In directory www:/tmp/cvs-serv15572 Modified Files: config.php Log Message: Grouped the allow_... options together and rephrased the comments for mogrify. Index: config.php =================================================================== RCS file: /var/cvs/geeklog-1.3/config.php,v retrieving revision 1.144 retrieving revision 1.145 diff -C2 -d -r1.144 -r1.145 *** config.php 13 Nov 2004 18:08:17 -0000 1.144 --- config.php 20 Nov 2004 12:18:37 -0000 1.145 *************** *** 221,224 **** --- 221,230 ---- $_CONF['allow_user_photo'] = 1; // allow users to upload self-photo + // Allow users to change their username (if set to 1). + $_CONF['allow_username_change'] = 0; + + // Allow users to delete their account (if set to 1). + $_CONF['allow_account_delete'] = 0; + // hides the list of authors from the preferences $_CONF['hide_author_exclusion'] = 0; *************** *** 407,416 **** $_CONF['skip_preview'] = 0; // If = 1, allow user to submit comments and stories without previewing - // Allow users to change their username (if set to 1). - $_CONF['allow_username_change'] = 0; - - // Allow users to delete their account (if set to 1). - $_CONF['allow_account_delete'] = 0; - // Topic Settings --- 413,416 ---- *************** *** 552,561 **** $_CONF['image_lib'] = ''; // can be one of 'netpbm', 'imagemagick', 'gdlib' ! // If you set image_lib to imagemagick give this path otherwise comment it out ! // NOTE: you will need a fairly recent version of ImageMagick for this to work. ! // ImageMagick version 5.4.9 (or newer) is recommended. //$_CONF['path_to_mogrify'] = '/path/to/mogrify'; ! // If you set image_lib to netpbm give the path to the netpbm directory, you // need the trailing slash here. // NOTE: if you use NETPBM, use the latest package from the Gallery package for --- 552,561 ---- $_CONF['image_lib'] = ''; // can be one of 'netpbm', 'imagemagick', 'gdlib' ! // If you set image_lib to 'imagemagick' give the complete path to mogrify ! // here (i.e. including the name of the executable), otherwise comment it out ! // NOTE: requires ImageMagick version 5.4.9 (or newer) //$_CONF['path_to_mogrify'] = '/path/to/mogrify'; ! // If you set image_lib to 'netpbm' give the path to the netpbm directory, you // need the trailing slash here. // NOTE: if you use NETPBM, use the latest package from the Gallery package for From dhaun at iowaoutdoors.org Sat Nov 20 09:22:08 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 14:22:08 +0000 Subject: [geeklog-cvs] geeklog-1.3/language spanish.php,1.11,1.12 Message-ID: <20041120142208.C59231B99F@iowaoutdoors> Update of /var/cvs/geeklog-1.3/language In directory www:/tmp/cvs-serv18354 Modified Files: spanish.php Log Message: Updated Spanish language file, provided by Angel Romero Index: spanish.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/spanish.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** spanish.php 16 Oct 2004 12:35:15 -0000 1.11 --- spanish.php 20 Nov 2004 14:22:06 -0000 1.12 *************** *** 2,6 **** ############################################################################### ! # This is the spanish language page for GeekLog! # # Copyright (C) 2000 Jason Whittenburg --- 2,6 ---- ############################################################################### ! # This is the Spanish language page for GeekLog! # [...1103 lines suppressed...] --- 1250,1267 ---- $LANG_PDF = array( ! 1 => 'La funci?n PDF est? inhabilitada', ! 2 => 'El document facilitado no se ha reproducido. Se ha recibidido el documento pero no se ha procesado. Por favor, aseg?rate que s?lo se env?en documentos formateados en html con el estandar xHTML. Por favor, toma nota que los documentos muy complejos en html es posible que no se reproduzcan correctamente o que no aparezcan. El documento resultante de tu intento tiene 0 bytes de extensi?n, y ha sido borrado. Si no estas seguro(a) que tu documento se reproduzca bien, por favor, vuelve a enviarlo.', ! 3 => 'Error desconocido durante la generaci?n de PDF', ! 4 => "No has dado datos de la p?gina o quieres utilizar la herramienta de generaci?n ad-hoc de PDF. Si crees que estas recibiendo esta p?gina\n por error entonces por favor contacta con el administrador del sistema. De otro modo, puedes utilizar el formulario que hay abajo para generar PDFs.", ! 5 => 'Cargando tu documento.', ! 6 => 'Por favor, espera mientras se carga tu documento.', ! 7 => 'Puedes pulsar a la derecha el bot?n de abajo y elegir \'save target...\' o \'save link location...\' para guardar una copia de tu documento.', ! 8 => "La ruta dada por el archivo de configuraci?n al HTMLDoc binario no es v?lida o este sistema no lo puede ejecutar. Por favor contacta con el administrador del sistema si este problema\n contin?a.", ! 9 => 'Creador de PDF', ! 10 => "Esta es la herramienta ad-hoc de creaci?n de PDF. Intentar? convertir cualquier URL que le d?s en un PDF. Por favor, toma nota que algunas p?ginas de la red (Web) no se generar?n correctamente con esta funci?n. Este\n is a limitation of the HTMLDoc PDF generation tool and such errors should not be reported to the administrators of this site", 11 => 'URL', ! 12 => '?Crea un PDF!', ! 13 => 'La configuraci?n PHP en este servidor no permite que los URL se utilicen con la instrucci?n fopen. El administrador del sistema tiene que editar el archivo php.ini y que est? conectado allow_url_fopen', ! 14 => 'El PDF que has solicitado o no existe o has intentado acceder a un archivo ilegalmente.' ); From dhaun at iowaoutdoors.org Sat Nov 20 09:27:00 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 14:27:00 +0000 Subject: [geeklog-cvs] geeklog-1.3/language japanese.php,1.21,1.22 japanese_utf-8.php,1.4,1.5 Message-ID: <20041120142701.4A5B91B9A0@iowaoutdoors> Update of /var/cvs/geeklog-1.3/language In directory www:/tmp/cvs-serv18434 Modified Files: japanese.php japanese_utf-8.php Log Message: Updated Japanese language files, provided by Yusuke Sakata Index: japanese_utf-8.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/japanese_utf-8.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** japanese_utf-8.php 25 Oct 2004 08:17:48 -0000 1.4 --- japanese_utf-8.php 20 Nov 2004 14:26:58 -0000 1.5 *************** *** 208,213 **** 24 => '??????????????????', 25 => '???????????????????????????????????????????????????????????????????????????', ! 26 => '%s reported the following abusive comment post:', ! 27 => 'Abuse report' ); --- 208,213 ---- 24 => '??????????????????', 25 => '???????????????????????????????????????????????????????????????????????????', ! 26 => '%s ??????????????????????????????????????????????????????????????????????????????', ! 27 => '?????????????????????????????????' ); *************** *** 660,664 **** 8 => '???????????????', 9 => '(http://??????????????????????????????)', ! 10 => '??????????????????????????????????????????????????????', 11 => '????????????', 12 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????C???????????????????????????????????????', --- 660,664 ---- 8 => '???????????????', 9 => '(http://??????????????????????????????)', ! 10 => '????????????????????????????????????????????????????????????????????????????????????', 11 => '????????????', 12 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????C???????????????????????????????????????', *************** *** 701,705 **** 18 => '???????????????', 19 => '????????????', ! 20 => '?????????????????????????????????', 21 => '??????', 22 => '??????', --- 701,705 ---- 18 => '???????????????', 19 => '????????????', ! 20 => '????????????', 21 => '??????', 22 => '??????', *************** *** 747,753 **** 35 => '??????', 36 => '?????????', ! 37 => 'More by', ! 38 => 'More from', ! 39 => '????????????????????????', 40 => '???????????????????????????????????????', 41 => "????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????", --- 747,753 ---- 35 => '??????', 36 => '?????????', ! 37 => '?????????????????????????????????', ! 38 => '?????????????????????', ! 39 => '?????????????????????', 40 => '???????????????????????????????????????', 41 => "????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????", *************** *** 875,879 **** 31 => '??????????????????', 32 => '??????????????????????????????%d ?????????????????????????????????%d ????????????????????????????????????', ! 33 => '??????', 34 => '???????????????????????????????????????????????????????????????', 35 => '???????????????????????????', --- 875,879 ---- 31 => '??????????????????', 32 => '??????????????????????????????%d ?????????????????????????????????%d ????????????????????????????????????', ! 33 => '??????', 34 => '???????????????????????????????????????????????????????????????', 35 => '???????????????????????????', *************** *** 1000,1004 **** 9 => '???????????????????????????????????????????????????GeekLog??????????????????Geeklog????????????????????????????????????????????????????????????????????????????????????????????????????????????', 10 => '
?????????????????????????????????????????????????????????

', ! 11 => '??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Web???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 12 => 'plugineditor()???????????????????????????????????????????????????', 13 => '????????????????????????', --- 1000,1004 ---- 9 => '???????????????????????????????????????????????????GeekLog??????????????????Geeklog????????????????????????????????????????????????????????????????????????????????????????????????????????????', 10 => '
?????????????????????????????????????????????????????????

', ! 11 => '??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 12 => 'plugineditor()???????????????????????????????????????????????????', 13 => '????????????????????????', *************** *** 1016,1026 **** 25 => '??????', 26 => '??????????????????', ! 27 => '????????????????????????????????????', ! 28 => '?????????????????????????????????', ! 29 => 'Geeklog??????????????????', 30 => '???????????????????????????????????????', 31 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 32 => '

AutoLing?????????????????????????????????????????????????????????

', ! 33 => 'Code Version', 34 => 'Update' ); --- 1016,1026 ---- 25 => '??????', 26 => '??????????????????', ! 27 => '??????????????????Web?????????', ! 28 => '???????????????????????????????????????', ! 29 => '??????????????????????????????', 30 => '???????????????????????????????????????', 31 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 32 => '

AutoLing?????????????????????????????????????????????????????????

', ! 33 => '????????????????????????', 34 => 'Update' ); Index: japanese.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/japanese.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** japanese.php 25 Oct 2004 08:17:48 -0000 1.21 --- japanese.php 20 Nov 2004 14:26:58 -0000 1.22 *************** *** 208,213 **** 24 => '????????????', 25 => '??????????????????????????????????????????????????', ! 26 => '%s reported the following abusive comment post:', ! 27 => 'Abuse report' ); --- 208,213 ---- 24 => '????????????', 25 => '??????????????????????????????????????????????????', ! 26 => '%s ????????????????????????????????????????????????????', ! 27 => '??????????????????????' ); *************** *** 660,664 **** 8 => '??????????', 9 => '(http://????????????????????)', ! 10 => '????????????????????????????????????', 11 => '????????', 12 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????C??????????????????????????', --- 660,664 ---- 8 => '??????????', 9 => '(http://????????????????????)', ! 10 => '????????????????????????????????????????????????????????', 11 => '????????', 12 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????C??????????????????????????', *************** *** 701,705 **** 18 => '??????????', 19 => '????????', ! 20 => '??????????????????????', 21 => '????', 22 => '????', --- 701,705 ---- 18 => '??????????', 19 => '????????', ! 20 => '????????', 21 => '????', 22 => '????', *************** *** 747,753 **** 35 => '????', 36 => '??????', ! 37 => 'More by', ! 38 => 'More from', ! 39 => '????????????????', 40 => '??????????????????????????', 41 => "????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????", --- 747,753 ---- 35 => '????', 36 => '??????', ! 37 => '??????????????????????', ! 38 => '??????????????', ! 39 => '??????????????', 40 => '??????????????????????????', 41 => "????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????", *************** *** 875,879 **** 31 => '????????????', 32 => '????????????????????%d ??????????????????????%d ????????????????????????', ! 33 => '????', 34 => '??????????????????????????????????????????', 35 => '??????????????????', --- 875,879 ---- 31 => '????????????', 32 => '????????????????????%d ??????????????????????%d ????????????????????????', ! 33 => '????', 34 => '??????????????????????????????????????????', 35 => '??????????????????', *************** *** 1000,1004 **** 9 => '??????????????????????????????????GeekLog????????????Geeklog????????????????????????????????????????????????????????????????????????', 10 => '
??????????????????????????????????????

', ! 11 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????Web??????????????????????????????????????????????????????????????????????????????????????????????????????????', 12 => 'plugineditor()??????????????????????????????????', 13 => '????????????????', --- 1000,1004 ---- 9 => '??????????????????????????????????GeekLog????????????Geeklog????????????????????????????????????????????????????????????????????????', 10 => '
??????????????????????????????????????

', ! 11 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 12 => 'plugineditor()??????????????????????????????????', 13 => '????????????????', *************** *** 1016,1026 **** 25 => '????', 26 => '????????????', ! 27 => '????????????????????????', ! 28 => '??????????????????????', ! 29 => 'Geeklog????????????', 30 => '??????????????????????????', 31 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 32 => '

AutoLing??????????????????????????????????????

', ! 33 => 'Code Version', 34 => 'Update' ); --- 1016,1026 ---- 25 => '????', 26 => '????????????', ! 27 => '????????????Web??????', ! 28 => '??????????????????????????', ! 29 => '????????????????????', 30 => '??????????????????????????', 31 => '????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????', 32 => '

AutoLing??????????????????????????????????????

', ! 33 => '????????????????', 34 => 'Update' ); From dhaun at iowaoutdoors.org Sat Nov 20 09:31:52 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 14:31:52 +0000 Subject: [geeklog-cvs] geeklog-1.3/language swedish.php,1.10,1.11 Message-ID: <20041120143152.297EB1B98B@iowaoutdoors> Update of /var/cvs/geeklog-1.3/language In directory www:/tmp/cvs-serv18521 Modified Files: swedish.php Log Message: Updated Swedish language file, provided by Markus Berg Index: swedish.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/swedish.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** swedish.php 16 Oct 2004 12:35:15 -0000 1.10 --- swedish.php 20 Nov 2004 14:31:49 -0000 1.11 *************** *** 85,89 **** 38 => 'Content Syndication', 39 => 'Uppdatera', ! 40 => 'You have register_globals = Off in your php.ini. However, Geeklog requires register_globals to be on. Before you continue, please set it to on and restart your web server.', 41 => 'G?ster', 42 => 'Skrivet av:', --- 85,89 ---- 38 => 'Content Syndication', 39 => 'Uppdatera', ! 40 => 'Du har register_globals = Off i din php.ini. Geeklog kr?ver att register_globals ?r p?slaget. Innan du forts?tter s? m?ste du s?tta det till on och starta om din webbserver.', 41 => 'G?ster', 42 => 'Skrivet av:', *************** *** 91,104 **** 44 => 'Upp', 45 => 'MySQL Error Number', ! 46 => 'MySQL Error Message', 47 => 'Anv?ndarfunktioner', 48 => 'Kontoinformation', 49 => 'Inst?llningar', ! 50 => 'Error with SQL statement', 51 => 'hj?lp', 52 => 'Ny', 53 => 'Administrat?rsmeny', 54 => 'Kunde inte ?ppna filen.', ! 55 => 'Error at', 56 => 'R?sta', 57 => 'L?senord', --- 91,104 ---- 44 => 'Upp', 45 => 'MySQL Error Number', ! 46 => 'MySQL felmeddelande', 47 => 'Anv?ndarfunktioner', 48 => 'Kontoinformation', 49 => 'Inst?llningar', ! 50 => 'Fel i SQL-f?rfr?gan', 51 => 'hj?lp', 52 => 'Ny', 53 => 'Administrat?rsmeny', 54 => 'Kunde inte ?ppna filen.', ! 55 => 'Fel vid', 56 => 'R?sta', 57 => 'L?senord', *************** *** 210,216 **** 23 => 'Din epostadress kommer INTE att vara publik.', 24 => 'Anonym anv?ndare', ! 25 => 'Are you sure you want to report this post to the site admin?', ! 26 => '%s reported the following abusive comment post:', ! 27 => 'Abuse report' ); --- 210,216 ---- 23 => 'Din epostadress kommer INTE att vara publik.', 24 => 'Anonym anv?ndare', ! 25 => '?r du s?ker p? att du vill rapportera detta inl?gg till sajtadministrat?ren?', ! 26 => '%s har rapporterat f?ljande inl?gg:', ! 27 => 'Anm?l missbruk' ); *************** *** 324,329 **** 104 => 'Visa online-status', 105 => 'Jag vill synas i \'Vem ?r h?r\'-blocket', ! 106 => 'Location', ! 107 => 'Shown in your public profile' ); --- 324,329 ---- 104 => 'Visa online-status', 105 => 'Jag vill synas i \'Vem ?r h?r\'-blocket', ! 106 => 'Plats', ! 107 => 'Visas i din publika profil' ); *************** *** 338,343 **** 5 => 'N?sta', 6 => 'F?reg?ende', ! 7 => 'First', ! 8 => 'Last' ); --- 338,343 ---- 5 => 'N?sta', 6 => 'F?reg?ende', ! 7 => 'F?rsta', ! 8 => 'Sista' ); *************** *** 471,498 **** $LANG10 = array( ! 1 => 'Site Statistics', ! 2 => 'Total Hits to the System', ! 3 => 'Stories(Comments) in the System', ! 4 => 'Polls(Answers) in the System', ! 5 => 'Links(Clicks) in the System', ! 6 => 'Events in the System', ! 7 => 'Top Ten Viewed Stories', ! 8 => 'Story Title', ! 9 => 'Views', ! 10 => 'It appears that there are no stories on this site or no one has ever viewed them.', ! 11 => 'Top Ten Commented Stories', ! 12 => 'Comments', ! 13 => 'It appears that there are no stories on this site or no one has ever posted a comment on them.', ! 14 => 'Top Ten Polls', ! 15 => 'Poll Question', ! 16 => 'Votes', ! 17 => 'It appears that there are no polls on this site or no one has ever voted.', ! 18 => 'Top Ten Links', ! 19 => 'Links', ! 20 => 'Hits', ! 21 => 'It appears that there are no links on this site or no one has ever clicked on one.', ! 22 => 'Top Ten Emailed Stories', ! 23 => 'Emails', ! 24 => 'It appears that no one has emailed a story on this site' ); --- 471,498 ---- $LANG10 = array( ! 1 => 'Sajtstatistik', ! 2 => 'Totalt antal tr?ffar p? sajten', ! 3 => 'Artiklar(kommentarer) p? sajten', ! 4 => 'Omr?stningar(svar) p? sajten', ! 5 => 'L?nkar(tr?ffar) p? sajten', ! 6 => 'Aktiviteter i sajtkalendern', ! 7 => 'De tio mest l?sta artiklarna', ! 8 => 'Artikeltitel', ! 9 => 'Visningar', ! 10 => 'Det verkar inte finnas n?gra artiklar p? den h?r sajten, eller s? har ingen av dom blivit l?sta.', ! 11 => 'De tio mest kommenterade artiklarna', ! 12 => 'Kommentarer', ! 13 => 'Det verkar inte finnas n?gra artiklar p? den h?r sajten, eller s? har ingen av dom blivit kommenterade.', ! 14 => 'De tio st?rsta omr?stningarna', ! 15 => 'Omr?stningsfr?ga', ! 16 => 'R?ster', ! 17 => 'Det verkar inte finnas n?gra omr?stningar p? den h?r sajten, eller s? har ingen r?stat.', ! 18 => 'Tio popul?raste l?nkarna', ! 19 => 'L?nkar', ! 20 => 'Tr?ffar', ! 21 => 'Det verkar inte finnas n?gra l?nkar p? sajten, eller s? har ingen av dom blivit klickade.', ! 22 => 'De tio mest epostade artiklarna', ! 23 => 'g?nger', ! 24 => 'Det verkar inte som om n?gon har epostat n?gon artikel fr?n den h?r sajten' ); *************** *** 505,509 **** 3 => 'Skriv ut artikel', 4 => 'Artikelalternativ', ! 5 => 'PDF Story Format' ); --- 505,509 ---- 3 => 'Skriv ut artikel', 4 => 'Artikelalternativ', ! 5 => 'Artikel i PDF-format' ); *************** *** 575,584 **** $LANG20 = array( ! 1 => 'Authenticering kr?vs', 2 => 'Felaktig inloggningsinformation', 3 => 'Felaktigt l?senord f?r anv?ndare', 4 => 'Anv?ndarnamn:', 5 => 'L?senord:', ! 6 => 'All tillg?ng till administrativa delar av denna webbsajt loggas och kontrolleras.
Denna sida ?r bara till f?r beh?rig personal.', 7 => 'logga in' ); --- 575,584 ---- $LANG20 = array( ! 1 => 'Autentisering kr?vs', 2 => 'Felaktig inloggningsinformation', 3 => 'Felaktigt l?senord f?r anv?ndare', 4 => 'Anv?ndarnamn:', 5 => 'L?senord:', ! 6 => 'All tillg?ng till administrativa delar av denna webbsajt loggas och kontrolleras.
Denna sida ?r bara till f?r beh?rig personal.', 7 => 'logga in' ); *************** *** 644,651 **** 55 => '?ngra', 56 => 'radera', ! 57 => 'Move Block Down', ! 58 => 'Move Block Up', ! 59 => 'Move block to the right side', ! 60 => 'Move block to the left side' ); --- 644,651 ---- 55 => '?ngra', 56 => 'radera', ! 57 => 'Flytta block ner?t', ! 58 => 'Flytta block upp?t', ! 59 => 'Flytta block till h?ger sida', ! 60 => 'Flytta block till v?nster sida' ); *************** *** 663,667 **** 8 => 'Aktivitetsbeskrivning', 9 => '(inkludera http://)', ! 10 => 'Du m?ste ange datum/tider, beskrivning och plats!', 11 => 'Aktivitetsadministrat?r', 12 => 'Klicka p? en aktivitet f?r att f?r?ndra eller radera den. Klicka p? "Ny aktivitet" ovan f?r att skapa en ny aktivitet. Klicka p? [C] f?r att kopiera en aktivitet.', --- 663,667 ---- 8 => 'Aktivitetsbeskrivning', 9 => '(inkludera http://)', ! 10 => 'Du m?ste ange datum/tider, aktivitetstitel och beskrivning!', 11 => 'Aktivitetsadministrat?r', 12 => 'Klicka p? en aktivitet f?r att f?r?ndra eller radera den. Klicka p? "Ny aktivitet" ovan f?r att skapa en ny aktivitet. Klicka p? [C] f?r att kopiera en aktivitet.', *************** *** 676,682 **** 21 => '?ngra', 22 => 'radera', ! 23 => 'Bad start date.', ! 24 => 'Bad end date.', ! 25 => 'End date is before start date.' ); --- 676,682 ---- 21 => '?ngra', 22 => 'radera', ! 23 => 'Felaktigt startdatum.', ! 24 => 'Felaktigt slutdatum.', ! 25 => 'Slutdatum ?r f?re startdatum, ju.' ); *************** *** 771,779 **** 56 => 'Visa ?mnesikon', 57 => 'Visa oskalad bild', ! 58 => 'Story Management', ! 59 => 'Option', ! 60 => 'Enabled', ! 61 => 'Auto Archive', ! 62 => 'Auto Delete' ); --- 771,779 ---- 56 => 'Visa ?mnesikon', 57 => 'Visa oskalad bild', ! 58 => 'Artikeladministration', ! 59 => 'Val', ! 60 => 'Aktiverat', ! 61 => 'Automatisk arkivering', ! 62 => 'Automatisk radering' ); *************** *** 838,843 **** 23 => 'G?r detta ?mne till standardv?rde f?r nya artiklar', 24 => '(*)', ! 25 => 'Archive Topic', ! 26 => 'make this the default topic for archived stories. Only one topic allowed.' ); --- 838,843 ---- 23 => 'G?r detta ?mne till standardv?rde f?r nya artiklar', 24 => '(*)', ! 25 => 'Arkivera ?mne', ! 26 => 'g?r detta ?mne till sk?nsv?rde f?r alla arkiverade artiklar. Bara ett ?mne till?ts.' ); *************** *** 1003,1007 **** 9 => 'Denna insticksmodul kr?ver en nyare version av Geeklog. Du m?ste antingen uppgradera din Geeklog-installation eller h?mta en nyare version av insticksmodulen.', 10 => '
Inga insticksmoduler ?r installerade.

', ! 11 => 'Klicka p? insticksmodulens nummer f?r att modifiera eller radera den. Klicka p? namnet p? en insticksmodul f?r att bli l?nkad till dess hemsida och f? mer information. L?s insticksmodulens manual om du vill ha information om hur man installerar eller uppgraderar den.', 12 => 'inget namn p? insticksmodul skickades till plugineditor()', 13 => 'Insticksmodulseditor', --- 1003,1007 ---- 9 => 'Denna insticksmodul kr?ver en nyare version av Geeklog. Du m?ste antingen uppgradera din Geeklog-installation eller h?mta en nyare version av insticksmodulen.', 10 => '
Inga insticksmoduler ?r installerade.

', ! 11 => 'Klicka p? insticksmodulens namn f?r att f? information om den modulen, inklusive en l?nk till insticksmodulens webbsajt. B?de den installerade versionen och versionen som insticksmodulen sj?lv rapporterar kommer att visas. Detta hj?lper dig att se om en insticksmodul beh?ver uppgraderas. L?s insticksmodulens manual om du vill ha information om hur man installerar eller uppgraderar den.', 12 => 'inget namn p? insticksmodul skickades till plugineditor()', 13 => 'Insticksmodulseditor', *************** *** 1020,1030 **** 26 => 'Namn p? insticksmodul', 27 => 'Insticksmodulens hemsida', ! 28 => 'Version p? insticksmodul', 29 => 'Geeklog-version', 30 => 'Radera insticksmodul?', 31 => '?r du s?ker p? att du vill radera denna insticksmodu? Om du g?r det s? kommer du att radera alla filer, data, och datastrukturer som denna insticksmodul anv?nder. Om du ?r s?ker, klicka "radera" igen nedan.', ! 32 => '

Error AutoLink tag not correct format

', ! 33 => 'Code Version', ! 34 => 'Update' ); --- 1020,1030 ---- 26 => 'Namn p? insticksmodul', 27 => 'Insticksmodulens hemsida', ! 28 => 'Installerad version', 29 => 'Geeklog-version', 30 => 'Radera insticksmodul?', 31 => '?r du s?ker p? att du vill radera denna insticksmodu? Om du g?r det s? kommer du att radera alla filer, data, och datastrukturer som denna insticksmodul anv?nder. Om du ?r s?ker, klicka "radera" igen nedan.', ! 32 => '

Error AutoLink m?rkord har inte korrekt format

', ! 33 => 'Kodversion', ! 34 => 'Uppdatera' ); *************** *** 1033,1073 **** $LANG33 = array( ! 1 => 'create feed', ! 2 => 'save', ! 3 => 'delete', ! 4 => 'cancel', ! 10 => 'Content Syndication', ! 11 => 'New Feed', ! 12 => 'Admin Home', ! 13 => 'To modify or delete a feed, click on the feed\'s title below. To create a new feed, click on New Feed above.', ! 14 => 'Title', ! 15 => 'Type', ! 16 => 'Filename', 17 => 'Format', ! 18 => 'last updated', ! 19 => 'Enabled', ! 20 => 'Yes', ! 21 => 'No', ! 22 => '(no feeds)', ! 23 => 'all Stories', ! 24 => 'Feed Editor', ! 25 => 'Feed Title', ! 26 => 'Limit', ! 27 => 'Length of entries', ! 28 => '(0 = no text, 1 = full text, other = limit to that number of chars.)', ! 29 => 'Description', ! 30 => 'Last Update', ! 31 => 'Character Set', ! 32 => 'Language', ! 33 => 'Contents', ! 34 => 'Entries', ! 35 => 'Hours', ! 36 => 'Select type of feed', ! 37 => 'You have at least one plugin installed that supports content syndication. Below you will need to select whether you want to create a Geeklog feed or a feed from one of the plugins.', ! 38 => 'Error: Missing Fields', ! 39 => 'Please fill in the Feed Title, Description, and Filename.', ! 40 => 'Please enter a number of entries or number of hours.', ! 41 => 'Links', ! 42 => 'Events' ); --- 1033,1073 ---- $LANG33 = array( ! 1 => 'skapa kanal', ! 2 => 'spara', ! 3 => 'radera', ! 4 => 'avbryt', ! 10 => 'Inneh?llsprenumeration', ! 11 => 'Ny kanal', ! 12 => 'Administrat?rsmeny', ! 13 => 'F?r att ?ndra eller radera en kanal m?ste du klicka p? dess l?nk nedan. F?r att skapa en ny kanal s? m?ste du klicka p? "Ny kanal" ovan.', ! 14 => 'Titel', ! 15 => 'Typ', ! 16 => 'Filnamn', 17 => 'Format', ! 18 => 'senast uppdaterad', ! 19 => 'Aktiverad', ! 20 => 'Ja', ! 21 => 'Nej', ! 22 => '(inga kanaler)', ! 23 => 'alla artiklar', ! 24 => 'Redigerar kanaler', ! 25 => 'Kanaltitel', ! 26 => 'Gr?ns', ! 27 => 'Storlek p? inl?gg', ! 28 => '(0 = ingen text, 1 = hela texten, annat = begr?nsat till angivet antal tecken.)', ! 29 => 'Beskrivning', ! 30 => 'Senaste uppdatering', ! 31 => 'Teckenupps?ttning', ! 32 => 'Spr?k', ! 33 => 'Inneh?ll', ! 34 => 'Inl?gg', ! 35 => 'Timmar', ! 36 => 'Kanaltyp', ! 37 => 'Du har ?tminstone en insticksmodul som st?der inneh?llskanaler. Nedan m?ste du v?lja om du vill skapa en Geeklog-kanal eller en kanal fr?n en av insticksmodulerna.', ! 38 => 'Error: F?lt saknas', ! 39 => 'Fyll i Kanaltitel, beskrivning och filnamn.', ! 40 => 'Fyll antingen i antal inl?gg eller ett antal timmar.', ! 41 => 'L?nkar', ! 42 => 'Aktiviteter' ); *************** *** 1133,1140 **** 56 => 'Epostadressen du angivit anv?nds redan av ett annat konto.', 57 => 'Ditt konto har raderats.', ! 58 => 'Your feed has been successfully saved.', ! 59 => 'The feed has been successfully deleted.', ! 60 => 'The plugin was successfully updated', ! 61 => 'Plugin %s: Unknown message placeholder' ); --- 1133,1140 ---- 56 => 'Epostadressen du angivit anv?nds redan av ett annat konto.', 57 => 'Ditt konto har raderats.', ! 58 => 'Din kanal har lagrats.', ! 59 => 'Kanalen har raderats.', ! 60 => 'Insticksmodulen har uppdaterats', ! 61 => 'Insticksmodul %s: Ok?nt meddelande' ); *************** *** 1191,1200 **** 'usersingroup' => 'Anv?ndare i grupp %s', 'usergroupadmin' => 'User Group Administration', ! 'add' => 'Add', ! 'remove' => 'Remove', ! 'availmembers' => 'Available Members', ! 'groupmembers' => 'Group Members', ! 'canteditgroup' => 'To edit this group, you have to be a member of the group. Please contact the system administrator if you feel this is an error.', ! 'cantlistgroup' => 'To see the members of this group, you have to be a member yourself. Please contact the system administrator if you feel this is an error.' ); --- 1191,1200 ---- 'usersingroup' => 'Anv?ndare i grupp %s', 'usergroupadmin' => 'User Group Administration', ! 'add' => 'L?gg till', ! 'remove' => 'Radera', ! 'availmembers' => 'Tillg?ngliga medlemmar', ! 'groupmembers' => 'Gruppmedlemmar', ! 'canteditgroup' => 'Du m?ste vara medlem i denna grupp f?r att f? redigera den. Kontakta din systemadministrat?r om du anser att detta meddelande ?r felaktigt.', ! 'cantlistgroup' => 'Du m?ste vara medlem i denna grupp f?r att f? se dess medlemmar. Kontakta din systemadministrat?r om du anser att detta meddelande ?r felaktigt.' ); *************** *** 1256,1274 **** $LANG_PDF = array( ! 1 => 'The PDF feature has been disabled', ! 2 => 'The document provided was not rendered. The document was received but could not be processed. Please make sure to submit only html formatted documents that have been written to the xHTML standard. Please note that overly complex html documents may not render correctly or at all.The document resulting from your attempt was 0 bytes in length, and has been deleted. If you\'re sure that your document should render fine, please re-submit it.', ! 3 => 'Unknown error during PDF generation', ! 4 => "No page data was given or you want to use the ad-hoc PDF generation tool below. If you think you are getting this page\n in error then please contact the system administrator. Otherwise, you may use the form below to generate PDF's in an ad-hoc fashion.", ! 5 => 'Loading your document.', ! 6 => 'Please wait while your document is loaded.', ! 7 => 'You may right click the button below and choose \'save target...\' or \'save link location...\' to save a copy of your document.', ! 8 => "The path given in the configuration file to the HTMLDoc binary is invalid or this system cannot execute it. Please contact the site administrator if this problem\n persists.", ! 9 => 'PDF Generator', ! 10 => "This is the Ad-hoc PDF Generation tool. It will attempt to convert any URL you give into a PDF. Please note that some web pages will not render properly with this feature. This\n is a limitation of the HTMLDoc PDF generation tool and such errors should not be reported to the administrators of this site", 11 => 'URL', ! 12 => 'Generate PDF!', ! 13 => 'The PHP configuration on this server does not allow URLs to be used with the fopen() command. The system administrator must edit the php.ini file and set allow_url_fopen to On', ! 14 => 'The PDF you requested either does not exist or you tried to illegally access a file.' ); ! ?> \ No newline at end of file --- 1256,1274 ---- $LANG_PDF = array( ! 1 => 'PDF-funktionen ?r avst?ngd', ! 2 => 'Dokumentet kunde inte renderas. Dokumentet kunde h?mtas, men kunde inte renderas. Var noga med att bara skicka in html-formatterade dokument som ?r skrivna enligt xHTML. Notera att komplexa dokument kanske inte kan renderas korrekt, eller ?ver huvud taget. Ditt renderade dokumentet var 0 byte stort och har raderats. Om du ?r ?vertygad om att ditt dokument borde kunna renderas, s? b?r du skicka in det igen.', ! 3 => 'Ok?nt fel vid PDF-generering', ! 4 => "Inget siddata gavs, eller s? vill du anv?nda ad-hoc PDF-genereringsverktyget nedan. Om du anser att du inte borde f? detta felmeddelande s? b?r du kontakta systemadministrat?ren. Annars kan du prova att anv?nda formul?ret nedan f?r att generera PDF-filer med mer handp?l?ggning.", ! 5 => 'Laddar ditt dokument.', ! 6 => 'V?nta medan ditt dokument laddas.', ! 7 => 'Du kan h?gerklicka p? knappen nedan och v?lja \'spara m?l...\' eller \'spara l?nk...\' f?r att spara en kopia av ditt dokument.', ! 8 => "Den angivna s?kv?gen till HTMLDoc-bin?ren ?r felaktig, eller s? kan det h?r systemet inte exekvera den. Kontakta systemadministrat?ren om detta fel kvarst?r.", ! 9 => 'PDF-generator', ! 10 => "Detta ?r Ad-hoc PDF-generering. Verktyget kommer att f?rs?ka konvertera valfri URL till en PDF. T?nk p? att vissa sidor inte renderas ordentligt med den h?r funktionen, men detta ?r en begr?nsning av HTMLDoc PDF-genereringsverktyget, och dessa felmeddelanden b?r inte rapporteras till systemadministrat?rerna p? denna sajt", 11 => 'URL', ! 12 => 'Generera PDF!', ! 13 => 'PHP-konfigurationen p? den h?r servern till?ter inte ?ppning av URL:er med fopen()-kommandot. Systemadministrat?ren m?ste redigera php.ini-filen och aktivera allow_url_fopen', ! 14 => 'PDF-filen du beg?rde existerar inte, eller s? f?rs?kte du h?mta en fil som du inte har tillg?ng till.' ); ! ?> From dhaun at iowaoutdoors.org Sat Nov 20 12:55:09 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 17:55:09 +0000 Subject: [geeklog-cvs] geeklog-1.3/system lib-database.php,1.32,1.33 Message-ID: <20041120175509.959E03B1A@iowaoutdoors> Update of /var/cvs/geeklog-1.3/system In directory www:/tmp/cvs-serv23838 Modified Files: lib-database.php Log Message: Fixed comments for the DB_result() and dbResult() functions (bug #320) Index: lib-database.php =================================================================== RCS file: /var/cvs/geeklog-1.3/system/lib-database.php,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** lib-database.php 3 Sep 2004 19:59:56 -0000 1.32 --- lib-database.php 20 Nov 2004 17:55:07 -0000 1.33 *************** *** 317,328 **** /** ! * Retrieves the number of rows in a recordset * ! * This returns the number of rows in a recordset...is this even used? * ! * @param object $recordset The recordset to operate one * @param int $row row to get data from * @param string $field field to return ! * @return int Returns number of rows in a recordset * */ --- 317,328 ---- /** ! * Retrieves the contents of a field * ! * This returns the contents of a field from a result set * ! * @param object $recordset The recordset to operate on * @param int $row row to get data from * @param string $field field to return ! * @return (depends on the contents of the field) * */ From dhaun at iowaoutdoors.org Sat Nov 20 12:55:09 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 17:55:09 +0000 Subject: [geeklog-cvs] geeklog-1.3/system/databases mysql.class.php,1.18,1.19 Message-ID: <20041120175509.AD1E160E3F@iowaoutdoors> Update of /var/cvs/geeklog-1.3/system/databases In directory www:/tmp/cvs-serv23838/databases Modified Files: mysql.class.php Log Message: Fixed comments for the DB_result() and dbResult() functions (bug #320) Index: mysql.class.php =================================================================== RCS file: /var/cvs/geeklog-1.3/system/databases/mysql.class.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** mysql.class.php 13 Jul 2004 19:00:03 -0000 1.18 --- mysql.class.php 20 Nov 2004 17:55:07 -0000 1.19 *************** *** 548,559 **** /** ! * Retrieves the number of rows in a recordset ! * ! * This returns the number of rows in a recordset * ! * @param object $recordset The recordset to operate one * @param int $row row to get data from * @param string $field field to return ! * @return int * */ --- 548,557 ---- /** ! * Returns the contents of one cell from a MySQL result set * ! * @param object $recordset The recordset to operate on * @param int $row row to get data from * @param string $field field to return ! * @return (depends on field content) * */ From dhaun at iowaoutdoors.org Sat Nov 20 13:01:32 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 20 Nov 2004 18:01:32 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/docs config.html,1.41,1.42 history,1.254,1.255 Message-ID: <20041120180132.CAA841B989@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/docs In directory www:/tmp/cvs-serv23999 Modified Files: config.html history Log Message: Updated documentation Index: config.html =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/config.html,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** config.html 13 Nov 2004 18:08:17 -0000 1.41 --- config.html 20 Nov 2004 18:01:30 -0000 1.42 *************** *** 772,776 **** If you chose 'imagemagick' for $_CONF['image_lib'] above, then this should hold the complete path to the mogrify ! binary (from the ImageMagick package), e.g. '/usr/bin/mogrify'.
You will need a fairly recent version of ImageMagick for this to work --- 772,776 ---- If you chose 'imagemagick' for $_CONF['image_lib'] above, then this should hold the complete path to the mogrify ! executable (from the ImageMagick package), e.g. '/usr/bin/mogrify'.
You will need a fairly recent version of ImageMagick for this to work Index: history =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/history,v retrieving revision 1.254 retrieving revision 1.255 diff -C2 -d -r1.254 -r1.255 *** history 14 Nov 2004 20:58:22 -0000 1.254 --- history 20 Nov 2004 18:01:30 -0000 1.255 *************** *** 1,7 **** GeekLog History/Changes: ! Nov ??, 2004 (1.3.10rc3) ------------ - When changing a username, make sure to change the name of the user's photo, too (bug #321) [Dirk] --- 1,11 ---- GeekLog History/Changes: ! Nov 21, 2004 (1.3.10rc3) ------------ + - Fixed comments for the DB_result (in lib-database.php) and dbResult + (in mysql.class.php) functions (bug #320) [Dirk] + - Display a success message when using the "changepw" option in admin/user.php + [Dirk] - When changing a username, make sure to change the name of the user's photo, too (bug #321) [Dirk] *************** *** 33,36 **** --- 37,42 ---- - Updated Polish language file, provided by Robert Stadnik - Updated Slovenian language file, provided by gape + - Updated Spanish language file, provided by Angel Romero + - Updated Swedish language file, provided by Markus Berg From dhaun at iowaoutdoors.org Sun Nov 21 05:13:36 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 21 Nov 2004 10:13:36 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/admin database.php,1.19,1.20 Message-ID: <20041121101336.5EB0430799@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/admin In directory www:/tmp/cvs-serv4047/public_html/admin Modified Files: database.php Log Message: If the backups directory is not writable, the error message should say so (instead of "is not accessible"). Index: database.php =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/admin/database.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** database.php 18 Jul 2004 22:47:59 -0000 1.19 --- database.php 21 Nov 2004 10:13:34 -0000 1.20 *************** *** 197,201 **** COM_getBlockTemplate ('_msg_block', 'header')); $display .= $LANG_DB_BACKUP['no_access']; ! COM_errorLog ($_CONF['backup_path'] . ' is not accessible.', 1); $display .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); } --- 197,201 ---- COM_getBlockTemplate ('_msg_block', 'header')); $display .= $LANG_DB_BACKUP['no_access']; ! COM_errorLog ($_CONF['backup_path'] . ' is not writable.', 1); $display .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); } From dhaun at iowaoutdoors.org Sun Nov 21 05:15:30 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 21 Nov 2004 10:15:30 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/docs history,1.255,1.256 install.html,1.33,1.34 Message-ID: <20041121101530.9571C30799@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/docs In directory www:/tmp/cvs-serv4074/public_html/docs Modified Files: history install.html Log Message: Updated documentation Index: install.html =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/install.html,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** install.html 23 Oct 2004 19:17:57 -0000 1.33 --- install.html 21 Nov 2004 10:15:28 -0000 1.34 *************** *** 140,144 ****
  • Unpack the tarball *within* your web tree by running the following in your shell (this assumes you have ssh access and that you are working with the tarball on the designated server - this can be locally or hosted elsewhere):

    ! tar -zxvf geeklog-1.3.10rc2.tar.gz

    FTP, Windows Users: unpack the tarball on your local computer and upload the result to your designated server. Everything uploads as ASCII except the images.
    --- 140,144 ----
  • Unpack the tarball *within* your web tree by running the following in your shell (this assumes you have ssh access and that you are working with the tarball on the designated server - this can be locally or hosted elsewhere):

    ! tar -zxvf geeklog-1.3.10rc3.tar.gz

    FTP, Windows Users: unpack the tarball on your local computer and upload the result to your designated server. Everything uploads as ASCII except the images.
    Index: history =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/history,v retrieving revision 1.255 retrieving revision 1.256 diff -C2 -d -r1.255 -r1.256 *** history 20 Nov 2004 18:01:30 -0000 1.255 --- history 21 Nov 2004 10:15:28 -0000 1.256 *************** *** 4,7 **** --- 4,9 ---- ------------ + - Changed wording of the error message if the "backups" directory is not + writable [Dirk] - Fixed comments for the DB_result (in lib-database.php) and dbResult (in mysql.class.php) functions (bug #320) [Dirk] From dhaun at iowaoutdoors.org Sat Nov 27 09:06:10 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 27 Nov 2004 14:06:10 +0000 Subject: [geeklog-cvs] geeklog-1.3/plugins/staticpages functions.inc,1.45,1.46 Message-ID: <20041127140610.4EF3267E93@iowaoutdoors> Update of /var/cvs/geeklog-1.3/plugins/staticpages In directory www:/tmp/cvs-serv20912/plugins/staticpages Modified Files: functions.inc Log Message: When no link text is given for the [story:], [event:], or [staticpage:] autotag, use the object's title automatically. Index: functions.inc =================================================================== RCS file: /var/cvs/geeklog-1.3/plugins/staticpages/functions.inc,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** functions.inc 25 Oct 2004 08:59:52 -0000 1.45 --- functions.inc 27 Nov 2004 14:06:08 -0000 1.46 *************** *** 559,570 **** function plugin_autotags_staticpages ($op, $content = '', $autotag = '') { ! global $_CONF; if ($op == 'tagname' ) { return 'staticpage'; } else if ($op == 'parse') { $url = COM_buildUrl ($_CONF['site_url'] . '/staticpages/index.php?page=' ! . $autotag['parm1']); ! $link = '' . $autotag['parm2'] . ''; $content = str_replace ($autotag['tagstr'], $link, $content); --- 559,577 ---- function plugin_autotags_staticpages ($op, $content = '', $autotag = '') { ! global $_CONF, $_TABLES; if ($op == 'tagname' ) { return 'staticpage'; } else if ($op == 'parse') { + $sp_id = COM_applyFilter ($autotag['parm1']); $url = COM_buildUrl ($_CONF['site_url'] . '/staticpages/index.php?page=' ! . $sp_id); ! if (empty ($autotag['parm2'])) { ! $linktext = stripslashes (DB_getItem ($_TABLES['staticpages'], ! 'sp_title', "sp_id = '$sp_id'")); ! } else { ! $linktext = $autotag['parm2']; ! } ! $link = '' . $linktext . ''; $content = str_replace ($autotag['tagstr'], $link, $content); From dhaun at iowaoutdoors.org Sat Nov 27 09:06:10 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 27 Nov 2004 14:06:10 +0000 Subject: [geeklog-cvs] geeklog-1.3/system lib-plugins.php,1.50,1.51 Message-ID: <20041127140610.30FDA1B16A@iowaoutdoors> Update of /var/cvs/geeklog-1.3/system In directory www:/tmp/cvs-serv20912/system Modified Files: lib-plugins.php Log Message: When no link text is given for the [story:], [event:], or [staticpage:] autotag, use the object's title automatically. Index: lib-plugins.php =================================================================== RCS file: /var/cvs/geeklog-1.3/system/lib-plugins.php,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** lib-plugins.php 13 Nov 2004 18:08:17 -0000 1.50 --- lib-plugins.php 27 Nov 2004 14:06:07 -0000 1.51 *************** *** 978,982 **** function PLG_replaceTags ($content) { ! global $_CONF, $_PLUGINS, $LANG32; if (isset ($_CONF['disable_autolinks']) && ($_CONF['disable_autolinks'] == 1)) { --- 978,982 ---- function PLG_replaceTags ($content) { ! global $_CONF, $_TABLES, $_PLUGINS, $LANG32; if (isset ($_CONF['disable_autolinks']) && ($_CONF['disable_autolinks'] == 1)) { *************** *** 1037,1050 **** if ($autotag['module'] == 'geeklog') { $url = ''; if ($autotag['tag'] == 'story') { $url = COM_buildUrl ($_CONF['site_url'] . '/article.php?story=' . $autotag['parm1']); } else if ($autotag['tag'] == 'event') { $url = $_CONF['site_url'] . '/calendar_event.php?eid=' . $autotag['parm1']; } if (!empty ($url)) { ! $filelink = '' . $autotag['parm2'] ! . ''; $content = str_replace ($autotag['tagstr'], $filelink, $content); --- 1037,1058 ---- if ($autotag['module'] == 'geeklog') { $url = ''; + $linktext = $autotag['parm2']; if ($autotag['tag'] == 'story') { + $autotag['parm1'] = COM_applyFilter ($autotag['parm1']); $url = COM_buildUrl ($_CONF['site_url'] . '/article.php?story=' . $autotag['parm1']); + if (empty ($linktext)) { + $linktext = stripslashes (DB_getItem ($_TABLES['stories'], 'title', "sid = '{$autotag['parm1']}'")); + } } else if ($autotag['tag'] == 'event') { + $autotag['parm1'] = COM_applyFilter ($autotag['parm1']); $url = $_CONF['site_url'] . '/calendar_event.php?eid=' . $autotag['parm1']; + if (empty ($linktext)) { + $linktext = stripslashes (DB_getItem ($_TABLES['events'], 'title', "eid = '{$autotag['parm1']}'")); + } } if (!empty ($url)) { ! $filelink = '' . $linktext . ''; $content = str_replace ($autotag['tagstr'], $filelink, $content); From dhaun at iowaoutdoors.org Sat Nov 27 09:16:06 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sat, 27 Nov 2004 14:16:06 +0000 Subject: [geeklog-cvs] geeklog-1.3/language chinese_big5.php,1.9,1.10 chinese_gb2312.php,1.7,1.8 chinese_simplified_utf-8.php,1.5,1.6 chinese_traditional_utf-8.php,1.5,1.6 Message-ID: <20041127141607.082AE1B9CC@iowaoutdoors> Update of /var/cvs/geeklog-1.3/language In directory www:/tmp/cvs-serv21522 Modified Files: chinese_big5.php chinese_gb2312.php chinese_simplified_utf-8.php chinese_traditional_utf-8.php Log Message: Updated Chinese language files, provided by Samuel M. Stone. Index: chinese_simplified_utf-8.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/chinese_simplified_utf-8.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** chinese_simplified_utf-8.php 30 Oct 2004 17:41:36 -0000 1.5 --- chinese_simplified_utf-8.php 27 Nov 2004 14:16:04 -0000 1.6 *************** *** 1258,1266 **** 2 => '????????????????????????????????????????????????????????????????????????????????????????????????????????? html ????????????????????? xHTML ???????????????????????????????????? html ?????????????????????????????????????????????????????????????????? 0 bytes ???????????????????????????????????????????????????????????????????????????????????????', 3 => '????????????PDF ?????????????????????', ! 4 => "???????????????????????????????????????????????? PDF ???????????????????????????????????????????????? page\n ???????????? ?????????????????????????????????????????????????????????????????????????????? PDF???", 5 => '???????????????????????????', 6 => '????????????????????????????????????', 7 => '?????????????????????????????????????????? \'save target...\' or \'save link location...\' ???????????????????????????????????????', ! 8 => "????????????????????? HTMLDoc????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????\n ???", 9 => 'PDF ?????????', 10 => "??????????????? PDF ?????????????????????????????? URL ????????? PDF ????????????????????????????????????????????????????????????????????????????????? HTMLDoc PDF ??????????????????????????????????????????????????????????????????????????????????????????", --- 1258,1266 ---- 2 => '????????????????????????????????????????????????????????????????????????????????????????????????????????? html ????????????????????? xHTML ???????????????????????????????????? html ?????????????????????????????????????????????????????????????????? 0 bytes ???????????????????????????????????????????????????????????????????????????????????????', 3 => '????????????PDF ?????????????????????', ! 4 => "???????????????????????????????????????????????? PDF ???????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????? PDF???", 5 => '???????????????????????????', 6 => '????????????????????????????????????', 7 => '?????????????????????????????????????????? \'save target...\' or \'save link location...\' ???????????????????????????????????????', ! 8 => "????????????????????? HTMLDoc???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????", 9 => 'PDF ?????????', 10 => "??????????????? PDF ?????????????????????????????? URL ????????? PDF ????????????????????????????????????????????????????????????????????????????????? HTMLDoc PDF ??????????????????????????????????????????????????????????????????????????????????????????", Index: chinese_gb2312.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/chinese_gb2312.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** chinese_gb2312.php 30 Oct 2004 17:41:36 -0000 1.7 --- chinese_gb2312.php 27 Nov 2004 14:16:04 -0000 1.8 *************** *** 1258,1266 **** 2 => '?????????????????????????????????????????????????????????????????????? html ?????????????? xHTML ???????????????????????? html ???????????????????????????????????????????? 0 bytes ??????????????????????????????????????????????????????????', 3 => '????????PDF ??????????????', ! 4 => "???????????????????????????????? PDF ???????????????????????????????? page\n ???????? ???????????????????????????????????????????????????? PDF??", 5 => '??????????????????', 6 => '????????????????????????', 7 => '???????????????????????????? \'save target...\' or \'save link location...\' ??????????????????????????', ! 8 => "?????????????? HTMLDoc????????????????????????????????????????????????????????????????????????????????\n ??", 9 => 'PDF ??????', 10 => "?????????? PDF ???????????????????? URL ?????? PDF ?????????????????????????????????????????????????????? HTMLDoc PDF ????????????????????????????????????????????????????????????", --- 1258,1266 ---- 2 => '?????????????????????????????????????????????????????????????????????? html ?????????????? xHTML ???????????????????????? html ???????????????????????????????????????????? 0 bytes ??????????????????????????????????????????????????????????', 3 => '????????PDF ??????????????', ! 4 => "???????????????????????????????? PDF ???????????????????????????????????????? ???????????????????????????????????????????????????? PDF??", 5 => '??????????????????', 6 => '????????????????????????', 7 => '???????????????????????????? \'save target...\' or \'save link location...\' ??????????????????????????', ! 8 => "?????????????? HTMLDoc??????????????????????????????????????????????????????????????????????????????????", 9 => 'PDF ??????', 10 => "?????????? PDF ???????????????????? URL ?????? PDF ?????????????????????????????????????????????????????? HTMLDoc PDF ????????????????????????????????????????????????????????????", Index: chinese_traditional_utf-8.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/chinese_traditional_utf-8.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** chinese_traditional_utf-8.php 30 Oct 2004 17:41:37 -0000 1.5 --- chinese_traditional_utf-8.php 27 Nov 2004 14:16:04 -0000 1.6 *************** *** 1258,1266 **** 2 => '???????????????????????????????????????????????????????????????????????????????????????????????? html ?????????????????? xHTML ???????????????????????????????????? html ???????????????????????????????????????????????????????????? 0 bytes ????????????????????????????????????????????????????????????????????????????????????', 3 => '????????????PDF ??????????????????', ! 4 => "???????????????????????????????????????????????? PDF ???????????????????????????????????????????????? page\n ???????????? ?????????????????????????????????????????????????????????????????????????????? PDF???", 5 => '????????????????????????', 6 => '?????????????????????????????????', 7 => '?????????????????????????????????????????? \'save target...\' or \'save link location...\' ????????????????????????????????????', ! 8 => "????????????????????? HTMLDoc????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????\n ???", 9 => 'PDF ?????????', 10 => "??????????????? PDF ?????????????????????????????? URL ????????? PDF ????????????????????????????????????????????????????????????????????????????????? HTMLDoc PDF ??????????????????????????????????????????????????????????????????????????????????????????", --- 1258,1266 ---- 2 => '???????????????????????????????????????????????????????????????????????????????????????????????? html ?????????????????? xHTML ???????????????????????????????????? html ???????????????????????????????????????????????????????????? 0 bytes ????????????????????????????????????????????????????????????????????????????????????', 3 => '????????????PDF ??????????????????', ! 4 => "???????????????????????????????????????????????? PDF ???????????????????????????????????????????????????????????? ?????????????????????????????????????????????????????????????????????????????? PDF???", 5 => '????????????????????????', 6 => '?????????????????????????????????', 7 => '?????????????????????????????????????????? \'save target...\' or \'save link location...\' ????????????????????????????????????', ! 8 => "????????????????????? HTMLDoc???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????", 9 => 'PDF ?????????', 10 => "??????????????? PDF ?????????????????????????????? URL ????????? PDF ????????????????????????????????????????????????????????????????????????????????? HTMLDoc PDF ??????????????????????????????????????????????????????????????????????????????????????????", Index: chinese_big5.php =================================================================== RCS file: /var/cvs/geeklog-1.3/language/chinese_big5.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** chinese_big5.php 30 Oct 2004 17:41:36 -0000 1.9 --- chinese_big5.php 27 Nov 2004 14:16:04 -0000 1.10 *************** *** 1258,1266 **** 2 => '???????????S???e???C???w?????A???O?L?k?B?z?C?????w?A???????????O html ?????????g?? xHTML ???????C???`?N?L???????? html ???]?i???L?k???T?e???C?A?????????????G?O 0 bytes ???B?w?Q?R???C?A?Y???w?A???????????Q???e???A???A???????C', 3 => '?????W??PDF ???s?@???~?C', ! 4 => "?S???????????????A?n???H?U???S?O PDF ?s?@?u???C?Y?A?{???A???o?????o?? page\n ?O???~?C ???p???t?????z???C?n???M?A?A?i???H?U?????????S?O?s?@ PDF?C", 5 => '???b???m?A?????C', 6 => '?A?????Q???m?????????C', 7 => '?A?i???k???H?U?????s?A?M???? \'save target...\' or \'save link location...\' ???s???A???????@???????C', ! 8 => "?b?t?m???????? HTMLDoc?G?i?????????|?????~?A?????t???L?k???????????C?Y?????D?~???o???A???p?????????z??\n ?C", 9 => 'PDF ?s?@??', 10 => "?o?O?S?O?? PDF ?s?@?u???C???|?N???? URL ?????? PDF ?????C???`?N?A???????????|???T???Q?o?u???B?z???\?C?o?O HTMLDoc PDF ?s?@?u???????????B?A???o???????~?????n???i?????????????z???C", --- 1258,1266 ---- 2 => '???????????S???e???C???w?????A???O?L?k?B?z?C?????w?A???????????O html ?????????g?? xHTML ???????C???`?N?L???????? html ???]?i???L?k???T?e???C?A?????????????G?O 0 bytes ???B?w?Q?R???C?A?Y???w?A???????????Q???e???A???A???????C', 3 => '?????W??PDF ???s?@???~?C', ! 4 => "?S???????????????A?n???H?U???S?O PDF ?s?@?u???C?Y?A?{???A???o?????o???O???~?C ???p???t?????z???C?n???M?A?A?i???H?U?????????S?O?s?@ PDF?C", 5 => '???b???m?A?????C', 6 => '?A?????Q???m?????????C', 7 => '?A?i???k???H?U?????s?A?M???? \'save target...\' or \'save link location...\' ???s???A???????@???????C', ! 8 => "?b?t?m???????? HTMLDoc?G?i?????????|?????~?A?????t???L?k???????????C?Y?????D?~???o???A???p?????????z???C", 9 => 'PDF ?s?@??', 10 => "?o?O?S?O?? PDF ?s?@?u???C???|?N???? URL ?????? PDF ?????C???`?N?A???????????|???T???Q?o?u???B?z???\?C?o?O HTMLDoc PDF ?s?@?u???????????B?A???o???????~?????n???i?????????????z???C", From dhaun at iowaoutdoors.org Sun Nov 28 04:54:09 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 28 Nov 2004 09:54:09 +0000 Subject: [geeklog-cvs] geeklog-1.3 config.php,1.145,1.146 Message-ID: <20041128095409.B1429250C8@iowaoutdoors> Update of /var/cvs/geeklog-1.3 In directory www:/tmp/cvs-serv19793 Modified Files: config.php Log Message: Set version number to 1.3.10 Index: config.php =================================================================== RCS file: /var/cvs/geeklog-1.3/config.php,v retrieving revision 1.145 retrieving revision 1.146 diff -C2 -d -r1.145 -r1.146 *** config.php 20 Nov 2004 12:18:37 -0000 1.145 --- config.php 28 Nov 2004 09:54:06 -0000 1.146 *************** *** 699,703 **** } if (!defined ('VERSION')) { ! define('VERSION', '1.3.10rc3'); } --- 699,703 ---- } if (!defined ('VERSION')) { ! define('VERSION', '1.3.10'); } From dhaun at iowaoutdoors.org Sun Nov 28 04:56:22 2004 From: dhaun at iowaoutdoors.org (dhaun at iowaoutdoors.org) Date: Sun, 28 Nov 2004 09:56:22 +0000 Subject: [geeklog-cvs] geeklog-1.3/public_html/docs changes.html,1.39,1.40 history,1.256,1.257 install.html,1.34,1.35 Message-ID: <20041128095622.8567D55C9F@iowaoutdoors> Update of /var/cvs/geeklog-1.3/public_html/docs In directory www:/tmp/cvs-serv19931 Modified Files: changes.html history install.html Log Message: Updated documentation Index: install.html =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/install.html,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** install.html 21 Nov 2004 10:15:28 -0000 1.34 --- install.html 28 Nov 2004 09:56:20 -0000 1.35 *************** *** 140,144 ****
  • Unpack the tarball *within* your web tree by running the following in your shell (this assumes you have ssh access and that you are working with the tarball on the designated server - this can be locally or hosted elsewhere):

    ! tar -zxvf geeklog-1.3.10rc3.tar.gz

    FTP, Windows Users: unpack the tarball on your local computer and upload the result to your designated server. Everything uploads as ASCII except the images.
    --- 140,144 ----
  • Unpack the tarball *within* your web tree by running the following in your shell (this assumes you have ssh access and that you are working with the tarball on the designated server - this can be locally or hosted elsewhere):

    ! tar -zxvf geeklog-1.3.10.tar.gz

    FTP, Windows Users: unpack the tarball on your local computer and upload the result to your designated server. Everything uploads as ASCII except the images.
    Index: changes.html =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/changes.html,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** changes.html 30 Oct 2004 17:45:04 -0000 1.39 --- changes.html 28 Nov 2004 09:56:20 -0000 1.40 *************** *** 63,66 **** --- 63,69 ---- Example: [story:email-bug About the email bug] would be translated into <a href="http://example.com/article.php/email-bug">About the email bug</a>
    + For the built-in autotags, the link text is optional and Geeklog + will use the title of the object (story / event / static page) if it is not + given.
    Predefined autotags are [story:] to link to stories and [event:] to link to events. Plugins can define their own Index: history =================================================================== RCS file: /var/cvs/geeklog-1.3/public_html/docs/history,v retrieving revision 1.256 retrieving revision 1.257 diff -C2 -d -r1.256 -r1.257 *** history 21 Nov 2004 10:15:28 -0000 1.256 --- history 28 Nov 2004 09:56:20 -0000 1.257 *************** *** 1,4 **** --- 1,15 ---- GeekLog History/Changes: + Nov 28, 2004 (1.3.10) + ------------ + + - Allow omission of the link text for the [story:], [event:], and [staticpage:] + autotags. Geeklog will then use the title (of the story / event / static page) + as the link text [Dirk] + (affected files: system/lib-plugins.php, plugins/staticpages/functions.inc) + + - Updated Chinese language files (all 4 of them), provided by Samuel M. Stone + + Nov 21, 2004 (1.3.10rc3) ------------