alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<!--
 Copyright (c) 2004, 2005 IBM Corporation and others.
 All rights reserved. This program and the accompanying materials
 are made available under the terms of the Eclipse Public License v1.0
 which accompanies this distribution, and is available at
 http://www.eclipse.org/legal/epl-v10.html
 
 Contributors:
     IBM Corporation - initial API and implementation
-->
<!--
This file contains a list of all "known" Web browsers, including their
names, file names, and default install locations. This file is used in the
initial startup of the Web browser plugin to locate known browsers, and is
also used to determine the type of any Web browser that the user browses to
in the preferences.

The attributes of each browser are:
  name - the user readable name on the Web browser. (should normally use % to
     get the translated name from plugin.properties)
  params - default parameters to the executable.
  executable - the executable filename.
  os - operating system. only default browsers with the correct OS will be
     searched.
  location(s) - default install locations. these locations should not contain
     the initial path, as it will be substituted with all known drives.
     (e.g. on Windows, a location of "test.exe" would look for "c:\test.exe",
     "d:\test.exe", etc. for all known drives.
-->
<browsers>
  <!-- Windows -->
  <browser name="%browserInternetExplorer" params="" executable="iexplore.exe" os="win32">
    <location>Program Files\Internet Explorer\IEXPLORE.EXE
  </browser>
  <browser name="%browserNetscape4" params="" executable="netscape.exe" os="win32">
    <location>Program Files\Netscape\Communicator\Program\netscape.exe
  </browser>
  <browser name="%browserNetscape7" params="" executable="netsc.exe" os="win32">
    <location>Program Files\Netscape\Netscape\netscp.exe
  </browser>
  <browser name="%browserMozilla" params="" executable="mozilla.exe" os="win32">
    <location>Program Files\mozilla.org\Mozilla\mozilla.exe
  </browser>
    <browser name="%browserFirefox" params="" executable="firefox.exe" os="win32">
    <location>Program Files\mozilla.org\Firefox\firefox.exe
    <location>Program Files\Mozilla Firefox\firefox.exe
  </browser>
  <browser name="%browserOpera" params="" executable="opera.exe" os="win32">
    <location>Program Files\Opera7\opera.exe
  </browser>

  <!-- Linux -->
  <browser name="%browserMozilla" params="" executable="mozilla" os="linux,aix">
    <location>usr/bin/mozilla
    <location>usr/X11/bin/mozilla
  </browser>
  <browser name="%browserNetscape" params="" executable="netscape" os="linux,aix">
    <location>usr/bin/netscape
    <location>usr/X11R6/bin/netscape
  </browser>
  <browser name="%browserFirefox" params="" executable="firefox.sh" os="linux,aix"/>
  <browser name="%browserKonqueror" params="" executable="konqueror" os="linux,aix">
    <location>opt/kde3/bin/konqueror
  </browser>
  <browser name="%browserGaleon" params="" executable="galeon" os="linux,aix">
    <location>opt/usr/gnome/bin/galeon
  </browser>

  <!-- Mac -->
  <browser name="%browserFirefox" params="" executable="firefox-bin" os="macosx">
    <location>Applications/Firefox.app/Contents/MacOS/firefox-bin
  </browser>
  <browser name="%browserCamino" params="" executable="Camino" os="macosx">
    <location>Applications/Camino.app/Contents/MacOS/Camino
  </browser>
  <browser name="%browserSafari" params="" executable="Safari" os="macosx">
    <location>Applications/Safari.app/Contents/MacOS/Safari
  </browser>
  <browser name="%browserMozilla" params="" executable="mozilla-bin" os="macosx">
    <location>Applications/Mozilla.app/Contents/MacOS/mozilla-bin  
  </browser>
  <browser name="%browserInternetExplorer" params="" executable="Internet Explorer" os="macosx">
    <location>Applications/Internet Explorer.app/Contents/MacOS/"Internet Explorer"  
  </browser> 
</browsers>
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.