From: Benoît Pin Date: Wed, 16 Jul 2014 09:33:07 +0000 (+0200) Subject: Tabs -> 4 × spaces X-Git-Url: https://scm.cri.ensmp.fr/git/Plinn.git/commitdiff_plain/8a303e66fd249f6bb2f9ba0522eca355fe401ab6 Tabs -> 4 × spaces --- diff --git a/__init__.py b/__init__.py index 16c9e72..d4f4f53 100755 --- a/__init__.py +++ b/__init__.py @@ -1,21 +1,21 @@ # -*- coding: utf-8 -*- ####################################################################################### -# Plinn - http://plinn.org # -# Copyright (C) 2005-2007 Benoît PIN # -# # -# This program is free software; you can redistribute it and/or # -# modify it under the terms of the GNU General Public License # -# as published by the Free Software Foundation; either version 2 # -# of the License, or (at your option) any later version. # -# # -# This program 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 General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with this program; if not, write to the Free Software # -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # +# Plinn - http://plinn.org # +# Copyright (C) 2005-2007 Benoît PIN # +# # +# This program is free software; you can redistribute it and/or # +# modify it under the terms of the GNU General Public License # +# as published by the Free Software Foundation; either version 2 # +# of the License, or (at your option) any later version. # +# # +# This program 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 General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program; if not, write to the Free Software # +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # ####################################################################################### """ Plinn implementation of CMFCore. @@ -51,14 +51,14 @@ contentClasses = (File.File, Folder.PlinnFolder, HugePlinnFolder.HugePlinnFolder contentConstructors = (File.addFile, Folder.manage_addPlinnFolder, HugePlinnFolder.manage_addHugePlinnFolder, Topic.addTopic) tools = ( MembershipTool.MembershipTool - , MemberDataTool.MemberDataTool - , GroupsTool.GroupsTool - , GroupDataTool.GroupDataTool - , RegistrationTool.RegistrationTool - , CalendarTool.CalendarTool - , AttachmentTool.AttachmentTool - , catalog.CatalogTool - ) + , MemberDataTool.MemberDataTool + , GroupsTool.GroupsTool + , GroupDataTool.GroupDataTool + , RegistrationTool.RegistrationTool + , CalendarTool.CalendarTool + , AttachmentTool.AttachmentTool + , catalog.CatalogTool + ) # register files extensions registerFileExtension('ttf', FSFile) @@ -66,32 +66,32 @@ registerFileExtension('eot', FSFile) registerFileExtension('cur', FSFile) def initialize(registrar) : - - allow_module('quopri') - allow_module('Products.Plinn.PloneMisc') - allow_class(IndexIterator) - allow_class(Batch) - - core_cmf_utils.ContentInit( - 'Plinn', - content_types = contentClasses, - permission = AddPortalContent, - extra_constructors = contentConstructors, - ).initialize(registrar) - - core_cmf_utils.ToolInit('Plinn Tool', - tools = tools, - icon = 'tool.gif' - ).initialize(registrar) - - + + allow_module('quopri') + allow_module('Products.Plinn.PloneMisc') + allow_class(IndexIterator) + allow_class(Batch) + + core_cmf_utils.ContentInit( + 'Plinn', + content_types = contentClasses, + permission = AddPortalContent, + extra_constructors = contentConstructors, + ).initialize(registrar) + + core_cmf_utils.ToolInit('Plinn Tool', + tools = tools, + icon = 'tool.gif' + ).initialize(registrar) + + # Monkey... # all tags are good ! validTags = default_cmf_utils.NASTY_TAGS.copy() for tag in validTags.keys() : - validTags[tag] = 1 + validTags[tag] = 1 VALID_TAGS = {'font': 1, 'param' : 1, 'iframe' : 1} @@ -113,27 +113,27 @@ from urllib import quote from Products.CMFCore.utils import getToolByName def getIcon(self, relative_to_portal=0): - """ - Using this method allows the content class - creator to grab icons on the fly instead of using a fixed - attribute on the class. - """ - ti = self.getTypeInfo() - if ti is not None: - icon = quote(ti.getIcon()) - if icon: - if relative_to_portal: - return icon - else: - # Relative to REQUEST['BASEPATH1'] - portal_url = getToolByName( self, 'portal_url' ) - res = portal_url(relative=1) + '/' + icon - while res[:1] == '/': - res = res[1:] - return res - return 'misc_/OFSP/dtmldoc.gif' - -icon = getIcon # For the ZMI + """ + Using this method allows the content class + creator to grab icons on the fly instead of using a fixed + attribute on the class. + """ + ti = self.getTypeInfo() + if ti is not None: + icon = quote(ti.getIcon()) + if icon: + if relative_to_portal: + return icon + else: + # Relative to REQUEST['BASEPATH1'] + portal_url = getToolByName( self, 'portal_url' ) + res = portal_url(relative=1) + '/' + icon + while res[:1] == '/': + res = res[1:] + return res + return 'misc_/OFSP/dtmldoc.gif' + +icon = getIcon # For the ZMI from Products.CMFCore.DynamicType import DynamicType DynamicType.getIcon = getIcon