]> sipb.mit.edu Git - ikiwiki.git/blob - plugins/rst
avoid an unnecessary hash lookup
[ikiwiki.git] / plugins / rst
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # rst — xml-rpc-based ikiwiki plugin to process RST files
5 #
6 # based a little bit on rst.pm by Sergio Talens-Oliag, but only a little bit. :)
7 #
8 # Copyright © martin f. krafft <madduck@madduck.net>
9 # Released under the terms of the GNU GPL version 2
10 #
11 __name__ = 'rst'
12 __description__ = 'xml-rpc-based ikiwiki plugin to process RST files'
13 __version__ = '0.3'
14 __author__ = 'martin f. krafft <madduck@madduck.net>'
15 __copyright__ = 'Copyright © ' + __author__
16 __licence__ = 'GPLv2'
17
18 from docutils.core import publish_parts;
19 from proxy import IkiWikiProcedureProxy
20
21 def rst2html(proxy, *args):
22     kwargs = _to_dict(args)
23     parts = publish_parts(kwargs["content"],
24                           writer_name="html",
25                           settings_overrides = { 'halt_level': 6
26                                                , 'file_insertion_enabled': 0
27                                                , 'raw_enabled': 1
28                                                })
29     return '\n'.join(parts['html_body'].splitlines()[1:-1])
30
31 def _to_dict(args):
32     # args is a list paired by key, value, so we turn it into a dict
33     return dict((k, v) for k, v in zip(*[iter(args)]*2))
34
35 def getsetup(proxy, *kwargs):
36     return 'plugin', { 'safe' : 1, 'rebuild' : 1, 'section' : 'format' }
37
38 import sys
39 def debug(s):
40     sys.stderr.write(__name__ + ':DEBUG:%s\n' % s)
41     sys.stderr.flush()
42
43 proxy = IkiWikiProcedureProxy(__name__, debug_fn=None)
44 proxy.hook('getsetup', getsetup)
45 proxy.hook('htmlize', rst2html)
46 proxy.run()