4f37cffbb1a5f018479c2b8dad708115265419ae
[matthijs/upstream/blosxom.git] / ChangeLog
1 v2.1.1
2     * Added CVS Id keyword to file header.
3     * Declaring $encode_xml_entities as a config option by moving it into
4       the config section -- no functionality change.
5     * Changing isPermalink back to "false" for the default RSS story
6       template because it won't be a working link in many situations.
7       This won't change the GUID, but don't let it be used as 
8       anymore. That's what the <link> tag is for anyway. Thanks to Lilo
9       von Hanffstengel for pointing this out.
10     * Rewrote the (at least with Apache 2.2's environment) no more working
11       manual base URL detection code. Made it simpler, easier to
12       understand and let it only apply, if the base URL was not set
13       manually. The concept since 2.0.2 was: Always ask for the whole URI
14       and then remove the PATH_INFO in some cases again. This caused some
15       havoc. New concept is: Strip PATH_INFO from base URL if CGI.pm
16       didn't manage to do it. In those rare cases where neither CGI.pm nor
17       Blosxom manages to correctly determine the base URL, you can easily
18       set $url in the config file to the correct value and no base URL
19       magic happens anymore (except the removing of a trailing slash if
20       present -- as before).
21     * Added a lot of comments explaining the fixed problems and the
22       remaining seldom cases where manual configuration is necessary.
23
24 v2.1.0
25     * unescape url returned from CGI.pm to match PATH_INFO escaping
26     * redo path_info handling with much stricter date tests
27     * added support for multiple plugin directories using $plugin_path
28         * changed plugin loading to use @INC instead of hardcoded 
29           $plugin_dir
30         * added support for external config file via BLOSXOM_CONFIG_DIR 
31           and/or BLOSXOM_CONFIG_FILE environment variables
32         * added support for $plugin_list plugin config file
33     * fixed several RSS and XHTML escaping issues (Closes: #1717980)
34     * made the default templates conforming to HTML 4.01
35       (Closes: #1609595)
36     * added a testsuite for blosxom
37     * added an encoding setting, defaulting to UTF-8
38     * added support for configuration files and therefore blosxom farms
39       (based on the Debian config file patch)
40     * allowed the content of the content type template to be used as
41       variable in other templates, e.g. for usage with <meta> tags.
42     * many small improvements
43     * some code refactoring (including a .perltidyrc)
44
45 v2.0.2
46     * fixed path_info to have correct extension in static mode (bug
47       1368882)
48     * fixed filtering bug in static mode (bug 1356997)
49     * changed DATA section template parsing to allow newlines for
50       greater readability, and to allow empty templates.
51     * work-around for bug in CGI::url() when using SSI
52
53 v2.0.1
54     * Fixed XML escaping of RSS feeds
55     * Ignore editor backup files in the plugin directory (i.e.
56       "myplugin~")
57     * Set path_info variables correctly for all static pages.