Version 3, changed by admin. 10/27/2006. Show version history
| Plugin Name: | Backlinks Plugin |
| Short Description: | Displays a list of pages with incoming links in the toolbar |
| Screenshot Name: | backlinksPlugin.png (attach to this page) |
| Version: | 1.0 |
| Author: | ScottMcmullan |
| Website: | http://developer.jot.com |
| License | Freeware |
| License Detail: |
Image: backlinksPlugin.png
Puts a bulleted list of backlinks in the toolbar of every page.
This plugin was originally created for this blog post.
The plugin code below, if present, is for copying and pasting into a new plugin you create "by hand". It's really easy to do -- see the instructions for an overview.
However if there's a package (zip file) attached to this page, this plugin can be installed directly via More Actions -> Manage Packages in your wiki.
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:jot="http://www.foopee.com/ns/s3/srvtmpl/"> <jot:extension target="sidebarBottom"> <div class="jot-miniWindow" id="backlinks-plugin"> <h3 onclick="Expander.toggle('backlinks-plugin')">Incoming Links</h3> <div class="jot-content"> <p> <jot:search forLink="${page/path}" set="backLinksSet" /> </p> <jot:loop over="backLinksSet"> <ul> <li> <a href="${it/name}">${it/name}</a> </li> </ul> </jot:loop> </div> </div> </jot:extension> </html>