summaryrefslogtreecommitdiffstats
path: root/Lib/webbrowser.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-01-20 23:40:56 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-01-20 23:40:56 (GMT)
commit887c080a800215250a9ebdcc589becc0bf6cac0d (patch)
tree5b5088f69efb61a790c977027961e076c1658352 /Lib/webbrowser.py
parentbde4ad4f924ef9338e4acfb1195de9715c8ff70f (diff)
downloadcpython-887c080a800215250a9ebdcc589becc0bf6cac0d.zip
cpython-887c080a800215250a9ebdcc589becc0bf6cac0d.tar.gz
cpython-887c080a800215250a9ebdcc589becc0bf6cac0d.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/webbrowser.py')
-rw-r--r--Lib/webbrowser.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py
index 64573d0..ad2c132 100644
--- a/Lib/webbrowser.py
+++ b/Lib/webbrowser.py
@@ -132,9 +132,9 @@ def _iscommand(cmd):
class BaseBrowser(object):
"""Parent class for all browsers. Do not use directly."""
-
+
args = ['%s']
-
+
def __init__(self, name=""):
self.name = name
self.basename = name
@@ -163,7 +163,7 @@ class GenericBrowser(BaseBrowser):
self.basename = os.path.basename(self.name)
def open(self, url, new=0, autoraise=1):
- cmdline = [self.name] + [arg.replace("%s", url)
+ cmdline = [self.name] + [arg.replace("%s", url)
for arg in self.args]
try:
p = subprocess.Popen(cmdline, close_fds=True)
@@ -209,7 +209,7 @@ class UnixBrowser(BaseBrowser):
if opt: raise_opt = [opt]
cmdline = [self.name] + raise_opt + args
-
+
if remote or self.background:
inout = file(os.devnull, "r+")
else:
@@ -220,7 +220,7 @@ class UnixBrowser(BaseBrowser):
setsid = getattr(os, 'setsid', None)
if not setsid:
setsid = getattr(os, 'setpgrp', None)
-
+
p = subprocess.Popen(cmdline, close_fds=True, stdin=inout,
stdout=(self.redirect_stdout and inout or None),
stderr=inout, preexec_fn=setsid)
@@ -257,7 +257,7 @@ class UnixBrowser(BaseBrowser):
else:
raise Error("Bad 'new' parameter to open(); " +
"expected 0, 1, or 2, got %s" % new)
-
+
args = [arg.replace("%s", url).replace("%action", action)
for arg in self.remote_args]
success = self._invoke(args, True, autoraise)
@@ -278,7 +278,7 @@ class Mozilla(UnixBrowser):
remote_action = ""
remote_action_newwin = ",new-window"
remote_action_newtab = ",new-tab"
-
+
background = True
Netscape = Mozilla
@@ -334,14 +334,14 @@ class Konqueror(BaseBrowser):
action = "newTab"
else:
action = "openURL"
-
+
devnull = file(os.devnull, "r+")
# if possible, put browser in separate process group, so
# keyboard interrupts don't affect browser as well as Python
setsid = getattr(os, 'setsid', None)
if not setsid:
setsid = getattr(os, 'setpgrp', None)
-
+
try:
p = subprocess.Popen(["kfmclient", action, url],
close_fds=True, stdin=devnull,
@@ -366,7 +366,7 @@ class Konqueror(BaseBrowser):
if p.poll() is None:
# Should be running now.
return True
-
+
try:
p = subprocess.Popen(["kfm", "-d", url],
close_fds=True, stdin=devnull,
@@ -550,7 +550,7 @@ if sys.platform == 'darwin':
# hack for local urls
if not ':' in url:
url = 'file:'+url
-
+
# new must be 0 or 1
new = int(bool(new))
if self.name == "default":