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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
From: "Dr. Tobias Quathamer" <toddy@debian.org>
Date: Wed, 31 Jan 2018 23:27:37 +0100
Subject: Prefer xdg-open
Add xdg-open as the first choice whenever this seems to be useful.
Forwarded: https://www.lyx.org/trac/ticket/12993
---
lib/configure.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/lib/configure.py b/lib/configure.py
index 94501f0..26651d3 100644
--- a/lib/configure.py
+++ b/lib/configure.py
@@ -716,7 +716,7 @@ def checkModule(module):
return False
-texteditors = ['xemacs', 'gvim', 'kedit', 'kwrite', 'kate',
+texteditors = ['xdg-open', 'xemacs', 'gvim', 'kedit', 'kwrite', 'kate',
'nedit', 'gedit', 'geany', 'leafpad', 'mousepad',
'xed', 'notepad', 'WinEdt', 'WinShell', 'PSPad']
@@ -731,7 +731,7 @@ def checkFormatEntries(dtl_tools):
checkViewerEditor('a Dia viewer and editor', ['dia'],
rc_entry = [r'\Format dia dia DIA "" "%%" "%%" "vector,zipped=native", "application/x-dia-diagram"'])
#
- checkViewerEditor('an OpenDocument drawing viewer and editor', ['libreoffice', 'lodraw', 'ooffice', 'oodraw', 'soffice'],
+ checkViewerEditor('an OpenDocument drawing viewer and editor', ['xdg-open', 'libreoffice', 'lodraw', 'ooffice', 'oodraw', 'soffice'],
rc_entry = [r'\Format odg "odg, sxd" "OpenDocument drawing" "" "%%" "%%" "vector,zipped=native" "application/vnd.oasis.opendocument.graphics"'])
#
checkViewerEditor('a Grace viewer and editor', ['xmgrace'],
@@ -756,9 +756,9 @@ def checkFormatEntries(dtl_tools):
\Format xbm xbm XBM "" "%s" "%s" "" "image/x-xbitmap"
\Format xpm xpm XPM "" "%s" "%s" "" "image/x-xpixmap"'''
path, iv = checkViewerNoRC('a raster image viewer',
- ['xv', 'gwenview', 'kview',
+ ['xdg-open', 'xv', 'gwenview', 'kview',
'eog', 'xviewer', 'ristretto', 'gpicview', 'lximage-qt',
- 'xdg-open', 'gimp-remote', 'gimp'],
+ 'gimp-remote', 'gimp'],
rc_entry = [imageformats])
path, ie = checkEditorNoRC('a raster image editor',
['gimp-remote', 'gimp'], rc_entry = [imageformats])
@@ -815,7 +815,7 @@ def checkFormatEntries(dtl_tools):
#checkProg('a Postscript interpreter', ['gs'],
# rc_entry = [ r'\ps_command "%%"' ])
checkViewer('a Postscript previewer',
- ['kghostview', 'okular', 'qpdfview --unique',
+ ['xdg-open', 'kghostview', 'okular', 'qpdfview --unique',
'evince', 'xreader',
'gv', 'ghostview -swap', 'gsview64', 'gsview32'],
rc_entry = [r'''\Format eps eps EPS "" "%%" "" "vector" "image/x-eps"
@@ -826,7 +826,7 @@ def checkFormatEntries(dtl_tools):
# maybe use "bestApplication()" from https://github.com/jleclanche/python-mime
# the MIME type is set for pdf6, because that one needs to be autodetectable by libmime
checkViewer('a PDF previewer',
- ['pdfview', 'kpdf', 'okular', 'qpdfview --unique',
+ ['xdg-open', 'pdfview', 'kpdf', 'okular', 'qpdfview --unique',
'evince', 'xreader', 'kghostview', 'xpdf', 'SumatraPDF',
'acrobat', 'acroread', 'mupdf', 'Skim.app',
'gv', 'ghostview', 'AcroRd32', 'gsview64', 'gsview32'],
|