12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #
- #
- # Nim's Runtime Library
- # (c) Copyright 2012 Andreas Rumpf
- #
- # See the file "copying.txt", included in this
- # distribution, for details about the copyright.
- #
- ## This module implements a simple proc for opening URLs with the user's
- ## default browser.
- import strutils
- when defined(windows):
- import winlean
- else:
- import os, osproc
- proc openDefaultBrowser*(url: string) =
- ## opens `url` with the user's default browser. This does not block.
- ##
- ## Under Windows, ``ShellExecute`` is used. Under Mac OS X the ``open``
- ## command is used. Under Unix, it is checked if ``xdg-open`` exists and
- ## used if it does. Otherwise the environment variable ``BROWSER`` is
- ## used to determine the default browser to use.
- when defined(windows):
- var o = newWideCString("open")
- var u = newWideCString(url)
- discard shellExecuteW(0'i32, o, u, nil, nil, SW_SHOWNORMAL)
- elif defined(macosx):
- discard execShellCmd("open " & quoteShell(url))
- else:
- var u = quoteShell(url)
- if execShellCmd("xdg-open " & u) == 0: return
- for b in getEnv("BROWSER").string.split(PathSep):
- try:
- # we use ``startProcess`` here because we don't want to block!
- discard startProcess(command=b, args=[url], options={poUsePath})
- return
- except OSError:
- discard
|