Document_ftp: *only* serve databases that have the module installed.
authorP. Christeas <p_christ@hol.gr>
Thu, 1 Jul 2010 17:51:32 +0000 (20:51 +0300)
committerP. Christeas <p_christ@hol.gr>
Thu, 1 Jul 2010 17:51:32 +0000 (20:51 +0300)
The document_ftp is not really a database-specific server, but a
server-wide implementation. So, it could normally serve all the databases
of the server, once one of them has it installed. Limit that and instead
only serve the dbs that have the module marked as installed.

bzr revid: p_christ@hol.gr-20100701175132-dydehiw5m6nnvcwy

addons/document_ftp/ftpserver/abstracted_fs.py

index 2b61ffd..48c57cf 100644 (file)
@@ -88,7 +88,7 @@ class abstracted_fs(object):
                     if not cr.fetchone():
                         continue
     
-                    cr.execute("select id from ir_module_module where name like 'document%' and state='installed' ")
+                    cr.execute("SELECT id FROM ir_module_module WHERE name = 'document_ftp' AND state='installed' ")
                     res = cr.fetchone()
                     if res and len(res):
                         self.db_name_list.append(db_name)