#!/usr/bin/env python ################################################## ## DEPENDENCIES import sys import os import os.path from os.path import getmtime, exists import time import types import __builtin__ from Cheetah.Version import MinCompatibleVersion as RequiredCheetahVersion from Cheetah.Version import MinCompatibleVersionTuple as RequiredCheetahVersionTuple from Cheetah.Template import Template from Cheetah.DummyTransaction import DummyTransaction from Cheetah.NameMapper import NotFound, valueForName, valueFromSearchList, valueFromFrameOrSearchList from Cheetah.CacheRegion import CacheRegion import Cheetah.Filters as Filters import Cheetah.ErrorCatchers as ErrorCatchers from prewikka.templates.ClassicLayout import ClassicLayout from prewikka import siteconfig ################################################## ## MODULE CONSTANTS try: True, False except NameError: True, False = (1==1), (1==0) VFFSL=valueFromFrameOrSearchList VFSL=valueFromSearchList VFN=valueForName currentTime=time.time __CHEETAH_version__ = '2.0' __CHEETAH_versionTuple__ = (2, 0, 0, 'final', 0) __CHEETAH_genTime__ = 1200702933.9873271 __CHEETAH_genTimestamp__ = 'Fri Jan 18 19:35:33 2008' __CHEETAH_src__ = 'prewikka/templates/About.tmpl' __CHEETAH_srcLastModified__ = 'Thu May 10 06:23:24 2007' __CHEETAH_docstring__ = 'Autogenerated by CHEETAH: The Python-Powered Template Engine' if __CHEETAH_versionTuple__ < RequiredCheetahVersionTuple: raise AssertionError( 'This template was compiled with Cheetah version' ' %s. Templates compiled before version %s must be recompiled.'%( __CHEETAH_version__, RequiredCheetahVersion)) ################################################## ## CLASSES class About(ClassicLayout): ################################################## ## CHEETAH GENERATED METHODS def __init__(self, *args, **KWs): ClassicLayout.__init__(self, *args, **KWs) if not self._CHEETAH__instanceInitialized: cheetahKWArgs = {} allowedKWs = 'searchList namespaces filter filtersLib errorCatcher'.split() for k,v in KWs.items(): if k in allowedKWs: cheetahKWArgs[k] = v self._initCheetahInstance(**cheetahKWArgs) def main_content(self, **KWS): ## CHEETAH: generated from #block main_content at line 4, col 1. trans = KWS.get("trans") if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)): trans = self.transaction # is None unless self.awake() was called if not trans: trans = DummyTransaction() _dummyTrans = True else: _dummyTrans = False write = trans.response().write SL = self._CHEETAH__searchList _filter = self._CHEETAH__currentFilter ######################################## ## START - generated method body _orig_filter_83496021 = _filter filterName = 'CleanOutput' if self._CHEETAH__filters.has_key("CleanOutput"): _filter = self._CHEETAH__currentFilter = self._CHEETAH__filters[filterName] else: _filter = self._CHEETAH__currentFilter = \ self._CHEETAH__filters[filterName] = getattr(self._CHEETAH__filtersLib, filterName)(self).filter write('''

Prewikka ''') _v = VFFSL(SL,"siteconfig.version",True) # '$siteconfig.version' on line 11, col 57 if _v is not None: write(_filter(_v, rawExpr='$siteconfig.version')) # from line 11, col 57. write('''


PreludeIDS Technologies ''') if False: _("provides support to Large Accounts, Major Companies and Government Agencies around the world, to improve and strengthen the security of their systems and networks.") _v = VFFSL(SL,"_",False)("provides support to Large Accounts, Major Companies and Government Agencies around the world, to improve and strengthen the security of their systems and networks.") # '$_("provides support to Large Accounts, Major Companies and Government Agencies around the world, to improve and strengthen the security of their systems and networks.")' on line 16, col 67 if _v is not None: write(_filter(_v, rawExpr='$_("provides support to Large Accounts, Major Companies and Government Agencies around the world, to improve and strengthen the security of their systems and networks.")')) # from line 16, col 67. write('''


Prelude-IDS logo


''') if False: _("Contact") _v = VFFSL(SL,"_",False)("Contact") # '$_("Contact")' on line 64, col 10 if _v is not None: write(_filter(_v, rawExpr='$_("Contact")')) # from line 64, col 10. write(''' ''') if False: _("Office") _v = VFFSL(SL,"_",False)("Office") # '$_("Office")' on line 65, col 10 if _v is not None: write(_filter(_v, rawExpr='$_("Office")')) # from line 65, col 10. write(''' ''') if False: _("Website") _v = VFFSL(SL,"_",False)("Website") # '$_("Website")' on line 66, col 10 if _v is not None: write(_filter(_v, rawExpr='$_("Website")')) # from line 66, col 10. write('''
info@prelude-ids.com 2, rue David Girin http://www.prelude-ids.com
''') if False: _("Phone:") _v = VFFSL(SL,"_",False)("Phone:") # '$_("Phone:")' on line 74, col 10 if _v is not None: write(_filter(_v, rawExpr='$_("Phone:")')) # from line 74, col 10. write(''' +33 8 70 70 21 58 69002 Lyon  
   ''') if False: _("Fax:") _v = VFFSL(SL,"_",False)("Fax:") # '$_("Fax:")' on line 79, col 28 if _v is not None: write(_filter(_v, rawExpr='$_("Fax:")')) # from line 79, col 28. write(''' +33 4 78 42 21 58 France  
Copyright © 2004 - 2007 PreludeIDS Technologies. All right reserved.
''') _filter = _orig_filter_83496021 ######################################## ## END - generated method body return _dummyTrans and trans.response().getvalue() or "" def writeBody(self, **KWS): ## CHEETAH: main method generated for this template trans = KWS.get("trans") if (not trans and not self._CHEETAH__isBuffering and not callable(self.transaction)): trans = self.transaction # is None unless self.awake() was called if not trans: trans = DummyTransaction() _dummyTrans = True else: _dummyTrans = False write = trans.response().write SL = self._CHEETAH__searchList _filter = self._CHEETAH__currentFilter ######################################## ## START - generated method body write(''' ''') self.main_content(trans=trans) ######################################## ## END - generated method body return _dummyTrans and trans.response().getvalue() or "" ################################################## ## CHEETAH GENERATED ATTRIBUTES _CHEETAH__instanceInitialized = False _CHEETAH_version = __CHEETAH_version__ _CHEETAH_versionTuple = __CHEETAH_versionTuple__ _CHEETAH_genTime = __CHEETAH_genTime__ _CHEETAH_genTimestamp = __CHEETAH_genTimestamp__ _CHEETAH_src = __CHEETAH_src__ _CHEETAH_srcLastModified = __CHEETAH_srcLastModified__ _mainCheetahMethod_for_About= 'writeBody' ## END CLASS DEFINITION if not hasattr(About, '_initCheetahAttributes'): templateAPIClass = getattr(About, '_CHEETAH_templateClass', Template) templateAPIClass._addCheetahPlumbingCodeToClass(About) # CHEETAH was developed by Tavis Rudd and Mike Orr # with code, advice and input from many other volunteers. # For more information visit http://www.CheetahTemplate.org/ ################################################## ## if run from command line: if __name__ == '__main__': from Cheetah.TemplateCmdLineIface import CmdLineIface CmdLineIface(templateObj=About()).run()