1 # Blosxom Plugin: uf_geo_meta
2 # Author(s): Gavin Carr <gavin@openfusion.com.au>
4 # Documentation: 'perldoc uf_geo_meta'
10 # Uncomment next line to enable debug output (don't uncomment debug() lines)
11 #use Blosxom::Debug debug_level => 1;
13 # --- Configurable variables -----
17 # Extra CSS classes to add to the microformat container e.g. to turn display off
19 #class => 'nodisplay',
21 # Whether to automatically add microformat to story bodies. If not set,
22 # you must explicitly add $uf_adr_meta::adr to a template somewhere.
23 auto_append_to_body => 1,
25 # What markup style to use for your adr, if auto-appending.
26 # 3 styles are currently defined:
27 # 'div-span' uses a 'div' elt for the container, and 'span' elements for the fields
28 # 'ul' uses a 'ul' list for the container, and 'li' elements for the fields
29 # 'dl' uses a 'dl' list for the container, 'dt' elements for field names, and
30 # 'dd' elements for the fields themselves
37 # --------------------------------
42 # Attributes which if set will cause us to skip this plugin (looks like an adr)
43 my @skip_attr = qw(locality region postal-code country-name city state postcode country);
45 $config{style} = 'div-span' unless $config{style} eq 'ul' or $config{style} eq 'dl';
49 # Return the first existing metadata item key and value given a list of keys
52 my $meta_attr = $attr;
53 $meta_attr =~ s/-/_/g;
54 my $value = $blosxom::meta{$meta_attr};
55 $value = eval "\$meta::$attr" unless defined $value;
56 return wantarray ? ( $attr, $value ) : $value if defined $value;
58 return wantarray ? () : undef;
62 my ($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_;
64 # Skip if any of the @skip_attr are set
66 return 1 if $blosxom::meta{$_} || eval "\$meta::$_";
69 my $story_style = _get_meta( 'geo_style' ) || $config{style};
70 my $ctag = $story_style eq 'div-span' ? 'div' : $story_style;
71 my $etag = $story_style eq 'div-span' ? 'span' :
72 $story_style eq 'ul' ? 'li' : 'dd';
73 my $sep = ', ' if $story_style eq 'div-span';
75 my $latitude = _get_meta('latitude');
76 my $longitude = _get_meta('longitude');
77 return 1 unless defined $latitude && defined $longitude;
80 my $container_classes = 'geo';
81 if (my $meta_class = _get_meta('geo_class')) {
82 $container_classes .= " $meta_class";
85 $container_classes .= " $config{class}" if $config{class};
88 $geo .= qq(<$ctag class="$container_classes">);
89 $geo .= qq(<dt>Latitude</dt>) if $story_style eq 'dl';
90 $geo .= qq(<$etag class="latitude">$latitude</$etag>);
91 $geo .= $sep if $story_style = 'div-span';
92 $geo .= qq(<dt>Longitude</dt>) if $story_style eq 'dl';
93 $geo .= qq(<$etag class="longitude">$longitude</$etag>);
95 # debug(1, "uf_geo_meta: $geo\n");
97 my $autoappend = _get_meta( 'geo_autoappend' );
98 $autoappend = $config{auto_append_to_body} unless defined $autoappend;
99 return 1 unless $autoappend;
101 $$body_ref .= "\n\n$geo\n\n";
112 uf_geo_meta - plugin to create a 'geo' microformat tag from post metadata
116 uf_geo_meta is a plugin to create a 'geo' microformat tag from metadata
117 in your post. The microformat tag is created in the $uf_geo_meta::geo
118 variable for use in templates or by other plugins, or if the
119 'auto_append_to_body' config variable is set (it is by default), uf_geo_meta
120 will append the tag to your story body automatically.
122 =head2 REQUIRED METADATA ITEMS
128 A decimal between -90.0 (South Pole) and +90.0 (North Pole), indicating
133 A decimal between -180.0 (western hemisphere) and +180.0 (eastern hemisphere),
134 indicating degrees of longitude.
138 If any required metadata is missing the plugin just skips the story.
140 =head2 Config Elements
142 uf_geo_meta also supports a couple of config elements that can be used to
143 override plugin config data on a per-story basis:
147 =item Geo-Class (metamail) / geo_class (meta)
149 This class (or list of classes) is appended to the class list applied to the
150 top-level geo element in the rendered geo i.e. it overrides the
151 'class' config variable.
153 =item Geo-Autoappend (metamail) / geo_autoappend (meta)
155 This is a flag (0 or 1) indicating whether the rendered geo should be
156 automatically appended to the story body. It overrides the 'auto_append_to_body'
159 =item Geo-Style (metamail) / geo_style (meta)
161 One of the following styles: 'div-span', 'ul', 'dl', used to render the geo.
162 It overrides the 'style' config variable.
168 Adding a geo microformat to your post then becomes as simple as:
172 Longitude: 151.115886
174 if using metamail, or:
177 meta-latitude: -33.717770
178 meta-longitude: 151.115886
182 uf_geo_meta should be loaded after the meta plugins (meta
183 itself, or the metaclear/metamail/metadir/metafile family).
187 Microformats.org: http://www.microformats.org/,
188 http://microformats.org/wiki/geo.
190 Blosxom: http://blosxom.sourceforge.net/
194 Gavin Carr <gavin@openfusion.com.au>, http://www.openfusion.net/
198 Copyright 2007, Gavin Carr.
200 This plugin is licensed under the same terms as blosxom itself i.e.
202 Permission is hereby granted, free of charge, to any person obtaining a
203 copy of this software and associated documentation files (the "Software"),
204 to deal in the Software without restriction, including without limitation
205 the rights to use, copy, modify, merge, publish, distribute, sublicense,
206 and/or sell copies of the Software, and to permit persons to whom the
207 Software is furnished to do so, subject to the following conditions:
209 The above copyright notice and this permission notice shall be included
210 in all copies or substantial portions of the Software.
212 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
213 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
214 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
215 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
216 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
217 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
218 OTHER DEALINGS IN THE SOFTWARE.