Mercurial > hg > VLP_extensions
annotate __init__.py @ 1:c6ed58ab0786 default tip
ignore Eclipse files.
author | casties |
---|---|
date | Wed, 17 Apr 2013 16:17:49 +0200 |
parents | 88009fd07d31 |
children |
rev | line source |
---|---|
0
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
1 import VLPExtension |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
2 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
3 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
4 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
5 def initialize(context): |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
6 """initialize OSAS""" |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
7 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
8 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
9 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
10 context.registerClass( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
11 VLPExtension.VLP_resource, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
12 constructors = ( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
13 VLPExtension.manage_addVLP_resourceForm, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
14 VLPExtension.manage_addVLP_resource |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
15 ), |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
16 icon = 'VLP_ressource.gif' |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
17 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
18 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
19 context.registerClass( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
20 VLPExtension.VLP_collection, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
21 constructors = ( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
22 VLPExtension.manage_addVLP_collectionForm, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
23 VLPExtension.manage_addVLP_collection |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
24 ), |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
25 icon = 'VLP_collection.gif' |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
26 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
27 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
28 context.registerClass( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
29 VLPExtension.VLP_essay, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
30 constructors = ( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
31 VLPExtension.manage_addVLP_essayForm, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
32 VLPExtension.manage_addVLP_essay |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
33 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
34 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
35 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
36 context.registerClass( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
37 VLPExtension.VLP_encyclopaedia, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
38 constructors = ( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
39 VLPExtension.manage_addVLP_encycForm, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
40 VLPExtension.manage_addVLP_encyc |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
41 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
42 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
43 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
44 context.registerClass( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
45 VLPExtension.sendMailForm, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
46 constructors = ( |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
47 VLPExtension.manage_addSendMailFormForm, |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
48 VLPExtension.manage_addSendMailForm |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
49 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
50 ) |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
51 |
88009fd07d31
VLP specific additions to ECHO_content product. First checkin.
casties
parents:
diff
changeset
|
52 |