Add the moved $encode_xml_entities config option to blosxom.conf, too.
[matthijs/upstream/blosxom.git] / debian / blosxom.conf
1 # blosxom  --  resource file for the Debian GNU/Linux package 
2 #              of the blosxom weblog application
3 #
4 # This file is sourced by /usr/lib/cgi-bin/blosxom. 
5 #
6 # Storing values here instead of directly in the Perl code permits 
7 # easier upgrades of the package without risks of losing these very 
8 # configuration settings. 
9 #
10 # Whichever variable ought to get adjusted can be set here. Values in
11 # cgi script act as default which may be overwritten from here.
12 #
13 # The Debian GNU/Linux extensions to blosxom are 
14 # Copyright 2003  Dirk Eddelbuettel <edd@debian.org> and GPL'ed
15
16 # Blosxom
17 # Author: Rael Dornfest (2003), The Blosxom Development Team (2005-2008)
18 # Version: 2.1.0
19 # Home/Docs/Licensing: http://blosxom.sourceforge.net/
20 # Development/Downloads: http://sourceforge.net/projects/blosxom
21
22 # --- Configurable variables -----
23
24 # What's this blog's title?
25 # $blog_title = "My (Debian) Blosxom";
26
27 # What's this blog's description (for outgoing RSS feed)?
28 # $blog_description = "Yet another (Debian based) Blosxom blog.";
29
30 # What's this blog's primary language (for outgoing RSS feed)?
31 # $blog_language = "en";
32
33 # What's this blog's text encoding ?
34 # $blog_encoding = "UTF-8";
35
36 # Where are this blog's entries kept?
37 # $datadir = "/Library/WebServer/Documents/blosxom";
38 $datadir = "/var/lib/blosxom/data";
39
40 # What's my preferred base URL for this blog (leave blank for automatic)?
41 # $url = "";
42
43 # Should I stick only to the datadir for items or travel down the
44 # directory hierarchy looking for items?  If so, to what depth?
45 # 0 = infinite depth (aka grab everything), 1 = datadir only, n = n levels down
46 # $depth = 0;
47
48 # How many entries should I show on the home page?
49 # $num_entries = 40;
50
51 # What file extension signifies a blosxom entry?
52 # $file_extension = "txt";
53
54 # What is the default flavour?
55 # $default_flavour = "html";
56
57 # Should I show entries from the future (i.e. dated after now)?
58 # $show_future_entries = 0;
59
60 # --- Plugins (Optional) -----
61
62 # File listing plugins blosxom should load
63 # (if empty blosxom will load all plugins in $plugin_dir and $plugin_path directories)
64 # $plugin_list = "";
65
66 # Where are my plugins kept?
67 $plugin_dir = "/etc/blosxom/plugins";
68
69 # Where should my plugins keep their state information?
70 $plugin_state_dir = "/var/lib/blosxom/state";
71
72 # Additional plugins location
73 # List of directories, separated by ';' on windows, ':' everywhere else
74 # $plugin_path = "";
75
76 # --- Static Rendering -----
77
78 # Where are this blog's static files to be created?
79 # $static_dir = "/Library/WebServer/Documents/blog";
80 $static_dir = "/var/lib/blosxom/static";
81
82 # What's my administrative password (you must set this for static rendering)?
83 # $static_password = "";
84
85 # What flavours should I generate statically?
86 # @static_flavours = qw/html rss/;
87
88 # Should I statically generate individual entries?
89 # 0 = no, 1 = yes
90 # $static_entries = 0;
91
92 # Should I encode entities for xml content-types? (plugins can turn this off if they do it themselves)
93 # $encode_xml_entities = 1;
94
95 # ------------ leave this last line
96
97 1;
98