tagging: Allow using titles in for related stories.
[matthijs/upstream/blosxom-plugins.git] / gavinc / metaclear
1 # Blosxom Plugin: metamail
2 # Author(s): Gavin Carr <gavin@openfusion.com.au>
3 # Version: 0.001001
4 # Documentation: 'perldoc metaclear'
5
6 package metaclear;
7
8 use strict;
9
10 # --- Configurable variables -----
11
12 # None
13
14 # --------------------------------
15
16 sub start { 1 };
17
18 sub story {
19   %blosxom::meta = ();
20   return 1;
21 }
22
23 1;
24
25 __END__
26
27 =head1 NAME
28
29 metaclear - clear/reset the %blosxom::meta hash at the start of a story
30
31 =head1 DESCRIPTION
32
33 metaclear is a plugin to clear/reset the %blosxom::meta hash at the start
34 of a story. It should be used with any of the new-style meta plugins like 
35 L<metamail>, L<metadir>, L<metafile>, etc., and must be called B<BEFORE> 
36 any of those.
37
38 =head1 USAGE
39
40 Should be loaded early, before all other meta plugins e.g. as 01metaclear. 
41
42 =head1 SEE ALSO
43
44 L<metamail>, L<metadir>, L<metafile>
45
46 Blosxom: http://blosxom.sourceforge.net/
47
48 =head1 BUGS
49
50 Messing with variables in other packages is evil. This should really use 
51 some kind of Blosxom::Meta API instead.
52
53 =head1 AUTHOR
54
55 Gavin Carr <gavin@openfusion.com.au>, http://www.openfusion.net/
56
57 =head1 LICENSE
58
59 Copyright 2007, Gavin Carr.
60
61 This plugin is licensed under the same terms as blosxom itself i.e.
62
63 Permission is hereby granted, free of charge, to any person obtaining a
64 copy of this software and associated documentation files (the "Software"),
65 to deal in the Software without restriction, including without limitation
66 the rights to use, copy, modify, merge, publish, distribute, sublicense,
67 and/or sell copies of the Software, and to permit persons to whom the
68 Software is furnished to do so, subject to the following conditions:
69
70 The above copyright notice and this permission notice shall be included
71 in all copies or substantial portions of the Software.
72
73 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
74 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
75 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
76 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
77 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
78 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
79 OTHER DEALINGS IN THE SOFTWARE.
80
81 =cut
82
83 # vim:ft=perl