summaryrefslogtreecommitdiff
path: root/portato/gui/windows
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--portato/gui/windows/main.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py
index 0eec034..184d29b 100644
--- a/portato/gui/windows/main.py
+++ b/portato/gui/windows/main.py
@@ -98,7 +98,6 @@ class PackageTable:
# views
self.views = map (lambda x: self.tree.get_widget(x).get_child(),
[
- "filesScroll",
"dependencyScroll", "useListScroll"
])
@@ -523,16 +522,6 @@ class MainWindow (Window):
# the different scrolls
- def show_files (p):
- try:
- for f in p.get_files():
- yield " %s\n" % f
- except IOError, e:
- yield _("Error: %s") % e.strerror
-
- filesScroll = self.tree.get_widget("filesScroll")
- filesScroll.add(InstalledOnlyView(show_files))
-
depScroll = self.tree.get_widget("dependencyScroll")
depScroll.add(self.build_dep_list())
pan class='insertions'>+35 2010-02-25pass --debug to equery to make it shut up -- also for the 'masked' callRené 'Necoro' Neumann1-1/+1 2010-02-23pass --debug to equery to make it shut upRené 'Necoro' Neumann1-1/+1 2010-02-20Update popups value to the new syntax in vimperator 2.2René 'Necoro' Neumann1-1/+1 2009-12-18Added vim mapping for haskellRené 'Necoro' Neumann1-0/+2 ubject'>fix segfault when displaying empty blobsEric Wong1-5/+8 When size is zero, subtracting one from it turns it into ULONG_MAX which causes an out-of-bounds access on buf. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-19Add support for HEAD requestsLars Hjemli2-0/+7 This is a quick 'n dirty hack which makes cgit honor HEAD requests. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-19Add support for ETag in 'plain' viewLars Hjemli4-0/+5 When downloading a blob identified by its path, the client might want to know if the blob has been modified since a previous download of the same path. To this end, an ETag containing the blob SHA1 seems to be ideal. Todo: add support for HEAD requests... Suggested-by: Owen Taylor <otaylor@redhat.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-12ui-tree: escape ascii-text properly in hexdump viewLars Hjemli1-4/+9 Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2009-02-12Makefile: add doc-related targetsLars Hjemli1-2/+17 Signed-off-by: Lars Hjemli <hjemli@gmail.com>