tagging: Allow using titles in for related stories.
[matthijs/upstream/blosxom-plugins.git] / general / uselib
1 # Blosxom Plugin: uselib 
2 # Author(s): Mark Ivey <zovirl@zovirl.com> 
3 # Version: 0.0.1
4 # Documentation: See the bottom of this file or type: perldoc uselib 
5
6 package uselib;
7
8 sub start {
9    use lib "$blosxom::plugin_dir/lib";
10    1;
11 }
12
13 1;
14
15 __END__
16
17 =head1 NAME
18
19 Blosxom Plug-in: uselib 
20
21 =head1 SYNOPSIS
22
23 Get modules from $blosxom::plugin_dir/lib
24
25 =head1 VERSION
26
27 0.0.1
28
29 =head1 AUTHOR
30
31 Mark Ivey <zovirl@zovirl.com>
32
33 This plugin is now maintained by the Blosxom Sourceforge Team,
34 <blosxom-devel@lists.sourceforge.net>.
35
36 =head1 DESCRIPTION
37
38 Tells perl to look for perl modules in $blosxom::plugin_dir/lib.  This
39 gives users a standard place to install modules such as MIME::Types or 
40 File::Cat.  For example, Cat.pm would be installed to 
41 $blosxom::plugin_dir/lib/File.
42
43 Obviously, this plugin should be loaded before any plugins that need 
44 modules.  I accomplished this by renaming it to 01uselib (00 is taken by 
45 seeerror).
46
47 =head1 SEE ALSO
48
49 Blosxom Home/Docs/Licensing: http://blosxom.sourceforge.net/
50
51 Blosxom Plugin Docs: http://blosxom.sourceforge.net/documentation/users/plugins.html
52
53 =head1 BUGS
54
55 None known; please send bug reports and feedback to the Blosxom
56 development mailing list <blosxom-devel@lists.sourceforge.net>.
57
58 =head1 LICENSE
59
60 uselib Blosxom plugin
61 Copyright 2003, Mark Ivey
62
63 Permission is hereby granted, free of charge, to any person obtaining a 
64 copy of this software and associated documentation files (the 
65 "Software"), to deal in the Software without restriction, including 
66 without limitation the rights to use, copy, modify, merge, publish, 
67 distribute, sublicense, and/or sell copies of the Software, and to permit 
68 persons to whom the Software is furnished to do so, subject to the 
69 following conditions:
70
71 The above copyright notice and this permission notice shall be included 
72 in all copies or substantial portions of the Software.
73
74 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
75 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
76 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 
77 NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
78 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
79 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 
80 USE OR OTHER DEALINGS IN THE SOFTWARE. 
81