Fix minor typos in google_highlight and kwiki plugins.
[blosxom-plugins.git] / general / kwiki
blobc70a40a011a49395c8630dc59e0a6620baa0ae55
1 # Blosxom Plugin: kwiki
2 # Author(s): Rael Dornfest <rael@oreilly.com> 
3 # Version: 2003-07-27
4 # Documentation: See the bottom of this file or type: perldoc kwiki
6 package kwiki;
8 # --- Configurable variables -----
10 # --------------------------------
12 use CGI::Kwiki::Formatter;
14 sub start {
15   return $meta::markup eq 'kwiki' ? 1 : 0;
18 sub story {
19   my($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_;
21   $$body_ref = CGI::Kwiki::Formatter->process($$body_ref);
22   
23   return 1;
28 __END__
30 =head1 NAME
32 Blosxom Plug-in: kwiki
34 =head1 SYNOPSIS
36 Purpose: Uses Brian Ingerson's Kwiki [http://www.kwiki.org/] wiki software
37 as a formatting tool for Weblog entries.
39 =head1 PREREQUISITES
41 The CGI::Kwiki Perl module.
43 =head1 VERSION
45 2003-07-27
47 =head1 AUTHOR
49 Rael Dornfest  <rael@oreilly.com>, http://www.raelity.org/
51 This plugin is now maintained by the Blosxom Sourceforge Team,
52 <blosxom-devel@lists.sourceforge.net>.
54 =head1 SEE ALSO
56 Blosxom Home/Docs/Licensing: http://blosxom.sourceforge.net/
58 Blosxom Plugin Docs: http://blosxom.sourceforge.net/documentation/users/plugins.html
60 =head1 BUGS
62 None known; please send bug reports and feedback to the Blosxom
63 development mailing list <blosxom-devel@lists.sourceforge.net>.
65 =head1 LICENSE
67 Blosxom and this Blosxom Plug-in
68 Copyright 2003, Rael Dornfest 
70 Permission is hereby granted, free of charge, to any person obtaining a
71 copy of this software and associated documentation files (the "Software"),
72 to deal in the Software without restriction, including without limitation
73 the rights to use, copy, modify, merge, publish, distribute, sublicense,
74 and/or sell copies of the Software, and to permit persons to whom the
75 Software is furnished to do so, subject to the following conditions:
77 The above copyright notice and this permission notice shall be included
78 in all copies or substantial portions of the Software.
80 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
83 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
84 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
85 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
86 OTHER DEALINGS IN THE SOFTWARE.