Update perldocs in general plugins to point to current website/mailing list.
[blosxom-plugins.git] / general / uselib
blob427b5a72628f761fdbf6ba7ac29af71e2e1a9308
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 
6 package uselib;
8 sub start {
9    use lib "$blosxom::plugin_dir/lib";
10    1;
15 __END__
17 =head1 NAME
19 Blosxom Plug-in: uselib 
21 =head1 SYNOPSIS
23 Get modules from $blosxom::plugin_dir/lib
25 =head1 VERSION
27 0.0.1
29 =head1 AUTHOR
31 Mark Ivey <zovirl@zovirl.com>
33 This plugin is now maintained by the Blosxom Sourceforge Team,
34 <blosxom-devel@lists.sourceforge.net>.
36 =head1 DESCRIPTION
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.
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).
47 =head1 SEE ALSO
49 Blosxom Home/Docs/Licensing: http://blosxom.sourceforge.net/
51 Blosxom Plugin Docs: http://blosxom.sourceforge.net/documentation/users/plugins.html
53 =head1 BUGS
55 None known; please send bug reports and feedback to the Blosxom
56 development mailing list <blosxom-devel@lists.sourceforge.net>.
58 =head1 LICENSE
60 uselib Blosxom plugin
61 Copyright 2003, Mark Ivey
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:
71 The above copyright notice and this permission notice shall be included 
72 in all copies or substantial portions of the Software.
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.