MIMETypes.st
changeset 4219 b467fda5ae2c
parent 4179 3fa2465bef0a
child 4245 f70d2cc0e016
--- a/MIMETypes.st	Fri Dec 28 04:37:47 2018 +0000
+++ b/MIMETypes.st	Thu Feb 07 17:53:36 2019 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1997 by eXept Software AG 
 	      All Rights Reserved
@@ -251,7 +249,8 @@
 
     OperatingSystem isMSWINDOWSlike ifFalse:[ |cmd|
         OperatingSystem isOSXlike ifTrue:[
-            unixCommands at:'text/html' put:('open -a Safari "%1"').
+            "/ unixCommands at:'text/html' put:('open -a Safari "%1"').
+            unixCommands at:'text/html' put:('open -a Firefox "%1"').
             unixCommands at:'application/pdf' put:('open -a Preview "%1"').
         ] ifFalse:[
             listToTry := #('firefox' 'chrome' 'chromium' 'konqueror' 'opera').
@@ -297,6 +296,7 @@
 
     "Modified: / 12-05-2004 / 11:43:23 / cg"
     "Modified: / 01-03-2018 / 18:42:42 / mawalch"
+    "Modified: / 07-02-2019 / 17:53:24 / Claus Gittinger"
 !
 
 initializeFileInfoMappings