]> git.mjollnir.org Git - s9y.git/commitdiff
Support smartyfied categories
authorgarvinhicking <garvinhicking>
Mon, 10 Oct 2005 12:41:33 +0000 (12:41 +0000)
committergarvinhicking <garvinhicking>
Mon, 10 Oct 2005 12:41:33 +0000 (12:41 +0000)
55 files changed:
docs/NEWS
include/plugin_internal.inc.php
lang/UTF-8/serendipity_lang_bg.inc.php
lang/UTF-8/serendipity_lang_cn.inc.php
lang/UTF-8/serendipity_lang_cs.inc.php
lang/UTF-8/serendipity_lang_cz.inc.php
lang/UTF-8/serendipity_lang_da.inc.php
lang/UTF-8/serendipity_lang_de.inc.php
lang/UTF-8/serendipity_lang_en.inc.php
lang/UTF-8/serendipity_lang_es.inc.php
lang/UTF-8/serendipity_lang_fa.inc.php
lang/UTF-8/serendipity_lang_fi.inc.php
lang/UTF-8/serendipity_lang_fr.inc.php
lang/UTF-8/serendipity_lang_hu.inc.php
lang/UTF-8/serendipity_lang_is.inc.php
lang/UTF-8/serendipity_lang_it.inc.php
lang/UTF-8/serendipity_lang_ja.inc.php
lang/UTF-8/serendipity_lang_ko.inc.php
lang/UTF-8/serendipity_lang_nl.inc.php
lang/UTF-8/serendipity_lang_no.inc.php
lang/UTF-8/serendipity_lang_pt.inc.php
lang/UTF-8/serendipity_lang_pt_PT.inc.php
lang/UTF-8/serendipity_lang_ro.inc.php
lang/UTF-8/serendipity_lang_ru.inc.php
lang/UTF-8/serendipity_lang_se.inc.php
lang/UTF-8/serendipity_lang_tn.inc.php
lang/UTF-8/serendipity_lang_tw.inc.php
lang/UTF-8/serendipity_lang_zh.inc.php
lang/addlang.txt
lang/serendipity_lang_bg.inc.php
lang/serendipity_lang_cn.inc.php
lang/serendipity_lang_cs.inc.php
lang/serendipity_lang_cz.inc.php
lang/serendipity_lang_da.inc.php
lang/serendipity_lang_de.inc.php
lang/serendipity_lang_en.inc.php
lang/serendipity_lang_es.inc.php
lang/serendipity_lang_fa.inc.php
lang/serendipity_lang_fi.inc.php
lang/serendipity_lang_fr.inc.php
lang/serendipity_lang_hu.inc.php
lang/serendipity_lang_is.inc.php
lang/serendipity_lang_it.inc.php
lang/serendipity_lang_ja.inc.php
lang/serendipity_lang_ko.inc.php
lang/serendipity_lang_nl.inc.php
lang/serendipity_lang_no.inc.php
lang/serendipity_lang_pt.inc.php
lang/serendipity_lang_pt_PT.inc.php
lang/serendipity_lang_ro.inc.php
lang/serendipity_lang_ru.inc.php
lang/serendipity_lang_se.inc.php
lang/serendipity_lang_tn.inc.php
lang/serendipity_lang_tw.inc.php
lang/serendipity_lang_zh.inc.php

index ec09295cc10eae375951471c6e7285e5e4b680fa..27d73651219693b46acbc9f3158ebd4cbe8a024e 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -3,6 +3,9 @@
 Version 0.9-beta2 ()
 ------------------------------------------------------------------------
 
+    * The output of the category plugin can now be styled via Smarty
+      templating (plugin_categories.tpl)
+
     * Admin entry overview: Show pagination on bottom of the list and
       allow filtering for showing drafts/publishs (garvinhicking)
 
