You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2003/01/03 03:19:44 UTC

DO NOT REPLY [Bug 15772] New: - catalina's web.xml missing mime-types some incorrect...

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15772>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15772

catalina's web.xml missing mime-types some incorrect...

           Summary: catalina's web.xml missing mime-types some incorrect...
           Product: Tomcat 5
           Version: Nightly Build
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Catalina
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: hoju@visi.com


I had reported a bug with Tomcat-4.1.10 missing xml and xsl mime type entries. 
It was fixed shortly thereafter, but it doesn't seem as if the change ever made
it to Tomcat5.  There are also a few other issues that are listed below...

The following mime-types are missing...

<mime-mapping>
    <extension>jsf</extension>
    <mime-type>text/plain</mime-type>
</mime-mapping>
<mime-mapping>
    <extension>jspf</extension>
    <mime-type>text/plain</mime-type>
</mime-mapping>

The above was added in the Tomcat-4.1.11 release by Remy.  See the following for
info:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11674

<mime-mapping>
    <extension>xml</extension>
    <mime-type>text/xml</mime-type>
</mime-mapping>
<mime-mapping>
    <extension>xsl</extension>
    <mime-type>text/xml</mime-type>
</mime-mapping>


The following is wrong...

<mime-mapping>
    <!-- WML Script Source -->
    <extension>wmls</extension>
    <mime-type>text/vnd.wap.wmls</mime-type>
</mime-mapping>

it should be...

<mime-mapping>
    <!-- WML Script Source -->
    <extension>wmls</extension>
    <mime-type>text/vnd.wap.wmlscript</mime-type>
</mime-mapping>

I also cleaned up a couple of white space issues that were different between the
Tomcat-4.1.18 web.xml file and the Tomcat-5.0 nightly web.xml file.  A corrected
version is coming up...

Jake

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>