File: 13-python-ui-doc-paths.patch

package info (click to toggle)
hatari 2.5.0%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 13,324 kB
  • sloc: ansic: 164,630; cpp: 8,685; python: 6,251; objc: 1,899; asm: 1,742; sh: 1,668; javascript: 146; makefile: 86; xml: 32
file content (30 lines) | stat: -rw-r--r-- 1,406 bytes parent folder | download | duplicates (2)
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")