support konqueror as html browser
authorca
Fri, 28 Jul 2006 14:49:40 +0200
changeset 2142 d9537c2a5c64
parent 2141 8decb5cd7766
child 2143 8f5996be6907
support konqueror as html browser
MIMETypes.st
--- a/MIMETypes.st	Fri Jul 28 14:06:24 2006 +0200
+++ b/MIMETypes.st	Fri Jul 28 14:49:40 2006 +0200
@@ -196,12 +196,12 @@
     unixCommands at:'application/pdf'              put:'acroread -display %2 %1'.
 
     OperatingSystem isMSWINDOWSlike ifFalse:[ |cmd|
-        cmd := #( firefox mozilla netscape opera )
+        cmd := #( firefox konqueror mozilla netscape opera )
                 detect:[:aCmd| (OperatingSystem pathOfCommand:aCmd) notEmptyOrNil ]
                 ifNone:nil.
 
         cmd notNil ifTrue:[
-            unixCommands at:'text/html' put:(cmd, ' %1')       
+            unixCommands at:'text/html' put:(cmd, ' "%1"')       
         ].
     ].
 
@@ -1062,7 +1062,7 @@
 !MIMETypes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.86 2006-07-28 12:06:24 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.87 2006-07-28 12:49:40 ca Exp $'
 ! !
 
 MIMETypes initialize!