Package platecom :: Package langview :: Module setuphandlers
[hide private]
[frames] | no frames]

Source Code for Module icsemantic.langfallback.setuphandlers

 1  ############################################################################## 
 2  # 
 3  # Copyright (c) 2004 Zope Corporation and Contributors. All Rights Reserved. 
 4  # 
 5  # This software is subject to the provisions of the Zope Public License, 
 6  # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution. 
 7  # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED 
 8  # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
 9  # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS 
10  # FOR A PARTICULAR PURPOSE. 
11  # 
12  ############################################################################## 
13  """ CMFDefault setup handlers. 
14   
15  $Id: platecom.langview.setuphandlers-pysrc.html 236 2008-06-10 20:28:23Z crocha $ 
16  """ 
17   
18 -def importVarious(context):
19 """ Import various settings. 20 21 This provisional handler will be removed again as soon as full handlers 22 are implemented for these steps. 23 """ 24 site = context.getSite() 25 26 return 'Various settings imported.'
27
28 -def unimportVarious(context):
29 """ Import various settings. 30 31 This provisional handler will be removed again as soon as full handlers 32 are implemented for these steps. 33 """ 34 site = context.getSite() 35 36 return 'Various settings imported.'
37