1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Subject: Python-ui needcs to open compressed .txt files on Debian
Author: Teemu Hukkanen <tjhukkan@iki.fi>
Forwarded: not-needed
Index: pkg-hatari/python-ui/uihelpers.py
===================================================================
--- pkg-hatari.orig/python-ui/uihelpers.py
+++ pkg-hatari/python-ui/uihelpers.py
@@ -135,7 +135,7 @@ class UIHelp:
self.view_url(self._path + "compatibility.html", "Hatari compatibility list")
def view_hatari_releasenotes(self, dummy=None):
- self.view_url(self._path + "release-notes.txt", "Hatari release notes")
+ self.view_url(self._path + "release-notes.txt.gz", "Hatari release notes")
def view_hatariui_page(self, dummy=None):
self.view_url(self._path + "hatari-ui.html", "Hatari UI information")
@@ -147,10 +147,10 @@ class UIHelp:
self.view_url(self._path + "bugs.txt", "Hatari bugs")
def view_hatari_todo(self, dummy=None):
- self.view_url(self._path + "todo.txt", "Hatari TODO items")
+ self.view_url(self._path + "todo.txt.gz", "Hatari TODO items")
def view_hatari_authors(self, dummy=None):
- self.view_url(self._path + "authors.txt", "Hatari authors")
+ self.view_url(self._path + "authors.txt.gz", "Hatari authors")
def view_hatari_mails(self, dummy=None):
self.view_url("http://hatari.tuxfamily.org/contact.html", "Hatari mailing lists")
|