index b792d11a1a6980c732c4d40dbe881d4bc3f3554c..f7ca5f7cb6c4a2ec52cc3904edc0caa7a68d01cf 100644 (file)
@@ -1151,7 +1151,7 @@ class serendipity_categories_plugin extends serendipity_plugin {
         $propbag->add('stackable',     true);
         $propbag->add('author',        'Serendipity Team');
         $propbag->add('version',       '2.0');
-        $propbag->add('configuration', array('authorid', 'parent_base', 'image', 'sort_order', 'sort_method', 'allow_select', 'hide_parallel'));
+        $propbag->add('configuration', array('authorid', 'parent_base', 'image', 'sort_order', 'sort_method', 'allow_select', 'hide_parallel', 'smarty'));
         $propbag->add('groups',        array('FRONTEND_VIEWS'));
     }
 
@@ -1238,6 +1238,13 @@ class serendipity_categories_plugin extends serendipity_plugin {
                 $propbag->add('default',     serendipity_getTemplateFile('img/xml.gif'));
                 break;
 
+            case 'smarty':
+                $propbag->add('type',        'boolean');
+                $propbag->add('name',        CATEGORY_PLUGIN_TEMPLATE);
+                $propbag->add('description', CATEGORY_PLUGIN_TEMPLATE_DESC);
+                $propbag->add('default',     false);
+                break;
+
             default:
                 return false;
         }
