From 5533f38d563e136da591687783ee7e7bcc589c9f Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@cd1c1023-2f26-0410-ae45-c471fc1f0318> Date: Thu, 7 Feb 2008 19:04:30 +0000 Subject: [PATCH] - updated TODO - removed checkReadOnly() where not needed git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1167 cd1c1023-2f26-0410-ae45-c471fc1f0318 --- TODO | 7 +++---- libraries/databaseTools.py | 2 -- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/TODO b/TODO index cdfa0304a..e283e1693 100644 --- a/TODO +++ b/TODO @@ -1,15 +1,14 @@ TODO list: + - split RDEPEND and PDEPEND - improve dependencies order resolution - migrate server code to ServerInterface [] write a tool that helps keeping packages updated (also supporting injected ones) + [] complete reagent spm interface - packages.sabayonlinux.org interactivity (comments + images upload + connection to phpbb user db) - Community repositories - - split RDEPEND and PDEPEND - - find a way to better handle real smartapps deps (need split PDEPEND?) - separate packages by license restrictions - - handle multiuser on entropy server using equo interface - - complete reagent spm interface - GLSAs for overlays? + - find a way to better handle real smartapps deps (need split PDEPEND?) Spritz: - handle config files updates interface (*) diff --git a/libraries/databaseTools.py b/libraries/databaseTools.py index 69471ffea..ca26972e7 100644 --- a/libraries/databaseTools.py +++ b/libraries/databaseTools.py @@ -3498,13 +3498,11 @@ class etpDatabase(TextInterface): # def createTreeupdatesTable(self): - self.checkReadOnly() self.cursor.execute('DROP TABLE IF EXISTS treeupdates;') self.cursor.execute('CREATE TABLE treeupdates ( repository VARCHAR PRIMARY KEY, digest VARCHAR );') self.commitChanges() def createTreeupdatesactionsTable(self): - self.checkReadOnly() self.cursor.execute('DROP TABLE IF EXISTS treeupdatesactions;') self.cursor.execute('CREATE TABLE treeupdatesactions ( idupdate INTEGER PRIMARY KEY, repository VARCHAR, command VARCHAR, branch VARCHAR );') self.commitChanges()