Availability
Available as of blojsom 2.25.
Description
The Technorati tags plugin allows you to add Technorati tags
to your blog entries. The Technorati tags link back to the proper Technorati tag page to show other Technorati-tracked posts from around the web with the same tag.
Installation and Setup
In your global /WEB-INF/plugin.properties file, add the following line:
technorati-tags=org.blojsom.plugin.technorati.TechnoratiTagsPlugin
You may then add "technorati-tags" to the end of a flavor-based plugin chain. These plugin chains can be found in the individual user's plugin.properties file. For example:
html.blojsom-plugin-chain=...,technorati-tags
The plugin uses the following link template for creating Technorati tag links.
<a href="http://www.technorati.com/tag/{0}" rel="tag">{0}</a>
If you would like to override this link template, you may do so by adding a page org/blojsom/plugin/technorati/templates/technorati-tag-link.vm under your blog's templates directory. You may do this through the web administration console or through the command-line.
Usage
After installing the plugin, an editing box will show up when adding or editing a blog entry to allow you to edit the Technorati tags for the particular blog entry. You may separate individual tags using a comma.
The Technorati tags plugin adds the following meta-data to your blog entry, technorati-tags, which contains a comma-separated list of Technorati tags. If you wanted to add tags to an entry from an external editor or some other mechanism, you could use the following in the body of your blog entry.
meta-technorati-tags=foo, bar, baz
In any of your blog template pages, you can use the following Velocity macro to print out the Technorati tag links.
#TechnoratiTags($entry)