X-Git-Url: https://git.deb.at/?p=pkg%2Fblosxom.git;a=blobdiff_plain;f=blosxom.cgi;h=492acc880efdf20529757f6be8517716d507a269;hp=ff6bd665233727b600ea96997e8e65c1de3fc374;hb=7db2f2c32bcbdf67b4f3220d69ef015384d69815;hpb=cf8524c9718dd6ac31c92ff8742a59a80d7284b9 diff --git a/blosxom.cgi b/blosxom.cgi index ff6bd66..492acc8 100755 --- a/blosxom.cgi +++ b/blosxom.cgi @@ -2,7 +2,7 @@ # Blosxom # Author: Rael Dornfest (2002-2003), The Blosxom Development Team (2005-2008) -# Version: 2.1.2 ($Id: blosxom.cgi,v 1.87 2008/11/13 16:39:59 alfie Exp $) +# Version: 2.1.2 ($Id: blosxom.cgi,v 1.90 2009/03/08 00:50:55 xtaran Exp $) # Home/Docs/Licensing: http://blosxom.sourceforge.net/ # Development/Downloads: http://sourceforge.net/projects/blosxom @@ -50,7 +50,7 @@ like this: I have successfully installed blosxom on this system. For more information on blosxom, see the author's blosxom site. + href="http://blosxom.sourceforge.net/">blosxom site. Place the file in the directory under the I<$datadir> points to. Be sure to change the default location to be somewhere accessable by the @@ -126,11 +126,60 @@ $static_password = ""; # 0 = no, 1 = yes $static_entries = 0; +# --- Advanced Encoding Options ----- + # Should I encode entities for xml content-types? (plugins can turn this off if they do it themselves) $encode_xml_entities = 1; # -------------------------------- +=head1 ENVIRONMENT + +=over + +=item B + +Points to the location of the configuration file. This will be +considered as first option, if it's set. + + +=item B + +The here named directory will be tried unless the above mentioned +environment variable is set and tested for a contained blosxom.conf +file. + + +=back + + +=head1 FILES + +=over + +=item B + +The CGI script itself. Please note that the location might depend on +your installation. + +=item B + +The default configuration file location. This is rather taken as last +ressort if no other configuration location is set through environment +variables. + +=back + + +=head1 AUTHOR + +Rael Dornfest was the original author of blosxom. The +development was picked up by a team of dedicated users of blosxom since +2005. See > for more information. + +=cut + + use vars qw! $version $blog_title $blog_description $blog_language $blog_encoding $datadir $url %template $template $depth $num_entries $file_extension $default_flavour $static_or_dynamic $config_dir $plugin_list $plugin_path $plugin_dir $plugin_state_dir @plugins %plugins $static_dir $static_password @static_flavours $static_entries $path_info_full $path_info $path_info_yr $path_info_mo $path_info_da $path_info_mo_num $flavour $static_or_dynamic %month2num @num2month $interpolate $entries $output $header $show_future_entries %files %indexes %others $encode_xml_entities $content_type !; @@ -141,7 +190,7 @@ use File::stat; use Time::Local; use CGI qw/:standard :netscape/; -$version = "2.1.2"; +$version = "2.1.2+dev"; # Load configuration from $ENV{BLOSXOM_CONFIG_DIR}/blosxom.conf, if it exists my $blosxom_config;