Source code for bpy.handlers.text
# Copyright (C) 2013, 2014 Yu-Jie Lin
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
The Text handler for plain text always escape HTML, and add ``<br/>`` if not
``pre_wrap``.
You can specify the following options for plain text in :ref:`brc.py`, for
example:
.. code:: python
handlers = {
'Text': {
'options': {
'pre_wrap': False
},
},
}
``pre_wrap`` will wrap output in ``<pre/>`` tag.
"""
from __future__ import print_function, unicode_literals
import cgi
import re
from bpy.handlers import base
[docs]class Handler(base.BaseHandler):
"""Handler for plain text
>>> handler = Handler(None)
>>> handler.markup = 'post <content>\\n & something'
>>> print(handler.generate())
post <content><br/>
& something
>>> handler.options['pre_wrap'] = True
>>> print(handler.generate())
<pre>post <content>
& something</pre>
>>> handler = Handler(None)
>>> print(handler.generate_header({'title': 'foobar'}))
!b
title: foobar
<BLANKLINE>
"""
PREFIX_HEAD = ''
PREFIX_END = ''
HEADER_FMT = '%s: %s'
SUPPORT_EMBED_IMAGES = False
[docs] def generate_title(self, markup=None):
"""Generate HTML from plain text
>>> handler = Handler(None)
>>> print(handler.generate_title('a < b\\nc & d\\n\\nfoo'))
a < b c & d foo
"""
html = super(Handler, self).generate_title(markup)
html = html.replace('<pre>', '').replace('</pre>', '')
return re.sub('(<br/> )+', ' ', html)
def _generate(self, markup=None):
"""Generate HTML from plain text
>>> handler = Handler(None)
>>> print(handler._generate('a < b\\nc & d\\n\\xc3\\xa1'))
a < b<br/>
c & d<br/>
\xc3\xa1
>>> handler.options['pre_wrap'] = True
>>> print(handler._generate('abc\\ndef'))
<pre>abc
def</pre>
"""
if markup is None:
markup = self.markup
html = cgi.escape(markup)
if self.options.get('pre_wrap', False):
return '<pre>%s</pre>' % html
else:
return html.replace('\n', '<br/>\n')