2018-02-28 11:18:30 +01:00
|
|
|
#!/usr/bin/env python3
|
2007-10-15 18:33:02 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2008-03-15 13:53:18 +01:00
|
|
|
# rst — xml-rpc-based ikiwiki plugin to process RST files
|
2007-10-15 18:33:02 +02:00
|
|
|
#
|
|
|
|
# based a little bit on rst.pm by Sergio Talens-Oliag, but only a little bit. :)
|
|
|
|
#
|
2012-09-28 04:10:57 +02:00
|
|
|
# Copyright © 2007-2008 martin f. krafft <madduck@madduck.net>
|
|
|
|
# 2007-2011 Joey Hess <joey@kitenet.net>
|
|
|
|
# 2009 Ulrik Sverdrup <ulrik.sverdrup@gmail.com>
|
|
|
|
# 2011 Simon McVittie <smcv@debian.org>
|
|
|
|
# 2012 W. Trevor King <wking@tremily.us>
|
2012-09-28 08:13:06 +02:00
|
|
|
#
|
2011-05-19 20:37:16 +02:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# .
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY IKIWIKI AND CONTRIBUTORS ``AS IS''
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION
|
|
|
|
# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
# OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
# SUCH DAMAGE.
|
2012-09-28 08:13:06 +02:00
|
|
|
#
|
2008-03-15 13:53:18 +01:00
|
|
|
__name__ = 'rst'
|
2007-10-15 18:33:02 +02:00
|
|
|
__description__ = 'xml-rpc-based ikiwiki plugin to process RST files'
|
2012-09-28 08:13:37 +02:00
|
|
|
__version__ = '0.4'
|
2007-10-15 18:33:02 +02:00
|
|
|
__author__ = 'martin f. krafft <madduck@madduck.net>'
|
|
|
|
__copyright__ = 'Copyright © ' + __author__
|
2011-05-19 20:37:16 +02:00
|
|
|
__licence__ = 'BSD-2-clause'
|
2007-10-15 18:33:02 +02:00
|
|
|
|
2012-09-28 08:16:29 +02:00
|
|
|
import sys as _sys
|
|
|
|
|
2008-03-15 13:53:18 +01:00
|
|
|
from proxy import IkiWikiProcedureProxy
|
2007-10-15 18:33:02 +02:00
|
|
|
|
2012-09-28 08:16:29 +02:00
|
|
|
|
2011-10-22 20:46:02 +02:00
|
|
|
publish_parts = None
|
|
|
|
|
2012-09-28 08:16:29 +02:00
|
|
|
|
2009-09-19 00:17:18 +02:00
|
|
|
def rst2html(proxy, *args):
|
2011-10-22 20:46:02 +02:00
|
|
|
# delayed import so docutils is only needed if you *use* rst -
|
|
|
|
# http://bugs.debian.org/637604
|
|
|
|
global publish_parts
|
|
|
|
if publish_parts is None:
|
|
|
|
try:
|
|
|
|
from docutils.core import publish_parts
|
2012-09-28 08:16:29 +02:00
|
|
|
except ImportError as e:
|
2012-10-10 14:05:06 +02:00
|
|
|
proxy.error('cannot import docutils.core: {0}: {1}'.format(
|
2012-09-28 08:16:29 +02:00
|
|
|
e.__class__.__name__, e))
|
2011-10-22 20:46:02 +02:00
|
|
|
raise
|
|
|
|
|
2009-09-19 00:17:18 +02:00
|
|
|
kwargs = _to_dict(args)
|
|
|
|
parts = publish_parts(kwargs["content"],
|
|
|
|
writer_name="html",
|
2008-03-15 13:53:18 +01:00
|
|
|
settings_overrides = { 'halt_level': 6
|
|
|
|
, 'file_insertion_enabled': 0
|
|
|
|
, 'raw_enabled': 1
|
|
|
|
})
|
|
|
|
return '\n'.join(parts['html_body'].splitlines()[1:-1])
|
2007-10-15 18:33:02 +02:00
|
|
|
|
2009-09-19 00:17:18 +02:00
|
|
|
def _to_dict(args):
|
|
|
|
# args is a list paired by key, value, so we turn it into a dict
|
|
|
|
return dict((k, v) for k, v in zip(*[iter(args)]*2))
|
|
|
|
|
2008-08-06 07:04:45 +02:00
|
|
|
def getsetup(proxy, *kwargs):
|
2010-02-12 07:10:36 +01:00
|
|
|
return 'plugin', { 'safe' : 1, 'rebuild' : 1, 'section' : 'format' }
|
2008-08-06 07:04:45 +02:00
|
|
|
|
2008-03-15 13:53:18 +01:00
|
|
|
def debug(s):
|
2012-10-10 14:05:06 +02:00
|
|
|
_sys.stderr.write(__name__ + ':DEBUG:{0}\n'.format(s))
|
2012-09-28 08:16:29 +02:00
|
|
|
_sys.stderr.flush()
|
2007-10-15 18:33:02 +02:00
|
|
|
|
2008-03-15 13:53:18 +01:00
|
|
|
proxy = IkiWikiProcedureProxy(__name__, debug_fn=None)
|
2008-08-06 07:04:45 +02:00
|
|
|
proxy.hook('getsetup', getsetup)
|
2008-03-15 20:42:52 +01:00
|
|
|
proxy.hook('htmlize', rst2html)
|
2008-03-15 13:53:18 +01:00
|
|
|
proxy.run()
|