author | Julien Cristau <julien.cristau@logilab.fr> |
Mon, 27 Jul 2015 10:13:25 +0200 | |
changeset 10795 | 839ea43f4d5b |
parent 10012 | 8c2c6fdd8d56 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5611 | 18 |
"""mime type transformation engine for cubicweb, based on mtconverter""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
22 |
from logilab import mtconverter |
|
23 |
||
24 |
from logilab.mtconverter.engine import TransformEngine |
|
25 |
from logilab.mtconverter.transform import Transform |
|
26 |
from logilab.mtconverter import (register_base_transforms, |
|
1584 | 27 |
register_pil_transforms, |
0 | 28 |
register_pygments_transforms) |
29 |
||
2817
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
30 |
from cubicweb.utils import UStringIO |
10012
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
31 |
from cubicweb.uilib import rest_publish, markdown_publish, html_publish |
0 | 32 |
|
33 |
HTML_MIMETYPES = ('text/html', 'text/xhtml', 'application/xhtml+xml') |
|
34 |
||
35 |
# CubicWeb specific transformations |
|
36 |
||
37 |
class rest_to_html(Transform): |
|
38 |
inputs = ('text/rest', 'text/x-rst') |
|
39 |
output = 'text/html' |
|
40 |
def _convert(self, trdata): |
|
41 |
return rest_publish(trdata.appobject, trdata.decode()) |
|
42 |
||
10012
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
43 |
class markdown_to_html(Transform): |
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
44 |
inputs = ('text/markdown', 'text/x-markdown') |
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
45 |
output = 'text/html' |
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
46 |
def _convert(self, trdata): |
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
47 |
return markdown_publish(trdata.appobject, trdata.decode()) |
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
48 |
|
0 | 49 |
class html_to_html(Transform): |
50 |
inputs = HTML_MIMETYPES |
|
51 |
output = 'text/html' |
|
52 |
def _convert(self, trdata): |
|
53 |
return html_publish(trdata.appobject, trdata.data) |
|
1584 | 54 |
|
0 | 55 |
|
56 |
# Instantiate and configure the transformation engine |
|
57 |
||
58 |
mtconverter.UNICODE_POLICY = 'replace' |
|
59 |
||
60 |
ENGINE = TransformEngine() |
|
61 |
ENGINE.add_transform(rest_to_html()) |
|
10012
8c2c6fdd8d56
[RichString] Add markdown support
Christophe de Vienne <christophe@unlish.com>
parents:
7577
diff
changeset
|
62 |
ENGINE.add_transform(markdown_to_html()) |
0 | 63 |
ENGINE.add_transform(html_to_html()) |
704
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
64 |
|
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
65 |
try: |
2817
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
66 |
from cubicweb.ext.tal import CubicWebContext, compile_template |
704
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
67 |
except ImportError: |
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
68 |
HAS_TAL = False |
2459
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
69 |
from cubicweb import schema |
d088d0ff48a1
move RichString and co to yams, keeping only a small monkeypatch for cw-page-template here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
70 |
schema.NEED_PERM_FORMATS.remove('text/cubicweb-page-template') |
1584 | 71 |
|
704
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
72 |
else: |
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
73 |
HAS_TAL = True |
1584 | 74 |
|
704
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
75 |
class ept_to_html(Transform): |
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
76 |
inputs = ('text/cubicweb-page-template',) |
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
77 |
output = 'text/html' |
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
78 |
output_encoding = 'utf-8' |
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
79 |
def _convert(self, trdata): |
2817
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
80 |
context = CubicWebContext() |
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
81 |
appobject = trdata.appobject |
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2817
diff
changeset
|
82 |
context.update({'self': appobject, 'rset': appobject.cw_rset, |
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2817
diff
changeset
|
83 |
'req': appobject._cw, |
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2817
diff
changeset
|
84 |
'_' : appobject._cw._, |
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2817
diff
changeset
|
85 |
'user': appobject._cw.user}) |
2817
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
86 |
output = UStringIO() |
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
87 |
template = compile_template(trdata.encode(self.output_encoding)) |
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
88 |
template.expand(context, output) |
0313eecc707e
entity has no more tal_render method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2459
diff
changeset
|
89 |
return output.getvalue() |
704
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
90 |
|
0c2c8f0a6ded
new ext package for modules depending on an option third party package
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
91 |
ENGINE.add_transform(ept_to_html()) |
0 | 92 |
|
93 |
if register_pil_transforms(ENGINE, verb=False): |
|
94 |
HAS_PIL_TRANSFORMS = True |
|
95 |
else: |
|
96 |
HAS_PIL_TRANSFORMS = False |
|
1584 | 97 |
|
0 | 98 |
try: |
99 |
from logilab.mtconverter.transforms import pygmentstransforms |
|
100 |
for mt in ('text/plain',) + HTML_MIMETYPES: |
|
101 |
try: |
|
102 |
pygmentstransforms.mimetypes.remove(mt) |
|
103 |
except ValueError: |
|
104 |
continue |
|
105 |
register_pygments_transforms(ENGINE, verb=False) |
|
106 |
||
107 |
def patch_convert(cls): |
|
108 |
def _convert(self, trdata, origconvert=cls._convert): |
|
7577
9892937d9041
[all] remove pattern "try: function() except AttributeError: pass" (closes #1787966)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
5611
diff
changeset
|
109 |
add_css = getattr(trdata.appobject._cw, 'add_css', None) |
9892937d9041
[all] remove pattern "try: function() except AttributeError: pass" (closes #1787966)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
5611
diff
changeset
|
110 |
if add_css is not None: |
9892937d9041
[all] remove pattern "try: function() except AttributeError: pass" (closes #1787966)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
5611
diff
changeset
|
111 |
# session has no add_css, only http request |
9892937d9041
[all] remove pattern "try: function() except AttributeError: pass" (closes #1787966)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
5611
diff
changeset
|
112 |
add_css('pygments.css') |
0 | 113 |
return origconvert(self, trdata) |
114 |
cls._convert = _convert |
|
115 |
patch_convert(pygmentstransforms.PygmentsHTMLTransform) |
|
1584 | 116 |
|
0 | 117 |
HAS_PYGMENTS_TRANSFORMS = True |
118 |
except ImportError: |
|
119 |
HAS_PYGMENTS_TRANSFORMS = False |
|
1584 | 120 |
|
0 | 121 |
register_base_transforms(ENGINE, verb=False) |