2009-06-29 07:06:01 -05:00
|
|
|
'''This package contains stuff used at run-time for installing a generated
|
2011-12-01 13:53:13 -06:00
|
|
|
Zope product.'''
|
2009-06-29 07:06:01 -05:00
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
2010-01-17 15:01:14 -06:00
|
|
|
import os, os.path, time
|
2009-10-18 07:52:27 -05:00
|
|
|
import appy
|
2011-09-26 14:19:34 -05:00
|
|
|
import appy.version
|
2011-12-05 08:11:29 -06:00
|
|
|
import appy.gen as gen
|
2011-01-14 02:06:25 -06:00
|
|
|
from appy.gen.po import PoParser
|
2011-12-01 13:53:13 -06:00
|
|
|
from appy.gen.utils import updateRolesForPermission, createObject
|
2011-01-14 02:06:25 -06:00
|
|
|
from appy.shared.data import languages
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
homePage = '''
|
|
|
|
<tal:main define="tool python: context.config">
|
|
|
|
<html metal:use-macro="context/ui/template/macros/main">
|
|
|
|
<div metal:fill-slot="content">
|
|
|
|
<span tal:replace="structure python: tool.translate('front_page_text')"/>
|
|
|
|
</div>
|
|
|
|
</html>
|
|
|
|
</tal:main>
|
|
|
|
'''
|
|
|
|
errorPage = '''
|
|
|
|
<tal:main define="tool python: context.config">
|
|
|
|
<html metal:use-macro="context/ui/template/macros/main">
|
|
|
|
<div metal:fill-slot="content" tal:define="o python:options">
|
|
|
|
<p tal:condition="o/error_message"
|
|
|
|
tal:content="structure o/error_message"></p>
|
|
|
|
<p>Error type: <b><span tal:replace="o/error_type"/></b></p>
|
|
|
|
<p>Error value: <b><span tal:replace="o/error_value"/></b></p>
|
|
|
|
<p tal:content="structure o/error_tb"></p>
|
|
|
|
</div>
|
|
|
|
</html>
|
|
|
|
</tal:main>
|
|
|
|
'''
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2010-01-17 15:01:14 -06:00
|
|
|
# Stuff for tracking user activity ---------------------------------------------
|
|
|
|
loggedUsers = {}
|
|
|
|
originalTraverse = None
|
|
|
|
doNotTrack = ('.jpg','.gif','.png','.js','.class','.css')
|
|
|
|
|
|
|
|
def traverseWrapper(self, path, response=None, validated_hook=None):
|
|
|
|
'''This function is called every time a users gets a URL, this is used for
|
|
|
|
tracking user activity. self is a BaseRequest'''
|
|
|
|
res = originalTraverse(self, path, response, validated_hook)
|
|
|
|
t = time.time()
|
|
|
|
if os.path.splitext(path)[-1].lower() not in doNotTrack:
|
|
|
|
# Do nothing when the user gets non-pages
|
|
|
|
userId = self['AUTHENTICATED_USER'].getId()
|
2011-06-10 10:20:09 -05:00
|
|
|
if userId:
|
|
|
|
loggedUsers[userId] = t
|
|
|
|
# "Touch" the SESSION object. Else, expiration won't occur.
|
|
|
|
session = self.SESSION
|
2010-01-17 15:01:14 -06:00
|
|
|
return res
|
|
|
|
|
2011-06-10 10:20:09 -05:00
|
|
|
def onDelSession(sessionObject, container):
|
|
|
|
'''This function is called when a session expires.'''
|
|
|
|
rq = container.REQUEST
|
|
|
|
if rq.cookies.has_key('__ac') and rq.cookies.has_key('_ZopeId') and \
|
|
|
|
(rq['_ZopeId'] == sessionObject.token):
|
|
|
|
# The request comes from a guy whose session has expired.
|
|
|
|
resp = rq.RESPONSE
|
|
|
|
resp.expireCookie('__ac', path='/')
|
|
|
|
resp.write('<center>For security reasons, your session has ' \
|
|
|
|
'expired.</center>')
|
|
|
|
|
2011-12-01 13:53:13 -06:00
|
|
|
class ZCTextIndexInfo:
|
|
|
|
'''Silly class used for storing information about a ZCTextIndex.'''
|
|
|
|
lexicon_id = "lexicon"
|
|
|
|
index_type = 'Okapi BM25 Rank'
|
|
|
|
|
2009-06-29 07:06:01 -05:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
class ZopeInstaller:
|
|
|
|
'''This Zope installer runs every time Zope starts and encounters this
|
|
|
|
generated Zope product.'''
|
2011-11-25 11:01:20 -06:00
|
|
|
def __init__(self, zopeContext, config, classes):
|
2009-06-29 07:06:01 -05:00
|
|
|
self.zopeContext = zopeContext
|
2011-11-25 11:01:20 -06:00
|
|
|
self.app = zopeContext._ProductContext__app # The root of the Zope tree
|
|
|
|
self.config = config
|
2010-08-05 11:23:17 -05:00
|
|
|
self.classes = classes
|
2010-09-02 09:16:08 -05:00
|
|
|
# Unwrap some useful config variables
|
2011-11-25 11:01:20 -06:00
|
|
|
self.productName = config.PROJECTNAME
|
|
|
|
self.languages = config.languages
|
|
|
|
self.logger = config.logger
|
|
|
|
self.addContentPermissions = config.ADD_CONTENT_PERMISSIONS
|
|
|
|
|
|
|
|
def installUi(self):
|
|
|
|
'''Installs the user interface.'''
|
|
|
|
# Delete the existing folder if it existed.
|
|
|
|
zopeContent = self.app.objectIds()
|
|
|
|
if 'ui' in zopeContent: self.app.manage_delObjects(['ui'])
|
|
|
|
self.app.manage_addFolder('ui')
|
|
|
|
# Some useful imports
|
|
|
|
from Products.PythonScripts.PythonScript import PythonScript
|
|
|
|
from Products.PageTemplates.ZopePageTemplate import \
|
|
|
|
manage_addPageTemplate
|
|
|
|
# Browse the physical folder and re-create it in the Zope folder
|
|
|
|
j = os.path.join
|
|
|
|
ui = j(j(appy.getPath(), 'gen'), 'ui')
|
|
|
|
for root, dirs, files in os.walk(ui):
|
|
|
|
folderName = root[len(ui):]
|
|
|
|
# Get the Zope folder that corresponds to this name
|
|
|
|
zopeFolder = self.app.ui
|
|
|
|
if folderName:
|
|
|
|
for name in folderName.strip(os.sep).split(os.sep):
|
|
|
|
zopeFolder = zopeFolder._getOb(name)
|
|
|
|
# Create sub-folders at this level
|
|
|
|
for name in dirs: zopeFolder.manage_addFolder(name)
|
|
|
|
# Create files at this level
|
|
|
|
for name in files:
|
|
|
|
baseName, ext = os.path.splitext(name)
|
|
|
|
f = file(j(root, name))
|
2011-12-05 08:11:29 -06:00
|
|
|
if ext in gen.File.imageExts:
|
2011-11-25 11:01:20 -06:00
|
|
|
zopeFolder.manage_addImage(name, f)
|
|
|
|
elif ext == '.pt':
|
|
|
|
manage_addPageTemplate(zopeFolder, baseName, '', f.read())
|
|
|
|
elif ext == '.py':
|
|
|
|
obj = PythonScript(baseName)
|
|
|
|
zopeFolder._setObject(baseName, obj)
|
|
|
|
zopeFolder._getOb(baseName).write(f.read())
|
|
|
|
else:
|
|
|
|
zopeFolder.manage_addFile(name, f)
|
|
|
|
f.close()
|
|
|
|
# Update the home page
|
|
|
|
if 'index_html' in zopeContent:
|
|
|
|
self.app.manage_delObjects(['index_html'])
|
|
|
|
manage_addPageTemplate(self.app, 'index_html', '', homePage)
|
|
|
|
# Update the error page
|
|
|
|
if 'standard_error_message' in zopeContent:
|
|
|
|
self.app.manage_delObjects(['standard_error_message'])
|
|
|
|
manage_addPageTemplate(self.app, 'standard_error_message', '',errorPage)
|
|
|
|
|
|
|
|
def installIndexes(self, indexInfo):
|
|
|
|
'''Updates indexes in the catalog.'''
|
|
|
|
catalog = self.app.catalog
|
|
|
|
logger = self.logger
|
|
|
|
for indexName, indexType in indexInfo.iteritems():
|
|
|
|
# If this index already exists but with a different type, remove it.
|
|
|
|
if indexName in catalog.indexes():
|
|
|
|
oldType = catalog.Indexes[indexName].__class__.__name__
|
|
|
|
if oldType != indexType:
|
|
|
|
catalog.delIndex(indexName)
|
|
|
|
logger.info('Existing index "%s" of type "%s" was removed:'\
|
|
|
|
' we need to recreate it with type "%s".' % \
|
|
|
|
(indexName, oldType, indexType))
|
|
|
|
if indexName not in catalog.indexes():
|
|
|
|
# We need to create this index
|
2011-12-01 13:53:13 -06:00
|
|
|
if indexType != 'ZCTextIndex':
|
|
|
|
catalog.addIndex(indexName, indexType)
|
|
|
|
else:
|
|
|
|
catalog.addIndex(indexName, indexType,extra=ZCTextIndexInfo)
|
|
|
|
catalog.reindexIndex(indexName, self.app.REQUEST)
|
2011-11-25 11:01:20 -06:00
|
|
|
logger.info('Created index "%s" of type "%s"...' % \
|
2011-12-01 13:53:13 -06:00
|
|
|
(indexName, indexType))
|
|
|
|
# Indexing database content based on this index.
|
2011-11-25 11:01:20 -06:00
|
|
|
|
2011-12-01 13:53:13 -06:00
|
|
|
lexiconInfos = [
|
|
|
|
appy.Object(group='Case Normalizer', name='Case Normalizer'),
|
|
|
|
appy.Object(group='Stop Words', name=" Don't remove stop words"),
|
|
|
|
appy.Object(group='Word Splitter', name='Whitespace splitter')
|
|
|
|
]
|
2011-11-25 11:01:20 -06:00
|
|
|
def installCatalog(self):
|
|
|
|
'''Create the catalog at the root of Zope if id does not exist.'''
|
|
|
|
if 'catalog' not in self.app.objectIds():
|
|
|
|
# Create the catalog
|
|
|
|
from Products.ZCatalog.ZCatalog import manage_addZCatalog
|
|
|
|
manage_addZCatalog(self.app, 'catalog', '')
|
|
|
|
self.logger.info('Appy catalog created.')
|
2011-12-01 13:53:13 -06:00
|
|
|
|
|
|
|
# Create a lexicon for ZCTextIndexes
|
|
|
|
if 'lexicon' not in self.app.catalog.objectIds():
|
|
|
|
from Products.ZCTextIndex.ZCTextIndex import manage_addLexicon
|
|
|
|
manage_addLexicon(self.app.catalog, 'lexicon',
|
|
|
|
elements=self.lexiconInfos)
|
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
# Create or update Appy-wide indexes and field-related indexes
|
|
|
|
indexInfo = {'State': 'FieldIndex', 'UID': 'FieldIndex',
|
2011-12-01 13:53:13 -06:00
|
|
|
'Title': 'ZCTextIndex', 'SortableTitle': 'FieldIndex',
|
|
|
|
'SearchableText': 'ZCTextIndex', 'Creator': 'FieldIndex',
|
2011-11-28 15:50:01 -06:00
|
|
|
'Created': 'DateIndex', 'ClassName': 'FieldIndex',
|
|
|
|
'Allowed': 'KeywordIndex'}
|
2011-11-25 11:01:20 -06:00
|
|
|
tool = self.app.config
|
|
|
|
for className in self.config.attributes.iterkeys():
|
|
|
|
wrapperClass = tool.getAppyClass(className, wrapper=True)
|
|
|
|
for appyType in wrapperClass.__fields__:
|
|
|
|
if not appyType.indexed or (appyType.name == 'title'): continue
|
|
|
|
n = appyType.name
|
|
|
|
indexName = 'get%s%s' % (n[0].upper(), n[1:])
|
|
|
|
indexInfo[indexName] = appyType.getIndexType()
|
|
|
|
self.installIndexes(indexInfo)
|
|
|
|
|
2011-11-28 15:50:01 -06:00
|
|
|
def getAddPermission(self, className):
|
|
|
|
'''What is the name of the permission allowing to create instances of
|
|
|
|
class whose name is p_className?'''
|
|
|
|
return self.productName + ': Add ' + className
|
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def installBaseObjects(self):
|
|
|
|
'''Creates the tool and the root data folder if they do not exist.'''
|
|
|
|
# Create or update the base folder for storing data
|
|
|
|
zopeContent = self.app.objectIds()
|
2011-11-28 15:50:01 -06:00
|
|
|
|
|
|
|
if 'data' not in zopeContent:
|
|
|
|
self.app.manage_addFolder('data')
|
|
|
|
data = self.app.data
|
|
|
|
# Manager has been granted Add permissions for all root classes.
|
|
|
|
# This may not be desired, so remove this.
|
|
|
|
for className in self.config.rootClasses:
|
|
|
|
permission = self.getAddPermission(className)
|
|
|
|
data.manage_permission(permission, (), acquire=0)
|
|
|
|
# All roles defined as creators should be able to create the
|
|
|
|
# corresponding root classes in this folder.
|
|
|
|
i = -1
|
|
|
|
for klass in self.config.appClasses:
|
|
|
|
i += 1
|
|
|
|
if not klass.__dict__.has_key('root') or \
|
|
|
|
not klass.__dict__['root']:
|
|
|
|
continue # It is not a root class
|
|
|
|
creators = getattr(klass, 'creators', None)
|
|
|
|
if not creators: creators = self.config.defaultAddRoles
|
|
|
|
className = self.config.appClassNames[i]
|
|
|
|
permission = self.getAddPermission(className)
|
|
|
|
updateRolesForPermission(permission, tuple(creators), data)
|
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
if 'config' not in zopeContent:
|
|
|
|
toolName = '%sTool' % self.productName
|
|
|
|
createObject(self.app, 'config', toolName,self.productName,wf=False)
|
2011-11-28 15:50:01 -06:00
|
|
|
# Remove some default objects created by Zope but not useful to Appy
|
2011-11-25 11:01:20 -06:00
|
|
|
for name in ('standard_html_footer', 'standard_html_header',\
|
|
|
|
'standard_template.pt'):
|
|
|
|
if name in zopeContent: self.app.manage_delObjects([name])
|
|
|
|
|
|
|
|
def installTool(self):
|
|
|
|
'''Updates the tool (now that the catalog is created) and updates its
|
2011-11-28 15:50:01 -06:00
|
|
|
inner objects (users, groups, translations, documents).'''
|
2011-11-25 11:01:20 -06:00
|
|
|
tool = self.app.config
|
|
|
|
tool.createOrUpdate(True, None)
|
|
|
|
tool.refreshSecurity()
|
|
|
|
appyTool = tool.appy()
|
2011-12-01 13:53:13 -06:00
|
|
|
appyTool.log('Appy version is "%s".' % appy.version.short)
|
2011-11-25 11:01:20 -06:00
|
|
|
|
|
|
|
# Create the admin user if no user exists.
|
|
|
|
if not self.app.acl_users.getUsers():
|
2011-11-28 15:50:01 -06:00
|
|
|
self.app.acl_users._doAddUser('admin', 'admin', ['Manager'], ())
|
2011-11-25 11:01:20 -06:00
|
|
|
appyTool.log('Admin user "admin" created.')
|
2011-11-28 15:50:01 -06:00
|
|
|
|
|
|
|
# Create group "admins" if it does not exist
|
|
|
|
if not appyTool.count('Group', login='admins'):
|
|
|
|
appyTool.create('groups', login='admins', title='Administrators',
|
|
|
|
roles=['Manager'])
|
|
|
|
appyTool.log('Group "admins" created.')
|
|
|
|
|
|
|
|
# Create a group for every global role defined in the application
|
|
|
|
for role in self.config.applicationGlobalRoles:
|
|
|
|
relatedGroup = '%s_group' % role
|
|
|
|
if appyTool.count('Group', login=relatedGroup): continue
|
|
|
|
appyTool.create('groups', login=relatedGroup, title=relatedGroup,
|
|
|
|
roles=[role])
|
|
|
|
appyTool.log('Group "%s", related to global role "%s", was ' \
|
|
|
|
'created.' % (relatedGroup, role))
|
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
# Create POD templates within the tool if required
|
|
|
|
for contentType in self.config.attributes.iterkeys():
|
|
|
|
appyClass = tool.getAppyClass(contentType)
|
|
|
|
if not appyClass: continue # May be an abstract class
|
|
|
|
wrapperClass = tool.getAppyClass(contentType, wrapper=True)
|
|
|
|
for appyType in wrapperClass.__fields__:
|
|
|
|
if appyType.type != 'Pod': continue
|
|
|
|
# Find the attribute that stores the template, and store on
|
|
|
|
# it the default one specified in the appyType if no
|
|
|
|
# template is stored yet.
|
|
|
|
attrName = appyTool.getAttributeName('podTemplate', appyClass,
|
|
|
|
appyType.name)
|
|
|
|
fileObject = getattr(appyTool, attrName)
|
|
|
|
if not fileObject or (fileObject.size == 0):
|
|
|
|
# There is no file. Put the one specified in the appyType.
|
|
|
|
fileName = os.path.join(appyTool.getDiskFolder(),
|
|
|
|
appyType.template)
|
|
|
|
if os.path.exists(fileName):
|
|
|
|
setattr(appyTool, attrName, fileName)
|
|
|
|
appyTool.log('Imported "%s" in the tool in ' \
|
|
|
|
'attribute "%s"'% (fileName, attrName))
|
|
|
|
else:
|
|
|
|
appyTool.log('Template "%s" was not found!' % \
|
|
|
|
fileName, type='error')
|
|
|
|
|
|
|
|
# Create or update Translation objects
|
|
|
|
translations = [t.o.id for t in appyTool.translations]
|
|
|
|
# We browse the languages supported by this application and check
|
|
|
|
# whether we need to create the corresponding Translation objects.
|
|
|
|
for language in self.languages:
|
|
|
|
if language in translations: continue
|
|
|
|
# We will create, in the tool, the translation object for this
|
|
|
|
# language. Determine first its title.
|
|
|
|
langId, langEn, langNat = languages.get(language)
|
|
|
|
if langEn != langNat:
|
|
|
|
title = '%s (%s)' % (langEn, langNat)
|
|
|
|
else:
|
|
|
|
title = langEn
|
|
|
|
appyTool.create('translations', id=language, title=title)
|
|
|
|
appyTool.log('Translation object created for "%s".' % language)
|
|
|
|
# Now, we synchronise every Translation object with the corresponding
|
|
|
|
# "po" file on disk.
|
|
|
|
appFolder = self.config.diskFolder
|
|
|
|
appName = self.config.PROJECTNAME
|
2011-12-05 08:11:29 -06:00
|
|
|
i18nFolder = os.path.join(appFolder, 'tr')
|
2011-11-25 11:01:20 -06:00
|
|
|
for translation in appyTool.translations:
|
|
|
|
# Get the "po" file
|
|
|
|
poName = '%s-%s.po' % (appName, translation.id)
|
2011-12-05 08:11:29 -06:00
|
|
|
poFile = PoParser(os.path.join(i18nFolder, poName)).parse()
|
2011-11-25 11:01:20 -06:00
|
|
|
for message in poFile.messages:
|
|
|
|
setattr(translation, message.id, message.getMessage())
|
|
|
|
appyTool.log('Translation "%s" updated from "%s".' % \
|
|
|
|
(translation.id, poName))
|
|
|
|
|
|
|
|
# Execute custom installation code if any
|
|
|
|
if hasattr(appyTool, 'install'):
|
|
|
|
tool.executeAppyAction('install', reindex=False)
|
|
|
|
|
|
|
|
def configureSessions(self):
|
|
|
|
'''Configure the session machinery.'''
|
|
|
|
# Register a function warning us when a session object is deleted. When
|
|
|
|
# launching Zope, the temp folder does not exist.
|
|
|
|
if not hasattr(self.app, 'temp_folder'): return
|
|
|
|
self.app.temp_folder.session_data.setDelNotificationTarget(onDelSession)
|
|
|
|
|
|
|
|
def enableUserTracking(self):
|
|
|
|
'''Enables the machinery allowing to know who is currently logged in.
|
|
|
|
Information about logged users will be stored in RAM, in the variable
|
|
|
|
named loggedUsers defined above.'''
|
|
|
|
global originalTraverse
|
|
|
|
if not originalTraverse:
|
|
|
|
# User tracking is not enabled yet. Do it now.
|
|
|
|
BaseRequest = self.config.BaseRequest
|
|
|
|
originalTraverse = BaseRequest.traverse
|
|
|
|
BaseRequest.traverse = traverseWrapper
|
2010-08-05 11:23:17 -05:00
|
|
|
|
2011-11-25 11:01:20 -06:00
|
|
|
def installZopeClasses(self):
|
|
|
|
'''Zope-level class registration.'''
|
|
|
|
for klass in self.classes:
|
|
|
|
name = klass.__name__
|
|
|
|
module = klass.__module__
|
|
|
|
wrapper = klass.wrapperClass
|
|
|
|
exec 'from %s import manage_add%s as ctor' % (module, name)
|
|
|
|
self.zopeContext.registerClass(meta_type=name,
|
|
|
|
constructors = (ctor,),
|
|
|
|
permission = self.addContentPermissions[name])
|
|
|
|
# Create workflow prototypical instances in __instance__ attributes
|
|
|
|
wf = getattr(klass.wrapperClass, 'workflow', None)
|
|
|
|
if wf and not hasattr(wf, '__instance__'): wf.__instance__ = wf()
|
|
|
|
|
|
|
|
def installAppyTypes(self):
|
2010-08-05 11:23:17 -05:00
|
|
|
'''We complete here the initialisation process of every Appy type of
|
|
|
|
every gen-class of the application.'''
|
2011-09-14 14:01:58 -05:00
|
|
|
appName = self.productName
|
2010-08-05 11:23:17 -05:00
|
|
|
for klass in self.classes:
|
2011-09-14 14:01:58 -05:00
|
|
|
# Store on wrapper class the ordered list of Appy types
|
|
|
|
wrapperClass = klass.wrapperClass
|
|
|
|
if not hasattr(wrapperClass, 'title'):
|
|
|
|
# Special field "type" is mandatory for every class.
|
2011-12-05 08:11:29 -06:00
|
|
|
title = gen.String(multiplicity=(1,1), show='edit',indexed=True)
|
2011-09-14 14:01:58 -05:00
|
|
|
title.init('title', None, 'appy')
|
|
|
|
setattr(wrapperClass, 'title', title)
|
|
|
|
names = self.config.attributes[wrapperClass.__name__[:-8]]
|
|
|
|
wrapperClass.__fields__ = [getattr(wrapperClass, n) for n in names]
|
|
|
|
# Post-initialise every Appy type
|
2010-08-05 11:23:17 -05:00
|
|
|
for baseClass in klass.wrapperClass.__bases__:
|
2011-09-14 14:01:58 -05:00
|
|
|
if baseClass.__name__ == 'AbstractWrapper': continue
|
2010-08-05 11:23:17 -05:00
|
|
|
for name, appyType in baseClass.__dict__.iteritems():
|
2011-12-05 08:11:29 -06:00
|
|
|
if not isinstance(appyType, gen.Type) or \
|
|
|
|
(isinstance(appyType, gen.Ref) and appyType.isBack):
|
2011-09-14 14:01:58 -05:00
|
|
|
continue # Back refs are initialised within fw refs
|
|
|
|
appyType.init(name, baseClass, appName)
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2011-11-28 15:50:01 -06:00
|
|
|
def installRoles(self):
|
|
|
|
'''Installs the application-specific roles if not already done.'''
|
|
|
|
roles = list(self.app.__ac_roles__)
|
|
|
|
for role in self.config.applicationRoles:
|
|
|
|
if role not in roles: roles.append(role)
|
|
|
|
self.app.__ac_roles__ = tuple(roles)
|
|
|
|
|
2011-12-01 13:53:13 -06:00
|
|
|
def installDependencies(self):
|
|
|
|
'''Zope products are installed in alphabetical order. But here, we need
|
|
|
|
ZCTextIndex to be installed before our Appy application. So, we cheat
|
|
|
|
and force Zope to install it now.'''
|
|
|
|
from OFS.Application import install_product
|
|
|
|
import Products
|
|
|
|
install_product(self.app, Products.__path__[1], 'ZCTextIndex', [], {})
|
|
|
|
|
2009-06-29 07:06:01 -05:00
|
|
|
def install(self):
|
|
|
|
self.logger.info('is being installed...')
|
2011-12-01 13:53:13 -06:00
|
|
|
self.installDependencies()
|
2011-11-28 15:50:01 -06:00
|
|
|
self.installRoles()
|
2011-11-25 11:01:20 -06:00
|
|
|
self.installAppyTypes()
|
|
|
|
self.installZopeClasses()
|
2010-01-17 15:01:14 -06:00
|
|
|
self.enableUserTracking()
|
2011-11-25 11:01:20 -06:00
|
|
|
self.configureSessions()
|
|
|
|
self.installBaseObjects()
|
|
|
|
self.installCatalog()
|
|
|
|
self.installTool()
|
|
|
|
self.installUi()
|
2011-12-05 11:15:45 -06:00
|
|
|
# Empty the fake REQUEST object, only used at Zope startup.
|
|
|
|
del self.app.config.getProductConfig().fakeRequest.wrappers
|
2009-06-29 07:06:01 -05:00
|
|
|
# ------------------------------------------------------------------------------
|