@@ -1247,6 +1254,8 @@ class serendipity_categories_plugin extends serendipity_plugin {
     function generate_content(&$title) {
         global $serendipity;
 
+        $smarty = serendipity_db_bool($this->get_config('smarty', false));
+
         $which_category = $this->get_config('authorid');
         $sort = $this->get_config('sort_order');
         if ($sort == 'none') {
@@ -1260,7 +1269,7 @@ class serendipity_categories_plugin extends serendipity_plugin {
 
         $html       = '';
 
-        if ($is_form) {
+        if (!$smarty && $is_form) {
             $html .= '<form action="' . $serendipity['baseURL'] . $serendipity['indexFile'] . '" method="post"><div>';
         }
 
@@ -1275,7 +1284,7 @@ class serendipity_categories_plugin extends serendipity_plugin {
 
         if (is_array($categories) && count($categories)) {
             $categories = serendipity_walkRecursive($categories, 'categoryid', 'parentid', VIEWMODE_THREADED);
-            foreach ($categories as $cat) {
+            foreach ($categories as $cid => $cat) {
                 // Hide parents not wanted
                 if ($use_parent && $use_parent != 'all') {
                     if ($parentdepth == 0 && $cat['parentid'] != $use_parent && $cat['categoryid'] != $use_parent) {
@@ -1308,36 +1317,55 @@ class serendipity_categories_plugin extends serendipity_plugin {
                     }
                 }
 
-                $html .= '<div style="padding-bottom: 2px;">';
+                $categories[$cid]['feedCategoryURL'] = serendipity_feedCategoryURL($cat, 'serendipityHTTPPath');
+                $categories[$cid]['categoryURL']     = serendipity_categoryURL($cat, 'serendipityHTTPPath');
+                $categories[$cid]['paddingPx']       = $cat['depth']*6;
 
-                if ($is_form) {
-                    $html .= '<input style="width: 15px" type="checkbox" name="serendipity[multiCat][]" value="' . $cat['categoryid'] . '" />';
-                }
-
-                if ( !empty($image) ) {
-                    $html .= '<a href="'. serendipity_feedCategoryURL($cat, 'serendipityHTTPPath') .'"><img src="'. $image .'" alt="XML" style="border: 0px" /></a> ';
+                if (!$smarty) {
+                    $html .= '<div style="padding-bottom: 2px;">';
+    
+                    if ($is_form) {
+                        $html .= '<input style="width: 15px" type="checkbox" name="serendipity[multiCat][]" value="' . $cat['categoryid'] . '" />';
+                    }
+    
+                    if ( !empty($image) ) {
+                        $html .= '<a href="'. $categories[$cid]['feedCategoryURL'] .'"><img src="'. $image .'" alt="XML" style="border: 0px" /></a> ';
+                    }
+                    $html .= '<a href="'. $categories[$cid]['categoryURL'] .'" title="'. htmlspecialchars($cat['category_description']) .'" style="padding-left: '. $categories[$cid]['paddingPx'] .'px">'. htmlspecialchars($cat['category_name']) .'</a>';
+                    $html .= '</div>' . "\n";
                 }
-                $html .= '<a href="'. serendipity_categoryURL($cat, 'serendipityHTTPPath') .'" title="'. htmlspecialchars($cat['category_description']) .'" style="padding-left: '. $cat['depth']*6 .'px">'. htmlspecialchars($cat['category_name']) .'</a>';
-                $html .= '</div>' . "\n";
             }
         }
 
-        if ($is_form) {
+        if (!$smarty && $is_form) {
             $html .= '<br /><input type="submit" name="serendipity[isMultiCat]" value="' . GO . '" /><br />';
         }
 
-        $html .= sprintf(
-            '<br /><a href="%s" title="%s">%s</a>',
-
-            $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'],
-            ALL_CATEGORIES,
-            ALL_CATEGORIES
-        );
+        if (!$smarty) {
+            $html .= sprintf(
+                '<br /><a href="%s" title="%s">%s</a>',
+    
+                $serendipity['serendipityHTTPPath'] . $serendipity['indexFile'],
+                ALL_CATEGORIES,
+                ALL_CATEGORIES
+            );
+        }
 
-        if ($is_form) {
+        if (!$smarty && $is_form) {
             $html .= '</div></form>';
         }
-        print $html;
+
+        if (!$smarty) {
+            echo $html;
+        } else {
+            $serendipity['smarty']->assign(array(
+                'is_form'           => $is_form,
+                'category_image'    => $image,
+                'form_url'          => $serendipity['baseURL'] . $serendipity['indexFile'],
+                'categories'        => is_array($categories) ? $categories : array()
+            ));
+            echo serendipity_smarty_fetch('CATEGORIES', 'plugin_categories.tpl');
+        }
     }
 }
 
index 1678768f7c86b451e2415ab9b847859cee0c6a3d..a5216586badadae84928b2f844beb1602961faa8 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 4a4a33d48d65cd216c01a3f47169978bc9a34182..f88e6887796f72bd2a226270379d5ee16341a016 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 968e85331b19a4b8598d08e3b1df70d2d4b6fbe5..ceac710a9adad970eeeb3c0338117219d6d24fa8 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 3690ee65ffc440cd7681a80cb9ee47997400a241..f4d739c5d92f0fa779ba0bc19fe85f4593aa058b 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index ccefb34f24d7acb408b97a3619c6b96b621379e9..e39111e70d74885ed66481759d6bb978bdf3ffb5 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index d2bcc68a16a833fce9617b07926dfceb4ab65870..18fb0429ee7e670502822d1b221a238319936c60 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Ermöglicht Besuchern, Einträge mehrerer Autoren gleichzeitig darzustellen?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'Falls diese Option aktiviert ist, wird eine Checkbox neben jedem Autoren angezeigt, damit Besucher mehrere Autoren gleichzeitig auswählen können.');
 @define('AUTHOR_PLUGIN_DESC', 'Zeigt die Liste aller Autoren');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Smarty-Templating aktivieren?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Falls diese Option aktiviert ist, wird das Kategorie-Plugin die Liste mittels Smarty-Templates ausgeben. Durch die Aktivierung der Option kann dann das Layout mittels der Template-Datei "plugin_categories.tpl" angepasst werden. Das Aktivieren dieser Option bringt Einbußungen bei der Performance mit sich, und daher sollten Sie die Option nur dann aktivieren, wenn ihnen die Anpassungen wichtig sind.');
index e26ed732820a875084c5554f1795cede1ef5e68c..237a1294f9bf28a931a49aca4d9aa68102f2d962 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 0082650cc015f39dd3f2c99e1aa47b2cf2c93f0e..235d5ad518496d004f7eeaecc50aca6e545fbd6c 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 5b8f79b621cba54915970a54b53025e4c00a7675..16e04c1131872911e30cc2db6925df25af3fd749 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 6336afbeca9be63862a0ae90d74a2c92391c460e..802afee0a69715751bf6efe7a62bc3161ddb1bc6 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 274835b744934d0c4324913cffd065599d6bcbb7..8df80edf7ae96e435b71abeae102a3065424ff5d 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index c56ba7e808af00dd255aa7db67ac7cf978fa9089..60599f891cfd60b8075fdf25e5c636d523c89aa1 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 3d994b19485745e5e130bf3cdaaebdc4072d341f..402d36c7b3bc8d3045fd1d04ccef34773050accd 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 2cc53fd694715a284e00a07ca9019cfd3e74648e..2f4d3a01552e34d8b3ed35c40c5fe45fc7d89140 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 56d261b8342b3dfe32da79e94f9cc954760f9116..e74df9f236fe8788c567ca377ed0d2960ff4480c 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 0a52fb72048a5a60deefbd37e3ca01a1986e942a..e69363df05d93f1bacd7a446115f157f84cdf52e 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 063fc227e895cf77e521873af7fb5ec8472bd6b5..105a10b9d98f3ae857fa189f1053f8d5761476bb 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index edb6d52b3324a823c6b4a9145de805a116ffb679..bb4790cca1b8550278bac2ff9a5d48b75d4c546c 100644 (file)
@@ -1,4 +1,4 @@
-<?php # $Id: serendipity_lang_no.inc.php 522 2005-10-01 21:12:31Z jtate $
+<?php # $Id: serendipity_lang_no.inc.php 526 2005-10-04 11:36:21Z garvinhicking $
 # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
 # All rights reserved.  See LICENSE file for licensing details
 # Translation (c) by Jo Christian Oterhals <oterhals@gmail.com>
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 01aa05ba46cdb73561ab0bfc07a90eb7421752a9..47e238f1d73e592c4ddd9a098e6faa48681d118a 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 8386084458a7e0502bdf780210d35c8750035cec..ff58fec70ffd0bd0ae99f1c2801235c8cc1e671d 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 389feb96b1b3b4d7f09daf531a56ca92f0da0ab2..8fd65e2d9d28f48e32dabb0040742a5ee853b1c4 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 8a1e0a09d53083cca50d23382a459cd03d144db7..7b46470f4612a4103c0f0698934453a8a78ed850 100644 (file)
@@ -793,3 +793,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 9987b5a52804c3370cdd613c89f4262a359432d7..829bc0a8dccfdfa9132d04f907e57ef4684e7093 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index fbd29477a562d4b155d7eb71134bf8ac91ca7d76..bf0f47576f2343de5fdc4fa71cbcf50c9cba3600 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 0037550e0c313042a88a0429d74fe70015670924..712f0cca45cced4fcc1a29147d5e471ecbcc2caf 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 5e175fe9fd0c37b2555d42387d39318414412b13..68692367ed55668a79ef85b20c6bedd8223e39d0 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index a651ec09c7445b6a512c89274767af59661ba804..d3a896182c24daf0ba07ea2ea7017b08bfedad8c 100644 (file)
@@ -1 +1,2 @@
-@define('ERROR_XSRF', 'Your browser did not sent a valid HTTP-Referrer string. This may have either been caused by a misconfigured browser/proxy or by a Cross Site Request Forgery (XSRF) aimed at you. The action you requested could not be completed.');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index c381c171c6efdfa805da4a27741484bbd1cf71a8..8f65db19a7517955eab2cde8c5a4bc71347ee0f1 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 97c5fcfc23f7ad5cf0f5c78ab4930f606b08d631..ef7b7a78cc232804efb29f8f5f511b27b5b91f1b 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index e6f15401d7609f4b714f2cf0bc47cd692a2aadcf..f26b857932ad4b30b6c74285ec048dc936502f96 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 53be5d9a15f362b0e0c16ed3416306673967eda3..3313ba0f35791d7df288bf06afd819a5ae83813a 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 8abfd025f39495dbd02c7c6be9b5530420ae1cc3..f318ccfd1917c8260bf947e94f5e0117d2c6f5ab 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index c9307a874880b5861bdc47ac52868b581db8bd56..5dd28663ac8d839c0c6425de716a9927d92d4e6b 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Ermöglicht Besuchern, Einträge mehrerer Autoren gleichzeitig darzustellen?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'Falls diese Option aktiviert ist, wird eine Checkbox neben jedem Autoren angezeigt, damit Besucher mehrere Autoren gleichzeitig auswählen können.');
 @define('AUTHOR_PLUGIN_DESC', 'Zeigt die Liste aller Autoren');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Smarty-Templating aktivieren?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'Falls diese Option aktiviert ist, wird das Kategorie-Plugin die Liste mittels Smarty-Templates ausgeben. Durch die Aktivierung der Option kann dann das Layout mittels der Template-Datei "plugin_categories.tpl" angepasst werden. Das Aktivieren dieser Option bringt Einbußungen bei der Performance mit sich, und daher sollten Sie die Option nur dann aktivieren, wenn ihnen die Anpassungen wichtig sind.');
index 608997fab76dad7e2186f91320c85953c963e01e..522951139dd6b6eb9ca99e0bad27b740c481e85f 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 0777345d583cd7f157cd62987103b5cad4383814..30689b2a0b39cd318cd7b1065d4b9cb1728f368c 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 68aded86494ddb9c4991f2d86225384ea5cf9688..c02277d3e7425f46658c9e5721e8881504027d46 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index f6a626487d7812a189db3a174d16dd0808fbab2c..92cc121d46adbe7ba271810c32bdc48de7031dd9 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index d363ee7e603ea8ee0395621a133ba49c39dd9f64..44c5ec75ac58706b532be9e7d07854ac08e51c5e 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 8869ebd7077366c25a49887ccea1afd5b7ca6f6e..cb48eff2bf5b1be23f25def2fc889b5233c93513 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index eb5e6f8ee77ef140c27d4033f1ebfbf6a5e4e653..fa2bfae886c8dfeaf8c4c0106bcd0dbb15f4a480 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index d90cbe32f4a2286a3e9b73914ee5af3de30175af..c1805fa2d945c26e42d1d9bd7a517fdda7c21da5 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 80ec3689fc4262a07e3b06e3de6ffb597e5e2a3d..8c8cf18054bfac99c405c385edd2ae7fa8cddeb7 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 0b62c8f74ee2ebf3f56a3b2d9be7563688c22eb9..c28209165a038bbe5059b565ece81ccdba28db6e 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 6490ee27de8382e27c967d8d95810fe21a837f4b..ea51fec32d0605bb26a0b30587a2a8fd5b10ce06 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 2463ee986bf11c5564bfb051d2bf44b5ab8535b6..a3a699dd997d71284d6f1a0cf5c40d25c1c608b3 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 8f275c15cc3f6f1b923347339a117a46ad6b33d9..62cccf64a6afe8ac45a3a3074c5962382785a9e3 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 3f7b392c3dba055e97c9197780ae0e30b3df976c..131db5ba4e6f397f78a546151b1f0727ae5a7e29 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 389feb96b1b3b4d7f09daf531a56ca92f0da0ab2..8fd65e2d9d28f48e32dabb0040742a5ee853b1c4 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index c011653bef80d3956d0532736600e58d94bea918..0b9be08bb25abeebe96b8e8b35bd7304ff28fae6 100644 (file)
@@ -793,3 +793,5 @@ $i18n_filename_to   = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index ca4e49661e79f0fa2e99d325ea6488eac58c096c..261252e7576a2b2d15cda756a27761b5d8f19f2e 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index b02be8be7d17f85a682c35730c19be07417a49f0..fda660f87e74498e829e71bcfbfee5106fab01d3 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index ced4bb926447630a27edd9fb1798ec8e2a3e4985..6702b6f8a02cf03a0d92ef05777423726c730209 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');
index 75d2b5e87a81ccdeb2a453aa1118c037898c86f8..de9c033cdc1c4cfff5479f64a72a3942dcabb171 100644 (file)
 @define('AUTHORS_ALLOW_SELECT', 'Allow visitors to display multiple authors at once?');
 @define('AUTHORS_ALLOW_SELECT_DESC', 'If this option is enabled, a checkbox will be put next to each author in this sidebar plugin.  Users can check those boxes and see entries matching their selection.');
 @define('AUTHOR_PLUGIN_DESC', 'Shows a list of authors');
+@define('CATEGORY_PLUGIN_TEMPLATE', 'Enable Smarty-Templates?');
+@define('CATEGORY_PLUGIN_TEMPLATE_DESC', 'If this option is enabled, the plugin will utilize Smarty-Templating features to output the category listing. If you enable this, you can change the layout via the "plugin_categories.tpl" template file. Enabling this option will impact performance, so if you do not need to make customizations, leave it disabled.');