diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-06 01:04:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-06 01:04:45 -0400 |
commit | 68018323aebcd89a5b674e7fd512c4ecd6c0f435 (patch) | |
tree | 8b2719ebe9e07a25b90a4d2d20ed9b09793794ea /plugins | |
parent | 4c07e7362c162800735c07bc9616e3680ccb2544 (diff) |
add getsetup hook
in python, even, wow
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/rst b/plugins/rst index 350b76dfa..a2d07ebcf 100755 --- a/plugins/rst +++ b/plugins/rst @@ -28,11 +28,15 @@ def rst2html(proxy, *kwargs): }) return '\n'.join(parts['html_body'].splitlines()[1:-1]) +def getsetup(proxy, *kwargs): + return 'plugin', { 'safe' : 1, 'rebuild' : 1 } + import sys def debug(s): sys.stderr.write(__name__ + ':DEBUG:%s\n' % s) sys.stderr.flush() proxy = IkiWikiProcedureProxy(__name__, debug_fn=None) +proxy.hook('getsetup', getsetup) proxy.hook('htmlize', rst2html) proxy.run() |