summaryrefslogtreecommitdiffstats
path: root/avahi-python/avahi/ServiceTypeDatabase.py.in
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-08-06 11:54:31 +0000
committerLennart Poettering <lennart@poettering.net>2006-08-06 11:54:31 +0000
commitb7d566fc3ec60c0fbbca22af273bc67fdc1372fa (patch)
tree7e39f656c03db8daaee14bcd63e3722f2354ea45 /avahi-python/avahi/ServiceTypeDatabase.py.in
parentd66af491a574de4d5421c995bec5357fc1c04128 (diff)
Allow storing the service type database as Solaris DBM file, alternatively to gdbm. The latter is still recommended. (Patch from Padraig O'Briain)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1245 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-python/avahi/ServiceTypeDatabase.py.in')
-rw-r--r--avahi-python/avahi/ServiceTypeDatabase.py.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/avahi-python/avahi/ServiceTypeDatabase.py.in b/avahi-python/avahi/ServiceTypeDatabase.py.in
index 25807f3..95c03a4 100644
--- a/avahi-python/avahi/ServiceTypeDatabase.py.in
+++ b/avahi-python/avahi/ServiceTypeDatabase.py.in
@@ -19,7 +19,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-import gdbm
+import @DBM@
import locale
import re
@@ -29,7 +29,7 @@ class ServiceTypeDatabase:
def __init__(self, filename = "@pkgdatadir@/service-types.db"):
- self.db = gdbm.open(filename, "r")
+ self.db = @DBM@.open(filename, "r")
l = locale.getlocale(locale.LC_MESSAGES)
@@ -69,12 +69,12 @@ class ServiceTypeDatabase:
def items(self):
items = []
- key = self.db.firstkey()
- while key is not None:
+ @FIRST_KEY@
+ @CHECK_KEY@
if re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+', key) and not re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+\[.*\]', key):
localized_service_name = self[key]
items.append((key, localized_service_name))
- key = self.db.nextkey(key)
+ @NEXT_KEY@
return items
def has_key(self, key):