comparison idavoll/idavoll.py @ 85:ec557449d1aa

Implement node retraction, with storage support for pgsql.
author Ralph Meijer <ralphm@ik.nu>
date Tue, 09 Nov 2004 16:48:20 +0000
parents 758cb81b97ce
children ccf699adae5e
comparison
equal deleted inserted replaced
84:34be83a0bd2e 85:ec557449d1aa
165 if config['backend'] == 'pgsql': 165 if config['backend'] == 'pgsql':
166 bsc = b.ItemRetrievalService() 166 bsc = b.ItemRetrievalService()
167 bsc.setServiceParent(bs) 167 bsc.setServiceParent(bs)
168 component.IService(bsc).setServiceParent(sm) 168 component.IService(bsc).setServiceParent(sm)
169 169
170 bsc = b.RetractionService()
171 bsc.setServiceParent(bs)
172 component.IService(bsc).setServiceParent(sm)
173
170 s = IdavollService() 174 s = IdavollService()
171 s.setServiceParent(sm) 175 s.setServiceParent(sm)
172 176
173 sm.setServiceParent(serviceCollection) 177 sm.setServiceParent(serviceCollection)
174 178