| 9 |
|
|
| 10 |
from config import * |
from config import * |
| 11 |
|
|
|
#registerDirectory(SKINS_DIR, GLOBALS) |
|
|
|
|
| 12 |
def initialize(context): |
def initialize(context): |
| 13 |
|
pass |
| 14 |
content_types, constructors, ftis = process_types( |
# |
| 15 |
listTypes(PROJECTNAME), |
# content_types, constructors, ftis = process_types( |
| 16 |
PROJECTNAME) |
# listTypes(PROJECTNAME), |
| 17 |
|
# PROJECTNAME) |
| 18 |
utils.ContentInit( |
# |
| 19 |
PROJECTNAME + ' Content', |
# utils.ContentInit( |
| 20 |
content_types = content_types, |
# PROJECTNAME + ' Content', |
| 21 |
permission = ADD_CONTENT_PERMISSION, |
# content_types = content_types, |
| 22 |
extra_constructors = constructors, |
# permission = ADD_CONTENT_PERMISSION, |
| 23 |
fti = ftis, |
# extra_constructors = constructors, |
| 24 |
).initialize(context) |
# fti = ftis, |
| 25 |
|
# ).initialize(context) |
| 26 |
|
# |
| 27 |
|
|