annotate __init__.py @ 2:9dbb9354abbe
getPublications erweitert nach Typ
ausserdem erh?lt man jetzt auch einzelne Publicationen nach escidoc:id
author |
dwinter |
date |
Mon, 29 Apr 2013 15:58:16 +0200 |
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
|