add getsetup hook

in python, even, wow
master
Joey Hess 2008-08-06 01:04:45 -04:00
parent 4c07e7362c
commit 68018323ae
1 changed files with 4 additions and 0 deletions

View File

@ -28,11 +28,15 @@ def rst2html(proxy, *kwargs):
}) })
return '\n'.join(parts['html_body'].splitlines()[1:-1]) return '\n'.join(parts['html_body'].splitlines()[1:-1])
def getsetup(proxy, *kwargs):
return 'plugin', { 'safe' : 1, 'rebuild' : 1 }
import sys import sys
def debug(s): def debug(s):
sys.stderr.write(__name__ + ':DEBUG:%s\n' % s) sys.stderr.write(__name__ + ':DEBUG:%s\n' % s)
sys.stderr.flush() sys.stderr.flush()
proxy = IkiWikiProcedureProxy(__name__, debug_fn=None) proxy = IkiWikiProcedureProxy(__name__, debug_fn=None)
proxy.hook('getsetup', getsetup)
proxy.hook('htmlize', rst2html) proxy.hook('htmlize', rst2html)
proxy.run() proxy.run()