summaryrefslogtreecommitdiffstats
path: root/module/database
diff options
context:
space:
mode:
authorGravatar X3n0m0rph59 <X3n0m0rph59@googlemail.com> 2012-04-22 19:56:17 +0200
committerGravatar X3n0m0rph59 <X3n0m0rph59@googlemail.com> 2012-04-22 19:56:17 +0200
commitb40b32ee05f611323a7827fad2a25fa0a28dcb24 (patch)
tree60f7f00e4be25942230668f43cb11a30b6fd10e6 /module/database
parentFixed spelling in the source (diff)
downloadpyload-b40b32ee05f611323a7827fad2a25fa0a28dcb24.tar.xz
a huge pile of spelling fixes
Diffstat (limited to 'module/database')
-rw-r--r--module/database/DatabaseBackend.py6
-rw-r--r--module/database/FileDatabase.py12
2 files changed, 9 insertions, 9 deletions
diff --git a/module/database/DatabaseBackend.py b/module/database/DatabaseBackend.py
index 8159446bd..97ecec3ab 100644
--- a/module/database/DatabaseBackend.py
+++ b/module/database/DatabaseBackend.py
@@ -131,7 +131,7 @@ class DatabaseBackend(Thread):
Thread.__init__(self)
self.setDaemon(True)
self.core = core
- self.manager = None # setted later
+ self.manager = None # set later
self.running = Event()
self.jobs = Queue()
@@ -162,9 +162,9 @@ class DatabaseBackend(Thread):
self.conn.close()
try:
- self.manager.core.log.warning(_("Filedatabase was deleted due to incompatible version."))
+ self.manager.core.log.warning(_("File database was deleted due to incompatible version."))
except:
- print "Filedatabase was deleted due to incompatible version."
+ print "File database was deleted due to incompatible version."
remove(self.VERSION_FILE)
move(self.DB_FILE, self.DB_FILE + ".backup")
diff --git a/module/database/FileDatabase.py b/module/database/FileDatabase.py
index 08b18765d..19dca84c7 100644
--- a/module/database/FileDatabase.py
+++ b/module/database/FileDatabase.py
@@ -40,27 +40,27 @@ class FileMethods(DatabaseMethods):
@queue
def processcount(self, fid):
- """ number of files which have to be proccessed """
+ """ number of files which have to be processed """
# status in online, queued, starting, waiting, downloading
self.c.execute("SELECT COUNT(*) FROM files as WHERE dlstatus IN (2,3,8,9,10) AND fid != ?", (str(fid), ))
return self.c.fetchone()[0]
@queue
def addLink(self, url, name, plugin, package):
- # mark filestatus initially as missing, dlstatus - queued
+ # mark file status initially as missing, dlstatus - queued
self.c.execute('INSERT INTO files(url, name, plugin, status, dlstatus, package) VALUES(?,?,?,1,3,?)',
(url, name, plugin, package))
return self.c.lastrowid
@async
def addLinks(self, links, package):
- """ links is a list of tupels (url, plugin)"""
+ """ links is a list of tuples (url, plugin)"""
links = [(x[0], x[0], x[1], package) for x in links]
self.c.executemany('INSERT INTO files(url, name, plugin, status, dlstatus, package) VALUES(?,?,?,1,3,?)', links)
@queue
def addFile(self, name, size, media, package):
- # filestatus - ok, dl status NA
+ # file status - ok, dl status NA
self.c.execute('INSERT INTO files(name, size, media, package) VALUES(?,?,?,?)',
(name, size, media, package))
return self.c.lastrowid
@@ -225,7 +225,7 @@ class FileMethods(DatabaseMethods):
@queue
def getPackageInfo(self, pid, stats=True):
- """get data for specific package, optional with package stats"""
+ """get data for a specific package, optionally with package stats"""
if stats:
stats = self.getPackageStats(pid=pid)
@@ -242,7 +242,7 @@ class FileMethods(DatabaseMethods):
@async
def updateLinkInfo(self, data):
- """ data is list of tupels (name, size, status,[ hash,] url)"""
+ """ data is list of tuples (name, size, status,[ hash,] url)"""
if data and len(data[0]) == 4:
self.c.executemany('UPDATE files SET name=?, size=?, dlstatus=? WHERE url=? AND dlstatus IN (0,1,2,3,14)',
data)