############################################################################## # # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE # # THIS FILE CONTAINS MODIFIED CODE FROM ZOPE 2.6.2 ########################################################################## """ Customizable validated page templates that come from the filesystem. """ import copy from zope.tales.tales import CompilerError import Globals, Acquisition from AccessControl import ClassSecurityInfo from OFS.Cache import Cacheable from Products.PageTemplates.ZopePageTemplate import Src from Products.CMFCore.DirectoryView import registerFileExtension, registerMetaType from Products.CMFCore.permissions import View from Products.CMFCore.FSPageTemplate import FSPageTemplate as BaseClass from BaseControllerPageTemplate import BaseControllerPageTemplate from ControllerPageTemplate import ControllerPageTemplate from FSControllerBase import FSControllerBase from utils import log, logException class FSControllerPageTemplate(FSControllerBase, BaseClass, BaseControllerPageTemplate): """Wrapper for Controller Page Template""" meta_type = 'Filesystem Controller Page Template' manage_options=( ({'label':'Customize', 'action':'manage_main'}, {'label':'Test', 'action':'ZScriptHTML_tryForm'}, {'label':'Validation','action':'manage_formValidatorsForm'}, {'label':'Actions','action':'manage_formActionsForm'}, ) + Cacheable.manage_options) security = ClassSecurityInfo() security.declareObjectProtected(View) def __init__(self, id, filepath, fullname=None, properties=None): BaseClass.__init__(self, id, filepath, fullname, properties) self.filepath = filepath try: self._read_action_metadata(self.getId(), filepath) self._read_validator_metadata(self.getId(), filepath) except (ValueError, CompilerError), e: log(summary='metadata error', text='file = %s' % filepath) raise def _updateFromFS(self): # workaround for Python 2.1 multiple inheritance lameness return self._baseUpdateFromFS() def _readMetadata(self): # workaround for Python 2.1 multiple inheritance lameness return self._baseReadMetadata() def _readFile(self, reparse): BaseClass._readFile(self, reparse) self._readMetadata() security.declarePrivate('manage_afterAdd') def manage_afterAdd(self, object, container): try: BaseClass.manage_afterAdd(self, object, container) # Re-read .metadata after adding so that we can do validation checks # using information in portal_form_controller. Since manage_afterAdd # is not guaranteed to run, we also call these in __init__ self._read_action_metadata(self.getId(), self.filepath) self._read_validator_metadata(self.getId(), self.filepath) except: log(summary='metadata error', text='file = %s' % self.filepath) logException() raise def __call__(self, *args, **kwargs): return self._call(FSControllerPageTemplate.inheritedAttribute('__call__'), *args, **kwargs) def _createZODBClone(self): """Create a ZODB (editable) equivalent of this object.""" obj = ControllerPageTemplate(self.getId(), self._text, self.content_type) obj.expand = 0 obj.write(self.read()) obj.validators = copy.copy(Acquisition.aq_base(self.validators)) obj.actions = copy.copy(Acquisition.aq_base(self.actions)) return obj security.declarePublic('writableDefaults') def writableDefaults(self): """Can default actions and validators be modified?""" return 0 _s = Src() setattr(FSControllerPageTemplate, 'source.xml', _s) setattr(FSControllerPageTemplate, 'source.html', _s) del _s Globals.InitializeClass(FSControllerPageTemplate) registerFileExtension('cpt', FSControllerPageTemplate) registerMetaType('Controller Page Template', FSControllerPageTemplate)