Mercurial > hg > ZopePubmanConnector
annotate __init__.py @ 24:345dd913f520 default tip
new pubman
author | Dirk Wintergr?n <dwinter@mpiwg-berlin.mpg.de> |
---|---|
date | Fri, 10 Jan 2014 12:43:43 +0100 |
parents | 373e6610e290 |
children |
rev | line source |
---|---|
0 | 1 import zopePubmanConnector |
2 | |
3 def initialize(context): | |
4 """initialize OSAS""" | |
5 | |
6 | |
7 context.registerClass( | |
8 zopePubmanConnector.ZopePubmanConnector, | |
9 constructors = ( | |
10 zopePubmanConnector.manage_addZopePubmanConnectorForm, | |
11 zopePubmanConnector.manage_addZopePubmanConnector | |
12 ) | |
13 ) | |
14 | |
15 |