[c-c shell] make script arguments available as __args__ in the script namespace. Use scriptargs instead of args as process_script argument name.
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr## This file is part of CubicWeb.## CubicWeb is free software: you can redistribute it and/or modify it under the# terms of the GNU Lesser General Public License as published by the Free# Software Foundation, either version 2.1 of the License, or (at your option)# any later version.## CubicWeb is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more# details.## You should have received a copy of the GNU Lesser General Public License along# with CubicWeb. If not, see <http://www.gnu.org/licenses/>."""mime type transformation engine for cubicweb, based on mtconverter"""__docformat__="restructuredtext en"fromlogilabimportmtconverterfromlogilab.mtconverter.engineimportTransformEnginefromlogilab.mtconverter.transformimportTransformfromcubicweb.uilibimportrest_publish,html_publish,remove_html_tagsHTML_MIMETYPES=('text/html','text/xhtml','application/xhtml+xml')# CubicWeb specific transformationsclassrest_to_html(Transform):inputs=('text/rest','text/x-rst')output='text/html'def_convert(self,trdata):returnrest_publish(trdata.appobject,trdata.decode())classhtml_to_html(Transform):inputs=HTML_MIMETYPESoutput='text/html'def_convert(self,trdata):returnhtml_publish(trdata.appobject,trdata.data)# Instantiate and configure the transformation enginemtconverter.UNICODE_POLICY='replace'ENGINE=TransformEngine()ENGINE.add_transform(rest_to_html())ENGINE.add_transform(html_to_html())HAS_PIL_TRANSFORMS=FalseHAS_PYGMENTS_TRANSFORMS=Falseclasshtml_to_text(Transform):inputs=HTML_MIMETYPESoutput='text/plain'def_convert(self,trdata):returnremove_html_tags(trdata.data)ENGINE.add_transform(html_to_text())