Author: jerome
Date: 2009-10-16 11:10:53 +0200 (Fri, 16 Oct 2009)
New Revision: 5708

Removed:
   
software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java
Log:
* Removed browser launcher.

Deleted: 
software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java
===================================================================
--- 
software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java
  2009-10-16 09:04:39 UTC (rev 5707)
+++ 
software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/BareBonesBrowserLaunch.java
  2009-10-16 09:10:53 UTC (rev 5708)
@@ -1,52 +0,0 @@
-/////////////////////////////////////////////////////////
-// Bare Bones Browser Launch //
-// Version 1.5 //
-// December 10, 2005 //
-// Supports: Mac OS X, GNU/Linux, Unix, Windows XP //
-// Example Usage: //
-// String url = "http://www.centerkey.com/";; //
-// BareBonesBrowserLaunch.openURL(url); //
-// Public Domain Software -- Free to Use as You Like //
-/////////////////////////////////////////////////////////
-
-import java.lang.reflect.Method;
-
-public class BareBonesBrowserLaunch
-{
-
-       @SuppressWarnings("unchecked")
-       public static void openURL(String url)
-       {
-               String osName = System.getProperty("os.name");
-               try
-               {
-                       if (osName.startsWith("Mac OS"))
-                       {
-                               Class fileMgr = 
Class.forName("com.apple.eio.FileManager");
-                               Method openURL = 
fileMgr.getDeclaredMethod("openURL",
-                                       new Class[] {String.class});
-                               openURL.invoke(null, new Object[] {url});
-                       }
-                       else if (osName.startsWith("Windows"))
-                               Runtime.getRuntime().exec("rundll32 
url.dll,FileProtocolHandler " + url);
-                       else
-                       { //assume Unix or Linux
-                               String[] browsers = {
-                                               "firefox", "opera", 
"konqueror", "epiphany", "mozilla", "netscape" };
-                               String browser = null;
-                               for (int count = 0; count < browsers.length && 
browser == null; count++)
-                                       if (Runtime.getRuntime().exec(
-                                                       new String[] {"which", 
browsers[count]}).waitFor() == 0)
-                                               browser = browsers[count];
-                               if (browser == null)
-                                       throw new Exception("Could not find web 
browser");
-                               else
-                                       Runtime.getRuntime().exec(new String[] 
{browser, url});
-                       }
-               }
-               catch (Exception e)
-               {
-               }
-       }
-}
-


------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to