comparison idavoll/memory_storage.py @ 115:97f10cfea28c

Changed default configuration.
author Ralph Meijer <ralphm@ik.nu>
date Fri, 08 Apr 2005 20:59:21 +0000
parents 72c8812fa1b5
children 8892331314c8
comparison
equal deleted inserted replaced
114:e7cfe05bc1d2 115:97f10cfea28c
2 from zope.interface import implements 2 from zope.interface import implements
3 from twisted.internet import defer 3 from twisted.internet import defer
4 from twisted.words.protocols.jabber import jid 4 from twisted.words.protocols.jabber import jid
5 import storage 5 import storage
6 6
7 default_config = {"pubsub#persist_items": False, 7 default_config = {"pubsub#persist_items": True,
8 "pubsub#deliver_payloads": False} 8 "pubsub#deliver_payloads": True}
9 9
10 class Storage: 10 class Storage:
11 11
12 implements(storage.IStorage) 12 implements(storage.IStorage)
13 13