css-comments
authorClaus Gittinger <cg@exept.de>
Wed, 27 Jul 2005 10:31:43 +0200
changeset 2055 501740104b75
parent 2054 7ba59d01d49e
child 2056 b7eea50081f2
css-comments
MIMETypes.st
--- a/MIMETypes.st	Wed Jul 13 17:39:25 2005 +0200
+++ b/MIMETypes.st	Wed Jul 27 10:31:43 2005 +0200
@@ -123,6 +123,10 @@
     ].
 
     TypeToCommentStringMapping 
+        at:'text/css'
+        put:#('//' ('/*' '*/')).          
+
+    TypeToCommentStringMapping 
         at:'application/x-batch-script'
         put:#('rem ' (nil nil)).         "/ 'rem ' for EOL comments only
 
@@ -131,6 +135,7 @@
         at:'application/x-smalltalk-source'
         put:#('"/' ('"' '"')).           "/ '"/ ' for EOL; ".." for delimited comments
 
+
     "/ this is for standard smalltalk
 "/    TypeToCommentStringMapping 
 "/        at:'application/x-smalltalk-source'
@@ -141,6 +146,7 @@
         at:'application/x-pascal-source'
         put:#(nil ('{' '}')).           "/ '{'..'}' for delimited comments
 
+
 "/    "/ the following is k&r
 "/    TypeToCommentStringMapping 
 "/        at:'application/x-c-source'
@@ -987,7 +993,7 @@
 !MIMETypes class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.79 2005-07-01 17:09:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/MIMETypes.st,v 1.80 2005-07-27 08:31:43 cg Exp $'
 ! !
 
 MIMETypes initialize!