= Seesaw plugin for moin =

http://seesaw.ncl.ac.uk/1.9/SeeSaw

Configuring it:
 1. Images go in `/home/moin/moin-1.9.3/MoinMoin/web/static/htdocs/seesaw/img`
 1. `seesaw.js` and `jquery*.js` go in `/home/moin/moin-1.9.3/MoinMoin/web/static/htdocs/seesaw/js`
 1. Then edit `moin-1.9.3/wiki/wikiconfig.py` to include the necessary JS {{{#!python
# near the top
from MoinMoin.config import multiconfig, url_prefix_static
...

# at the bottom:
    html_head = '''
<script type="text/javascript" src="%(url_prefix_static)s/seesaw/js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="%(url_prefix_static)s/seesaw/js/seesaw.js"></script>
''' % {'url_prefix_static':url_prefix_static}
}}}
 1. Configure Seesaw itself for the paths, `moin-1.9.3/wiki/data/plugin/macro/SeeSaw.py` {{{
#--- Configuration ----------------------------------------
from MoinMoin.config import url_prefix_static
img_prefix = url_prefix_static.rstrip("/") + "/seesaw/img"
}}}
 1. Restart the app process if not running in CGI mode (to reload the changed python files)