1 # Blosxom Plugin: config
2 # Author(s): Rael Dornfest <rael@oreilly.com>
4 # Documentation: See the bottom of this file or type: perldoc config
8 # --- Configurable variables -----
10 # --------------------------------
18 my $path = $blosxom::path_info;
23 $blosxom::others{"$blosxom::datadir$path/config.$blosxom::flavour"} and eval { require "$blosxom::datadir$path/config.$blosxom::flavour" } and ( $@ ? warn $@ : last );
24 $blosxom::others{"$blosxom::datadir$path/config"} and eval { require "$blosxom::datadir$path/config" } and ( $@ ? warn $@ : last );
25 } while ($path =~ s/(\/*[^\/]*)$// and $1);
38 Blosxom Plug-in: config
42 Override Blosxom's inline configuration settings on a per-directory, per-flavour, and per-directory-per-flavour basis.
50 Rael Dornfest <rael@oreilly.com>, http://www.raelity.org/
52 This plugin is now maintained by the Blosxom Sourceforge Team,
53 <blosxom-devel@lists.sourceforge.net>.
57 Blosxom Home/Docs/Licensing: http://blosxom.sourceforge.net/
59 Blosxom Plugin Docs: http://blosxom.sourceforge.net/documentation/users/plugins.html
63 None known; please send bug reports and feedback to the Blosxom
64 development mailing list <blosxom-devel@lists.sourceforge.net>.
68 Blosxom and this Blosxom Plug-in
69 Copyright 2003, Rael Dornfest
71 Permission is hereby granted, free of charge, to any person obtaining a
72 copy of this software and associated documentation files (the "Software"),
73 to deal in the Software without restriction, including without limitation
74 the rights to use, copy, modify, merge, publish, distribute, sublicense,
75 and/or sell copies of the Software, and to permit persons to whom the
76 Software is furnished to do so, subject to the following conditions:
78 The above copyright notice and this permission notice shall be included
79 in all copies or substantial portions of the Software.
81 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
82 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
83 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
84 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
85 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
86 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
87 OTHER DEALINGS IN THE SOFTWARE.