summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornecoro <>2007-04-26 17:12:05 +0000
committernecoro <>2007-04-26 17:12:05 +0000
commit83dad864f08fb5bb6a362631c7418814c01e84e4 (patch)
treeb69daafea5bf5f14740820084f7842b4bb87dd53
parente1b8aae4e2e08e7b2b2cf76a33b98975136ede63 (diff)
downloadportato-83dad864f08fb5bb6a362631c7418814c01e84e4.tar.gz
portato-83dad864f08fb5bb6a362631c7418814c01e84e4.tar.bz2
portato-83dad864f08fb5bb6a362631c7418814c01e84e4.zip
some more fixed bugs
Diffstat (limited to '')
-rw-r--r--doc/Changelog5
-rw-r--r--portato/extern/__init__.py0
-rw-r--r--portato/plugin.py2
-rw-r--r--setup.py2
4 files changed, 2 insertions, 7 deletions
diff --git a/doc/Changelog b/doc/Changelog
index 574b39c..46f2030 100644
--- a/doc/Changelog
+++ b/doc/Changelog
@@ -6,11 +6,6 @@
- added systray
- added "noroot"-plugin, allowing emerges if not root
-- added confirmation dialogs for quitting while the emerge queue is not empty
-- added icon and desktop-files
-- added systray
-- added "noroot"-plugin, allowing emerges if not root
-
0.7.0:
- showed difference between unmasked and masked but unmasked by yourself
- added Qt-Frontend
diff --git a/portato/extern/__init__.py b/portato/extern/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/portato/extern/__init__.py
+++ /dev/null
diff --git a/portato/plugin.py b/portato/plugin.py
index a49be74..e6ceb89 100644
--- a/portato/plugin.py
+++ b/portato/plugin.py
@@ -368,7 +368,7 @@ class PluginQueue:
frontendOK = False
if frontendOK is None or frontendOK == True:
- plugin = Plugin(p, str(elem.getAttribute("name")), str(elem.getAttribute("author")))
+ plugin = Plugin(p, elem.getAttribute("name"), elem.getAttribute("author"))
plugin.parse_hooks(elem.getElementsByTagName("hook"))
plugin.set_import(elem.getElementsByTagName("import"))
plugin.parse_menus(elem.getElementsByTagName("menu"))
diff --git a/setup.py b/setup.py
index 5281b75..5c96f9e 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import os, os.path
from distutils.core import setup, Extension
from portato.constants import VERSION, DATA_DIR, FRONTENDS, ICON_DIR
-packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage", "portato.extern"]
+packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage"]
ext_modules = []
data_files = [(ICON_DIR, ["icons/portato-icon.png"])]
cmdclass = {}
>Small layout adjustments to summary and blob viewLars Hjemli3-5/+13 2006-12-13Add display of tree content w/ui-tree.cLars Hjemli9-8/+113 2006-12-12cache_lock: do xstrdup/free on lockfileLars Hjemli1-1/+2 2006-12-11Don't truncate valid cachefilesLars Hjemli3-4/+16 2006-12-11Move global variables + callback functions into shared.cLars Hjemli4-82/+86 2006-12-11Move functions for generic object output into ui-view.cLars Hjemli4-34/+43 2006-12-11Move log-functions into ui-log.cLars Hjemli5-111/+121 2006-12-11Move repo summary functions into ui-summary.cLars Hjemli4-47/+59 2006-12-11Move functions for repolist output into ui-repolist.cLars Hjemli5-70/+90 2006-12-11Move common output-functions into ui-shared.cLars Hjemli4-82/+99 2006-12-11Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.cLars Hjemli4-28/+29 2006-12-11Avoid infinite loops in caching layerLars Hjemli3-14/+31 2006-12-11Let 'make install' clear all cachefilesLars Hjemli1-0/+2 2006-12-11Fix cache algorithm loopholeLars Hjemli3-11/+16 2006-12-10Add version identifier in generated filesLars Hjemli2-9/+14 2006-12-10Add license file and copyright noticesLars Hjemli5-0/+372 2006-12-10Add caching infrastructureLars Hjemli9-28/+353