You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pe...@apache.org on 2006/01/25 22:05:50 UTC

svn commit: r372314 - /tomcat/container/tc5.5.x/catalina/src/conf/web.xml

Author: pero
Date: Wed Jan 25 13:05:47 2006
New Revision: 372314

URL: http://svn.apache.org/viewcvs?rev=372314&view=rev
Log:
add doc for JspServlet compiler switches
add some requested mime types :-(

Modified:
    tomcat/container/tc5.5.x/catalina/src/conf/web.xml

Modified: tomcat/container/tc5.5.x/catalina/src/conf/web.xml
URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/catalina/src/conf/web.xml?rev=372314&r1=372313&r2=372314&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/catalina/src/conf/web.xml (original)
+++ tomcat/container/tc5.5.x/catalina/src/conf/web.xml Wed Jan 25 13:05:47 2006
@@ -195,6 +195,16 @@
   <!--   xpoweredBy          Determines whether X-Powered-By response       -->
   <!--                       header is added by generated servlet  [false]  -->
   <!--                                                                      -->
+  <!--   compilerTargetVM    Compiler target VM                             -->  
+  <!--                       default is System.properties                   -->
+  <!--                        java.specification.version > 1.4              -->
+  <!--                        [1.5] else [1.4]                              -->
+  <!--                                                                      -->
+  <!--   compilerSourceVM    Compiler source VM                             -->
+  <!--                       default is System.properties                   -->
+  <!--                        java.specification.version > 1.4              -->
+  <!--                        [1.5] else [1.4]                              -->
+  <!--                                                                      -->
   <!-- If you wish to use Jikes to compile JSP pages:                       -->
   <!--   Please see the "Using Jikes" section of the Jasper-HowTo           -->
   <!--   page in the Tomcat documentation.                                  -->
@@ -1050,8 +1060,19 @@
         <extension>zip</extension>
         <mime-type>application/zip</mime-type>
     </mime-mapping>
-
-
+    <mime-mapping>
+        <extension>xls</extension>
+        <mime-type>application/vnd.ms-excel</mime-type>
+    </mime-mapping>
+    <mime-mapping>
+        <extension>doc</extension>
+        <mime-type>application/vnd.ms-word</mime-type>
+    </mime-mapping>
+    <mime-mapping>
+        <extension>ppt</extension>
+        <mime-type>application/vnd.ms-powerpoint</mime-type>
+    </mime-mapping>
+a
   <!-- ==================== Default Welcome File List ===================== -->
   <!-- When a request URI refers to a directory, the default servlet looks  -->
   <!-- for a "welcome file" within that directory and, if present,          -->



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


Re: svn commit: r372314 - /tomcat/container/tc5.5.x/catalina/src/conf/web.xml

Posted by Tim Funk <fu...@joedog.org>.
It seems an extra 'a' snuck into this commit.

-Tim

pero@apache.org wrote:
> Author: pero
> Date: Wed Jan 25 13:05:47 2006
> Modified: tomcat/container/tc5.5.x/catalina/src/conf/web.xml
> URL: http://svn.apache.org/viewcvs/tomcat/container/tc5.5.x/catalina/src/conf/web.xml?rev=372314&r1=372313&r2=372314&view=diff
> +    <mime-mapping>
> +        <extension>ppt</extension>
> +        <mime-type>application/vnd.ms-powerpoint</mime-type>
> +    </mime-mapping>
> +a
>    <!-- ==================== Default Welcome File List ===================== -->

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org