Author: remm
Date: Mon May 29 09:17:01 2006
New Revision: 410115
URL: http://svn.apache.org/viewvc?rev=410115&view=rev
Log:
- Port root webapp.
Added:
tomcat/tc6.0.x/trunk/webapps/ROOT/admin/
tomcat/tc6.0.x/trunk/webapps/ROOT/admin/index.html (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/asf-logo-wide.gif (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/build.xml (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/favicon.ico (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/index.jsp (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat-power.gif (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat.gif (with props)
tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat.svg (with props)
Modified:
tomcat/tc6.0.x/trunk/webapps/ROOT/WEB-INF/web.xml
tomcat/tc6.0.x/trunk/webapps/ROOT/index.html
Modified: tomcat/tc6.0.x/trunk/webapps/ROOT/WEB-INF/web.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/WEB-INF/web.xml?rev=410115&r1=410114&r2=410115&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/ROOT/WEB-INF/web.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/ROOT/WEB-INF/web.xml Mon May 29 09:17:01 2006
@@ -1,2 +1,28 @@
-<web-app>
-</web-app>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ Copyright 2004 The Apache Software Foundation
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
+ version="2.4">
+
+ <display-name>Welcome to Tomcat</display-name>
+ <description>
+ Welcome to Tomcat
+ </description>
+
+</web-app>
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/admin/index.html
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/admin/index.html?rev=410115&view=auto
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/ROOT/admin/index.html (added)
+++ tomcat/tc6.0.x/trunk/webapps/ROOT/admin/index.html Mon May 29 09:17:01 2006
@@ -0,0 +1,14 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en"
"http://www.w3.org/TR/REC-html40/strict.dtd">
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <title>Administration</title>
+</head>
+
+<body>
+
+Tomcat's administration web application is no longer installed by default.
Download and install
+the "admin" package to use it.
+
+</body>
+</html>
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/admin/index.html
------------------------------------------------------------------------------
svn:eol-style = native
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/asf-logo-wide.gif
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/asf-logo-wide.gif?rev=410115&view=auto
==============================================================================
Binary file - no diff available.
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/asf-logo-wide.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/build.xml
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/build.xml?rev=410115&view=auto
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/ROOT/build.xml (added)
+++ tomcat/tc6.0.x/trunk/webapps/ROOT/build.xml Mon May 29 09:17:01 2006
@@ -0,0 +1,76 @@
+<project name="ROOT" default="build-main" basedir=".">
+
+
+ <!-- ===================== Initialize Property Values =================== -->
+
+ <!-- See "build.properties.sample" in the top level directory for all -->
+ <!-- property values you must customize for successful building!!! -->
+ <property file="build.properties"/>
+ <property file="../build.properties"/>
+ <property file="../../build.properties"/>
+ <property file="${user.home}/build.properties"/>
+
+ <property name="build.compiler" value="modern"/>
+ <property name="webapps.build" value="../build"/>
+ <property name="webapps.dist" value="../dist"/>
+ <property name="webapp.name" value="ROOT"/>
+
+
+ <!-- =================== BUILD: Create Directories ====================== -->
+ <target name="build-prepare">
+ <mkdir dir="${webapps.build}"/>
+ <mkdir dir="${webapps.build}/${webapp.name}"/>
+ </target>
+
+
+ <!-- ================ BUILD: Copy Static Files ========================== -->
+ <target name="build-static" depends="build-prepare">
+ <copy todir="${webapps.build}/${webapp.name}">
+ <fileset dir=".">
+ <exclude name="build.*"/>
+ </fileset>
+ </copy>
+ </target>
+
+
+ <!-- ================= BUILD: Compile Server Components ================= -->
+ <target name="build-main" depends="build-static"/>
+
+
+ <!-- ==================== BUILD: Rebuild Everything ===================== -->
+ <target name="all" depends="build-clean,build-main"
+ description="Clean and build ROOT webapp"/>
+
+
+ <!-- ======================= BUILD: Clean Directory ===================== -->
+ <target name="build-clean">
+ <delete dir="${webapps.build}/${webapp.name}"/>
+ </target>
+
+
+ <!-- ======================= DIST: Create Directories =================== -->
+ <target name="dist-prepare">
+ <mkdir dir="${webapps.dist}"/>
+ </target>
+
+
+ <!-- ======================= DIST: Create Distribution Files ============ -->
+ <target name="dist" depends="build-main,dist-prepare"
+ description="Create ROOT webapp binary distribution">
+ <jar jarfile="${webapps.dist}/${webapp.name}.war"
+ basedir="${webapps.build}/${webapp.name}" includes="**"/>
+ </target>
+
+
+ <!-- ======================= DIST: Clean Directory ====================== -->
+ <target name="dist-clean">
+ <delete dir="${webapps.dist}/${webapp.name}"/>
+ </target>
+
+
+ <!-- ====================== Convenient Synonyms ========================= -->
+ <target name="clean" depends="build-clean,dist-clean"
+ description="Clean build and dist directories"/>
+
+
+</project>
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/build.xml
------------------------------------------------------------------------------
svn:eol-style = native
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/favicon.ico
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/favicon.ico?rev=410115&view=auto
==============================================================================
Binary file - no diff available.
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/favicon.ico
------------------------------------------------------------------------------
svn:mime-type = image/x-icon
Modified: tomcat/tc6.0.x/trunk/webapps/ROOT/index.html
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/index.html?rev=410115&r1=410114&r2=410115&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/ROOT/index.html (original)
+++ tomcat/tc6.0.x/trunk/webapps/ROOT/index.html Mon May 29 09:17:01 2006
@@ -1,2 +1,198 @@
-<h1>Dummy</h1>
-
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <title>Apache Tomcat</title>
+ <style type="text/css">
+ /*<![CDATA[*/
+ body {
+ color: #000000;
+ background-color: #FFFFFF;
+ font-family: Arial, "Times New Roman", Times, serif;
+ margin: 10px 0px;
+ }
+
+ img {
+ border: none;
+ }
+
+ a:link, a:visited {
+ color: blue
+ }
+
+ th {
+ font-family: Verdana, "Times New Roman", Times, serif;
+ font-size: 110%;
+ font-weight: normal;
+ font-style: italic;
+ background: #D2A41C;
+ text-align: left;
+ }
+
+ td {
+ color: #000000;
+ font-family: Arial, Helvetica, sans-serif;
+ }
+
+ td.menu {
+ background: #FFDC75;
+ }
+
+ .center {
+ text-align: center;
+ }
+
+ .code {
+ color: #000000;
+ font-family: "Courier New", Courier, monospace;
+ font-size: 110%;
+ margin-left: 2.5em;
+ }
+
+ #banner {
+ margin-bottom: 12px;
+ }
+
+ p#congrats {
+ margin-top: 0;
+ font-weight: bold;
+ text-align: center;
+ }
+
+ p#footer {
+ text-align: right;
+ font-size: 80%;
+ }
+ /*]]>*/
+ </style>
+</head>
+
+<body>
+
+<!-- Header -->
+<table id="banner" width="100%">
+ <tr>
+ <td align="left" style="width:130px">
+ <a href="http://tomcat.apache.org/">
+ <img src="tomcat.gif" height="92" width="130" alt="The Mighty Tomcat
- MEOW!"/>
+ </a>
+ </td>
+ <td align="left" valign="top"><b>Apache Tomcat</b></td>
+ <td align="right">
+ <a href="http://jakarta.apache.org/">
+ <img src="asf-logo-wide.gif" height="51" width="537" alt="The Apache
Software Foundation"/>
+ </a>
+ </td>
+ </tr>
+</table>
+
+<table>
+ <tr>
+
+ <!-- Table of Contents -->
+ <td valign="top">
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Administration</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="manager/status">Status</a><br/>
+ <a href="admin">Tomcat Administration</a><br/>
+ <a href="manager/html">Tomcat Manager</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br />
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Documentation</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="RELEASE-NOTES.txt">Release Notes</a><br/>
+ <a
href="tomcat-docs/changelog.html">Change Log</a><br/>
+ <a href="tomcat-docs">Tomcat Documentation</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br/>
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Tomcat Online</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="http://tomcat.apache.org/">Home Page</a><br/>
+ <a href="http://tomcat.apache.org/faq/">FAQ</a><br/>
+ <a
href="http://tomcat.apache.org/bugreport.html">Bug Database</a><br/>
+ <a
href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&resolution=LATER&resolution=REMIND&resolution=---&bugidtype=include&product=Tomcat+6&cmdtype=doit&order=Importance">Open
Bugs</a><br/>
+ <a
href="http://mail-archives.apache.org/mod_mbox/tomcat-users/">Users Mailing List</a><br/>
+ <a
href="http://mail-archives.apache.org/mod_mbox/tomcat-dev/">Developers Mailing List</a><br/>
+ <a href="irc://irc.freenode.net/#tomcat">IRC</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br/>
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Miscellaneous</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="examples/">Examples</a><br/>
+ <a
href="http://java.sun.com/products/jsp">Sun's Java Server Pages Site</a><br/>
+ <a
href="http://java.sun.com/products/servlet">Sun's Servlet Site</a><br/>
+
+ </td>
+ </tr>
+ </table>
+ </td>
+
+ <td style="width:20px"> </td>
+
+ <!-- Body -->
+ <td align="left" valign="top">
+ <p id="congrats">If you're seeing this page via a web browser, it
means you've setup Tomcat successfully. Congratulations!</p>
+
+ <p>As you may have guessed by now, this is the default Tomcat home
page. It can be found on the local filesystem at:</p>
+ <p class="code">$CATALINA_HOME/webapps/ROOT/index.html</p>
+
+ <p>where "$CATALINA_HOME" is the root of the Tomcat installation
directory. If you're seeing this page, and you don't think you should be, then
either you're either a user who has arrived at new installation of Tomcat, or
you're an administrator who hasn't got his/her setup quite right. Providing the
latter is the case, please refer to the <a href="tomcat-docs">Tomcat
Documentation</a> for more detailed setup and administration information than
is found in the INSTALL file.</p>
+
+ <p><b>NOTE: For security reasons, using the administration webapp
+ is restricted to users with role "admin". The manager webapp
+ is restricted to users with role "manager".</b>
+ Users are defined in
<code>$CATALINA_HOME/conf/tomcat-users.xml</code>.</p>
+
+ <p>Included with this release are a host of sample Servlets and
JSPs (with associated source code), extensive documentation (including the
Servlet 2.4 and JSP 2.0 API JavaDoc), and an introductory guide to developing
web applications.</p>
+
+ <p>Tomcat mailing lists are available at the Tomcat project web
site:</p>
+
+ <ul>
+ <li><b><a
href="mailto:[email protected]">[email protected]</a></b> for
general questions related to configuring and using Tomcat</li>
+ <li><b><a
href="mailto:[email protected]">[email protected]</a></b> for
developers working on Tomcat</li>
+ </ul>
+
+ <p>Thanks for using Tomcat!</p>
+
+ <p id="footer"><img src="tomcat-power.gif" width="77" height="80"
alt="Powered by Tomcat"/><br/>
+
+
+ Copyright © 1999-2005 Apache Software Foundation<br/>
+ All Rights Reserved
+ </p>
+ </td>
+
+ </tr>
+</table>
+
+</body>
+</html>
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/index.jsp
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/index.jsp?rev=410115&view=auto
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/ROOT/index.jsp (added)
+++ tomcat/tc6.0.x/trunk/webapps/ROOT/index.jsp Mon May 29 09:17:01 2006
@@ -0,0 +1,218 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<%@ page session="false" %>
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <title><%= application.getServerInfo() %></title>
+ <style type="text/css">
+ /*<![CDATA[*/
+ body {
+ color: #000000;
+ background-color: #FFFFFF;
+ font-family: Arial, "Times New Roman", Times, serif;
+ margin: 10px 0px;
+ }
+
+ img {
+ border: none;
+ }
+
+ a:link, a:visited {
+ color: blue
+ }
+
+ th {
+ font-family: Verdana, "Times New Roman", Times, serif;
+ font-size: 110%;
+ font-weight: normal;
+ font-style: italic;
+ background: #D2A41C;
+ text-align: left;
+ }
+
+ td {
+ color: #000000;
+ font-family: Arial, Helvetica, sans-serif;
+ }
+
+ td.menu {
+ background: #FFDC75;
+ }
+
+ .center {
+ text-align: center;
+ }
+
+ .code {
+ color: #000000;
+ font-family: "Courier New", Courier, monospace;
+ font-size: 110%;
+ margin-left: 2.5em;
+ }
+
+ #banner {
+ margin-bottom: 12px;
+ }
+
+ p#congrats {
+ margin-top: 0;
+ font-weight: bold;
+ text-align: center;
+ }
+
+ p#footer {
+ text-align: right;
+ font-size: 80%;
+ }
+ /*]]>*/
+ </style>
+</head>
+
+<body>
+
+<!-- Header -->
+<table id="banner" width="100%">
+ <tr>
+ <td align="left" style="width:130px">
+ <a href="http://tomcat.apache.org/">
+ <img src="tomcat.gif" height="92" width="130" alt="The Mighty Tomcat
- MEOW!"/>
+ </a>
+ </td>
+ <td align="left" valign="top"><b><%= application.getServerInfo()
%></b></td>
+ <td align="right">
+ <a href="http://jakarta.apache.org/">
+ <img src="asf-logo-wide.gif" height="51" width="537" alt="The Apache
Software Foundation"/>
+ </a>
+ </td>
+ </tr>
+</table>
+
+<table>
+ <tr>
+
+ <!-- Table of Contents -->
+ <td valign="top">
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Administration</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="manager/status">Status</a><br/>
+ <a href="admin">Tomcat Administration</a><br/>
+ <a href="manager/html">Tomcat Manager</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br />
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Documentation</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="RELEASE-NOTES.txt">Release Notes</a><br/>
+ <a
href="tomcat-docs/changelog.html">Change Log</a><br/>
+ <a href="tomcat-docs">Tomcat Documentation</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br/>
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Tomcat Online</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="http://tomcat.apache.org/">Home Page</a><br/>
+ <a href="http://tomcat.apache.org/faq/">FAQ</a><br/>
+ <a
href="http://tomcat.apache.org/bugreport.html">Bug Database</a><br/>
+ <a
href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=RESOLVED&resolution=LATER&resolution=REMIND&resolution=---&bugidtype=include&product=Tomcat+5&cmdtype=doit&order=Importance">Open
Bugs</a><br/>
+ <a
href="http://mail-archives.apache.org/mod_mbox/tomcat-users/">Users Mailing List</a><br/>
+ <a
href="http://mail-archives.apache.org/mod_mbox/tomcat-dev/">Developers Mailing List</a><br/>
+ <a href="irc://irc.freenode.net/#tomcat">IRC</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br/>
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Examples</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a href="jsp-examples/">JSP Examples</a><br/>
+ <a href="servlets-examples/">Servlet Examples</a><br/>
+ <a href="webdav/">WebDAV capabilities</a><br/>
+
+ </td>
+ </tr>
+ </table>
+
+ <br/>
+ <table width="100%" border="1" cellspacing="0" cellpadding="3">
+ <tr>
+ <th>Miscellaneous</th>
+ </tr>
+ <tr>
+ <td class="menu">
+ <a
href="http://java.sun.com/products/jsp">Sun's Java Server Pages Site</a><br/>
+ <a
href="http://java.sun.com/products/servlet">Sun's Servlet Site</a><br/>
+
+ </td>
+ </tr>
+ </table>
+ </td>
+
+ <td style="width:20px"> </td>
+
+ <!-- Body -->
+ <td align="left" valign="top">
+ <p id="congrats">If you're seeing this page via a web browser, it
means you've setup Tomcat successfully. Congratulations!</p>
+
+ <p>As you may have guessed by now, this is the default Tomcat home
page. It can be found on the local filesystem at:</p>
+ <p class="code">$CATALINA_HOME/webapps/ROOT/index.jsp</p>
+
+ <p>where "$CATALINA_HOME" is the root of the Tomcat installation
directory. If you're seeing this page, and you don't think you should be, then
either you're either a user who has arrived at new installation of Tomcat, or
you're an administrator who hasn't got his/her setup quite right. Providing the
latter is the case, please refer to the <a href="tomcat-docs">Tomcat
Documentation</a> for more detailed setup and administration information than
is found in the INSTALL file.</p>
+
+ <p><b>NOTE:</b> This page is precompiled. If you change it, this
page will not change since
+ it was compiled into a servlet at build time.
+ (See <tt>$CATALINA_HOME/webapps/ROOT/WEB-INF/web.xml</tt> as
to how it was mapped.)
+ </p>
+
+ <p><b>NOTE: For security reasons, using the administration webapp
+ is restricted to users with role "admin". The manager webapp
+ is restricted to users with role "manager".</b>
+ Users are defined in
<code>$CATALINA_HOME/conf/tomcat-users.xml</code>.</p>
+
+ <p>Included with this release are a host of sample Servlets and
JSPs (with associated source code), extensive documentation (including the
Servlet 2.4 and JSP 2.0 API JavaDoc), and an introductory guide to developing
web applications.</p>
+
+ <p>Tomcat mailing lists are available at the Tomcat project web
site:</p>
+
+ <ul>
+ <li><b><a
href="mailto:[email protected]">[email protected]</a></b> for
general questions related to configuring and using Tomcat</li>
+ <li><b><a
href="mailto:[email protected]">[email protected]</a></b> for
developers working on Tomcat</li>
+ </ul>
+
+ <p>Thanks for using Tomcat!</p>
+
+ <p id="footer"><img src="tomcat-power.gif" width="77" height="80"
alt="Powered by Tomcat"/><br/>
+
+
+ Copyright © 1999-2005 Apache Software Foundation<br/>
+ All Rights Reserved
+ </p>
+ </td>
+
+ </tr>
+</table>
+
+</body>
+</html>
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/index.jsp
------------------------------------------------------------------------------
svn:eol-style = native
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat-power.gif
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat-power.gif?rev=410115&view=auto
==============================================================================
Binary file - no diff available.
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat-power.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added: tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat.gif
URL:
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat.gif?rev=410115&view=auto
==============================================================================
Binary file - no diff available.
Propchange: tomcat/tc6.0.x/trunk/webapps/ROOT/tomcat.gif
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]