1 # Blosxom Plugin: hcard
2 # Author(s): Gavin Carr <gavin@openfusion.com.au>
4 # Documentation: 'perldoc hcard'
5 # Requires: metaclear, metamail, uf_hcard_meta
12 # Uncomment next line to enable debug output (don't uncomment debug() lines)
13 #use Blosxom::Debug debug_level => 1;
15 # --- Configuration defaults -----
19 # Where is the hcard metadata?
20 $config{hcard_meta_file} = "$blosxom::datadir/hcard.yml";
22 # --------------------------------
29 # Check $hcard_meta_file exists
30 unless (-f $config{hcard_meta_file}) {
31 warn "(hcard) cannot find hcard_meta_file file '$config{hcard_meta_file}' - aborting\n";
38 my $hcard_fh = IO::File->new( $config{hcard_meta_file}, 'r' )
39 or warn "(hcard) cannot open hcard_meta_file file '$config{hcard_meta_file}': $! - aborting\n"
41 my @hcard_data = <$hcard_fh>;
42 my $hcard_title = $hcard_data[0];
44 my $hcard_body = join '', @hcard_data[ 1 .. $#hcard_data ];
46 # debug(1, "hcard_body: $hcard_body");
48 unless ($hcard_body) {
49 warn "(hcard) no data found in hcard_meta_file file '$config{hcard_meta_file}' - aborting\n";
53 # Fake story calls to metaclear, metamail and uf_hcard_meta to render the hcard
54 my @story_args = ( undef, undef, undef, undef, \$hcard_title, \$hcard_body );
55 metaclear::story( @story_args );
56 metamail::story( @story_args );
57 uf_hcard_meta::story( @story_args );
59 $hcard = $uf_hcard_meta::hcard;
70 hcard - blosxom plugin to set a global $hcard::hcard variable for use in templates
74 L<hcard> is a blosxom plugin to set a global $hcard::hcard variable for use in
75 templates. It is intended to allow you to set up a global hcard for yourself
76 to be displayed somewhere in your blog template.
78 To use, simply define the set of hcard data you want to use in the 'hcard_meta_file'
79 file ($blosxom::datadir/hcard.yml, by default).
83 Here's an example hcard.yml for me:
86 Organisation: Open Fusion
88 Email: gavin@openfusion.com.au
89 URL: http://www.openfusion.net/
96 HCard-Class: nodisplay
101 L<hcard> requires the L<uf_hcard_meta>, L<metaclear>, and L<metamail> plugins,
102 but has no particular ordering requirements with respect to them.
106 L<uf_hcard_meta>, L<metaclear>, L<metamail>.
108 Microformats.org: http://www.microformats.org/, http://microformats.org/wiki/hcard.
110 Blosxom: http://blosxom.sourceforge.net/
114 Gavin Carr <gavin@openfusion.com.au>, http://www.openfusion.net/
118 Copyright 2007, Gavin Carr.
120 This plugin is licensed under the same terms as blosxom itself i.e.
122 Permission is hereby granted, free of charge, to any person obtaining a
123 copy of this software and associated documentation files (the "Software"),
124 to deal in the Software without restriction, including without limitation
125 the rights to use, copy, modify, merge, publish, distribute, sublicense,
126 and/or sell copies of the Software, and to permit persons to whom the
127 Software is furnished to do so, subject to the following conditions:
129 The above copyright notice and this permission notice shall be included
130 in all copies or substantial portions of the Software.
132 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
133 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
134 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
135 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
136 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
137 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
138 OTHER DEALINGS IN THE SOFTWARE.