Add a bunch of Rael plugins.
[matthijs/upstream/blosxom-plugins.git] / general / fauxami
1 # Blosxom Plugin: fauxami
2 # Author(s): Rael Dornfest <rael@oreilly.com> 
3 # Version: 2.0b4
4 # Documentation: See the bottom of this file or type: perldoc whoami
5
6 package fauxami;
7
8 # --- Configurable variables -----
9
10 # What should I consider a delimiter between poster's name 
11 # and the rest of the filename (e.g. . for jack.story1.txt)?
12 my $delimiter = '\.';
13
14 # What should I fall back to as the default name (leave blank for none)?
15 my $default_name = '';
16
17 # --------------------------------
18
19 $name;
20
21 use File::stat;
22
23 sub start {
24   1;
25 }
26
27 sub story {
28   my($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_;
29
30   $name = $filename =~ m!^(.+)$delimiter(.+)$! ? $1 : $default_name;
31
32   1;
33 }
34
35 1;
36
37 __END__
38
39 =head1 NAME
40
41 Blosxom Plug-in: fauxami
42
43 =head1 SYNOPSIS
44
45 Populates $fauxami::name with the "name" of the person
46 posting the weblog entry, using anything before a specified delimiter
47 ( the default is . ) as the "name."  So, jack.story1.txt would yield
48 a $fauxami::name of jack and jill.story2.txt would yield a $fauxami::name
49 of jill.
50
51 You can optionally provide a $default_name, used when no faux name is
52 specified.
53
54 =head1 VERSION
55
56 2.0b4
57
58 Version number coincides with the version of Blosxom with which the 
59 current version was first bundled.
60
61 =head1 AUTHOR
62
63 Rael Dornfest  <rael@oreilly.com>, http://www.raelity.org/
64
65 =head1 SEE ALSO
66
67 Blosxom Home/Docs/Licensing: http://www.raelity.org/apps/blosxom/
68
69 Blosxom Plugin Docs: http://www.raelity.org/apps/blosxom/plugin.shtml
70
71 =head1 BUGS
72
73 Address bug reports and comments to the Blosxom mailing list 
74 [http://www.yahoogroups.com/group/blosxom].
75
76 =head1 LICENSE
77
78 Blosxom and this Blosxom Plug-in
79 Copyright 2003, Rael Dornfest 
80
81 Permission is hereby granted, free of charge, to any person obtaining a
82 copy of this software and associated documentation files (the "Software"),
83 to deal in the Software without restriction, including without limitation
84 the rights to use, copy, modify, merge, publish, distribute, sublicense,
85 and/or sell copies of the Software, and to permit persons to whom the
86 Software is furnished to do so, subject to the following conditions:
87
88 The above copyright notice and this permission notice shall be included
89 in all copies or substantial portions of the Software.
90
91 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
92 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
93 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
94 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
95 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
96 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
97 OTHER DEALINGS IN THE SOFTWARE.