Changeset 250
- Timestamp:
- 09/26/06 23:56:59 (2 years ago)
- Files:
-
- Mapper/trunk/Mapper.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Mapper/trunk/Mapper.pl
r200 r250 15 15 use MT::ConfigMgr; 16 16 use base 'MT::Plugin'; 17 use vars qw($VERSION);18 17 19 18 sub BEGIN { 20 $VERSION = '0.11';19 our $VERSION = '0.12'; 21 20 my $plugin = MT::Plugin::Mapper->new({ 22 21 name => 'Mapper', 23 22 version => $VERSION, 24 23 description => 'This plugin enables MTMapper container tag, which converts "[map:address-description]" string into an embeded map provided by mapping services such as Google Maps.', 25 doc_link => 'http:// as-is.net/wiki/Mapper_Plugin',24 doc_link => 'http://code.as-is.net/wiki/Mapper_Plugin', 26 25 author_name => 'Hirotaka Ogawa', 27 26 author_link => 'http://profile.typekey.com/ogawa/', 28 27 blog_config_template => \&blog_config_template, 29 28 settings => new MT::PluginSettings([ 30 ['google_maps_key', { Default => '' }]31 ])32 });29 ['google_maps_key', { Default => '' }] 30 ]), 31 }); 33 32 MT->add_plugin($plugin); 34 33 MT::Template::Context->add_container_tag(Mapper => sub { $plugin->mapper(@_) }); … … 60 59 <p>This plugin enables MTMapper container tag, which converts "[map:address-description]" string into an embeded map provided by mapping services such as Google Maps.</p> 61 60 62 <p>For more details, see <a href="http:// as-is.net/blog/archives/001108.html">"MTMapper Plugin - Ogawa::Memoranda"</a>.</p>61 <p>For more details, see <a href="http://code.as-is.net/wiki/Mapper_Plugin">"Mapper Plugin"</a>.</p> 63 62 64 63 <div class="setting"> … … 135 134 //<