- updated TODO

- removed checkReadOnly() where not needed

git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1167 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
(no author)
2008-02-07 19:04:30 +00:00
parent 2f50805654
commit 5533f38d56
2 changed files with 3 additions and 6 deletions
+3 -4
View File
@@ -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 (*)
-2
View File
@@ -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()