Sha256: 5c2b124650aa605891bc970f956f557271b8245e00da65ca72aefe8443862d13
Contents?: true
Size: 1.99 KB
Versions: 4
Compression:
Stored size: 1.99 KB
Contents
class Launchy::Application # # The class handling the browser application and all of its schemes # class Browser < Launchy::Application def self.schemes %w[ http https ftp file ] end def windows_app_list [ 'start "Launchy" /d'] end def cygwin_app_list [ 'cmd /C start "Launchy" /d' ] end def darwin_app_list [ find_executable( "open" ) ] end def nix_app_list nix_de = Launchy::Detect::NixDesktopEnvironment.detect app_list = %w[ xdg-open ] app_list << nix_de.browser app_list << nix_de.fallback_browsers app_list.flatten! app_list.delete_if { |b| b.nil? || (b.strip.size == 0) } app_list.collect { |bin| find_executable( bin ) }.find_all { |x| not x.nil? } end # use a call back mechanism to get the right app_list that is decided by the # host_os_family class. def app_list host_os_family.app_list( self ) end def browser_env return [] unless ENV['BROWSER'] browser_env = ENV['BROWSER'].split( File::PATH_SEPARATOR ) browser_env.flatten! browser_env.delete_if { |b| b.nil? || (b.strip.size == 0) } return browser_env end # Get the full commandline of what we are going to add the uri to def browser_cmdline possibilities = (browser_env + app_list).flatten possibilities.each do |p| Launchy.log "#{self.class.name} : possibility : #{p}" end browser = possibilities.shift Launchy.log "#{self.class.name} : Using browser value '#{browser}'" return browser end def cmd_and_args( uri, options = {} ) cmd = browser_cmdline args = [ uri.to_s ] if cmd =~ /%s/ then cmd.gsub!( /%s/, args.shift ) end return [cmd, args] end # final assembly of the command and do %s substitution # http://www.catb.org/~esr/BROWSER/index.html def open( uri, options = {} ) cmd, args = cmd_and_args( uri, options ) run( cmd, args ) end end end
Version data entries
4 entries across 4 versions & 1 rubygems