From ee7b001d56612d1169d9af7ccd60829fe4611cc9 Mon Sep 17 00:00:00 2001 From: hut Date: Tue, 4 Jan 2011 01:02:00 +0100 Subject: widgets.pager: Fixed crash when scope.sh fails --- ranger/gui/widgets/pager.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ranger/gui/widgets/pager.py b/ranger/gui/widgets/pager.py index 64444064..d851de3f 100644 --- a/ranger/gui/widgets/pager.py +++ b/ranger/gui/widgets/pager.py @@ -167,14 +167,17 @@ class Pager(Widget): if self.source and self.source_is_stream: self.source.close() + self.max_width = 0 if isinstance(source, str): self.source_is_stream = False self.lines = source.splitlines() - self.max_width = max(len(line) for line in self.lines) + if self.lines: + self.max_width = max(len(line) for line in self.lines) elif hasattr(source, '__getitem__'): self.source_is_stream = False self.lines = source - self.max_width = max(len(line) for line in source) + if self.lines: + self.max_width = max(len(line) for line in source) elif hasattr(source, 'readline'): self.source_is_stream = True self.lines = [] -- cgit 1.4.1-2-gfad0 From e70f8c831ec35f2cdd476e84a7e402293788a6b0 Mon Sep 17 00:00:00 2001 From: hut Date: Tue, 4 Jan 2011 01:25:16 +0100 Subject: Added some programs to defaults/apps.py --- ranger/defaults/apps.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py index 85abb2dc..e93ca1b2 100644 --- a/ranger/defaults/apps.py +++ b/ranger/defaults/apps.py @@ -64,13 +64,17 @@ class CustomApplications(Applications): if f.extension in ('xml', ): return self.either(c, 'editor') if f.extension in ('html', 'htm', 'xhtml'): - return self.either(c, 'firefox', 'opera', 'elinks') - if f.extension in ('swf', ): - return self.either(c, 'firefox', 'opera') + return self.either(c, 'firefox', 'opera', 'jumanji', + 'luakit', 'elinks', 'lynx') + if f.extension == 'swf': + return self.either(c, 'firefox', 'opera', 'jumanji', 'luakit') if f.extension == 'nes': return self.either(c, 'fceux') if f.extension in ('swc', 'smc'): return self.either(c, 'zsnes') + if f.extension in ('odt', 'ods', 'odp', 'odf', 'odg', + 'doc', 'xls'): + return self.either(c, 'libreoffice', 'soffice', 'ooffice') if f.mimetype is not None: if INTERPRETED_LANGUAGES.match(f.mimetype): @@ -82,7 +86,7 @@ class CustomApplications(Applications): if f.video or f.audio: if f.video: c.flags += 'd' - return self.either(c, 'mplayer', 'totem') + return self.either(c, 'mplayer', 'smplayer', 'vlc', 'totem') if f.image: return self.either(c, 'feh', 'eog', 'mirage') @@ -96,7 +100,7 @@ class CustomApplications(Applications): # ----------------------------------------- application definitions - # Note: Trivial applications are defined at the bottom + # Note: Trivial application definitions are at the bottom def app_pager(self, c): return tup('less', '-R', *c) -- cgit 1.4.1-2-gfad0