|
Last change
on this file since 261 was
1,
checked in by myroslav, 21 years ago
|
|
Building directory structure
|
|
File size:
629 bytes
|
| Line | |
|---|
| 1 | # Author: Melnychuk Taras |
|---|
| 2 | # Contact: fenix@quintagroup.com |
|---|
| 3 | # Date: $Date: 2005-11-23 12:34:55 |
|---|
| 4 | # Copyright: quintagroup.com |
|---|
| 5 | |
|---|
| 6 | from Products.CMFCore.CMFCorePermissions import AddPortalContent, ManagePortal |
|---|
| 7 | import os |
|---|
| 8 | |
|---|
| 9 | SKINS_DIR = 'skins' |
|---|
| 10 | DOCUMENTATION_DIR = 'documentation' |
|---|
| 11 | GLOBALS = globals() |
|---|
| 12 | PROJECTNAME = 'qPloneEpydoc' |
|---|
| 13 | TOOL_PERMISSION = AddPortalContent |
|---|
| 14 | MANAGE_TOOL_PERMISSION = ManagePortal |
|---|
| 15 | ARCHETYPENAME = 'portal_epydoc' |
|---|
| 16 | TOOLID = 'portal_documentation' |
|---|
| 17 | INSTANCE_HOME = os.environ.get("INSTANCE_HOME") |
|---|
| 18 | DOCUMENTATION_PATH = "%s/Products/%s/documentation/" %(INSTANCE_HOME, PROJECTNAME) |
|---|
| 19 | PRODUCTS_HOME = INSTANCE_HOME+'/Products/' |
|---|
Note: See
TracBrowser
for help on using the repository browser.