summaryrefslogtreecommitdiff
path: root/portato/db
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-03-03 23:53:52 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-03-03 23:53:52 +0100
commit4c786bef98d6d8244a1c6e28abc5dd448902ecdf (patch)
treeaf67e8eeb5bd3ae257b1f6e87997b0090082d3c5 /portato/db
parentc768119cc7ade2018f7ab0ae0da0515bee36de60 (diff)
parent6a6aba15ba92c805fe35da7dcbdaa37bacccb6fd (diff)
downloadportato-4c786bef98d6d8244a1c6e28abc5dd448902ecdf.tar.gz
portato-4c786bef98d6d8244a1c6e28abc5dd448902ecdf.tar.bz2
portato-4c786bef98d6d8244a1c6e28abc5dd448902ecdf.zip
Some more 0.12 stuff
Diffstat (limited to 'portato/db')
-rw-r--r--portato/db/dict.py2
-rw-r--r--portato/db/sql.py7
2 files changed, 7 insertions, 2 deletions
diff --git a/portato/db/dict.py b/portato/db/dict.py
index f6edea6..4992df6 100644
--- a/portato/db/dict.py
+++ b/portato/db/dict.py
@@ -86,7 +86,7 @@ class DictDatabase (Database):
try:
if self.restrict:
- return (pkg for pkg in get_pkgs() if self.restrict.search(pkg.pkg))#if pkg[1].find(self.restrict) != -1)
+ return (pkg for pkg in get_pkgs() if self.restrict.search(pkg.cat+"/"+pkg.pkg))
else:
return get_pkgs()
diff --git a/portato/db/sql.py b/portato/db/sql.py
index cb252c1..6c95bb3 100644
--- a/portato/db/sql.py
+++ b/portato/db/sql.py
@@ -248,6 +248,11 @@ class SQLDatabase (Database):
self._restrict = ""
else:
restrict = restrict.replace(".*","%").replace(".","_")
- self._restrict = "AND name LIKE '%%%s%%'" % restrict
+
+ if "/" in restrict:
+ cat,pkg = restrict.split("/")
+ self._restrict = "AND name LIKE '%s%%' AND cat LIKE '%s'" % (pkg, cat)
+ else:
+ self._restrict = "AND (name LIKE '%%%(restrict)s%%' OR cat LIKE '%(restrict)s%%')" % {"restrict":restrict}
restrict = property(get_restrict, set_restrict)