Coverage for /home/ken/.local/lib/python3.6/site-packages/avendesora/browsers.py : 30%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# Browsers # # Implement browser access
# License {{{1 # Copyright (C) 2016 Kenneth S. Kundert # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation, either version 3 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along with # this program. If not, see http://www.gnu.org/licenses/.
# Imports {{{1
# Browser base class {{{1
# StandardBrowser class {{{1 self.name = name if name else get_setting('default_browser') self.cmd = cmd
name = name if name else self.name if url: if '://' not in url: url = 'https://' + url try: cmd = self.cmd if self.cmd else get_setting('browsers')[name] try: cmd = cmd.format(url=url) except TypeError: pass log("running '%s'" % cmd) Run(cmd, 'sOew') except KeyError: error('unknown browser, choose from %s.' % ( name, ', '.join(get_setting('browsers')) )) except OSError as err: error(os_error(err)) else: error('url not available.') |