]> git.deb.at Git - pkg/blosxom.git/commitdiff
Update blosxom.conf with additional configuration variables
authorGerfried Fuchs <rhonda@debian.at>
Fri, 25 Jul 2008 14:40:47 +0000 (16:40 +0200)
committerGerfried Fuchs <rhonda@debian.at>
Fri, 25 Jul 2008 14:40:47 +0000 (16:40 +0200)
debian/blosxom.conf

index ee0136b49966f41b3cf78a561a5b6431898b7168..91c1f9c1c649b3652b48f4ba8ceb3ae596b2ac41 100644 (file)
 # Copyright 2003  Dirk Eddelbuettel <edd@debian.org> and GPL'ed
 
 # Blosxom
-# Author: Rael Dornfest <rael@oreilly.com>
-# Version: 2.0
-# Home/Docs/Licensing: http://www.raelity.org/apps/blosxom/
+# Author: Rael Dornfest (2003), The Blosxom Development Team (2005-2008)
+# Version: 2.1.0
+# Home/Docs/Licensing: http://blosxom.sourceforge.net/
+# Development/Downloads: http://sourceforge.net/projects/blosxom
 
 # --- Configurable variables -----
 
@@ -29,6 +30,9 @@
 # What's this blog's primary language (for outgoing RSS feed)?
 # $blog_language = "en";
 
+# What's this blog's text encoding ?
+# $blog_encoding = "UTF-8";
+
 # Where are this blog's entries kept?
 # $datadir = "/Library/WebServer/Documents/blosxom";
 $datadir = "/var/lib/blosxom/data";
@@ -50,14 +54,24 @@ $datadir = "/var/lib/blosxom/data";
 # What is the default flavour?
 # $default_flavour = "html";
 
+# Should I show entries from the future (i.e. dated after now)?
+# $show_future_entries = 0;
+
 # --- Plugins (Optional) -----
 
+# File listing plugins blosxom should load
+# (if empty blosxom will load all plugins in $plugin_dir and $plugin_path directories)
+# $plugin_list = "";
+
 # Where are my plugins kept?
 $plugin_dir = "/etc/blosxom/plugins";
 
-# Where should my modules keep their state information?
+# Where should my plugins keep their state information?
 $plugin_state_dir = "/var/lib/blosxom/state";
 
+# Additional plugins location
+# List of directories, separated by ';' on windows, ':' everywhere else
+# $plugin_path = "";
 
 # --- Static Rendering -----