├── .gitignore ├── README.md ├── catalina-home ├── LICENSE ├── NOTICE ├── RELEASE-NOTES ├── RUNNING.txt ├── bin │ ├── bootstrap.jar │ ├── catalina-tasks.xml │ ├── catalina.bat │ ├── catalina.sh │ ├── commons-daemon-native.tar.gz │ ├── commons-daemon.jar │ ├── configtest.bat │ ├── configtest.sh │ ├── cpappend.bat │ ├── daemon.sh │ ├── digest.bat │ ├── digest.sh │ ├── setclasspath.bat │ ├── setclasspath.sh │ ├── shutdown.bat │ ├── shutdown.sh │ ├── startup.bat │ ├── startup.sh │ ├── tomcat-juli.jar │ ├── tomcat-native.tar.gz │ ├── tool-wrapper.bat │ ├── tool-wrapper.sh │ ├── version.bat │ └── version.sh ├── conf │ ├── catalina.policy │ ├── catalina.properties │ ├── context.xml │ ├── logging.properties │ ├── server.xml │ ├── tomcat-users.xml │ └── web.xml ├── lib │ ├── annotations-api.jar │ ├── catalina-ant.jar │ ├── catalina-ha.jar │ ├── catalina-tribes.jar │ ├── catalina.jar │ ├── ecj-4.2.2.jar │ ├── el-api.jar │ ├── jasper-el.jar │ ├── jasper.jar │ ├── jsp-api.jar │ ├── servlet-api.jar │ ├── tomcat-api.jar │ ├── tomcat-coyote.jar │ ├── tomcat-dbcp.jar │ ├── tomcat-i18n-es.jar │ ├── tomcat-i18n-fr.jar │ ├── tomcat-i18n-ja.jar │ ├── tomcat-jdbc.jar │ └── tomcat-util.jar ├── logs │ ├── catalina.2017-11-14.log │ ├── catalina.2017-11-18.log │ ├── catalina.2017-11-19.log │ ├── catalina.2017-11-21.log │ ├── catalina.2017-11-22.log │ ├── catalina.2017-11-25.log │ ├── host-manager.2017-11-14.log │ ├── host-manager.2017-11-18.log │ ├── host-manager.2017-11-19.log │ ├── host-manager.2017-11-21.log │ ├── host-manager.2017-11-22.log │ ├── localhost.2017-11-14.log │ ├── localhost.2017-11-18.log │ ├── localhost.2017-11-19.log │ ├── localhost.2017-11-21.log │ ├── localhost.2017-11-22.log │ ├── localhost.2017-11-25.log │ ├── localhost_access_log.2013-10-14.txt │ ├── localhost_access_log.2013-10-15.txt │ ├── localhost_access_log.2017-11-11.txt │ ├── localhost_access_log.2017-11-14.txt │ ├── localhost_access_log.2017-11-18.txt │ ├── localhost_access_log.2017-11-19.txt │ ├── localhost_access_log.2017-11-22.txt │ ├── manager.2017-11-14.log │ ├── manager.2017-11-18.log │ ├── manager.2017-11-19.log │ ├── manager.2017-11-21.log │ └── manager.2017-11-22.log ├── temp │ └── safeToDelete.tmp ├── webapps │ ├── ROOT │ │ ├── RELEASE-NOTES.txt │ │ ├── WEB-INF │ │ │ └── web.xml │ │ ├── asf-logo-wide.gif │ │ ├── asf-logo.png │ │ ├── bg-button.png │ │ ├── bg-middle.png │ │ ├── bg-nav-item.png │ │ ├── bg-nav.png │ │ ├── bg-upper.png │ │ ├── build.xml │ │ ├── favicon.ico │ │ ├── index.jsp │ │ ├── tomcat-power.gif │ │ ├── tomcat.css │ │ ├── tomcat.gif │ │ ├── tomcat.png │ │ └── tomcat.svg │ ├── docs │ │ ├── BUILDING.txt │ │ ├── RELEASE-NOTES.txt │ │ ├── RUNNING.txt │ │ ├── WEB-INF │ │ │ └── web.xml │ │ ├── aio.html │ │ ├── api │ │ │ └── index.html │ │ ├── appdev │ │ │ ├── build.xml.txt │ │ │ ├── deployment.html │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── introduction.html │ │ │ ├── processes.html │ │ │ ├── sample │ │ │ │ ├── build.xml │ │ │ │ ├── docs │ │ │ │ │ └── README.txt │ │ │ │ ├── index.html │ │ │ │ ├── sample.war │ │ │ │ ├── src │ │ │ │ │ └── mypackage │ │ │ │ │ │ └── Hello.java │ │ │ │ └── web │ │ │ │ │ ├── WEB-INF │ │ │ │ │ └── web.xml │ │ │ │ │ ├── hello.jsp │ │ │ │ │ ├── images │ │ │ │ │ └── tomcat.gif │ │ │ │ │ └── index.html │ │ │ ├── source.html │ │ │ └── web.xml.txt │ │ ├── apr.html │ │ ├── architecture │ │ │ ├── index.html │ │ │ ├── overview.html │ │ │ ├── requestProcess.html │ │ │ ├── requestProcess │ │ │ │ ├── requestProcess.pdf │ │ │ │ └── roseModel.mdl │ │ │ ├── startup.html │ │ │ └── startup │ │ │ │ ├── serverStartup.pdf │ │ │ │ └── serverStartup.txt │ │ ├── balancer-howto.html │ │ ├── building.html │ │ ├── cgi-howto.html │ │ ├── changelog.html │ │ ├── class-loader-howto.html │ │ ├── cluster-howto.html │ │ ├── comments.html │ │ ├── config │ │ │ ├── ajp.html │ │ │ ├── cluster-channel.html │ │ │ ├── cluster-deployer.html │ │ │ ├── cluster-interceptor.html │ │ │ ├── cluster-listener.html │ │ │ ├── cluster-manager.html │ │ │ ├── cluster-membership.html │ │ │ ├── cluster-receiver.html │ │ │ ├── cluster-sender.html │ │ │ ├── cluster-valve.html │ │ │ ├── cluster.html │ │ │ ├── context.html │ │ │ ├── engine.html │ │ │ ├── executor.html │ │ │ ├── filter.html │ │ │ ├── globalresources.html │ │ │ ├── host.html │ │ │ ├── http.html │ │ │ ├── index.html │ │ │ ├── jar-scanner.html │ │ │ ├── listeners.html │ │ │ ├── loader.html │ │ │ ├── manager.html │ │ │ ├── realm.html │ │ │ ├── resources.html │ │ │ ├── server.html │ │ │ ├── service.html │ │ │ ├── systemprops.html │ │ │ └── valve.html │ │ ├── connectors.html │ │ ├── default-servlet.html │ │ ├── deployer-howto.html │ │ ├── developers.html │ │ ├── elapi │ │ │ └── index.html │ │ ├── extras.html │ │ ├── funcspecs │ │ │ ├── fs-admin-apps.html │ │ │ ├── fs-admin-objects.html │ │ │ ├── fs-admin-opers.html │ │ │ ├── fs-default.html │ │ │ ├── fs-jdbc-realm.html │ │ │ ├── fs-jndi-realm.html │ │ │ ├── fs-memory-realm.html │ │ │ ├── index.html │ │ │ └── mbean-names.html │ │ ├── html-manager-howto.html │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── asf-logo.gif │ │ │ ├── code.gif │ │ │ ├── cors-flowchart.png │ │ │ ├── design.gif │ │ │ ├── docs.gif │ │ │ ├── fix.gif │ │ │ ├── printer.gif │ │ │ ├── tomcat.gif │ │ │ ├── tomcat.svg │ │ │ ├── update.gif │ │ │ └── void.gif │ │ ├── index.html │ │ ├── introduction.html │ │ ├── jasper-howto.html │ │ ├── jdbc-pool.html │ │ ├── jndi-datasource-examples-howto.html │ │ ├── jndi-resources-howto.html │ │ ├── jspapi │ │ │ └── index.html │ │ ├── logging.html │ │ ├── manager-howto.html │ │ ├── maven-jars.html │ │ ├── mbeans-descriptor-howto.html │ │ ├── monitoring.html │ │ ├── proxy-howto.html │ │ ├── realm-howto.html │ │ ├── security-howto.html │ │ ├── security-manager-howto.html │ │ ├── servletapi │ │ │ └── index.html │ │ ├── setup.html │ │ ├── ssi-howto.html │ │ ├── ssl-howto.html │ │ ├── tribes │ │ │ ├── developers.html │ │ │ ├── faq.html │ │ │ ├── interceptors.html │ │ │ ├── introduction.html │ │ │ ├── membership.html │ │ │ ├── setup.html │ │ │ ├── status.html │ │ │ └── transport.html │ │ ├── virtual-hosting-howto.html │ │ ├── web-socket-howto.html │ │ ├── windows-auth-howto.html │ │ └── windows-service-howto.html │ ├── examples │ │ ├── WEB-INF │ │ │ ├── classes │ │ │ │ ├── CookieExample.class │ │ │ │ ├── CookieExample.java │ │ │ │ ├── HelloWorldExample.class │ │ │ │ ├── HelloWorldExample.java │ │ │ │ ├── LocalStrings.properties │ │ │ │ ├── LocalStrings_en.properties │ │ │ │ ├── LocalStrings_es.properties │ │ │ │ ├── LocalStrings_fr.properties │ │ │ │ ├── LocalStrings_pt.properties │ │ │ │ ├── RequestHeaderExample.class │ │ │ │ ├── RequestHeaderExample.java │ │ │ │ ├── RequestInfoExample.class │ │ │ │ ├── RequestInfoExample.java │ │ │ │ ├── RequestParamExample.class │ │ │ │ ├── RequestParamExample.java │ │ │ │ ├── ServletToJsp.class │ │ │ │ ├── ServletToJsp.java │ │ │ │ ├── SessionExample.class │ │ │ │ ├── SessionExample.java │ │ │ │ ├── async │ │ │ │ │ ├── Async0$1.class │ │ │ │ │ ├── Async0.class │ │ │ │ │ ├── Async0.java │ │ │ │ │ ├── Async1$1.class │ │ │ │ │ ├── Async1.class │ │ │ │ │ ├── Async1.java │ │ │ │ │ ├── Async2$1.class │ │ │ │ │ ├── Async2.class │ │ │ │ │ ├── Async2.java │ │ │ │ │ ├── Async3.class │ │ │ │ │ ├── Async3.java │ │ │ │ │ ├── AsyncStockServlet.class │ │ │ │ │ ├── AsyncStockServlet.java │ │ │ │ │ ├── Stockticker$Stock.class │ │ │ │ │ ├── Stockticker$TickListener.class │ │ │ │ │ ├── Stockticker.class │ │ │ │ │ └── Stockticker.java │ │ │ │ ├── cal │ │ │ │ │ ├── Entries.class │ │ │ │ │ ├── Entries.java │ │ │ │ │ ├── Entry.class │ │ │ │ │ ├── Entry.java │ │ │ │ │ ├── JspCalendar.class │ │ │ │ │ ├── JspCalendar.java │ │ │ │ │ ├── TableBean.class │ │ │ │ │ └── TableBean.java │ │ │ │ ├── chat │ │ │ │ │ ├── ChatServlet$MessageSender.class │ │ │ │ │ ├── ChatServlet.class │ │ │ │ │ └── ChatServlet.java │ │ │ │ ├── checkbox │ │ │ │ │ ├── CheckTest.class │ │ │ │ │ └── CheckTest.java │ │ │ │ ├── colors │ │ │ │ │ ├── ColorGameBean.class │ │ │ │ │ └── ColorGameBean.java │ │ │ │ ├── compressionFilters │ │ │ │ │ ├── CompressionFilter.class │ │ │ │ │ ├── CompressionFilter.java │ │ │ │ │ ├── CompressionFilterTestServlet.class │ │ │ │ │ ├── CompressionFilterTestServlet.java │ │ │ │ │ ├── CompressionResponseStream.class │ │ │ │ │ ├── CompressionResponseStream.java │ │ │ │ │ ├── CompressionServletResponseWrapper.class │ │ │ │ │ └── CompressionServletResponseWrapper.java │ │ │ │ ├── dates │ │ │ │ │ ├── JspCalendar.class │ │ │ │ │ └── JspCalendar.java │ │ │ │ ├── error │ │ │ │ │ ├── Smart.class │ │ │ │ │ └── Smart.java │ │ │ │ ├── examples │ │ │ │ │ ├── ExampleTagBase.class │ │ │ │ │ ├── ExampleTagBase.java │ │ │ │ │ ├── FooTag.class │ │ │ │ │ ├── FooTag.java │ │ │ │ │ ├── FooTagExtraInfo.class │ │ │ │ │ ├── FooTagExtraInfo.java │ │ │ │ │ ├── LogTag.class │ │ │ │ │ ├── LogTag.java │ │ │ │ │ ├── ShowSource.class │ │ │ │ │ ├── ShowSource.java │ │ │ │ │ ├── ValuesTag.class │ │ │ │ │ └── ValuesTag.java │ │ │ │ ├── filters │ │ │ │ │ ├── ExampleFilter.class │ │ │ │ │ └── ExampleFilter.java │ │ │ │ ├── jsp2 │ │ │ │ │ └── examples │ │ │ │ │ │ ├── BookBean.class │ │ │ │ │ │ ├── BookBean.java │ │ │ │ │ │ ├── FooBean.class │ │ │ │ │ │ ├── FooBean.java │ │ │ │ │ │ ├── ValuesBean.class │ │ │ │ │ │ ├── ValuesBean.java │ │ │ │ │ │ ├── el │ │ │ │ │ │ ├── Functions.class │ │ │ │ │ │ └── Functions.java │ │ │ │ │ │ └── simpletag │ │ │ │ │ │ ├── EchoAttributesTag.class │ │ │ │ │ │ ├── EchoAttributesTag.java │ │ │ │ │ │ ├── FindBookSimpleTag.class │ │ │ │ │ │ ├── FindBookSimpleTag.java │ │ │ │ │ │ ├── HelloWorldSimpleTag.class │ │ │ │ │ │ ├── HelloWorldSimpleTag.java │ │ │ │ │ │ ├── RepeatSimpleTag.class │ │ │ │ │ │ ├── RepeatSimpleTag.java │ │ │ │ │ │ ├── ShuffleSimpleTag.class │ │ │ │ │ │ ├── ShuffleSimpleTag.java │ │ │ │ │ │ ├── TileSimpleTag.class │ │ │ │ │ │ └── TileSimpleTag.java │ │ │ │ ├── listeners │ │ │ │ │ ├── ContextListener.class │ │ │ │ │ ├── ContextListener.java │ │ │ │ │ ├── SessionListener.class │ │ │ │ │ └── SessionListener.java │ │ │ │ ├── num │ │ │ │ │ ├── NumberGuessBean.class │ │ │ │ │ └── NumberGuessBean.java │ │ │ │ ├── sessions │ │ │ │ │ ├── DummyCart.class │ │ │ │ │ └── DummyCart.java │ │ │ │ ├── util │ │ │ │ │ ├── HTMLFilter.class │ │ │ │ │ └── HTMLFilter.java │ │ │ │ ├── validators │ │ │ │ │ ├── DebugValidator.class │ │ │ │ │ └── DebugValidator.java │ │ │ │ └── websocket │ │ │ │ │ ├── chat │ │ │ │ │ ├── ChatWebSocketServlet$1.class │ │ │ │ │ ├── ChatWebSocketServlet$ChatMessageInbound.class │ │ │ │ │ ├── ChatWebSocketServlet.class │ │ │ │ │ └── ChatWebSocketServlet.java │ │ │ │ │ ├── echo │ │ │ │ │ ├── EchoMessage$EchoMessageInbound.class │ │ │ │ │ ├── EchoMessage.class │ │ │ │ │ ├── EchoMessage.java │ │ │ │ │ ├── EchoStream$1.class │ │ │ │ │ ├── EchoStream$EchoStreamInbound.class │ │ │ │ │ ├── EchoStream.class │ │ │ │ │ └── EchoStream.java │ │ │ │ │ └── snake │ │ │ │ │ ├── Direction.class │ │ │ │ │ ├── Direction.java │ │ │ │ │ ├── Location$1.class │ │ │ │ │ ├── Location.class │ │ │ │ │ ├── Location.java │ │ │ │ │ ├── Snake.class │ │ │ │ │ ├── Snake.java │ │ │ │ │ ├── SnakeWebSocketServlet$1.class │ │ │ │ │ ├── SnakeWebSocketServlet$SnakeMessageInbound.class │ │ │ │ │ ├── SnakeWebSocketServlet.class │ │ │ │ │ └── SnakeWebSocketServlet.java │ │ │ ├── jsp │ │ │ │ ├── applet │ │ │ │ │ └── Clock2.java │ │ │ │ ├── debug-taglib.tld │ │ │ │ └── example-taglib.tld │ │ │ ├── jsp2 │ │ │ │ └── jsp2-example-taglib.tld │ │ │ ├── lib │ │ │ │ ├── jstl.jar │ │ │ │ └── standard.jar │ │ │ ├── tags │ │ │ │ ├── displayProducts.tag │ │ │ │ ├── helloWorld.tag │ │ │ │ ├── panel.tag │ │ │ │ └── xhtmlbasic.tag │ │ │ └── web.xml │ │ ├── index.html │ │ ├── jsp │ │ │ ├── async │ │ │ │ ├── async1.jsp │ │ │ │ ├── async1.jsp.html │ │ │ │ ├── async3.jsp │ │ │ │ ├── async3.jsp.html │ │ │ │ ├── index.jsp │ │ │ │ └── index.jsp.html │ │ │ ├── cal │ │ │ │ ├── Entries.java.html │ │ │ │ ├── Entry.java.html │ │ │ │ ├── JspCalendar.java.html │ │ │ │ ├── TableBean.java.html │ │ │ │ ├── cal1.jsp │ │ │ │ ├── cal1.jsp.html │ │ │ │ ├── cal2.jsp │ │ │ │ ├── cal2.jsp.html │ │ │ │ ├── calendar.html │ │ │ │ └── login.html │ │ │ ├── chat │ │ │ │ ├── index.jsp │ │ │ │ ├── index.jsp.html │ │ │ │ ├── login.jsp │ │ │ │ ├── login.jsp.html │ │ │ │ ├── post.jsp │ │ │ │ └── post.jsp.html │ │ │ ├── checkbox │ │ │ │ ├── CheckTest.html │ │ │ │ ├── check.html │ │ │ │ ├── checkresult.jsp │ │ │ │ ├── checkresult.jsp.html │ │ │ │ └── cresult.html │ │ │ ├── colors │ │ │ │ ├── ColorGameBean.html │ │ │ │ ├── clr.html │ │ │ │ ├── colors.html │ │ │ │ ├── colrs.jsp │ │ │ │ └── colrs.jsp.html │ │ │ ├── dates │ │ │ │ ├── date.html │ │ │ │ ├── date.jsp │ │ │ │ └── date.jsp.html │ │ │ ├── error │ │ │ │ ├── er.html │ │ │ │ ├── err.jsp │ │ │ │ ├── err.jsp.html │ │ │ │ ├── error.html │ │ │ │ ├── errorpge.jsp │ │ │ │ └── errorpge.jsp.html │ │ │ ├── forward │ │ │ │ ├── forward.jsp │ │ │ │ ├── forward.jsp.html │ │ │ │ ├── fwd.html │ │ │ │ ├── one.jsp │ │ │ │ ├── one.jsp.html │ │ │ │ └── two.html │ │ │ ├── images │ │ │ │ ├── code.gif │ │ │ │ ├── execute.gif │ │ │ │ ├── read.gif │ │ │ │ └── return.gif │ │ │ ├── include │ │ │ │ ├── foo.html │ │ │ │ ├── foo.jsp │ │ │ │ ├── foo.jsp.html │ │ │ │ ├── inc.html │ │ │ │ ├── include.jsp │ │ │ │ └── include.jsp.html │ │ │ ├── index.html │ │ │ ├── jsp2 │ │ │ │ ├── el │ │ │ │ │ ├── Functions.java.html │ │ │ │ │ ├── ValuesBean.java.html │ │ │ │ │ ├── ValuesTag.java.html │ │ │ │ │ ├── basic-arithmetic.html │ │ │ │ │ ├── basic-arithmetic.jsp │ │ │ │ │ ├── basic-arithmetic.jsp.html │ │ │ │ │ ├── basic-comparisons.html │ │ │ │ │ ├── basic-comparisons.jsp │ │ │ │ │ ├── basic-comparisons.jsp.html │ │ │ │ │ ├── composite.html │ │ │ │ │ ├── composite.jsp │ │ │ │ │ ├── composite.jsp.html │ │ │ │ │ ├── functions.html │ │ │ │ │ ├── functions.jsp │ │ │ │ │ ├── functions.jsp.html │ │ │ │ │ ├── implicit-objects.html │ │ │ │ │ ├── implicit-objects.jsp │ │ │ │ │ └── implicit-objects.jsp.html │ │ │ │ ├── jspattribute │ │ │ │ │ ├── FooBean.java.html │ │ │ │ │ ├── HelloWorldSimpleTag.java.html │ │ │ │ │ ├── ShuffleSimpleTag.java.html │ │ │ │ │ ├── TileSimpleTag.java.html │ │ │ │ │ ├── jspattribute.html │ │ │ │ │ ├── jspattribute.jsp │ │ │ │ │ ├── jspattribute.jsp.html │ │ │ │ │ ├── shuffle.html │ │ │ │ │ ├── shuffle.jsp │ │ │ │ │ └── shuffle.jsp.html │ │ │ │ ├── jspx │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── basic.jspx │ │ │ │ │ ├── basic.jspx.html │ │ │ │ │ ├── svgexample.html │ │ │ │ │ ├── textRotate.html │ │ │ │ │ ├── textRotate.jpg │ │ │ │ │ ├── textRotate.jspx │ │ │ │ │ └── textRotate.jspx.html │ │ │ │ ├── misc │ │ │ │ │ ├── EchoAttributesTag.java.html │ │ │ │ │ ├── coda.jspf │ │ │ │ │ ├── coda.jspf.html │ │ │ │ │ ├── config.html │ │ │ │ │ ├── config.jsp │ │ │ │ │ ├── config.jsp.html │ │ │ │ │ ├── dynamicattrs.html │ │ │ │ │ ├── dynamicattrs.jsp │ │ │ │ │ ├── dynamicattrs.jsp.html │ │ │ │ │ ├── prelude.jspf │ │ │ │ │ └── prelude.jspf.html │ │ │ │ ├── simpletag │ │ │ │ │ ├── BookBean.java.html │ │ │ │ │ ├── FindBookSimpleTag.java.html │ │ │ │ │ ├── Functions.java.html │ │ │ │ │ ├── HelloWorldSimpleTag.java.html │ │ │ │ │ ├── RepeatSimpleTag.java.html │ │ │ │ │ ├── book.html │ │ │ │ │ ├── book.jsp │ │ │ │ │ ├── book.jsp.html │ │ │ │ │ ├── hello.html │ │ │ │ │ ├── hello.jsp │ │ │ │ │ ├── hello.jsp.html │ │ │ │ │ ├── repeat.html │ │ │ │ │ ├── repeat.jsp │ │ │ │ │ └── repeat.jsp.html │ │ │ │ └── tagfiles │ │ │ │ │ ├── displayProducts.tag.html │ │ │ │ │ ├── hello.html │ │ │ │ │ ├── hello.jsp │ │ │ │ │ ├── hello.jsp.html │ │ │ │ │ ├── helloWorld.tag.html │ │ │ │ │ ├── panel.html │ │ │ │ │ ├── panel.jsp │ │ │ │ │ ├── panel.jsp.html │ │ │ │ │ ├── panel.tag.html │ │ │ │ │ ├── products.html │ │ │ │ │ ├── products.jsp │ │ │ │ │ ├── products.jsp.html │ │ │ │ │ └── xhtmlbasic.tag.html │ │ │ ├── jsptoserv │ │ │ │ ├── ServletToJsp.java.html │ │ │ │ ├── hello.jsp │ │ │ │ ├── hello.jsp.html │ │ │ │ ├── jsptoservlet.jsp │ │ │ │ ├── jsptoservlet.jsp.html │ │ │ │ └── jts.html │ │ │ ├── num │ │ │ │ ├── numguess.html │ │ │ │ ├── numguess.jsp │ │ │ │ └── numguess.jsp.html │ │ │ ├── plugin │ │ │ │ ├── applet │ │ │ │ │ ├── Clock2.class │ │ │ │ │ └── Clock2.java │ │ │ │ ├── plugin.html │ │ │ │ ├── plugin.jsp │ │ │ │ └── plugin.jsp.html │ │ │ ├── security │ │ │ │ └── protected │ │ │ │ │ ├── error.jsp │ │ │ │ │ ├── error.jsp.html │ │ │ │ │ ├── index.jsp │ │ │ │ │ ├── index.jsp.html │ │ │ │ │ ├── login.jsp │ │ │ │ │ └── login.jsp.html │ │ │ ├── sessions │ │ │ │ ├── DummyCart.html │ │ │ │ ├── carts.html │ │ │ │ ├── carts.jsp │ │ │ │ ├── carts.jsp.html │ │ │ │ └── crt.html │ │ │ ├── simpletag │ │ │ │ ├── foo.html │ │ │ │ ├── foo.jsp │ │ │ │ └── foo.jsp.html │ │ │ ├── snp │ │ │ │ ├── snoop.html │ │ │ │ ├── snoop.jsp │ │ │ │ └── snoop.jsp.html │ │ │ ├── source.jsp │ │ │ ├── source.jsp.html │ │ │ ├── tagplugin │ │ │ │ ├── choose.html │ │ │ │ ├── choose.jsp │ │ │ │ ├── choose.jsp.html │ │ │ │ ├── foreach.html │ │ │ │ ├── foreach.jsp │ │ │ │ ├── foreach.jsp.html │ │ │ │ ├── howto.html │ │ │ │ ├── if.html │ │ │ │ ├── if.jsp │ │ │ │ ├── if.jsp.html │ │ │ │ └── notes.html │ │ │ └── xml │ │ │ │ ├── xml.html │ │ │ │ ├── xml.jsp │ │ │ │ └── xml.jsp.html │ │ ├── servlets │ │ │ ├── cookies.html │ │ │ ├── helloworld.html │ │ │ ├── images │ │ │ │ ├── code.gif │ │ │ │ ├── execute.gif │ │ │ │ └── return.gif │ │ │ ├── index.html │ │ │ ├── reqheaders.html │ │ │ ├── reqinfo.html │ │ │ ├── reqparams.html │ │ │ └── sessions.html │ │ └── websocket │ │ │ ├── chat.html │ │ │ ├── echo.html │ │ │ ├── index.html │ │ │ └── snake.html │ ├── host-manager │ │ ├── META-INF │ │ │ └── context.xml │ │ ├── WEB-INF │ │ │ ├── jsp │ │ │ │ ├── 401.jsp │ │ │ │ ├── 403.jsp │ │ │ │ └── 404.jsp │ │ │ └── web.xml │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── asf-logo.gif │ │ │ ├── code.gif │ │ │ ├── design.gif │ │ │ ├── docs.gif │ │ │ ├── fix.gif │ │ │ ├── tomcat.gif │ │ │ ├── update.gif │ │ │ └── void.gif │ │ ├── index.jsp │ │ └── manager.xml │ └── manager │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── jsp │ │ │ ├── 401.jsp │ │ │ ├── 403.jsp │ │ │ ├── 404.jsp │ │ │ ├── sessionDetail.jsp │ │ │ └── sessionsList.jsp │ │ └── web.xml │ │ ├── images │ │ ├── add.gif │ │ ├── asf-logo.gif │ │ ├── code.gif │ │ ├── design.gif │ │ ├── docs.gif │ │ ├── fix.gif │ │ ├── tomcat.gif │ │ ├── update.gif │ │ └── void.gif │ │ ├── index.jsp │ │ ├── status.xsd │ │ └── xform.xsl └── work │ └── Catalina │ └── localhost │ ├── _ │ └── org │ │ └── apache │ │ └── jsp │ │ ├── index_jsp.class │ │ └── index_jsp.java │ ├── examples │ └── org │ │ └── apache │ │ └── jsp │ │ └── jsp │ │ └── jsp2 │ │ └── el │ │ ├── composite_jsp.class │ │ └── composite_jsp.java │ └── manager │ └── org │ └── apache │ └── jsp │ └── WEB_002dINF │ └── jsp │ ├── _401_jsp.class │ └── _401_jsp.java ├── com.sun.jmx.remote.internal.ServerCommunicatorAdmin$Timeout.class ├── java.io.DeleteOnExitHook$1.class ├── java.lang.ApplicationShutdownHooks$1.class ├── java.lang.ref.Finalizer$FinalizerThread.class ├── java.lang.ref.Reference$ReferenceHandler.class ├── java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.class ├── java.util.concurrent.ThreadPoolExecutor$Worker.class ├── java.util.logging.LogManager$Cleaner.class ├── org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.class ├── org.apache.catalina.startup.Catalina$CatalinaShutdownHook.class ├── org.apache.catalina.startup.ClassLoaderFactory$2.class ├── org.apache.catalina.startup.ClassLoaderFactory$Repository.class ├── org.apache.catalina.startup.ClassLoaderFactory$RepositoryType.class ├── org.apache.catalina.startup.ContextConfig$DefaultWebXmlCacheEntry.class ├── org.apache.catalina.startup.ContextConfig$FragmentJarScannerCallback.class ├── org.apache.catalina.startup.HostConfig$DeployDirectory.class ├── org.apache.catalina.startup.HostConfig$DeployedApplication.class ├── org.apache.catalina.startup.TldConfig$TldJarScannerCallback.class ├── org.apache.juli.ClassLoaderLogManager$Cleaner.class ├── org.apache.tomcat.util.net.JIoEndpoint$Acceptor.class ├── org.apache.tomcat.util.net.JIoEndpoint$AsyncTimeout.class ├── pom.xml ├── socketProcessor.png ├── sun.misc.GC$Daemon.class ├── sun.nio.ch.FileChannelImpl$Unmapper.class ├── sun.nio.fs.NativeBuffer$Deallocator.class ├── sun.rmi.transport.DGCAckHandler$1.class ├── sun.rmi.transport.DGCImpl$1.class ├── sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class ├── sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class └── tomcat-7.0.42-sourcecode ├── .gitignore ├── BUILDING.txt ├── KEYS ├── LICENSE ├── NOTICE ├── RELEASE-NOTES ├── RUNNING.txt ├── STATUS.txt ├── bin ├── catalina-tasks.xml ├── catalina.bat ├── catalina.sh ├── configtest.bat ├── configtest.sh ├── cpappend.bat ├── daemon.sh ├── digest.bat ├── digest.sh ├── service.bat ├── setclasspath.bat ├── setclasspath.sh ├── shutdown.bat ├── shutdown.sh ├── startup.bat ├── startup.sh ├── tool-wrapper.bat ├── tool-wrapper.sh ├── version.bat └── version.sh ├── build.properties.default ├── build.xml ├── conf ├── catalina.policy ├── catalina.properties ├── context.xml ├── logging.properties ├── server.xml ├── tomcat-users.xml └── web.xml ├── java ├── javax │ ├── annotation │ │ ├── Generated.java │ │ ├── PostConstruct.java │ │ ├── PreDestroy.java │ │ ├── Resource.java │ │ ├── Resources.java │ │ └── security │ │ │ ├── DeclareRoles.java │ │ │ ├── DenyAll.java │ │ │ ├── PermitAll.java │ │ │ ├── RolesAllowed.java │ │ │ └── RunAs.java │ ├── ejb │ │ ├── EJB.java │ │ └── EJBs.java │ ├── el │ │ ├── ArrayELResolver.java │ │ ├── BeanELResolver.java │ │ ├── CompositeELResolver.java │ │ ├── ELContext.java │ │ ├── ELContextEvent.java │ │ ├── ELContextListener.java │ │ ├── ELException.java │ │ ├── ELResolver.java │ │ ├── Expression.java │ │ ├── ExpressionFactory.java │ │ ├── FunctionMapper.java │ │ ├── ListELResolver.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── MapELResolver.java │ │ ├── MethodExpression.java │ │ ├── MethodInfo.java │ │ ├── MethodNotFoundException.java │ │ ├── PropertyNotFoundException.java │ │ ├── PropertyNotWritableException.java │ │ ├── ResourceBundleELResolver.java │ │ ├── ValueExpression.java │ │ ├── ValueReference.java │ │ └── VariableMapper.java │ ├── mail │ │ ├── Authenticator.java │ │ ├── PasswordAuthentication.java │ │ ├── Session.java │ │ └── internet │ │ │ ├── InternetAddress.java │ │ │ ├── MimeMessage.java │ │ │ ├── MimePart.java │ │ │ └── MimePartDataSource.java │ ├── persistence │ │ ├── PersistenceContext.java │ │ ├── PersistenceContextType.java │ │ ├── PersistenceContexts.java │ │ ├── PersistenceProperty.java │ │ ├── PersistenceUnit.java │ │ └── PersistenceUnits.java │ ├── readme.md │ ├── servlet │ │ ├── AsyncContext.java │ │ ├── AsyncEvent.java │ │ ├── AsyncListener.java │ │ ├── DispatcherType.java │ │ ├── Filter.java │ │ ├── FilterChain.java │ │ ├── FilterConfig.java │ │ ├── FilterRegistration.java │ │ ├── GenericServlet.java │ │ ├── HttpConstraintElement.java │ │ ├── HttpMethodConstraintElement.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── MultipartConfigElement.java │ │ ├── Registration.java │ │ ├── RequestDispatcher.java │ │ ├── Servlet.java │ │ ├── ServletConfig.java │ │ ├── ServletContainerInitializer.java │ │ ├── ServletContext.java │ │ ├── ServletContextAttributeEvent.java │ │ ├── ServletContextAttributeListener.java │ │ ├── ServletContextEvent.java │ │ ├── ServletContextListener.java │ │ ├── ServletException.java │ │ ├── ServletInputStream.java │ │ ├── ServletOutputStream.java │ │ ├── ServletRegistration.java │ │ ├── ServletRequest.java │ │ ├── ServletRequestAttributeEvent.java │ │ ├── ServletRequestAttributeListener.java │ │ ├── ServletRequestEvent.java │ │ ├── ServletRequestListener.java │ │ ├── ServletRequestWrapper.java │ │ ├── ServletResponse.java │ │ ├── ServletResponseWrapper.java │ │ ├── ServletSecurityElement.java │ │ ├── SessionCookieConfig.java │ │ ├── SessionTrackingMode.java │ │ ├── SingleThreadModel.java │ │ ├── UnavailableException.java │ │ ├── annotation │ │ │ ├── HandlesTypes.java │ │ │ ├── HttpConstraint.java │ │ │ ├── HttpMethodConstraint.java │ │ │ ├── MultipartConfig.java │ │ │ ├── ServletSecurity.java │ │ │ ├── WebFilter.java │ │ │ ├── WebInitParam.java │ │ │ ├── WebListener.java │ │ │ └── WebServlet.java │ │ ├── descriptor │ │ │ ├── JspConfigDescriptor.java │ │ │ ├── JspPropertyGroupDescriptor.java │ │ │ └── TaglibDescriptor.java │ │ ├── http │ │ │ ├── Cookie.java │ │ │ ├── HttpServlet.java │ │ │ ├── HttpServletRequest.java │ │ │ ├── HttpServletRequestWrapper.java │ │ │ ├── HttpServletResponse.java │ │ │ ├── HttpServletResponseWrapper.java │ │ │ ├── HttpSession.java │ │ │ ├── HttpSessionActivationListener.java │ │ │ ├── HttpSessionAttributeListener.java │ │ │ ├── HttpSessionBindingEvent.java │ │ │ ├── HttpSessionBindingListener.java │ │ │ ├── HttpSessionContext.java │ │ │ ├── HttpSessionEvent.java │ │ │ ├── HttpSessionListener.java │ │ │ ├── HttpUtils.java │ │ │ ├── LocalStrings.properties │ │ │ ├── LocalStrings_es.properties │ │ │ ├── LocalStrings_fr.properties │ │ │ ├── LocalStrings_ja.properties │ │ │ ├── Part.java │ │ │ └── package.html │ │ ├── jsp │ │ │ ├── ErrorData.java │ │ │ ├── HttpJspPage.java │ │ │ ├── JspApplicationContext.java │ │ │ ├── JspContext.java │ │ │ ├── JspEngineInfo.java │ │ │ ├── JspException.java │ │ │ ├── JspFactory.java │ │ │ ├── JspPage.java │ │ │ ├── JspTagException.java │ │ │ ├── JspWriter.java │ │ │ ├── PageContext.java │ │ │ ├── SkipPageException.java │ │ │ ├── el │ │ │ │ ├── ELException.java │ │ │ │ ├── ELParseException.java │ │ │ │ ├── Expression.java │ │ │ │ ├── ExpressionEvaluator.java │ │ │ │ ├── FunctionMapper.java │ │ │ │ ├── ImplicitObjectELResolver.java │ │ │ │ ├── ScopedAttributeELResolver.java │ │ │ │ ├── VariableResolver.java │ │ │ │ └── package.html │ │ │ ├── package.html │ │ │ ├── resources │ │ │ │ ├── jsp_2_0.xsd │ │ │ │ ├── jsp_2_1.xsd │ │ │ │ ├── jsp_2_2.xsd │ │ │ │ ├── jspxml.dtd │ │ │ │ ├── jspxml.xsd │ │ │ │ ├── web-jsptaglibrary_1_1.dtd │ │ │ │ ├── web-jsptaglibrary_1_2.dtd │ │ │ │ ├── web-jsptaglibrary_2_0.xsd │ │ │ │ └── web-jsptaglibrary_2_1.xsd │ │ │ └── tagext │ │ │ │ ├── BodyContent.java │ │ │ │ ├── BodyTag.java │ │ │ │ ├── BodyTagSupport.java │ │ │ │ ├── DynamicAttributes.java │ │ │ │ ├── FunctionInfo.java │ │ │ │ ├── IterationTag.java │ │ │ │ ├── JspFragment.java │ │ │ │ ├── JspIdConsumer.java │ │ │ │ ├── JspTag.java │ │ │ │ ├── PageData.java │ │ │ │ ├── SimpleTag.java │ │ │ │ ├── SimpleTagSupport.java │ │ │ │ ├── Tag.java │ │ │ │ ├── TagAdapter.java │ │ │ │ ├── TagAttributeInfo.java │ │ │ │ ├── TagData.java │ │ │ │ ├── TagExtraInfo.java │ │ │ │ ├── TagFileInfo.java │ │ │ │ ├── TagInfo.java │ │ │ │ ├── TagLibraryInfo.java │ │ │ │ ├── TagLibraryValidator.java │ │ │ │ ├── TagSupport.java │ │ │ │ ├── TagVariableInfo.java │ │ │ │ ├── TryCatchFinally.java │ │ │ │ ├── ValidationMessage.java │ │ │ │ ├── VariableInfo.java │ │ │ │ ├── doc-files │ │ │ │ ├── BodyTagProtocol.gif │ │ │ │ ├── IterationTagProtocol.gif │ │ │ │ ├── TagProtocol.gif │ │ │ │ └── VariableInfo-1.gif │ │ │ │ └── package.html │ │ ├── package.html │ │ └── resources │ │ │ ├── XMLSchema.dtd │ │ │ ├── datatypes.dtd │ │ │ ├── j2ee_1_4.xsd │ │ │ ├── j2ee_web_services_1_1.xsd │ │ │ ├── j2ee_web_services_client_1_1.xsd │ │ │ ├── javaee_5.xsd │ │ │ ├── javaee_6.xsd │ │ │ ├── javaee_web_services_1_2.xsd │ │ │ ├── javaee_web_services_1_3.xsd │ │ │ ├── javaee_web_services_client_1_2.xsd │ │ │ ├── javaee_web_services_client_1_3.xsd │ │ │ ├── web-app_2_2.dtd │ │ │ ├── web-app_2_3.dtd │ │ │ ├── web-app_2_4.xsd │ │ │ ├── web-app_2_5.xsd │ │ │ ├── web-app_3_0.xsd │ │ │ ├── web-common_3_0.xsd │ │ │ ├── web-fragment_3_0.xsd │ │ │ └── xml.xsd │ └── xml │ │ └── ws │ │ ├── WebServiceRef.java │ │ └── WebServiceRefs.java └── org │ └── apache │ ├── Lifecycle.md │ ├── README.MD │ ├── catalina │ ├── AccessLog.java │ ├── AsyncDispatcher.java │ ├── Authenticator.java │ ├── CatalinaFactory.java │ ├── Cluster.java │ ├── Contained.java │ ├── Container.java │ ├── ContainerEvent.java │ ├── ContainerListener.java │ ├── ContainerServlet.java │ ├── Context.java │ ├── DistributedManager.java │ ├── Engine.java │ ├── Executor.java │ ├── Globals.java │ ├── Group.java │ ├── Host.java │ ├── InstanceEvent.java │ ├── InstanceListener.java │ ├── Lifecycle.java │ ├── LifecycleEvent.java │ ├── LifecycleException.java │ ├── LifecycleListener.java │ ├── LifecycleState.java │ ├── Loader.java │ ├── Manager.java │ ├── Pipeline.java │ ├── Realm.java │ ├── Role.java │ ├── Server.java │ ├── Service.java │ ├── Session.java │ ├── SessionEvent.java │ ├── SessionListener.java │ ├── Store.java │ ├── User.java │ ├── UserDatabase.java │ ├── Valve.java │ ├── Wrapper.java │ ├── ant │ │ ├── AbstractCatalinaCommandTask.java │ │ ├── AbstractCatalinaTask.java │ │ ├── BaseRedirectorHelperTask.java │ │ ├── DeployTask.java │ │ ├── FindLeaksTask.java │ │ ├── JKStatusUpdateTask.java │ │ ├── JMXGetTask.java │ │ ├── JMXQueryTask.java │ │ ├── JMXSetTask.java │ │ ├── ListTask.java │ │ ├── ReloadTask.java │ │ ├── ResourcesTask.java │ │ ├── ServerinfoTask.java │ │ ├── SessionsTask.java │ │ ├── StartTask.java │ │ ├── StopTask.java │ │ ├── UndeployTask.java │ │ ├── ValidatorTask.java │ │ ├── antlib.xml │ │ ├── catalina.tasks │ │ ├── jmx │ │ │ ├── Arg.java │ │ │ ├── JMXAccessorCondition.java │ │ │ ├── JMXAccessorCreateTask.java │ │ │ ├── JMXAccessorEqualsCondition.java │ │ │ ├── JMXAccessorGetTask.java │ │ │ ├── JMXAccessorInvokeTask.java │ │ │ ├── JMXAccessorQueryTask.java │ │ │ ├── JMXAccessorSetTask.java │ │ │ ├── JMXAccessorTask.java │ │ │ ├── JMXAccessorUnregisterTask.java │ │ │ ├── antlib.xml │ │ │ ├── jmxaccessor.tasks │ │ │ └── package.html │ │ └── package.html │ ├── authenticator │ │ ├── AuthenticatorBase.java │ │ ├── BasicAuthenticator.java │ │ ├── Constants.java │ │ ├── DigestAuthenticator.java │ │ ├── FormAuthenticator.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── NonLoginAuthenticator.java │ │ ├── SSLAuthenticator.java │ │ ├── SavedRequest.java │ │ ├── SingleSignOn.java │ │ ├── SingleSignOnEntry.java │ │ ├── SpnegoAuthenticator.java │ │ ├── mbeans-descriptors.xml │ │ └── package.html │ ├── comet │ │ ├── CometEvent.java │ │ ├── CometFilter.java │ │ ├── CometFilterChain.java │ │ └── CometProcessor.java │ ├── connector │ │ ├── ClientAbortException.java │ │ ├── CometEventImpl.java │ │ ├── Connector.java │ │ ├── Constants.java │ │ ├── CoyoteAdapter.java │ │ ├── CoyoteInputStream.java │ │ ├── CoyoteOutputStream.java │ │ ├── CoyotePrincipal.java │ │ ├── CoyoteReader.java │ │ ├── CoyoteWriter.java │ │ ├── InputBuffer.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── MapperListener.java │ │ ├── OutputBuffer.java │ │ ├── Request.java │ │ ├── RequestFacade.java │ │ ├── Response.java │ │ ├── ResponseFacade.java │ │ └── mbeans-descriptors.xml │ ├── core │ │ ├── AccessLogAdapter.java │ │ ├── ApplicationContext.java │ │ ├── ApplicationContextFacade.java │ │ ├── ApplicationDispatcher.java │ │ ├── ApplicationFilterChain.java │ │ ├── ApplicationFilterConfig.java │ │ ├── ApplicationFilterFactory.java │ │ ├── ApplicationFilterRegistration.java │ │ ├── ApplicationHttpRequest.java │ │ ├── ApplicationHttpResponse.java │ │ ├── ApplicationJspConfigDescriptor.java │ │ ├── ApplicationJspPropertyGroupDescriptor.java │ │ ├── ApplicationPart.java │ │ ├── ApplicationRequest.java │ │ ├── ApplicationResponse.java │ │ ├── ApplicationServletRegistration.java │ │ ├── ApplicationSessionCookieConfig.java │ │ ├── ApplicationTaglibDescriptor.java │ │ ├── AprLifecycleListener.java │ │ ├── AsyncContextImpl.java │ │ ├── AsyncListenerWrapper.java │ │ ├── Constants.java │ │ ├── ContainerBase.java │ │ ├── DefaultInstanceManager.java │ │ ├── JasperListener.java │ │ ├── JreMemoryLeakPreventionListener.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── NamingContextListener.java │ │ ├── RestrictedFilters.properties │ │ ├── RestrictedListeners.properties │ │ ├── RestrictedServlets.properties │ │ ├── StandardContext.java │ │ ├── StandardContextValve.java │ │ ├── StandardEngine.java │ │ ├── StandardEngineValve.java │ │ ├── StandardHost.java │ │ ├── StandardHostValve.java │ │ ├── StandardPipeline.java │ │ ├── StandardServer.java │ │ ├── StandardService.java │ │ ├── StandardThreadExecutor.java │ │ ├── StandardWrapper.java │ │ ├── StandardWrapperFacade.java │ │ ├── StandardWrapperValve.java │ │ ├── ThreadLocalLeakPreventionListener.java │ │ └── mbeans-descriptors.xml │ ├── deploy │ │ ├── ApplicationListener.java │ │ ├── ApplicationParameter.java │ │ ├── Constants.java │ │ ├── ContextEjb.java │ │ ├── ContextEnvironment.java │ │ ├── ContextHandler.java │ │ ├── ContextLocalEjb.java │ │ ├── ContextResource.java │ │ ├── ContextResourceEnvRef.java │ │ ├── ContextResourceLink.java │ │ ├── ContextService.java │ │ ├── ContextTransaction.java │ │ ├── ErrorPage.java │ │ ├── FilterDef.java │ │ ├── FilterMap.java │ │ ├── Injectable.java │ │ ├── InjectionTarget.java │ │ ├── JspPropertyGroup.java │ │ ├── LocalStrings.properties │ │ ├── LoginConfig.java │ │ ├── MessageDestination.java │ │ ├── MessageDestinationRef.java │ │ ├── MultipartDef.java │ │ ├── NamingResources.java │ │ ├── ResourceBase.java │ │ ├── SecurityCollection.java │ │ ├── SecurityConstraint.java │ │ ├── SecurityRoleRef.java │ │ ├── ServletDef.java │ │ ├── SessionConfig.java │ │ ├── WebXml.java │ │ ├── mbeans-descriptors.xml │ │ └── package.html │ ├── filters │ │ ├── AddDefaultCharsetFilter.java │ │ ├── Constants.java │ │ ├── CorsFilter.java │ │ ├── CsrfPreventionFilter.java │ │ ├── ExpiresFilter.java │ │ ├── FailedRequestFilter.java │ │ ├── FilterBase.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── RemoteAddrFilter.java │ │ ├── RemoteHostFilter.java │ │ ├── RemoteIpFilter.java │ │ ├── RequestDumperFilter.java │ │ ├── RequestFilter.java │ │ ├── SetCharacterEncodingFilter.java │ │ └── WebdavFixFilter.java │ ├── ha │ │ ├── CatalinaCluster.java │ │ ├── ClusterDeployer.java │ │ ├── ClusterListener.java │ │ ├── ClusterManager.java │ │ ├── ClusterMessage.java │ │ ├── ClusterMessageBase.java │ │ ├── ClusterRuleSet.java │ │ ├── ClusterSession.java │ │ ├── ClusterValve.java │ │ ├── authenticator │ │ │ ├── ClusterSingleSignOn.java │ │ │ ├── ClusterSingleSignOnListener.java │ │ │ ├── SingleSignOnMessage.java │ │ │ └── mbeans-descriptors.xml │ │ ├── backend │ │ │ ├── CollectedInfo.java │ │ │ ├── HeartbeatListener.java │ │ │ ├── MultiCastSender.java │ │ │ ├── Proxy.java │ │ │ ├── Sender.java │ │ │ └── TcpSender.java │ │ ├── context │ │ │ └── ReplicatedContext.java │ │ ├── deploy │ │ │ ├── Constants.java │ │ │ ├── FarmWarDeployer.java │ │ │ ├── FileChangeListener.java │ │ │ ├── FileMessage.java │ │ │ ├── FileMessageFactory.java │ │ │ ├── LocalStrings.properties │ │ │ ├── UndeployMessage.java │ │ │ ├── WarWatcher.java │ │ │ └── mbeans-descriptors.xml │ │ ├── jmx │ │ │ └── ClusterJmxHelper.java │ │ ├── package.html │ │ ├── session │ │ │ ├── BackupManager.java │ │ │ ├── ClusterManagerBase.java │ │ │ ├── ClusterSessionListener.java │ │ │ ├── Constants.java │ │ │ ├── DeltaManager.java │ │ │ ├── DeltaRequest.java │ │ │ ├── DeltaSession.java │ │ │ ├── JvmRouteBinderValve.java │ │ │ ├── JvmRouteSessionIDBinderListener.java │ │ │ ├── LocalStrings.properties │ │ │ ├── LocalStrings_es.properties │ │ │ ├── SerializablePrincipal.java │ │ │ ├── SessionIDMessage.java │ │ │ ├── SessionMessage.java │ │ │ ├── SessionMessageImpl.java │ │ │ └── mbeans-descriptors.xml │ │ ├── tcp │ │ │ ├── Constants.java │ │ │ ├── LocalStrings.properties │ │ │ ├── LocalStrings_es.properties │ │ │ ├── ReplicationValve.java │ │ │ ├── SendMessageData.java │ │ │ ├── SimpleTcpCluster.java │ │ │ └── mbeans-descriptors.xml │ │ └── util │ │ │ └── IDynamicProperty.java │ ├── loader │ │ ├── Constants.java │ │ ├── JdbcLeakPrevention.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── ResourceEntry.java │ │ ├── StandardClassLoader.java │ │ ├── StandardClassLoaderMBean.java │ │ ├── VirtualWebappLoader.java │ │ ├── WebappClassLoader.java │ │ ├── WebappLoader.java │ │ └── mbeans-descriptors.xml │ ├── manager │ │ ├── Constants.java │ │ ├── DummyProxySession.java │ │ ├── HTMLManagerServlet.java │ │ ├── JMXProxyServlet.java │ │ ├── JspHelper.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_de.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── ManagerServlet.java │ │ ├── StatusManagerServlet.java │ │ ├── StatusTransformer.java │ │ ├── host │ │ │ ├── Constants.java │ │ │ ├── HTMLHostManagerServlet.java │ │ │ ├── HostManagerServlet.java │ │ │ ├── LocalStrings.properties │ │ │ └── LocalStrings_es.properties │ │ └── util │ │ │ ├── BaseSessionComparator.java │ │ │ ├── ReverseComparator.java │ │ │ └── SessionUtils.java │ ├── mbeans-descriptors.xml │ ├── mbeans │ │ ├── ClassNameMBean.java │ │ ├── ConnectorMBean.java │ │ ├── Constants.java │ │ ├── ContainerMBean.java │ │ ├── ContextEnvironmentMBean.java │ │ ├── ContextMBean.java │ │ ├── ContextResourceLinkMBean.java │ │ ├── ContextResourceMBean.java │ │ ├── GlobalResourcesLifecycleListener.java │ │ ├── GroupMBean.java │ │ ├── JmxRemoteLifecycleListener.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_fr.properties │ │ ├── MBeanDumper.java │ │ ├── MBeanFactory.java │ │ ├── MBeanUtils.java │ │ ├── MemoryUserDatabaseMBean.java │ │ ├── NamingResourcesMBean.java │ │ ├── RoleMBean.java │ │ ├── ServiceMBean.java │ │ ├── UserMBean.java │ │ └── mbeans-descriptors.xml │ ├── readme.md │ ├── realm │ │ ├── CombinedRealm.java │ │ ├── Constants.java │ │ ├── DataSourceRealm.java │ │ ├── GenericPrincipal.java │ │ ├── JAASCallbackHandler.java │ │ ├── JAASMemoryLoginModule.java │ │ ├── JAASRealm.java │ │ ├── JDBCRealm.java │ │ ├── JNDIRealm.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── LockOutRealm.java │ │ ├── MemoryRealm.java │ │ ├── MemoryRuleSet.java │ │ ├── NullRealm.java │ │ ├── RealmBase.java │ │ ├── UserDatabaseRealm.java │ │ ├── X509SubjectDnRetriever.java │ │ ├── X509UsernameRetriever.java │ │ ├── mbeans-descriptors.xml │ │ └── package.html │ ├── security │ │ ├── Constants.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── SecurityClassLoad.java │ │ ├── SecurityConfig.java │ │ ├── SecurityListener.java │ │ └── SecurityUtil.java │ ├── servlets │ │ ├── CGIServlet.java │ │ ├── Constants.java │ │ ├── DefaultServlet.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── WebdavServlet.java │ │ └── package.html │ ├── session │ │ ├── Constants.java │ │ ├── FileStore.java │ │ ├── JDBCStore.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── ManagerBase.java │ │ ├── PersistentManager.java │ │ ├── PersistentManagerBase.java │ │ ├── StandardManager.java │ │ ├── StandardSession.java │ │ ├── StandardSessionFacade.java │ │ ├── StoreBase.java │ │ ├── TooManyActiveSessionsException.java │ │ ├── mbeans-descriptors.xml │ │ └── package.html │ ├── ssi │ │ ├── ByteArrayServletOutputStream.java │ │ ├── ExpressionParseTree.java │ │ ├── ExpressionTokenizer.java │ │ ├── ResponseIncludeWrapper.java │ │ ├── SSICommand.java │ │ ├── SSIConditional.java │ │ ├── SSIConditionalState.java │ │ ├── SSIConfig.java │ │ ├── SSIEcho.java │ │ ├── SSIExec.java │ │ ├── SSIExternalResolver.java │ │ ├── SSIFilter.java │ │ ├── SSIFlastmod.java │ │ ├── SSIFsize.java │ │ ├── SSIInclude.java │ │ ├── SSIMediator.java │ │ ├── SSIPrintenv.java │ │ ├── SSIProcessor.java │ │ ├── SSIServlet.java │ │ ├── SSIServletExternalResolver.java │ │ ├── SSIServletRequestUtil.java │ │ ├── SSISet.java │ │ ├── SSIStopProcessingException.java │ │ └── package.html │ ├── startup │ │ ├── Authenticators.properties │ │ ├── Bootstrap.java │ │ ├── Catalina.java │ │ ├── CatalinaProperties.java │ │ ├── ClassLoaderFactory.java │ │ ├── ConnectorCreateRule.java │ │ ├── Constants.java │ │ ├── ContextConfig.java │ │ ├── ContextRuleSet.java │ │ ├── CopyParentClassLoaderRule.java │ │ ├── DigesterFactory.java │ │ ├── Embedded.java │ │ ├── EngineConfig.java │ │ ├── EngineRuleSet.java │ │ ├── ExpandWar.java │ │ ├── FailedContext.java │ │ ├── HomesUserDatabase.java │ │ ├── HostConfig.java │ │ ├── HostRuleSet.java │ │ ├── LifecycleListenerRule.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── NamingRuleSet.java │ │ ├── PasswdUserDatabase.java │ │ ├── RealmRuleSet.java │ │ ├── SetAllPropertiesRule.java │ │ ├── SetContextPropertiesRule.java │ │ ├── SetNextNamingRule.java │ │ ├── TldConfig.java │ │ ├── TldRuleSet.java │ │ ├── Tomcat.java │ │ ├── Tool.java │ │ ├── UserConfig.java │ │ ├── UserDatabase.java │ │ ├── WebAnnotationSet.java │ │ ├── WebRuleSet.java │ │ ├── XmlErrorHandler.java │ │ └── mbeans-descriptors.xml │ ├── tribes │ │ ├── ByteMessage.java │ │ ├── Channel.java │ │ ├── ChannelException.java │ │ ├── ChannelInterceptor.java │ │ ├── ChannelListener.java │ │ ├── ChannelMessage.java │ │ ├── ChannelReceiver.java │ │ ├── ChannelSender.java │ │ ├── Constants.java │ │ ├── ErrorHandler.java │ │ ├── Heartbeat.java │ │ ├── ManagedChannel.java │ │ ├── Member.java │ │ ├── MembershipListener.java │ │ ├── MembershipService.java │ │ ├── MessageListener.java │ │ ├── RemoteProcessException.java │ │ ├── UniqueId.java │ │ ├── group │ │ │ ├── AbsoluteOrder.java │ │ │ ├── ChannelCoordinator.java │ │ │ ├── ChannelInterceptorBase.java │ │ │ ├── ExtendedRpcCallback.java │ │ │ ├── GroupChannel.java │ │ │ ├── InterceptorPayload.java │ │ │ ├── Response.java │ │ │ ├── RpcCallback.java │ │ │ ├── RpcChannel.java │ │ │ ├── RpcMessage.java │ │ │ └── interceptors │ │ │ │ ├── DomainFilterInterceptor.java │ │ │ │ ├── FragmentationInterceptor.java │ │ │ │ ├── GzipInterceptor.java │ │ │ │ ├── MessageDispatch15Interceptor.java │ │ │ │ ├── MessageDispatchInterceptor.java │ │ │ │ ├── NonBlockingCoordinator.java │ │ │ │ ├── OrderInterceptor.java │ │ │ │ ├── SimpleCoordinator.java │ │ │ │ ├── StaticMembershipInterceptor.java │ │ │ │ ├── TcpFailureDetector.java │ │ │ │ ├── TcpPingInterceptor.java │ │ │ │ ├── ThroughputInterceptor.java │ │ │ │ └── TwoPhaseCommitInterceptor.java │ │ ├── io │ │ │ ├── BufferPool.java │ │ │ ├── BufferPool15Impl.java │ │ │ ├── ChannelData.java │ │ │ ├── DirectByteArrayOutputStream.java │ │ │ ├── ListenCallback.java │ │ │ ├── ObjectReader.java │ │ │ ├── ReplicationStream.java │ │ │ └── XByteBuffer.java │ │ ├── membership │ │ │ ├── Constants.java │ │ │ ├── LocalStrings.properties │ │ │ ├── LocalStrings_es.properties │ │ │ ├── McastService.java │ │ │ ├── McastServiceImpl.java │ │ │ ├── MemberImpl.java │ │ │ ├── Membership.java │ │ │ ├── StaticMember.java │ │ │ └── mbeans-descriptors.xml │ │ ├── package.html │ │ ├── tipis │ │ │ ├── AbstractReplicatedMap.java │ │ │ ├── LazyReplicatedMap.java │ │ │ ├── ReplicatedMap.java │ │ │ ├── ReplicatedMapEntry.java │ │ │ └── Streamable.java │ │ ├── transport │ │ │ ├── AbstractRxTask.java │ │ │ ├── AbstractSender.java │ │ │ ├── Constants.java │ │ │ ├── DataSender.java │ │ │ ├── LocalStrings.properties │ │ │ ├── LocalStrings_es.properties │ │ │ ├── MultiPointSender.java │ │ │ ├── PooledSender.java │ │ │ ├── ReceiverBase.java │ │ │ ├── ReplicationTransmitter.java │ │ │ ├── RxTaskPool.java │ │ │ ├── SenderState.java │ │ │ ├── bio │ │ │ │ ├── BioReceiver.java │ │ │ │ ├── BioReplicationTask.java │ │ │ │ ├── BioSender.java │ │ │ │ ├── MultipointBioSender.java │ │ │ │ ├── PooledMultiSender.java │ │ │ │ └── util │ │ │ │ │ ├── FastQueue.java │ │ │ │ │ ├── LinkObject.java │ │ │ │ │ └── SingleRemoveSynchronizedAddLock.java │ │ │ └── nio │ │ │ │ ├── NioReceiver.java │ │ │ │ ├── NioReplicationTask.java │ │ │ │ ├── NioSender.java │ │ │ │ ├── ParallelNioSender.java │ │ │ │ └── PooledParallelSender.java │ │ └── util │ │ │ ├── Arrays.java │ │ │ ├── ExecutorFactory.java │ │ │ ├── LocalStrings.properties │ │ │ ├── Logs.java │ │ │ ├── StringManager.java │ │ │ ├── TcclThreadFactory.java │ │ │ └── UUIDGenerator.java │ ├── users │ │ ├── AbstractGroup.java │ │ ├── AbstractRole.java │ │ ├── AbstractUser.java │ │ ├── Constants.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── MemoryGroup.java │ │ ├── MemoryRole.java │ │ ├── MemoryUser.java │ │ ├── MemoryUserDatabase.java │ │ ├── MemoryUserDatabaseFactory.java │ │ └── mbeans-descriptors.xml │ ├── util │ │ ├── Base64.java │ │ ├── CharsetMapper.java │ │ ├── CharsetMapperDefault.properties │ │ ├── ConcurrentMessageDigest.java │ │ ├── ContextName.java │ │ ├── Conversions.java │ │ ├── CustomObjectInputStream.java │ │ ├── DOMWriter.java │ │ ├── DateTool.java │ │ ├── Enumerator.java │ │ ├── Extension.java │ │ ├── ExtensionValidator.java │ │ ├── IOTools.java │ │ ├── InstanceSupport.java │ │ ├── Introspection.java │ │ ├── LifecycleBase.java │ │ ├── LifecycleMBeanBase.java │ │ ├── LifecycleSupport.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── MD5Encoder.java │ │ ├── MIME2Java.java │ │ ├── ManifestResource.java │ │ ├── ParameterMap.java │ │ ├── RequestUtil.java │ │ ├── ResourceSet.java │ │ ├── SchemaResolver.java │ │ ├── ServerInfo.java │ │ ├── ServerInfo.properties │ │ ├── SessionConfig.java │ │ ├── SessionIdGenerator.java │ │ ├── Strftime.java │ │ ├── StringParser.java │ │ ├── TomcatCSS.java │ │ ├── URLEncoder.java │ │ └── XMLWriter.java │ ├── valves │ │ ├── AccessLogValve.java │ │ ├── CometConnectionManagerValve.java │ │ ├── Constants.java │ │ ├── CrawlerSessionManagerValve.java │ │ ├── ErrorReportValve.java │ │ ├── ExtendedAccessLogValve.java │ │ ├── JDBCAccessLogValve.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── PersistentValve.java │ │ ├── RemoteAddrValve.java │ │ ├── RemoteHostValve.java │ │ ├── RemoteIpValve.java │ │ ├── RequestFilterValve.java │ │ ├── SSLValve.java │ │ ├── SemaphoreValve.java │ │ ├── StuckThreadDetectionValve.java │ │ ├── ValveBase.java │ │ ├── mbeans-descriptors.xml │ │ └── package.html │ └── websocket │ │ ├── Constants.java │ │ ├── LocalStrings.properties │ │ ├── MessageInbound.java │ │ ├── StreamInbound.java │ │ ├── WebSocketServlet.java │ │ ├── WsFrame.java │ │ ├── WsHttpServletRequestWrapper.java │ │ ├── WsInputStream.java │ │ └── WsOutbound.java │ ├── coyote │ ├── AbstractProcessor.java │ ├── AbstractProtocol.java │ ├── ActionCode.java │ ├── ActionHook.java │ ├── Adapter.java │ ├── AsyncContextCallback.java │ ├── AsyncStateMachine.java │ ├── Constants.java │ ├── InputBuffer.java │ ├── LocalStrings.properties │ ├── LocalStrings_es.properties │ ├── OutputBuffer.java │ ├── Processor.java │ ├── ProtocolHandler.java │ ├── Request.java │ ├── RequestGroupInfo.java │ ├── RequestInfo.java │ ├── Response.java │ ├── ajp │ │ ├── AbstractAjpProcessor.java │ │ ├── AbstractAjpProtocol.java │ │ ├── AjpAprProcessor.java │ │ ├── AjpAprProtocol.java │ │ ├── AjpMessage.java │ │ ├── AjpNioProcessor.java │ │ ├── AjpNioProtocol.java │ │ ├── AjpProcessor.java │ │ ├── AjpProtocol.java │ │ ├── Constants.java │ │ ├── LocalStrings.properties │ │ └── LocalStrings_es.properties │ ├── http11 │ │ ├── AbstractHttp11JsseProtocol.java │ │ ├── AbstractHttp11Processor.java │ │ ├── AbstractHttp11Protocol.java │ │ ├── AbstractInputBuffer.java │ │ ├── AbstractOutputBuffer.java │ │ ├── Constants.java │ │ ├── HeadersTooLargeException.java │ │ ├── Http11AprProcessor.java │ │ ├── Http11AprProtocol.java │ │ ├── Http11NioProcessor.java │ │ ├── Http11NioProtocol.java │ │ ├── Http11Processor.java │ │ ├── Http11Protocol.java │ │ ├── InputFilter.java │ │ ├── InternalAprInputBuffer.java │ │ ├── InternalAprOutputBuffer.java │ │ ├── InternalInputBuffer.java │ │ ├── InternalNioInputBuffer.java │ │ ├── InternalNioOutputBuffer.java │ │ ├── InternalOutputBuffer.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── OutputFilter.java │ │ ├── filters │ │ │ ├── BufferedInputFilter.java │ │ │ ├── ChunkedInputFilter.java │ │ │ ├── ChunkedOutputFilter.java │ │ │ ├── FlushableGZIPOutputStream.java │ │ │ ├── GzipOutputFilter.java │ │ │ ├── IdentityInputFilter.java │ │ │ ├── IdentityOutputFilter.java │ │ │ ├── SavedRequestInputFilter.java │ │ │ ├── VoidInputFilter.java │ │ │ └── VoidOutputFilter.java │ │ └── upgrade │ │ │ ├── Constants.java │ │ │ ├── LocalStrings.properties │ │ │ ├── UpgradeAprProcessor.java │ │ │ ├── UpgradeBioProcessor.java │ │ │ ├── UpgradeInbound.java │ │ │ ├── UpgradeNioProcessor.java │ │ │ ├── UpgradeOutbound.java │ │ │ └── UpgradeProcessor.java │ └── readme.md │ ├── el │ ├── ExpressionFactoryImpl.java │ ├── Messages.properties │ ├── Messages_es.properties │ ├── MethodExpressionImpl.java │ ├── MethodExpressionLiteral.java │ ├── ValueExpressionImpl.java │ ├── ValueExpressionLiteral.java │ ├── lang │ │ ├── ELArithmetic.java │ │ ├── ELSupport.java │ │ ├── EvaluationContext.java │ │ ├── ExpressionBuilder.java │ │ ├── FunctionMapperFactory.java │ │ ├── FunctionMapperImpl.java │ │ ├── VariableMapperFactory.java │ │ └── VariableMapperImpl.java │ ├── parser │ │ ├── ArithmeticNode.java │ │ ├── AstAnd.java │ │ ├── AstBracketSuffix.java │ │ ├── AstChoice.java │ │ ├── AstCompositeExpression.java │ │ ├── AstDeferredExpression.java │ │ ├── AstDiv.java │ │ ├── AstDotSuffix.java │ │ ├── AstDynamicExpression.java │ │ ├── AstEmpty.java │ │ ├── AstEqual.java │ │ ├── AstFalse.java │ │ ├── AstFloatingPoint.java │ │ ├── AstFunction.java │ │ ├── AstGreaterThan.java │ │ ├── AstGreaterThanEqual.java │ │ ├── AstIdentifier.java │ │ ├── AstInteger.java │ │ ├── AstLessThan.java │ │ ├── AstLessThanEqual.java │ │ ├── AstLiteralExpression.java │ │ ├── AstMethodParameters.java │ │ ├── AstMinus.java │ │ ├── AstMod.java │ │ ├── AstMult.java │ │ ├── AstNegative.java │ │ ├── AstNot.java │ │ ├── AstNotEqual.java │ │ ├── AstNull.java │ │ ├── AstOr.java │ │ ├── AstPlus.java │ │ ├── AstString.java │ │ ├── AstTrue.java │ │ ├── AstValue.java │ │ ├── BooleanNode.java │ │ ├── ELParser.html │ │ ├── ELParser.java │ │ ├── ELParser.jjt │ │ ├── ELParserConstants.java │ │ ├── ELParserTokenManager.java │ │ ├── ELParserTreeConstants.java │ │ ├── JJTELParserState.java │ │ ├── Node.java │ │ ├── NodeVisitor.java │ │ ├── ParseException.java │ │ ├── SimpleCharStream.java │ │ ├── SimpleNode.java │ │ ├── Token.java │ │ └── TokenMgrError.java │ ├── readme.md │ └── util │ │ ├── ConcurrentCache.java │ │ ├── MessageFactory.java │ │ ├── ReflectionUtil.java │ │ └── Validation.java │ ├── jasper │ ├── Constants.java │ ├── EmbeddedServletOptions.java │ ├── JasperException.java │ ├── JspC.java │ ├── JspCompilationContext.java │ ├── Options.java │ ├── compiler │ │ ├── AntCompiler.java │ │ ├── AttributeParser.java │ │ ├── BeanRepository.java │ │ ├── Collector.java │ │ ├── Compiler.java │ │ ├── DefaultErrorHandler.java │ │ ├── Dumper.java │ │ ├── ELFunctionMapper.java │ │ ├── ELInterpreter.java │ │ ├── ELInterpreterFactory.java │ │ ├── ELNode.java │ │ ├── ELParser.java │ │ ├── ErrorDispatcher.java │ │ ├── ErrorHandler.java │ │ ├── Generator.java │ │ ├── ImplicitTagLibraryInfo.java │ │ ├── JDTCompiler.java │ │ ├── JarResource.java │ │ ├── JarScannerFactory.java │ │ ├── JarURLResource.java │ │ ├── JasperTagInfo.java │ │ ├── JavacErrorDetail.java │ │ ├── JspConfig.java │ │ ├── JspDocumentParser.java │ │ ├── JspReader.java │ │ ├── JspRuntimeContext.java │ │ ├── JspUtil.java │ │ ├── Localizer.java │ │ ├── Mark.java │ │ ├── Node.java │ │ ├── PageDataImpl.java │ │ ├── PageInfo.java │ │ ├── Parser.java │ │ ├── ParserController.java │ │ ├── ScriptingVariabler.java │ │ ├── ServletWriter.java │ │ ├── SmapGenerator.java │ │ ├── SmapStratum.java │ │ ├── SmapUtil.java │ │ ├── TagConstants.java │ │ ├── TagFileProcessor.java │ │ ├── TagLibraryInfoImpl.java │ │ ├── TagPluginManager.java │ │ ├── TextOptimizer.java │ │ ├── TldLocation.java │ │ ├── TldLocationsCache.java │ │ ├── Validator.java │ │ ├── WebXml.java │ │ └── tagplugin │ │ │ ├── TagPlugin.java │ │ │ └── TagPluginContext.java │ ├── el │ │ ├── ELContextImpl.java │ │ ├── ELContextWrapper.java │ │ ├── ELResolverImpl.java │ │ ├── ExpressionEvaluatorImpl.java │ │ ├── ExpressionImpl.java │ │ ├── FunctionMapperImpl.java │ │ ├── JasperELResolver.java │ │ ├── JspELException.java │ │ ├── JspMethodExpression.java │ │ ├── JspMethodNotFoundException.java │ │ ├── JspPropertyNotFoundException.java │ │ ├── JspPropertyNotWritableException.java │ │ ├── JspValueExpression.java │ │ └── VariableResolverImpl.java │ ├── readme.md │ ├── resources │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ └── LocalStrings_ja.properties │ ├── runtime │ │ ├── BodyContentImpl.java │ │ ├── HttpJspBase.java │ │ ├── InstanceManagerFactory.java │ │ ├── JspApplicationContextImpl.java │ │ ├── JspContextWrapper.java │ │ ├── JspFactoryImpl.java │ │ ├── JspFragmentHelper.java │ │ ├── JspRuntimeLibrary.java │ │ ├── JspSourceDependent.java │ │ ├── JspWriterImpl.java │ │ ├── PageContextImpl.java │ │ ├── PerThreadTagHandlerPool.java │ │ ├── ProtectedFunctionMapper.java │ │ ├── ServletResponseWrapperInclude.java │ │ └── TagHandlerPool.java │ ├── security │ │ ├── SecurityClassLoad.java │ │ └── SecurityUtil.java │ ├── servlet │ │ ├── JasperLoader.java │ │ ├── JspCServletContext.java │ │ ├── JspServlet.java │ │ ├── JspServletWrapper.java │ │ └── mbeans-descriptors.xml │ ├── tagplugins │ │ └── jstl │ │ │ ├── Util.java │ │ │ ├── core │ │ │ ├── Catch.java │ │ │ ├── Choose.java │ │ │ ├── ForEach.java │ │ │ ├── ForTokens.java │ │ │ ├── If.java │ │ │ ├── Import.java │ │ │ ├── Otherwise.java │ │ │ ├── Out.java │ │ │ ├── Param.java │ │ │ ├── Redirect.java │ │ │ ├── Remove.java │ │ │ ├── Set.java │ │ │ ├── Url.java │ │ │ └── When.java │ │ │ └── tagPlugins.xml │ ├── util │ │ ├── Enumerator.java │ │ ├── ExceptionUtils.java │ │ ├── FastRemovalDequeue.java │ │ └── UniqueAttributesImpl.java │ └── xmlparser │ │ ├── ASCIIReader.java │ │ ├── EncodingMap.java │ │ ├── ParserUtils.java │ │ ├── SymbolTable.java │ │ ├── TreeNode.java │ │ ├── UCSReader.java │ │ ├── UTF8Reader.java │ │ ├── XMLChar.java │ │ ├── XMLEncodingDetector.java │ │ ├── XMLString.java │ │ └── XMLStringBuffer.java │ ├── juli │ ├── AsyncFileHandler.java │ ├── ClassLoaderLogManager.java │ ├── DateFormatCache.java │ ├── FileHandler.java │ ├── JdkLoggerFormatter.java │ ├── OneLineFormatter.java │ ├── VerbatimFormatter.java │ ├── logging │ │ ├── DirectJDKLog.java │ │ ├── Log.java │ │ ├── LogConfigurationException.java │ │ ├── LogFactory.java │ │ └── package.html │ └── readme.md │ ├── naming │ ├── Constants.java │ ├── ContextAccessController.java │ ├── ContextBindings.java │ ├── EjbRef.java │ ├── HandlerRef.java │ ├── JndiPermission.java │ ├── LocalStrings.properties │ ├── LocalStrings_es.properties │ ├── LocalStrings_fr.properties │ ├── LocalStrings_ja.properties │ ├── NameParserImpl.java │ ├── NamingContext.java │ ├── NamingContextBindingsEnumeration.java │ ├── NamingContextEnumeration.java │ ├── NamingEntry.java │ ├── ResourceEnvRef.java │ ├── ResourceLinkRef.java │ ├── ResourceRef.java │ ├── SelectorContext.java │ ├── ServiceRef.java │ ├── StringManager.java │ ├── TransactionRef.java │ ├── factory │ │ ├── BeanFactory.java │ │ ├── Constants.java │ │ ├── DataSourceLinkFactory.java │ │ ├── EjbFactory.java │ │ ├── MailSessionFactory.java │ │ ├── OpenEjbFactory.java │ │ ├── ResourceEnvFactory.java │ │ ├── ResourceFactory.java │ │ ├── ResourceLinkFactory.java │ │ ├── SendMailFactory.java │ │ ├── TransactionFactory.java │ │ ├── package.html │ │ └── webservices │ │ │ ├── ServiceProxy.java │ │ │ └── ServiceRefFactory.java │ ├── java │ │ ├── javaURLContextFactory.java │ │ └── package.html │ ├── package.html │ ├── readme.md │ └── resources │ │ ├── BaseDirContext.java │ │ ├── CacheEntry.java │ │ ├── Constants.java │ │ ├── DirContextURLConnection.java │ │ ├── DirContextURLStreamHandler.java │ │ ├── DirContextURLStreamHandlerFactory.java │ │ ├── FileDirContext.java │ │ ├── ImmutableNameNotFoundException.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_ja.properties │ │ ├── ProxyDirContext.java │ │ ├── RecyclableNamingEnumeration.java │ │ ├── Resource.java │ │ ├── ResourceAttributes.java │ │ ├── ResourceCache.java │ │ ├── VirtualDirContext.java │ │ ├── WARDirContext.java │ │ ├── jndi │ │ └── Handler.java │ │ └── package.html │ └── tomcat │ ├── InstanceManager.java │ ├── JarScanner.java │ ├── JarScannerCallback.java │ ├── PeriodicEventListener.java │ ├── buildutil │ ├── CheckEol.java │ └── Txt2Html.java │ ├── jni │ ├── Address.java │ ├── BIOCallback.java │ ├── Directory.java │ ├── Error.java │ ├── File.java │ ├── FileInfo.java │ ├── Global.java │ ├── Library.java │ ├── Local.java │ ├── Lock.java │ ├── Mmap.java │ ├── Multicast.java │ ├── OS.java │ ├── PasswordCallback.java │ ├── Poll.java │ ├── Pool.java │ ├── PoolCallback.java │ ├── Proc.java │ ├── ProcErrorCallback.java │ ├── Procattr.java │ ├── Registry.java │ ├── SSL.java │ ├── SSLContext.java │ ├── SSLSocket.java │ ├── Shm.java │ ├── Sockaddr.java │ ├── Socket.java │ ├── Status.java │ ├── Stdlib.java │ ├── Time.java │ └── User.java │ ├── readme.md │ └── util │ ├── DomUtil.java │ ├── ExceptionUtils.java │ ├── IntrospectionUtils.java │ ├── MutableInteger.java │ ├── bcel │ ├── Constants.java │ ├── classfile │ │ ├── AccessFlags.java │ │ ├── AnnotationDefault.java │ │ ├── AnnotationElementValue.java │ │ ├── AnnotationEntry.java │ │ ├── Annotations.java │ │ ├── ArrayElementValue.java │ │ ├── Attribute.java │ │ ├── AttributeReader.java │ │ ├── ClassElementValue.java │ │ ├── ClassFormatException.java │ │ ├── ClassParser.java │ │ ├── Code.java │ │ ├── CodeException.java │ │ ├── Constant.java │ │ ├── ConstantCP.java │ │ ├── ConstantClass.java │ │ ├── ConstantDouble.java │ │ ├── ConstantFieldref.java │ │ ├── ConstantFloat.java │ │ ├── ConstantInteger.java │ │ ├── ConstantInterfaceMethodref.java │ │ ├── ConstantInvokeDynamic.java │ │ ├── ConstantLong.java │ │ ├── ConstantMethodHandle.java │ │ ├── ConstantMethodType.java │ │ ├── ConstantMethodref.java │ │ ├── ConstantNameAndType.java │ │ ├── ConstantPool.java │ │ ├── ConstantString.java │ │ ├── ConstantUtf8.java │ │ ├── ConstantValue.java │ │ ├── Deprecated.java │ │ ├── ElementValue.java │ │ ├── ElementValuePair.java │ │ ├── EnclosingMethod.java │ │ ├── EnumElementValue.java │ │ ├── ExceptionTable.java │ │ ├── Field.java │ │ ├── FieldOrMethod.java │ │ ├── InnerClass.java │ │ ├── InnerClasses.java │ │ ├── JavaClass.java │ │ ├── LineNumber.java │ │ ├── LineNumberTable.java │ │ ├── LocalVariable.java │ │ ├── LocalVariableTable.java │ │ ├── LocalVariableTypeTable.java │ │ ├── Method.java │ │ ├── PMGClass.java │ │ ├── ParameterAnnotationEntry.java │ │ ├── ParameterAnnotations.java │ │ ├── RuntimeInvisibleAnnotations.java │ │ ├── RuntimeInvisibleParameterAnnotations.java │ │ ├── RuntimeVisibleAnnotations.java │ │ ├── RuntimeVisibleParameterAnnotations.java │ │ ├── Signature.java │ │ ├── SimpleElementValue.java │ │ ├── SourceFile.java │ │ ├── StackMap.java │ │ ├── StackMapEntry.java │ │ ├── StackMapTable.java │ │ ├── StackMapTableEntry.java │ │ ├── StackMapType.java │ │ ├── Synthetic.java │ │ ├── Unknown.java │ │ ├── Utility.java │ │ └── package.html │ ├── package.html │ └── util │ │ ├── BCELComparator.java │ │ ├── ByteSequence.java │ │ └── package.html │ ├── buf │ ├── Ascii.java │ ├── B2CConverter.java │ ├── ByteChunk.java │ ├── C2BConverter.java │ ├── CharChunk.java │ ├── Constants.java │ ├── HexUtils.java │ ├── LocalStrings.properties │ ├── LocalStrings_es.properties │ ├── MessageBytes.java │ ├── StringCache.java │ ├── UDecoder.java │ ├── UEncoder.java │ ├── Utf8Decoder.java │ └── package.html │ ├── codec │ ├── BinaryDecoder.java │ ├── BinaryEncoder.java │ ├── Decoder.java │ ├── DecoderException.java │ ├── Encoder.java │ ├── EncoderException.java │ └── binary │ │ ├── Base64.java │ │ ├── BaseNCodec.java │ │ ├── StringUtils.java │ │ └── package.html │ ├── collections │ └── ConcurrentCache.java │ ├── digester │ ├── AbstractObjectCreationFactory.java │ ├── ArrayStack.java │ ├── CallMethodRule.java │ ├── CallParamRule.java │ ├── Digester.java │ ├── FactoryCreateRule.java │ ├── GenericParser.java │ ├── NodeCreateRule.java │ ├── ObjectCreateRule.java │ ├── ObjectCreationFactory.java │ ├── ObjectParamRule.java │ ├── ParserFeatureSetterFactory.java │ ├── PathCallParamRule.java │ ├── Rule.java │ ├── RuleSet.java │ ├── RuleSetBase.java │ ├── Rules.java │ ├── RulesBase.java │ ├── SetNextRule.java │ ├── SetPropertiesRule.java │ ├── SetPropertyRule.java │ ├── SetRootRule.java │ ├── SetTopRule.java │ ├── WithDefaultsRulesWrapper.java │ ├── XercesParser.java │ └── package.html │ ├── file │ ├── Constants.java │ ├── LocalStrings.properties │ ├── Matcher.java │ └── package.html │ ├── http │ ├── ContentType.java │ ├── CookieSupport.java │ ├── Cookies.java │ ├── FastHttpDateFormat.java │ ├── HttpMessages.java │ ├── LocalStrings.properties │ ├── MimeHeaders.java │ ├── Parameters.java │ ├── RequestUtil.java │ ├── ServerCookie.java │ ├── fileupload │ │ ├── ByteArrayOutputStream.java │ │ ├── DeferredFileOutputStream.java │ │ ├── FileCleaningTracker.java │ │ ├── FileDeleteStrategy.java │ │ ├── FileItem.java │ │ ├── FileItemFactory.java │ │ ├── FileItemHeaders.java │ │ ├── FileItemHeadersSupport.java │ │ ├── FileItemIterator.java │ │ ├── FileItemStream.java │ │ ├── FileUpload.java │ │ ├── FileUploadBase.java │ │ ├── FileUploadException.java │ │ ├── FileUtils.java │ │ ├── IOUtils.java │ │ ├── InvalidFileNameException.java │ │ ├── MultipartStream.java │ │ ├── ParameterParser.java │ │ ├── ProgressListener.java │ │ ├── RequestContext.java │ │ ├── ThresholdingOutputStream.java │ │ ├── UploadContext.java │ │ ├── disk │ │ │ ├── DiskFileItem.java │ │ │ ├── DiskFileItemFactory.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── servlet │ │ │ ├── ServletFileUpload.java │ │ │ ├── ServletRequestContext.java │ │ │ └── package-info.java │ │ └── util │ │ │ ├── Closeable.java │ │ │ ├── FileItemHeadersImpl.java │ │ │ ├── LimitedInputStream.java │ │ │ ├── Streams.java │ │ │ ├── mime │ │ │ ├── MimeUtility.java │ │ │ ├── ParseException.java │ │ │ ├── QuotedPrintableDecoder.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ ├── mapper │ │ ├── LocalStrings.properties │ │ ├── Mapper.java │ │ └── MappingData.java │ ├── package.html │ ├── parser │ │ ├── HttpParser.java │ │ ├── MediaType.java │ │ └── MediaTypeCache.java │ └── res │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ └── LocalStrings_ja.properties │ ├── log │ ├── CaptureLog.java │ ├── SystemLogHandler.java │ └── UserDataHelper.java │ ├── modeler │ ├── AttributeInfo.java │ ├── BaseAttributeFilter.java │ ├── BaseModelMBean.java │ ├── BaseNotificationBroadcaster.java │ ├── ConstructorInfo.java │ ├── FeatureInfo.java │ ├── FixedNotificationFilter.java │ ├── ManagedBean.java │ ├── NotificationInfo.java │ ├── OperationInfo.java │ ├── ParameterInfo.java │ ├── Registry.java │ ├── RegistryMBean.java │ ├── Util.java │ ├── mbeans-descriptors.dtd │ ├── modules │ │ ├── MbeansDescriptorsDOMSource.java │ │ ├── MbeansDescriptorsDigesterSource.java │ │ ├── MbeansDescriptorsIntrospectionSource.java │ │ ├── MbeansDescriptorsSerSource.java │ │ ├── MbeansSource.java │ │ ├── MbeansSourceMBean.java │ │ ├── ModelerSource.java │ │ └── package.html │ └── package.html │ ├── net │ ├── AbstractEndpoint.java │ ├── AprEndpoint.java │ ├── Constants.java │ ├── DefaultServerSocketFactory.java │ ├── JIoEndpoint.java │ ├── NioBlockingSelector.java │ ├── NioChannel.java │ ├── NioEndpoint.java │ ├── NioSelectorPool.java │ ├── SSLImplementation.java │ ├── SSLSessionManager.java │ ├── SSLSupport.java │ ├── SSLUtil.java │ ├── SecureNioChannel.java │ ├── ServerSocketFactory.java │ ├── SocketProperties.java │ ├── SocketStatus.java │ ├── SocketWrapper.java │ ├── URL.java │ ├── jsse │ │ ├── JSSEImplementation.java │ │ ├── JSSEKeyManager.java │ │ ├── JSSESocketFactory.java │ │ ├── JSSESupport.java │ │ ├── NioX509KeyManager.java │ │ └── res │ │ │ ├── LocalStrings.properties │ │ │ ├── LocalStrings_es.properties │ │ │ ├── LocalStrings_fr.properties │ │ │ └── LocalStrings_ja.properties │ └── res │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ └── LocalStrings_ja.properties │ ├── res │ └── StringManager.java │ ├── scan │ ├── Constants.java │ ├── FileUrlJar.java │ ├── Jar.java │ ├── JarFactory.java │ ├── LocalStrings.properties │ ├── NonClosingJarInputStream.java │ ├── StandardJarScanner.java │ ├── UrlJar.java │ └── package.html │ └── threads │ ├── Constants.java │ ├── LimitLatch.java │ ├── ResizableExecutor.java │ ├── TaskQueue.java │ ├── TaskThread.java │ ├── TaskThreadFactory.java │ ├── ThreadPoolExecutor.java │ └── res │ ├── LocalStrings.properties │ ├── LocalStrings_es.properties │ ├── LocalStrings_fr.properties │ └── LocalStrings_ja.properties ├── modules └── jdbc-pool │ ├── LICENSE │ ├── NOTICE │ ├── build.properties.default │ ├── build.xml │ ├── doc │ ├── changelog.xml │ ├── jdbc-pool.xml │ ├── package.xsl │ └── project.xml │ ├── pom.xml │ ├── resources │ └── MANIFEST.MF │ └── src │ ├── main │ └── java │ │ └── org │ │ └── apache │ │ └── tomcat │ │ └── jdbc │ │ ├── naming │ │ └── GenericNamingResourcesFactory.java │ │ └── pool │ │ ├── ConnectionPool.java │ │ ├── DataSource.java │ │ ├── DataSourceFactory.java │ │ ├── DataSourceProxy.java │ │ ├── DisposableConnectionFacade.java │ │ ├── FairBlockingQueue.java │ │ ├── JdbcInterceptor.java │ │ ├── MultiLockFairBlockingQueue.java │ │ ├── PoolConfiguration.java │ │ ├── PoolExhaustedException.java │ │ ├── PoolProperties.java │ │ ├── PoolUtilities.java │ │ ├── PooledConnection.java │ │ ├── ProxyConnection.java │ │ ├── TrapException.java │ │ ├── Validator.java │ │ ├── XADataSource.java │ │ ├── interceptor │ │ ├── AbstractCreateStatementInterceptor.java │ │ ├── AbstractQueryReport.java │ │ ├── ConnectionState.java │ │ ├── QueryTimeoutInterceptor.java │ │ ├── ResetAbandonedTimer.java │ │ ├── SlowQueryReport.java │ │ ├── SlowQueryReportJmx.java │ │ ├── SlowQueryReportJmxMBean.java │ │ ├── StatementCache.java │ │ ├── StatementDecoratorInterceptor.java │ │ ├── StatementFinalizer.java │ │ └── mbeans-descriptors.xml │ │ ├── jmx │ │ ├── ConnectionPool.java │ │ └── ConnectionPoolMBean.java │ │ └── mbeans-descriptors.xml │ └── test │ └── java │ └── org │ └── apache │ └── tomcat │ └── jdbc │ ├── bugs │ └── Bug51582.java │ ├── pool │ └── interceptor │ │ ├── InduceSlowQuery.java │ │ ├── StatementCounterInterceptor.java │ │ └── TestInterceptor.java │ └── test │ ├── AbandonPercentageTest.java │ ├── AlternateUsernameTest.java │ ├── Async0IdleTestBug50477.java │ ├── BorrowWaitTest.java │ ├── Bug50571.java │ ├── Bug50805.java │ ├── CheckOutThreadTest.java │ ├── ConnectCountTest.java │ ├── CreateTestTable.java │ ├── DefaultProperties.java │ ├── DefaultTestCase.java │ ├── EqualsHashCodeTest.java │ ├── FairnessTest.java │ ├── JmxPasswordTest.java │ ├── MultipleCloseTest.java │ ├── PoolCleanerTest.java │ ├── PoolPurgeTest.java │ ├── SimplePOJOAsyncExample.java │ ├── SimplePOJOExample.java │ ├── StarvationTest.java │ ├── StatementFinalizerTest.java │ ├── TestAsyncQueue.java │ ├── TestConcurrency.java │ ├── TestConnectionState.java │ ├── TestException.java │ ├── TestGCClose.java │ ├── TestGetConnection.java │ ├── TestInterceptorShortName.java │ ├── TestQueryTimeoutInterceptor.java │ ├── TestSizePreservation.java │ ├── TestSlowQueryReport.java │ ├── TestStatementCache.java │ ├── TestSuspectTimeout.java │ ├── TestTimeout.java │ ├── TwoDataSources.java │ └── driver │ ├── Connection.java │ ├── Driver.java │ ├── ResultSet.java │ └── Statement.java ├── pom.xml ├── res ├── INSTALLLICENSE ├── META-INF │ ├── annotations-api.jar.manifest │ ├── bootstrap.jar.manifest │ ├── default.license │ ├── default.manifest │ ├── default.notice │ ├── el-api.jar.manifest │ ├── jsp-api.jar.license │ ├── jsp-api.jar.manifest │ ├── jsp-api.jar.notice │ ├── servlet-api.jar.license │ ├── servlet-api.jar.manifest │ └── servlet-api.jar.notice ├── checkstyle │ ├── checkstyle.xml │ ├── header-al2.txt │ ├── javax-checkstyle.xml │ ├── javax-import-control.xml │ ├── org-checkstyle.xml │ └── org-import-control.xml ├── confinstall │ ├── tomcat-users_1.xml │ └── tomcat-users_2.xml ├── deployer │ └── build.xml ├── findbugs │ ├── filter-false-positives.xml │ └── filter-post-7.0.x-fixes.xml ├── header.bmp ├── ide-support │ └── eclipse │ │ ├── eclipse.classpath │ │ ├── eclipse.project │ │ ├── java-compiler-errors-warnings.txt │ │ ├── start-tomcat.launch │ │ └── stop-tomcat.launch ├── maven │ ├── README.txt │ ├── mvn-pub.xml │ ├── mvn.properties.default │ ├── tomcat-annotations-api.pom │ ├── tomcat-api.pom │ ├── tomcat-catalina-ant.pom │ ├── tomcat-catalina-ha.pom │ ├── tomcat-catalina-jmx-remote.pom │ ├── tomcat-catalina-ws.pom │ ├── tomcat-catalina.pom │ ├── tomcat-coyote.pom │ ├── tomcat-dbcp.pom │ ├── tomcat-el-api.pom │ ├── tomcat-embed-core.pom │ ├── tomcat-embed-jasper.pom │ ├── tomcat-embed-logging-juli.pom │ ├── tomcat-embed-logging-log4j.pom │ ├── tomcat-extras-juli-adapters.pom │ ├── tomcat-extras-juli.pom │ ├── tomcat-i18n-es.pom │ ├── tomcat-i18n-fr.pom │ ├── tomcat-i18n-ja.pom │ ├── tomcat-jasper-el.pom │ ├── tomcat-jasper.pom │ ├── tomcat-jdbc.pom │ ├── tomcat-jsp-api.pom │ ├── tomcat-juli.pom │ ├── tomcat-servlet-api.pom │ ├── tomcat-tribes.pom │ ├── tomcat-util.pom │ └── tomcat.pom ├── rat │ └── rat-excludes.txt ├── scripts │ └── check-mime.pl ├── side_left.bmp ├── tomcat.ico ├── tomcat.nsi ├── welcome.bin.html └── welcome.main.html ├── test ├── javax │ ├── el │ │ ├── TestBeanELResolver.java │ │ ├── TestBeanELResolverVarargsInvocation.java │ │ ├── TestCompositeELResolver.java │ │ └── TestResourceBundleELResolver.java │ └── servlet │ │ ├── http │ │ └── TestHttpServlet.java │ │ └── jsp │ │ └── TestPageContext.java ├── org │ └── apache │ │ ├── catalina │ │ ├── authenticator │ │ │ ├── TestDigestAuthenticator.java │ │ │ ├── TestFormAuthenticator.java │ │ │ ├── TestNonLoginAndBasicAuthenticator.java │ │ │ ├── TestSSOnonLoginAndBasicAuthenticator.java │ │ │ ├── TestSSOnonLoginAndDigestAuthenticator.java │ │ │ └── TesterDigestAuthenticatorPerformance.java │ │ ├── comet │ │ │ └── TestCometProcessor.java │ │ ├── connector │ │ │ ├── TestConnector.java │ │ │ ├── TestCoyoteAdapter.java │ │ │ ├── TestInputBuffer.java │ │ │ ├── TestKeepAliveCount.java │ │ │ ├── TestMaxConnections.java │ │ │ ├── TestOutputBuffer.java │ │ │ ├── TestRequest.java │ │ │ ├── TestResponse.java │ │ │ ├── TestResponsePerformance.java │ │ │ └── TesterMockRequest.java │ │ ├── core │ │ │ ├── TestApplicationContext.java │ │ │ ├── TestApplicationFilterConfig.java │ │ │ ├── TestApplicationSessionCookieConfig.java │ │ │ ├── TestAsyncContextImpl.java │ │ │ ├── TestDefaultInstanceManager.java │ │ │ ├── TestNamingContextListener.java │ │ │ ├── TestStandardContext.java │ │ │ ├── TestStandardContextAliases.java │ │ │ ├── TestStandardContextResources.java │ │ │ ├── TestStandardContextValve.java │ │ │ ├── TestStandardHostValve.java │ │ │ ├── TestStandardWrapper.java │ │ │ ├── TestSwallowAbortedUploads.java │ │ │ ├── TesterContext.java │ │ │ └── TesterTldListener.java │ │ ├── deploy │ │ │ ├── TestFilterDef.java │ │ │ ├── TestSecurityConstraint.java │ │ │ ├── TestServletDef.java │ │ │ ├── TestWebXml.java │ │ │ └── TestWebXmlOrdering.java │ │ ├── filters │ │ │ ├── TestAddCharSetFilter.java │ │ │ ├── TestCorsFilter.java │ │ │ ├── TestCsrfPreventionFilter.java │ │ │ ├── TestCsrfPreventionFilter2.java │ │ │ ├── TestExpiresFilter.java │ │ │ ├── TestRemoteIpFilter.java │ │ │ ├── TesterFilterChain.java │ │ │ ├── TesterFilterConfigs.java │ │ │ ├── TesterHttpServletRequest.java │ │ │ ├── TesterHttpServletResponse.java │ │ │ └── TesterServletContext.java │ │ ├── ha │ │ │ └── session │ │ │ │ ├── TestSerializablePrincipal.java │ │ │ │ └── TesterPrincipal.java │ │ ├── loader │ │ │ ├── EchoTag.java │ │ │ ├── MyAnnotatedServlet.java │ │ │ ├── TestVirtualContext.java │ │ │ ├── TestVirtualWebappLoader.java │ │ │ ├── TestWebappClassLoaderExecutorMemoryLeak.java │ │ │ ├── TestWebappClassLoaderMemoryLeak.java │ │ │ └── TestWebappClassLoaderThreadLocalMemoryLeak.java │ │ ├── mbeans │ │ │ └── TestRegistration.java │ │ ├── servlets │ │ │ ├── TestDefaultServlet.java │ │ │ └── TestWebdavServlet.java │ │ ├── session │ │ │ ├── Benchmarks.java │ │ │ └── Threading.java │ │ ├── startup │ │ │ ├── DuplicateMappingParamFilter.java │ │ │ ├── DuplicateMappingParamServlet.java │ │ │ ├── FastNonSecureRandom.java │ │ │ ├── LoggingBaseTest.java │ │ │ ├── NoMappingParamServlet.java │ │ │ ├── ParamFilter.java │ │ │ ├── ParamServlet.java │ │ │ ├── SimpleHttpClient.java │ │ │ ├── TestContextConfig.java │ │ │ ├── TestContextConfigAnnotation.java │ │ │ ├── TestListener.java │ │ │ ├── TestTomcat.java │ │ │ ├── TestTomcatClassLoader.java │ │ │ ├── TestWebRuleSet.java │ │ │ ├── TesterServlet.java │ │ │ ├── TesterServletWithAnnotations.java │ │ │ ├── TesterServletWithLifeCycleMethods.java │ │ │ ├── TomcatBaseTest.java │ │ │ ├── web-1lifecyclecallback.xml │ │ │ ├── web-1ordering.xml │ │ │ ├── web-2lifecyclecallback.xml │ │ │ ├── web-2ordering.xml │ │ │ ├── web-fragment-1name.xml │ │ │ ├── web-fragment-1ordering.xml │ │ │ ├── web-fragment-2name.xml │ │ │ └── web-fragment-2ordering.xml │ │ ├── tribes │ │ │ ├── TesterUtil.java │ │ │ ├── demos │ │ │ │ ├── ChannelCreator.java │ │ │ │ ├── CoordinationDemo.java │ │ │ │ ├── EchoRpcTest.java │ │ │ │ ├── IntrospectionUtils.java │ │ │ │ ├── LoadTest.java │ │ │ │ ├── MapDemo.java │ │ │ │ └── MembersWithProperties.java │ │ │ ├── group │ │ │ │ ├── TestGroupChannelMemberArrival.java │ │ │ │ ├── TestGroupChannelOptionFlag.java │ │ │ │ ├── TestGroupChannelSenderConnections.java │ │ │ │ ├── TestGroupChannelStartStop.java │ │ │ │ └── interceptors │ │ │ │ │ ├── TestDomainFilterInterceptor.java │ │ │ │ │ ├── TestGzipInterceptor.java │ │ │ │ │ ├── TestNonBlockingCoordinator.java │ │ │ │ │ ├── TestOrderInterceptor.java │ │ │ │ │ └── TestTcpFailureDetector.java │ │ │ ├── io │ │ │ │ └── TestXByteBuffer.java │ │ │ ├── membership │ │ │ │ └── TestMemberImplSerialization.java │ │ │ └── test │ │ │ │ ├── NioSenderTest.java │ │ │ │ ├── TribesTestSuite.java │ │ │ │ ├── channel │ │ │ │ ├── TestDataIntegrity.java │ │ │ │ ├── TestMulticastPackages.java │ │ │ │ ├── TestRemoteProcessException.java │ │ │ │ └── TestUdpPackages.java │ │ │ │ └── transport │ │ │ │ ├── SocketNioReceive.java │ │ │ │ ├── SocketNioSend.java │ │ │ │ ├── SocketNioValidateSend.java │ │ │ │ ├── SocketReceive.java │ │ │ │ ├── SocketSend.java │ │ │ │ ├── SocketTribesReceive.java │ │ │ │ └── SocketValidateReceive.java │ │ ├── util │ │ │ ├── TestContextName.java │ │ │ ├── TestConversions.java │ │ │ ├── TestRequestUtil.java │ │ │ ├── TestServerInfo.java │ │ │ └── TesterBase64Performance.java │ │ ├── valves │ │ │ ├── Benchmarks.java │ │ │ ├── TestAccessLogValve.java │ │ │ ├── TestErrorReportValve.java │ │ │ ├── TestRemoteIpValve.java │ │ │ └── TesterAccessLogValve.java │ │ └── websocket │ │ │ └── TestWebSocket.java │ │ ├── coyote │ │ ├── ajp │ │ │ ├── SimpleAjpClient.java │ │ │ ├── TestAbstractAjpProcessor.java │ │ │ └── TesterAjpMessage.java │ │ └── http11 │ │ │ ├── TestAbstractHttp11Processor.java │ │ │ ├── TestGzipOutputFilter.java │ │ │ ├── TestInternalInputBuffer.java │ │ │ └── filters │ │ │ ├── TestChunkedInputFilter.java │ │ │ ├── TestFlushableGZIPOutputStream.java │ │ │ ├── bug52121-part1 │ │ │ └── bug52121-part2 │ │ ├── el │ │ ├── TestELEvaluation.java │ │ ├── TestELInJsp.java │ │ ├── TestMethodExpressionImpl.java │ │ ├── TestValueExpressionImpl.java │ │ ├── TesterBeanA.java │ │ ├── TesterBeanAA.java │ │ ├── TesterBeanAAA.java │ │ ├── TesterBeanB.java │ │ ├── TesterBeanBB.java │ │ ├── TesterBeanBBB.java │ │ ├── TesterBeanC.java │ │ ├── TesterBeanEnum.java │ │ ├── TesterEnum.java │ │ ├── TesterFunctions.java │ │ ├── lang │ │ │ ├── TestELArithmetic.java │ │ │ └── TestELSupport.java │ │ ├── parser │ │ │ ├── TestELParser.java │ │ │ └── TesterBeanA.java │ │ └── util │ │ │ ├── TestReflectionUtil.java │ │ │ └── Tester.java │ │ ├── jasper │ │ ├── compiler │ │ │ ├── TestAttributeParser.java │ │ │ ├── TestCompiler.java │ │ │ ├── TestELInterpreterFactory.java │ │ │ ├── TestGenerator.java │ │ │ ├── TestJspConfig.java │ │ │ ├── TestJspDocumentParser.java │ │ │ ├── TestJspReader.java │ │ │ ├── TestParser.java │ │ │ ├── TestParserNoStrictWhitespace.java │ │ │ ├── TestScriptingVariabler.java │ │ │ ├── TestTagPluginManager.java │ │ │ ├── TestValidator.java │ │ │ ├── TesterTag.java │ │ │ └── TesterTagPlugin.java │ │ ├── el │ │ │ └── TestJasperELResolver.java │ │ ├── runtime │ │ │ ├── TestJspWriterImpl.java │ │ │ ├── TestPageContextImpl.java │ │ │ └── TesterPageContextImpl.java │ │ └── util │ │ │ └── TestFastRemovalDequeue.java │ │ ├── juli │ │ ├── TestClassLoaderLogManager.java │ │ └── TestDateFormatCache.java │ │ ├── naming │ │ └── resources │ │ │ ├── TestDirContextURLStreamHandlerFactory.java │ │ │ ├── TestNamingContext.java │ │ │ ├── TestProxyDirContext.java │ │ │ ├── TestWarDirContext.java │ │ │ ├── TesterFactory.java │ │ │ └── TesterObject.java │ │ └── tomcat │ │ ├── unittest │ │ ├── TesterCounter.java │ │ ├── TesterLeakingServlet1.java │ │ ├── TesterLeakingServlet2.java │ │ ├── TesterThreadScopedHolder.java │ │ └── tags │ │ │ └── Bug53545.java │ │ └── util │ │ ├── buf │ │ ├── TestB2CConverter.java │ │ ├── TestByteChunk.java │ │ ├── TestCharChunk.java │ │ ├── TestHexUtils.java │ │ ├── TestUEncoder.java │ │ └── TestUtf8.java │ │ ├── http │ │ ├── CookiesBaseTest.java │ │ ├── TestBug49158.java │ │ ├── TestCookies.java │ │ ├── TestCookiesAllowEquals.java │ │ ├── TestCookiesAllowHttpSeps.java │ │ ├── TestCookiesAllowNameOnly.java │ │ ├── TestCookiesDefaultSysProps.java │ │ ├── TestCookiesDisallowEquals.java │ │ ├── TestCookiesNoFwdStrictSysProps.java │ │ ├── TestCookiesNoStrictNamingSysProps.java │ │ ├── TestCookiesStrictSysProps.java │ │ ├── TestMimeHeaders.java │ │ ├── TestParameters.java │ │ ├── TestRequestUtil.java │ │ ├── TesterParametersPerformance.java │ │ ├── mapper │ │ │ ├── TestMapper.java │ │ │ ├── TestMapperContextRoot.java │ │ │ └── TestMapperWelcomeFiles.java │ │ └── parser │ │ │ ├── TestAuthorizationDigest.java │ │ │ └── TestMediaType.java │ │ ├── net │ │ ├── TestClientCert.java │ │ ├── TestCustomSsl.java │ │ ├── TestSsl.java │ │ ├── TestXxxEndpoint.java │ │ ├── TesterSupport.java │ │ ├── ca.jks │ │ ├── jsse │ │ │ └── TesterBug50640SslImpl.java │ │ ├── keystore-info.txt │ │ ├── localhost-cert.pem │ │ ├── localhost-copy1.jks │ │ ├── localhost-key.pem │ │ ├── localhost.jks │ │ └── user1.jks │ │ ├── res │ │ └── TestStringManager.java │ │ ├── scan │ │ └── TestJarScanner.java │ │ └── threads │ │ └── TestLimitLatch.java ├── webapp-2.3 │ ├── WEB-INF │ │ ├── tags11.tld │ │ ├── tags12.tld │ │ ├── tags20.tld │ │ ├── tags21.tld │ │ └── web.xml │ ├── el-as-literal.jsp │ └── tld-versions.jsp ├── webapp-2.4 │ ├── WEB-INF │ │ ├── tags11.tld │ │ ├── tags12.tld │ │ ├── tags20.tld │ │ ├── tags21.tld │ │ └── web.xml │ ├── el-as-literal.jsp │ └── tld-versions.jsp ├── webapp-2.5 │ ├── WEB-INF │ │ ├── tags11.tld │ │ ├── tags12.tld │ │ ├── tags20.tld │ │ ├── tags21.tld │ │ └── web.xml │ ├── el-as-literal.jsp │ └── tld-versions.jsp ├── webapp-3.0-fragments-empty-absolute-ordering │ └── WEB-INF │ │ ├── lib │ │ └── resources.jar │ │ └── web.xml ├── webapp-3.0-fragments │ ├── 'singlequote2.jsp │ ├── WEB-INF │ │ ├── classes │ │ │ ├── #Bug51584.txt │ │ │ └── META-INF │ │ │ │ └── resources │ │ │ │ └── resourceG.jsp │ │ ├── lib │ │ │ ├── resources.jar │ │ │ └── resources2.jar │ │ └── web.xml │ ├── bug51396.jsp │ ├── folder │ │ ├── resourceC.jsp │ │ └── resourceE.jsp │ ├── resourceA.jsp │ └── warDirContext.jsp ├── webapp-3.0-servletsecurity │ └── WEB-INF │ │ └── web.xml ├── webapp-3.0-servletsecurity2 │ ├── WEB-INF │ │ └── web.xml │ ├── protected.jsp │ └── unprotected.jsp ├── webapp-3.0-virtual-library │ └── target │ │ └── classes │ │ ├── META-INF │ │ ├── C.tld │ │ └── resources │ │ │ └── rsrc │ │ │ └── resourceE.properties │ │ └── rsrc │ │ └── resourceC.properties ├── webapp-3.0-virtual-webapp │ ├── src │ │ └── main │ │ │ ├── lib │ │ │ ├── META-INF │ │ │ │ └── B.tld │ │ │ └── rsrc │ │ │ │ └── resourceD.properties │ │ │ ├── misc │ │ │ └── resourceI.properties │ │ │ ├── webapp │ │ │ ├── WEB-INF │ │ │ │ ├── A.tld │ │ │ │ ├── classes │ │ │ │ │ └── rsrc │ │ │ │ │ │ └── resourceA.properties │ │ │ │ ├── lib │ │ │ │ │ └── rsrc.jar │ │ │ │ └── web.xml │ │ │ ├── classpathGetResourceAsStream.jsp │ │ │ ├── classpathGetResourceUrlThenGetStream.jsp │ │ │ ├── classpathGetResources.jsp │ │ │ ├── contextGetRealPath.jsp │ │ │ ├── contextGetResource.jsp │ │ │ ├── contextGetResourcePaths.jsp │ │ │ ├── rsrc │ │ │ │ └── resourceF.properties │ │ │ └── testTlds.jsp │ │ │ └── webapp2 │ │ │ ├── WEB-INF │ │ │ ├── D.tld │ │ │ └── classes │ │ │ │ ├── rsrc │ │ │ │ └── resourceG.properties │ │ │ │ └── rsrc2 │ │ │ │ └── resourceK.properties │ │ │ ├── rsrc │ │ │ ├── resourceF.properties │ │ │ └── resourceH.properties │ │ │ └── rsrc2 │ │ │ └── resourceJ.properties │ └── target │ │ └── classes │ │ └── rsrc │ │ └── resourceB.properties └── webapp-3.0 │ ├── WEB-INF │ ├── bug53545.tld │ ├── bugs.tld │ ├── classes │ │ └── META-INF │ │ │ └── org.apache.jasper │ │ │ └── tagPlugins.xml │ ├── jsp │ │ └── bug53574.jsp │ ├── listener.tld │ ├── tags │ │ ├── bug42390.tag │ │ ├── bug48668.tagx │ │ ├── bug49297.tag │ │ ├── echo-deferred.tag │ │ ├── echo-double.tag │ │ ├── echo-long.tag │ │ ├── echo-noel.tag │ │ ├── echo.tag │ │ └── implicit.tld │ ├── tags11.tld │ ├── tags12.tld │ ├── tags20.tld │ ├── tags21.tld │ ├── test.tld │ └── web.xml │ ├── annotations.jsp │ ├── bug36923.jsp │ ├── bug42390.jsp │ ├── bug42565.jsp │ ├── bug44994.jsp │ ├── bug45nnn │ ├── bug45015a.jsp │ ├── bug45015b.jsp │ ├── bug45015c.jsp │ ├── bug45427.jsp │ ├── bug45451.jspf │ ├── bug45451a.jsp │ ├── bug45451b.jsp │ ├── bug45451c.jsp │ ├── bug45451d.jspx │ ├── bug45451e.jsp │ └── bug45511.jsp │ ├── bug46381.jsp │ ├── bug46596.jsp │ ├── bug47331.jsp │ ├── bug47413.jsp │ ├── bug47977.jspx │ ├── bug48nnn │ ├── bug48112.jsp │ ├── bug48616.jsp │ ├── bug48616b.jsp │ ├── bug48627.jsp │ ├── bug48668a.jsp │ ├── bug48668b.jsp │ ├── bug48701-TVI-NFA.jsp │ ├── bug48701-TVI-NG.jsp │ ├── bug48701-UseBean.jsp │ ├── bug48701-VI.jsp │ ├── bug48701-fail.jsp │ └── bug48827.jspx │ ├── bug49nnn │ ├── bug49196.jsp │ ├── bug49297DuplicateAttr.jsp │ ├── bug49297MultipleImport1.jsp │ ├── bug49297MultipleImport2.jsp │ ├── bug49297MultiplePageEncoding1.jsp │ ├── bug49297MultiplePageEncoding2.jsp │ ├── bug49297MultiplePageEncoding3.jsp │ ├── bug49297MultiplePageEncoding4.jsp │ ├── bug49297NoSpace.jsp │ ├── bug49297Tag.jsp │ ├── bug49555.jsp │ ├── bug49726a.jsp │ ├── bug49726b.jsp │ └── bug49799.jsp │ ├── bug53257 │ ├── foo bar.jsp │ ├── foo bar.txt │ ├── foo bar │ │ ├── foobar.jsp │ │ └── foobar.txt │ ├── foo#bar.jsp │ ├── foo#bar.txt │ ├── foo%bar.jsp │ ├── foo%bar.txt │ ├── foo&bar.jsp │ ├── foo&bar.txt │ ├── foo+bar.jsp │ ├── foo+bar.txt │ ├── foo;bar.jsp │ ├── foo;bar.txt │ └── index.jsp │ ├── bug5nnnn │ ├── bug50408.jsp │ ├── bug51544.jsp │ ├── bug52335.jsp │ ├── bug53465.jsp │ ├── bug53467].jsp │ ├── bug53545.html │ ├── bug53545.jsp │ ├── bug53986.jsp │ ├── bug54241a.jsp │ ├── bug54241b.jsp │ ├── bug54801a.jspx │ ├── bug54801b.jspx │ ├── bug54821a.jspx │ └── bug54821b.jspx │ ├── echo-params.jsp │ ├── el-as-literal.jsp │ ├── el-method.jsp │ ├── el-misc.jsp │ ├── index.html │ ├── script-expr.jsp │ ├── tld-versions.jsp │ └── welcome-files │ ├── index.jsp │ └── sub │ └── .gitignore └── webapps ├── ROOT ├── WEB-INF │ └── web.xml ├── asf-logo-wide.gif ├── asf-logo.png ├── bg-button.png ├── bg-middle.png ├── bg-nav-item.png ├── bg-nav.png ├── bg-upper.png ├── build.xml ├── favicon.ico ├── index.jsp ├── tomcat-power.gif ├── tomcat.css ├── tomcat.gif ├── tomcat.png └── tomcat.svg ├── docs ├── META-INF │ └── context.xml ├── WEB-INF │ └── web.xml ├── aio.xml ├── api │ └── index.html ├── appdev │ ├── build.xml.txt │ ├── deployment.xml │ ├── index.xml │ ├── installation.xml │ ├── introduction.xml │ ├── processes.xml │ ├── project.xml │ ├── sample │ │ ├── docs │ │ │ └── README.txt │ │ ├── index.html │ │ ├── sample.war │ │ ├── src │ │ │ └── mypackage │ │ │ │ └── Hello.java │ │ └── web │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── hello.jsp │ │ │ ├── images │ │ │ └── tomcat.gif │ │ │ └── index.html │ ├── source.xml │ └── web.xml.txt ├── apr.xml ├── architecture │ ├── index.xml │ ├── overview.xml │ ├── project.xml │ ├── requestProcess.xml │ ├── requestProcess │ │ ├── requestProcess.pdf │ │ └── roseModel.mdl │ ├── startup.xml │ └── startup │ │ ├── serverStartup.pdf │ │ └── serverStartup.txt ├── balancer-howto.xml ├── building.xml ├── cgi-howto.xml ├── changelog.xml ├── class-loader-howto.xml ├── cluster-howto.xml ├── comments.xml ├── config │ ├── ajp.xml │ ├── cluster-channel.xml │ ├── cluster-deployer.xml │ ├── cluster-interceptor.xml │ ├── cluster-listener.xml │ ├── cluster-manager.xml │ ├── cluster-membership.xml │ ├── cluster-receiver.xml │ ├── cluster-sender.xml │ ├── cluster-valve.xml │ ├── cluster.xml │ ├── context.xml │ ├── engine.xml │ ├── executor.xml │ ├── filter.xml │ ├── globalresources.xml │ ├── host.xml │ ├── http.xml │ ├── index.xml │ ├── jar-scanner.xml │ ├── listeners.xml │ ├── loader.xml │ ├── manager.xml │ ├── project.xml │ ├── realm.xml │ ├── resources.xml │ ├── server.xml │ ├── service.xml │ ├── systemprops.xml │ └── valve.xml ├── connectors.xml ├── default-servlet.xml ├── deployer-howto.xml ├── developers.xml ├── elapi │ └── index.html ├── extras.xml ├── funcspecs │ ├── fs-admin-apps.xml │ ├── fs-admin-objects.xml │ ├── fs-admin-opers.xml │ ├── fs-default.xml │ ├── fs-jdbc-realm.xml │ ├── fs-jndi-realm.xml │ ├── fs-memory-realm.xml │ ├── index.xml │ ├── mbean-names.xml │ └── project.xml ├── html-manager-howto.xml ├── images │ ├── add.gif │ ├── asf-logo.gif │ ├── code.gif │ ├── cors-flowchart.png │ ├── design.gif │ ├── docs.gif │ ├── fix.gif │ ├── printer.gif │ ├── tomcat.gif │ ├── tomcat.svg │ ├── update.gif │ └── void.gif ├── index.xml ├── introduction.xml ├── jasper-howto.xml ├── jndi-datasource-examples-howto.xml ├── jndi-resources-howto.xml ├── jspapi │ └── index.html ├── logging.xml ├── manager-howto.xml ├── maven-jars.xml ├── mbeans-descriptor-howto.xml ├── monitoring.xml ├── project.xml ├── proxy-howto.xml ├── realm-howto.xml ├── security-howto.xml ├── security-manager-howto.xml ├── servletapi │ └── index.html ├── setup.xml ├── ssi-howto.xml ├── ssl-howto.xml ├── tomcat-docs.xsl ├── tribes │ ├── developers.xml │ ├── faq.xml │ ├── interceptors.xml │ ├── introduction.xml │ ├── leader-election-initiate-election.dia │ ├── leader-election-initiate-election.jpg │ ├── leader-election-message-arrives.dia │ ├── leader-election-message-arrives.jpg │ ├── membership.xml │ ├── project.xml │ ├── setup.xml │ ├── status.xml │ └── transport.xml ├── virtual-hosting-howto.xml ├── web-socket-howto.xml ├── windows-auth-howto.xml └── windows-service-howto.xml ├── examples ├── WEB-INF │ ├── classes │ │ ├── CookieExample.java │ │ ├── HelloWorldExample.java │ │ ├── LocalStrings.properties │ │ ├── LocalStrings_en.properties │ │ ├── LocalStrings_es.properties │ │ ├── LocalStrings_fr.properties │ │ ├── LocalStrings_pt.properties │ │ ├── RequestHeaderExample.java │ │ ├── RequestInfoExample.java │ │ ├── RequestParamExample.java │ │ ├── ServletToJsp.java │ │ ├── SessionExample.java │ │ ├── async │ │ │ ├── Async0.java │ │ │ ├── Async1.java │ │ │ ├── Async2.java │ │ │ ├── Async3.java │ │ │ ├── AsyncStockServlet.java │ │ │ └── Stockticker.java │ │ ├── cal │ │ │ ├── Entries.java │ │ │ ├── Entry.java │ │ │ ├── JspCalendar.java │ │ │ └── TableBean.java │ │ ├── chat │ │ │ └── ChatServlet.java │ │ ├── checkbox │ │ │ └── CheckTest.java │ │ ├── colors │ │ │ └── ColorGameBean.java │ │ ├── compressionFilters │ │ │ ├── CompressionFilter.java │ │ │ ├── CompressionFilterTestServlet.java │ │ │ ├── CompressionResponseStream.java │ │ │ └── CompressionServletResponseWrapper.java │ │ ├── dates │ │ │ └── JspCalendar.java │ │ ├── error │ │ │ └── Smart.java │ │ ├── examples │ │ │ ├── ExampleTagBase.java │ │ │ ├── FooTag.java │ │ │ ├── FooTagExtraInfo.java │ │ │ ├── LogTag.java │ │ │ ├── ShowSource.java │ │ │ └── ValuesTag.java │ │ ├── filters │ │ │ └── ExampleFilter.java │ │ ├── jsp2 │ │ │ └── examples │ │ │ │ ├── BookBean.java │ │ │ │ ├── FooBean.java │ │ │ │ ├── ValuesBean.java │ │ │ │ ├── el │ │ │ │ └── Functions.java │ │ │ │ └── simpletag │ │ │ │ ├── EchoAttributesTag.java │ │ │ │ ├── FindBookSimpleTag.java │ │ │ │ ├── HelloWorldSimpleTag.java │ │ │ │ ├── RepeatSimpleTag.java │ │ │ │ ├── ShuffleSimpleTag.java │ │ │ │ └── TileSimpleTag.java │ │ ├── listeners │ │ │ ├── ContextListener.java │ │ │ └── SessionListener.java │ │ ├── num │ │ │ └── NumberGuessBean.java │ │ ├── sessions │ │ │ └── DummyCart.java │ │ ├── util │ │ │ └── HTMLFilter.java │ │ ├── validators │ │ │ └── DebugValidator.java │ │ └── websocket │ │ │ ├── chat │ │ │ └── ChatWebSocketServlet.java │ │ │ ├── echo │ │ │ ├── EchoMessage.java │ │ │ └── EchoStream.java │ │ │ └── snake │ │ │ ├── Direction.java │ │ │ ├── Location.java │ │ │ ├── Snake.java │ │ │ └── SnakeWebSocketServlet.java │ ├── jsp │ │ ├── applet │ │ │ └── Clock2.java │ │ ├── debug-taglib.tld │ │ └── example-taglib.tld │ ├── jsp2 │ │ └── jsp2-example-taglib.tld │ ├── lib │ │ ├── jstl.jar │ │ └── standard.jar │ ├── tags │ │ ├── displayProducts.tag │ │ ├── helloWorld.tag │ │ ├── panel.tag │ │ └── xhtmlbasic.tag │ └── web.xml ├── index.html ├── jsp │ ├── async │ │ ├── async1.jsp │ │ ├── async3.jsp │ │ └── index.jsp │ ├── cal │ │ ├── cal1.jsp │ │ ├── cal2.jsp │ │ ├── calendar.html │ │ └── login.html │ ├── chat │ │ ├── index.jsp │ │ ├── login.jsp │ │ └── post.jsp │ ├── checkbox │ │ ├── CheckTest.html │ │ ├── check.html │ │ ├── checkresult.jsp │ │ └── cresult.html │ ├── colors │ │ ├── ColorGameBean.html │ │ ├── clr.html │ │ ├── colors.html │ │ └── colrs.jsp │ ├── dates │ │ ├── date.html │ │ └── date.jsp │ ├── error │ │ ├── er.html │ │ ├── err.jsp │ │ ├── error.html │ │ └── errorpge.jsp │ ├── forward │ │ ├── forward.jsp │ │ ├── fwd.html │ │ ├── one.jsp │ │ └── two.html │ ├── images │ │ ├── code.gif │ │ ├── execute.gif │ │ ├── read.gif │ │ └── return.gif │ ├── include │ │ ├── foo.html │ │ ├── foo.jsp │ │ ├── inc.html │ │ └── include.jsp │ ├── index.html │ ├── jsp2 │ │ ├── el │ │ │ ├── basic-arithmetic.html │ │ │ ├── basic-arithmetic.jsp │ │ │ ├── basic-comparisons.html │ │ │ ├── basic-comparisons.jsp │ │ │ ├── composite.html │ │ │ ├── composite.jsp │ │ │ ├── functions.html │ │ │ ├── functions.jsp │ │ │ ├── implicit-objects.html │ │ │ └── implicit-objects.jsp │ │ ├── jspattribute │ │ │ ├── jspattribute.html │ │ │ ├── jspattribute.jsp │ │ │ ├── shuffle.html │ │ │ └── shuffle.jsp │ │ ├── jspx │ │ │ ├── basic.html │ │ │ ├── basic.jspx │ │ │ ├── svgexample.html │ │ │ ├── textRotate.html │ │ │ ├── textRotate.jpg │ │ │ └── textRotate.jspx │ │ ├── misc │ │ │ ├── coda.jspf │ │ │ ├── config.html │ │ │ ├── config.jsp │ │ │ ├── dynamicattrs.html │ │ │ ├── dynamicattrs.jsp │ │ │ └── prelude.jspf │ │ ├── simpletag │ │ │ ├── book.html │ │ │ ├── book.jsp │ │ │ ├── hello.html │ │ │ ├── hello.jsp │ │ │ ├── repeat.html │ │ │ └── repeat.jsp │ │ └── tagfiles │ │ │ ├── hello.html │ │ │ ├── hello.jsp │ │ │ ├── panel.html │ │ │ ├── panel.jsp │ │ │ ├── products.html │ │ │ └── products.jsp │ ├── jsptoserv │ │ ├── hello.jsp │ │ ├── jsptoservlet.jsp │ │ └── jts.html │ ├── num │ │ ├── numguess.html │ │ └── numguess.jsp │ ├── plugin │ │ ├── applet │ │ │ └── Clock2.java │ │ ├── plugin.html │ │ └── plugin.jsp │ ├── security │ │ └── protected │ │ │ ├── error.jsp │ │ │ ├── index.jsp │ │ │ └── login.jsp │ ├── sessions │ │ ├── DummyCart.html │ │ ├── carts.html │ │ ├── carts.jsp │ │ └── crt.html │ ├── simpletag │ │ ├── foo.html │ │ └── foo.jsp │ ├── snp │ │ ├── snoop.html │ │ └── snoop.jsp │ ├── source.jsp │ ├── tagplugin │ │ ├── choose.html │ │ ├── choose.jsp │ │ ├── foreach.html │ │ ├── foreach.jsp │ │ ├── howto.html │ │ ├── if.html │ │ ├── if.jsp │ │ └── notes.html │ └── xml │ │ ├── xml.html │ │ └── xml.jsp ├── servlets │ ├── cookies.html │ ├── helloworld.html │ ├── images │ │ ├── code.gif │ │ ├── execute.gif │ │ └── return.gif │ ├── index.html │ ├── reqheaders.html │ ├── reqinfo.html │ ├── reqparams.html │ └── sessions.html └── websocket │ ├── chat.html │ ├── echo.html │ ├── index.html │ └── snake.html ├── host-manager ├── META-INF │ └── context.xml ├── WEB-INF │ ├── jsp │ │ ├── 401.jsp │ │ ├── 403.jsp │ │ └── 404.jsp │ └── web.xml ├── images │ ├── add.gif │ ├── asf-logo.gif │ ├── code.gif │ ├── design.gif │ ├── docs.gif │ ├── fix.gif │ ├── tomcat.gif │ ├── update.gif │ └── void.gif ├── index.jsp └── manager.xml └── manager ├── META-INF └── context.xml ├── WEB-INF ├── jsp │ ├── 401.jsp │ ├── 403.jsp │ ├── 404.jsp │ ├── sessionDetail.jsp │ └── sessionsList.jsp └── web.xml ├── images ├── add.gif ├── asf-logo.gif ├── code.gif ├── design.gif ├── docs.gif ├── fix.gif ├── tomcat.gif ├── update.gif └── void.gif ├── index.jsp ├── status.xsd └── xform.xsl /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_STORE 3 | .svn 4 | .iml 5 | target/ 6 | tomcat-study.iml 7 | .clss 8 | .log 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tomcat-Source-Code 2 | 3 | 为了学习tomcat源码,并再学习源码时对源码做注释,用于加深理解 4 | 5 | 6 | ### Quick Start 7 | 8 | star 之后点击clone, 使用IDEA 或 eclipse (本人是IDEA)配置 VM options, 9 | 配置 maven , 配置 output 目录. 10 | 11 | 然后Run Bootstrap 12 | 13 | 14 | VM options参数: 15 | 16 | -Dcatalina.home=catalina-home -Dcatalina.base=catalina-home 17 | -Djava.endorsed.dirs=catalina-home/endorsed -Djava.io.tmpdir=catalina-home/temp 18 | -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager 19 | -Djava.util.logging.config.file=catalina-home/conf/logging.properties 20 | 21 | 22 | 本人微信,欢迎一起探讨: 23 | 24 | ![image](https://user-images.githubusercontent.com/24973360/50372024-5f975d00-0601-11e9-8247-139e145b1123.png) 25 | -------------------------------------------------------------------------------- /catalina-home/bin/bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/bin/bootstrap.jar -------------------------------------------------------------------------------- /catalina-home/bin/commons-daemon-native.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/bin/commons-daemon-native.tar.gz -------------------------------------------------------------------------------- /catalina-home/bin/commons-daemon.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/bin/commons-daemon.jar -------------------------------------------------------------------------------- /catalina-home/bin/tomcat-juli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/bin/tomcat-juli.jar -------------------------------------------------------------------------------- /catalina-home/bin/tomcat-native.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/bin/tomcat-native.tar.gz -------------------------------------------------------------------------------- /catalina-home/lib/annotations-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/annotations-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina-ant.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/catalina-ant.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina-ha.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/catalina-ha.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina-tribes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/catalina-tribes.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/catalina.jar -------------------------------------------------------------------------------- /catalina-home/lib/ecj-4.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/ecj-4.2.2.jar -------------------------------------------------------------------------------- /catalina-home/lib/el-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/el-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/jasper-el.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/jasper-el.jar -------------------------------------------------------------------------------- /catalina-home/lib/jasper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/jasper.jar -------------------------------------------------------------------------------- /catalina-home/lib/jsp-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/jsp-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/servlet-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-coyote.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-coyote.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-dbcp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-dbcp.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-i18n-es.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-i18n-es.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-i18n-fr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-i18n-fr.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-i18n-ja.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-i18n-ja.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-jdbc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-jdbc.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/lib/tomcat-util.jar -------------------------------------------------------------------------------- /catalina-home/logs/catalina.2017-11-21.log: -------------------------------------------------------------------------------- 1 | 十一月 21, 2017 10:50:00 下午 org.apache.catalina.startup.Catalina load 2 | 信息: Initialization processed in 69182111 ms 3 | -------------------------------------------------------------------------------- /catalina-home/logs/catalina.2017-11-25.log: -------------------------------------------------------------------------------- 1 | 十一月 25, 2017 8:45:19 下午 org.apache.coyote.AbstractProtocol pause 2 | 信息: Pausing ProtocolHandler ["http-bio-8080"] 3 | 十一月 25, 2017 8:45:20 下午 org.apache.coyote.AbstractProtocol pause 4 | 信息: Pausing ProtocolHandler ["ajp-bio-8009"] 5 | 十一月 25, 2017 8:45:20 下午 org.apache.catalina.core.StandardService stopInternal 6 | 信息: Stopping service Catalina 7 | 十一月 25, 2017 8:45:20 下午 org.apache.coyote.AbstractProtocol stop 8 | 信息: Stopping ProtocolHandler ["http-bio-8080"] 9 | 十一月 25, 2017 8:45:20 下午 org.apache.coyote.AbstractProtocol stop 10 | 信息: Stopping ProtocolHandler ["ajp-bio-8009"] 11 | 十一月 25, 2017 8:45:20 下午 org.apache.coyote.AbstractProtocol destroy 12 | 信息: Destroying ProtocolHandler ["http-bio-8080"] 13 | 十一月 25, 2017 8:45:20 下午 org.apache.coyote.AbstractProtocol destroy 14 | 信息: Destroying ProtocolHandler ["ajp-bio-8009"] 15 | -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-14.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/host-manager.2017-11-14.log -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-18.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/host-manager.2017-11-18.log -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-19.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/host-manager.2017-11-19.log -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-21.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/host-manager.2017-11-21.log -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-22.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/host-manager.2017-11-22.log -------------------------------------------------------------------------------- /catalina-home/logs/localhost.2017-11-18.log: -------------------------------------------------------------------------------- 1 | 十一月 18, 2017 11:31:04 下午 org.apache.catalina.core.ApplicationContext log 2 | 信息: ContextListener: contextInitialized() 3 | 十一月 18, 2017 11:31:04 下午 org.apache.catalina.core.ApplicationContext log 4 | 信息: SessionListener: contextInitialized() 5 | 十一月 18, 2017 11:31:04 下午 org.apache.catalina.core.ApplicationContext log 6 | 信息: ContextListener: attributeAdded('org.apache.jasper.compiler.TldLocationsCache', 'org.apache.jasper.compiler.TldLocationsCache@54677e03') 7 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost.2017-11-21.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/localhost.2017-11-21.log -------------------------------------------------------------------------------- /catalina-home/logs/localhost.2017-11-25.log: -------------------------------------------------------------------------------- 1 | 十一月 25, 2017 8:45:20 下午 org.apache.catalina.core.ApplicationContext log 2 | 信息: SessionListener: contextDestroyed() 3 | 十一月 25, 2017 8:45:20 下午 org.apache.catalina.core.ApplicationContext log 4 | 信息: ContextListener: contextDestroyed() 5 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2013-10-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/localhost_access_log.2013-10-14.txt -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2013-10-15.txt: -------------------------------------------------------------------------------- 1 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET / HTTP/1.1" 200 11249 2 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /tomcat.css HTTP/1.1" 200 5576 3 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /tomcat.png HTTP/1.1" 200 5103 4 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /favicon.ico HTTP/1.1" 200 21630 5 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /bg-nav.png HTTP/1.1" 200 1401 6 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /asf-logo.png HTTP/1.1" 200 17811 7 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /bg-button.png HTTP/1.1" 200 713 8 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /bg-middle.png HTTP/1.1" 200 1918 9 | 127.0.0.1 - - [15/Oct/2013:10:32:04 +0800] "GET /bg-upper.png HTTP/1.1" 200 3103 10 | 127.0.0.1 - - [15/Oct/2013:10:32:07 +0800] "GET /manager/html HTTP/1.1" 401 2486 11 | 127.0.0.1 - - [15/Oct/2013:10:32:10 +0800] "GET /manager/html HTTP/1.1" 401 2486 12 | 127.0.0.1 - - [15/Oct/2013:10:32:12 +0800] "GET /manager/html HTTP/1.1" 401 2486 13 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2017-11-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/localhost_access_log.2017-11-14.txt -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2017-11-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/localhost_access_log.2017-11-18.txt -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2017-11-22.txt: -------------------------------------------------------------------------------- 1 | 0:0:0:0:0:0:0:1 - - [22/Nov/2017:00:21:52 +0800] "§£ZR Îk)…Ǽ´qÁ²T˜WVa45,R¥@ø:À#À'<À%À)g@À À/ÀÀ32À+À/œÀ-À1ž¢ÀÀ " 400 - 2 | 0:0:0:0:0:0:0:1 - - [22/Nov/2017:00:23:34 +0800] "§£ZS_ І…u¼Ðh¥>Á Õc§‚ë«uíR¹ù‡:À#À'<À%À)g@À À/ÀÀ32À+À/œÀ-À1ž¢ÀÀ" 400 - 3 | 0:0:0:0:0:0:0:1 - - [22/Nov/2017:23:46:59 +0800] "GET /favicon.ico HTTP/1.1" 200 21630 4 | -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-14.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/manager.2017-11-14.log -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-18.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/manager.2017-11-18.log -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-19.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/manager.2017-11-19.log -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-21.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/manager.2017-11-21.log -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-22.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/logs/manager.2017-11-22.log -------------------------------------------------------------------------------- /catalina-home/temp/safeToDelete.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/temp/safeToDelete.tmp -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/asf-logo-wide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/asf-logo-wide.gif -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/asf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/asf-logo.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/bg-button.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/bg-middle.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-nav-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/bg-nav-item.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/bg-nav.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/bg-upper.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/favicon.ico -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/tomcat-power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/tomcat-power.gif -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/ROOT/tomcat.png -------------------------------------------------------------------------------- /catalina-home/webapps/docs/appdev/sample/docs/README.txt: -------------------------------------------------------------------------------- 1 | Licensed to the Apache Software Foundation (ASF) under one or more 2 | contributor license agreements. See the NOTICE file distributed with 3 | this work for additional information regarding copyright ownership. 4 | The ASF licenses this file to You under the Apache License, Version 2.0 5 | (the "License"); you may not use this file except in compliance with 6 | the License. You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | This is a dummy README file for the sample 17 | web application. 18 | -------------------------------------------------------------------------------- /catalina-home/webapps/docs/appdev/sample/sample.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/appdev/sample/sample.war -------------------------------------------------------------------------------- /catalina-home/webapps/docs/appdev/sample/web/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/appdev/sample/web/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/architecture/requestProcess/requestProcess.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/architecture/requestProcess/requestProcess.pdf -------------------------------------------------------------------------------- /catalina-home/webapps/docs/architecture/startup/serverStartup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/architecture/startup/serverStartup.pdf -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/add.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/asf-logo.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/cors-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/cors-flowchart.png -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/design.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/docs.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/printer.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/update.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/docs/images/void.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/CookieExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/CookieExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/HelloWorldExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/HelloWorldExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/RequestHeaderExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/RequestHeaderExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/RequestInfoExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/RequestInfoExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/RequestParamExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/RequestParamExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/ServletToJsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/ServletToJsp.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/SessionExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/SessionExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async0$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async0$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async0.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async0.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async1$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async2$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async2.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Async3.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$Stock.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$Stock.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$TickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$TickListener.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/Entries.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/cal/Entries.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/Entry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/cal/Entry.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/JspCalendar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/cal/JspCalendar.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/TableBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/cal/TableBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/dates/JspCalendar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/dates/JspCalendar.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/error/Smart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/error/Smart.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/FooTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/examples/FooTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/LogTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/examples/LogTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/ShowSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/examples/ShowSource.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/ValuesTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/examples/ValuesTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/ValuesBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/ValuesBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/listeners/ContextListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/listeners/ContextListener.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/listeners/SessionListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/listeners/SessionListener.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/sessions/DummyCart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/sessions/DummyCart.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/util/HTMLFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/util/HTMLFilter.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/validators/DebugValidator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/validators/DebugValidator.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$ChatMessageInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$ChatMessageInbound.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage$EchoMessageInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage$EchoMessageInbound.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$EchoStreamInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$EchoStreamInbound.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Direction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Direction.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Direction.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | package websocket.snake; 18 | 19 | public enum Direction { 20 | NONE, NORTH, SOUTH, EAST, WEST 21 | } 22 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Snake.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$SnakeMessageInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$SnakeMessageInbound.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/tags/helloWorld.tag: -------------------------------------------------------------------------------- 1 | 17 | Hello, world! 18 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/async/async3.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@page session="false"%> 18 | Output from async3.jsp 19 | Type is <%=request.getDispatcherType()%> 20 | Completed async 3 request at <%=new java.sql.Date(System.currentTimeMillis())%> -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/forward/one.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 | 21 | 22 | VM Memory usage < 50%. 23 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/forward/one.jsp.html: -------------------------------------------------------------------------------- 1 |
 2 | <%--
 3 |  Licensed to the Apache Software Foundation (ASF) under one or more
 4 |   contributor license agreements.  See the NOTICE file distributed with
 5 |   this work for additional information regarding copyright ownership.
 6 |   The ASF licenses this file to You under the Apache License, Version 2.0
 7 |   (the "License"); you may not use this file except in compliance with
 8 |   the License.  You may obtain a copy of the License at
 9 | 
10 |       http://www.apache.org/licenses/LICENSE-2.0
11 | 
12 |   Unless required by applicable law or agreed to in writing, software
13 |   distributed under the License is distributed on an "AS IS" BASIS,
14 |   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 |   See the License for the specific language governing permissions and
16 |   limitations under the License.
17 | --%>
18 | <html>
19 | 
20 | <body bgcolor="white">
21 | <font color="red">
22 | 
23 | VM Memory usage < 50%.
24 | </html>
25 | 
26 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/forward/two.html: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | VM Memory usage > 50%. 23 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/jsp/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/jsp/images/execute.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/jsp/images/read.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/jsp/images/return.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/include/foo.html: -------------------------------------------------------------------------------- 1 | 17 | To get the current time in ms 18 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/include/foo.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 | 21 | <%= System.currentTimeMillis() %> 22 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/include/foo.jsp.html: -------------------------------------------------------------------------------- 1 |
 2 | <%--
 3 |  Licensed to the Apache Software Foundation (ASF) under one or more
 4 |   contributor license agreements.  See the NOTICE file distributed with
 5 |   this work for additional information regarding copyright ownership.
 6 |   The ASF licenses this file to You under the Apache License, Version 2.0
 7 |   (the "License"); you may not use this file except in compliance with
 8 |   the License.  You may obtain a copy of the License at
 9 | 
10 |       http://www.apache.org/licenses/LICENSE-2.0
11 | 
12 |   Unless required by applicable law or agreed to in writing, software
13 |   distributed under the License is distributed on an "AS IS" BASIS,
14 |   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 |   See the License for the specific language governing permissions and
16 |   limitations under the License.
17 | --%>
18 | 
19 | <body bgcolor="white">
20 | <font color="red">
21 | 
22 | <%= System.currentTimeMillis() %>
23 | 
24 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsp2/jspx/textRotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/jsp/jsp2/jspx/textRotate.jpg -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsp2/misc/coda.jspf: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 | This banner included with <include-coda> 20 |
21 |
22 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsp2/misc/coda.jspf.html: -------------------------------------------------------------------------------- 1 |
 2 | <!--
 3 |   Licensed to the Apache Software Foundation (ASF) under one or more
 4 |   contributor license agreements.  See the NOTICE file distributed with
 5 |   this work for additional information regarding copyright ownership.
 6 |   The ASF licenses this file to You under the Apache License, Version 2.0
 7 |   (the "License"); you may not use this file except in compliance with
 8 |   the License.  You may obtain a copy of the License at
 9 | 
10 |       http://www.apache.org/licenses/LICENSE-2.0
11 | 
12 |   Unless required by applicable law or agreed to in writing, software
13 |   distributed under the License is distributed on an "AS IS" BASIS,
14 |   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 |   See the License for the specific language governing permissions and
16 |   limitations under the License.
17 | -->
18 | <hr>
19 | <center>
20 | This banner included with &lt;include-coda&gt;
21 | </center>
22 | <hr>
23 | 
24 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsp2/misc/prelude.jspf: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 | This banner included with <include-prelude> 20 |
21 |
22 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsp2/tagfiles/helloWorld.tag.html: -------------------------------------------------------------------------------- 1 |
 2 | <!--
 3 |  Licensed to the Apache Software Foundation (ASF) under one or more
 4 |   contributor license agreements.  See the NOTICE file distributed with
 5 |   this work for additional information regarding copyright ownership.
 6 |   The ASF licenses this file to You under the Apache License, Version 2.0
 7 |   (the "License"); you may not use this file except in compliance with
 8 |   the License.  You may obtain a copy of the License at
 9 | 
10 |       http://www.apache.org/licenses/LICENSE-2.0
11 | 
12 |   Unless required by applicable law or agreed to in writing, software
13 |   distributed under the License is distributed on an "AS IS" BASIS,
14 |   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 |   See the License for the specific language governing permissions and
16 |   limitations under the License.
17 | -->
18 | Hello, world!
19 | 
20 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/plugin/applet/Clock2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/jsp/plugin/applet/Clock2.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/source.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ taglib uri="http://tomcat.apache.org/example-taglib" 18 | prefix="eg" %> 19 | 20 | 21 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/servlets/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/servlets/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/servlets/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/servlets/images/execute.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/servlets/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/examples/servlets/images/return.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/add.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/asf-logo.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/design.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/docs.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/update.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/host-manager/images/void.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <% response.sendRedirect(response.encodeRedirectURL(request.getContextPath() + 18 | "/html")); %> -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/add.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/asf-logo.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/design.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/docs.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/update.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/webapps/manager/images/void.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <% response.sendRedirect(response.encodeRedirectURL(request.getContextPath() + 18 | "/html")); %> -------------------------------------------------------------------------------- /catalina-home/work/Catalina/localhost/_/org/apache/jsp/index_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/work/Catalina/localhost/_/org/apache/jsp/index_jsp.class -------------------------------------------------------------------------------- /catalina-home/work/Catalina/localhost/examples/org/apache/jsp/jsp/jsp2/el/composite_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/work/Catalina/localhost/examples/org/apache/jsp/jsp/jsp2/el/composite_jsp.class -------------------------------------------------------------------------------- /catalina-home/work/Catalina/localhost/manager/org/apache/jsp/WEB_002dINF/jsp/_401_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/catalina-home/work/Catalina/localhost/manager/org/apache/jsp/WEB_002dINF/jsp/_401_jsp.class -------------------------------------------------------------------------------- /com.sun.jmx.remote.internal.ServerCommunicatorAdmin$Timeout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/com.sun.jmx.remote.internal.ServerCommunicatorAdmin$Timeout.class -------------------------------------------------------------------------------- /java.io.DeleteOnExitHook$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.io.DeleteOnExitHook$1.class -------------------------------------------------------------------------------- /java.lang.ApplicationShutdownHooks$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.lang.ApplicationShutdownHooks$1.class -------------------------------------------------------------------------------- /java.lang.ref.Finalizer$FinalizerThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.lang.ref.Finalizer$FinalizerThread.class -------------------------------------------------------------------------------- /java.lang.ref.Reference$ReferenceHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.lang.ref.Reference$ReferenceHandler.class -------------------------------------------------------------------------------- /java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.class -------------------------------------------------------------------------------- /java.util.concurrent.ThreadPoolExecutor$Worker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.util.concurrent.ThreadPoolExecutor$Worker.class -------------------------------------------------------------------------------- /java.util.logging.LogManager$Cleaner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/java.util.logging.LogManager$Cleaner.class -------------------------------------------------------------------------------- /org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.Catalina$CatalinaShutdownHook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.Catalina$CatalinaShutdownHook.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ClassLoaderFactory$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.ClassLoaderFactory$2.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ClassLoaderFactory$Repository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.ClassLoaderFactory$Repository.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ClassLoaderFactory$RepositoryType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.ClassLoaderFactory$RepositoryType.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ContextConfig$DefaultWebXmlCacheEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.ContextConfig$DefaultWebXmlCacheEntry.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ContextConfig$FragmentJarScannerCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.ContextConfig$FragmentJarScannerCallback.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.HostConfig$DeployDirectory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.HostConfig$DeployDirectory.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.HostConfig$DeployedApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.HostConfig$DeployedApplication.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.TldConfig$TldJarScannerCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.catalina.startup.TldConfig$TldJarScannerCallback.class -------------------------------------------------------------------------------- /org.apache.juli.ClassLoaderLogManager$Cleaner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.juli.ClassLoaderLogManager$Cleaner.class -------------------------------------------------------------------------------- /org.apache.tomcat.util.net.JIoEndpoint$Acceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.tomcat.util.net.JIoEndpoint$Acceptor.class -------------------------------------------------------------------------------- /org.apache.tomcat.util.net.JIoEndpoint$AsyncTimeout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/org.apache.tomcat.util.net.JIoEndpoint$AsyncTimeout.class -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 4.0.0 5 | cn.thinkinjava 6 | Tomcat-Source-Code 7 | Tomcat 7.0 Source Code 8 | 1.0 9 | pom 10 | 11 | 12 | tomcat-7.0.42-sourcecode 13 | 14 | 15 | -------------------------------------------------------------------------------- /socketProcessor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/socketProcessor.png -------------------------------------------------------------------------------- /sun.misc.GC$Daemon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.misc.GC$Daemon.class -------------------------------------------------------------------------------- /sun.nio.ch.FileChannelImpl$Unmapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.nio.ch.FileChannelImpl$Unmapper.class -------------------------------------------------------------------------------- /sun.nio.fs.NativeBuffer$Deallocator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.nio.fs.NativeBuffer$Deallocator.class -------------------------------------------------------------------------------- /sun.rmi.transport.DGCAckHandler$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.rmi.transport.DGCAckHandler$1.class -------------------------------------------------------------------------------- /sun.rmi.transport.DGCImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.rmi.transport.DGCImpl$1.class -------------------------------------------------------------------------------- /sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class -------------------------------------------------------------------------------- /sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/mail/internet/MimePart.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | package javax.mail.internet; 18 | 19 | public interface MimePart { 20 | // Dummy implementation 21 | } 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/persistence/PersistenceContextType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | 19 | package javax.persistence; 20 | 21 | public enum PersistenceContextType { 22 | TRANSACTION, 23 | EXTENDED 24 | } -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/readme.md: -------------------------------------------------------------------------------- 1 | ##### 此包用途是 Servlet 规范的API 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/JspIdConsumer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | package javax.servlet.jsp.tagext; 18 | 19 | public interface JspIdConsumer { 20 | public void setJspId(String jspId); 21 | } 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/BodyTagProtocol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/BodyTagProtocol.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/IterationTagProtocol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/IterationTagProtocol.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/TagProtocol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/TagProtocol.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/VariableInfo-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/VariableInfo-1.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/LocalStrings_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/LocalStrings_es.properties -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/RestrictedFilters.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | org.apache.catalina.ssi.SSIFilter=restricted 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/RestrictedListeners.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/filters/LocalStrings_fr.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | http.403=L''acc\u00e8s \u00e0 la ressource demand\u00e9e ({0}) a \u00e9t\u00e9 interdit. 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/readme.md: -------------------------------------------------------------------------------- 1 | ##### 此包是Tomcat 自身架构 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/security/LocalStrings_fr.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | SecurityUtil.doAsPrivilege=Une exception s''est produite lors de l''ex\u00e9cution du bloc "PrivilegedExceptionAction". 17 | 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/tribes/membership/LocalStrings.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | cluster.mbean.register.already=MBean {0} already registered! 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/tribes/membership/LocalStrings_es.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | cluster.mbean.register.already = \u00A1El MBean {0} ya est\u00E1 registrado\! 16 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/tribes/util/LocalStrings.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | uuidGenerator.createRandom=Creation of SecureRandom instance for UUID generation using [{0}] took [{1}] milliseconds. 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/util/CharsetMapperDefault.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | en=ISO-8859-1 17 | fr=ISO-8859-1 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/util/ServerInfo.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | server.info=Apache Tomcat/@VERSION@ 17 | server.number=@VERSION_NUMBER@ 18 | server.built=@VERSION_BUILT@ -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/coyote/LocalStrings_es.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | abstractConnectionHandler.error = Error leyendo requerimiento, ignorado 16 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/coyote/readme.md: -------------------------------------------------------------------------------- 1 | #### http, ajp 协议相关实现的类 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/el/readme.md: -------------------------------------------------------------------------------- 1 | #### 实习那el规范 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/jasper/readme.md: -------------------------------------------------------------------------------- 1 | #### 实现jsp规范,编译jsp文件 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/juli/readme.md: -------------------------------------------------------------------------------- 1 | ### tomcat的日志系统 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/naming/factory/package.html: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 |

This package contains object factories used by the naming service.

20 | 21 |

22 | 23 | 24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/naming/java/package.html: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 |

This package contains the URL context factory for the "java" namespace.

20 | 21 |

22 | 23 | 24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/naming/package.html: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 |

This package contains a memory based naming service provider.

20 | 21 |

22 | 23 | 24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/naming/readme.md: -------------------------------------------------------------------------------- 1 | #### JNDI(Java Naming and Directory Interface,Java命名和目录接口) 实现 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/readme.md: -------------------------------------------------------------------------------- 1 | ### Tomcat 的工具包,net, digester(解析) xml 解析器 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/buf/LocalStrings_es.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | b2cConverter.unknownEncoding = La codificaci\u00F3n de car\u00E1cter [{0}] no est\u00E1 soportada 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/codec/binary/package.html: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | Base64, Base32, Binary, and Hexadecimal String encoding and decoding. 20 | 21 | 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/file/LocalStrings.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | matcher.tokenize=Tokenizing path [{0}] 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/http/mapper/LocalStrings.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | mapper.removeWrapper=Removing wrapper from Context [{0}] with path [{1}] -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/net/jsse/res/LocalStrings_fr.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | jsse.alias_no_key_entry=Le nom alias {0} n''identifie pas une entr\u00e9e de clef 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/net/jsse/res/LocalStrings_ja.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | jsse.alias_no_key_entry=\u5225\u540d {0} \u306f\u30ad\u30fc\u30a8\u30f3\u30c8\u30ea\u3092\u767a\u898b\u3067\u304d\u307e\u305b\u3093 17 | 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/threads/res/LocalStrings.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | threadPoolExecutor.threadStoppedToAvoidPotentialLeak=Stopping thread {0} to avoid potential memory leaks after a context was stopped. 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/threads/res/LocalStrings_es.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | threadPoolExecutor.threadStoppedToAvoidPotentialLeak = Parando hilo {0} para evita fallos potenciales de memoria tras haberse parado un contexto. 16 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/threads/res/LocalStrings_fr.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/util/threads/res/LocalStrings_ja.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/modules/jdbc-pool/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Tomcat JDBC Pool 2 | Copyright 2008-2013 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/annotations-api.jar.manifest: -------------------------------------------------------------------------------- 1 | Manifest-version: 1.0 2 | X-Compile-Source-JDK: @source.jdk@ 3 | X-Compile-Target-JDK: @target.jdk@ 4 | 5 | Name: javax/servlet/ 6 | Specification-Title: Java API for Servlets (Annotations) 7 | Specification-Version: 3.0 8 | Specification-Vendor: Sun Microsystems, Inc. 9 | Implementation-Title: javax.servlet 10 | Implementation-Version: 3.0.@servlet.revision@ 11 | Implementation-Vendor: Apache Software Foundation 12 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/bootstrap.jar.manifest: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: org.apache.catalina.startup.Bootstrap 3 | Class-Path: commons-daemon.jar 4 | Specification-Title: Apache Tomcat Bootstrap 5 | Specification-Version: @VERSION_MAJOR_MINOR@ 6 | Specification-Vendor: Apache Software Foundation 7 | Implementation-Title: Apache Tomcat Bootstrap 8 | Implementation-Version: @VERSION@ 9 | Implementation-Vendor: Apache Software Foundation 10 | X-Compile-Source-JDK: @source.jdk@ 11 | X-Compile-Target-JDK: @target.jdk@ -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/default.manifest: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Specification-Title: Apache Tomcat 3 | Specification-Version: @VERSION_MAJOR_MINOR@ 4 | Specification-Vendor: Apache Software Foundation 5 | Implementation-Title: Apache Tomcat 6 | Implementation-Version: @VERSION@ 7 | Implementation-Vendor: Apache Software Foundation 8 | X-Compile-Source-JDK: @source.jdk@ 9 | X-Compile-Target-JDK: @target.jdk@ 10 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/default.notice: -------------------------------------------------------------------------------- 1 | Apache Tomcat 2 | Copyright 1999-@YEAR@ The Apache Software Foundation 3 | 4 | This product includes software developed by 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/el-api.jar.manifest: -------------------------------------------------------------------------------- 1 | Manifest-version: 1.0 2 | X-Compile-Source-JDK: @source.jdk@ 3 | X-Compile-Target-JDK: @target.jdk@ 4 | 5 | Name: javax/el/ 6 | Specification-Title: Expression Language 7 | Specification-Version: 2.2 8 | Specification-Vendor: Sun Microsystems, Inc. 9 | Implementation-Title: javax.el 10 | Implementation-Version: 2.2.@el.revision@ 11 | Implementation-Vendor: Apache Software Foundation 12 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/jsp-api.jar.manifest: -------------------------------------------------------------------------------- 1 | Manifest-version: 1.0 2 | X-Compile-Source-JDK: @source.jdk@ 3 | X-Compile-Target-JDK: @target.jdk@ 4 | 5 | Name: javax/servlet/jsp/ 6 | Specification-Title: Java API for JavaServer Pages 7 | Specification-Version: 2.2 8 | Specification-Vendor: Sun Microsystems, Inc. 9 | Implementation-Title: javax.servlet.jsp 10 | Implementation-Version: 2.2.@jsp.revision@ 11 | Implementation-Vendor: Apache Software Foundation 12 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/jsp-api.jar.notice: -------------------------------------------------------------------------------- 1 | Apache Tomcat 2 | Copyright 1999-@YEAR@ The Apache Software Foundation 3 | 4 | This product includes software developed by 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | The original XML Schemas for Java EE Deployment Descriptors: 8 | - jsp_2_2.xsd 9 | may be obtained from http://java.sun.com/xml/ns/javaee/ 10 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/servlet-api.jar.manifest: -------------------------------------------------------------------------------- 1 | Manifest-version: 1.0 2 | X-Compile-Source-JDK: @source.jdk@ 3 | X-Compile-Target-JDK: @target.jdk@ 4 | 5 | Name: javax/servlet/ 6 | Specification-Title: Java API for Servlets 7 | Specification-Version: 3.0 8 | Specification-Vendor: Sun Microsystems, Inc. 9 | Implementation-Title: javax.servlet 10 | Implementation-Version: 3.0.@servlet.revision@ 11 | Implementation-Vendor: Apache Software Foundation 12 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/META-INF/servlet-api.jar.notice: -------------------------------------------------------------------------------- 1 | Apache Tomcat 2 | Copyright 1999-@YEAR@ The Apache Software Foundation 3 | 4 | This product includes software developed by 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | The original XML Schemas for Java EE Deployment Descriptors: 8 | - javaee_5.xsd 9 | - javaee_web_services_1_2.xsd 10 | - javaee_web_services_client_1_2.xsd 11 | - javaee_6.xsd 12 | - javaee_web_services_1_3.xsd 13 | - javaee_web_services_client_1_3.xsd 14 | - web-app_3_0.xsd 15 | - web-common_3_0.xsd 16 | - web-fragment_3_0.xsd 17 | may be obtained from http://java.sun.com/xml/ns/javaee/ 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/confinstall/tomcat-users_1.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/confinstall/tomcat-users_2.xml: -------------------------------------------------------------------------------- 1 | 6 | 11 | 18 | 19 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/res/header.bmp -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/side_left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/res/side_left.bmp -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/tomcat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/res/tomcat.ico -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/ca.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/ca.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost-copy1.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost-copy1.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/user1.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/user1.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-2.3/el-as-literal.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

00-${'hello world'}

20 |

01-#{'hello world'}

21 | 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-2.4/el-as-literal.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

00-${'hello world'}

20 |

01-#{'hello world'}

21 | 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-2.5/el-as-literal.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

00-${'hello world'}

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments-empty-absolute-ordering/WEB-INF/lib/resources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments-empty-absolute-ordering/WEB-INF/lib/resources.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/classes/#Bug51584.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/classes/#Bug51584.txt -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/lib/resources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/lib/resources.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/lib/resources2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/lib/resources2.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/bug51396.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/folder/resourceE.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%-- 18 | Resource file that is present in the web application only. 19 | --%> 20 |

resourceE.jsp in the web application

21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/warDirContext.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%><% 17 | try { 18 | Class clazz = Class.forName("'P'"); 19 | } catch (Exception e) { 20 | out.print("

" + e.getClass().getName() + "

"); 21 | }%> -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-servletsecurity2/protected.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | Protected page 19 | 20 |

00-OK

21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-servletsecurity2/unprotected.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | Unprotected page 19 | 20 |

00-OK

21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-library/target/classes/META-INF/resources/rsrc/resourceE.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceEInDependentLibraryTargetClasses=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-library/target/classes/rsrc/resourceC.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceCInDependentLibraryTargetClasses=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/lib/rsrc/resourceD.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceDInPackagedJarInWebInfLib=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/misc/resourceI.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceIInWebapp=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp/WEB-INF/classes/rsrc/resourceA.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceAInWebInfClasses=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp/WEB-INF/lib/rsrc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp/WEB-INF/lib/rsrc.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp/rsrc/resourceF.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceFInWebapp=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp2/WEB-INF/classes/rsrc/resourceG.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceGInWebInfClasses=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp2/WEB-INF/classes/rsrc2/resourceK.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceKInWebInfClasses=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp2/rsrc/resourceF.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | This file should not be served, it is masked by 17 | /test/webapp-3.0-virtual-webapp/src/main/webapp/rsrc/resourceF.properties -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp2/rsrc/resourceH.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceHInWebapp=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp2/rsrc2/resourceJ.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceJInWebapp=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/target/classes/rsrc/resourceB.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one or more 2 | # contributor license agreements. See the NOTICE file distributed with 3 | # this work for additional information regarding copyright ownership. 4 | # The ASF licenses this file to You under the Apache License, Version 2.0 5 | # (the "License"); you may not use this file except in compliance with 6 | # the License. You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | resourceBInTargetClasses=true 17 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/bug53545.tld: -------------------------------------------------------------------------------- 1 | 5 | 1.0 6 | bug53545 7 | 8 | test 9 | org.apache.tomcat.unittest.tags.Bug53545 10 | scriptless 11 | 12 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/jsp/bug53574.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/tags/bug42390.tag: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ variable name-given="X" scope="AT_BEGIN" %> 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/tags/echo-deferred.tag: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%><%@ tag %><%@ attribute name="echo" deferredValue="true" %><%@ 17 | tag body-content="empty" %>

${echo}

-------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/tags/echo-noel.tag: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ tag%><%@ 18 | attribute name="echo" type="java.lang.String" rtexprvalue="false" 19 | %><%@ tag body-content="empty" %>

${echo}

-------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug42390.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug45nnn/bug45451b.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@page isELIgnored="false" %> 18 | <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> 19 | <%@ include file="bug45451.jspf" %> 20 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug45nnn/bug45451c.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@page isELIgnored="true" deferredSyntaxAllowedAsLiteral="true" %> 18 | <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> 19 | <%@ include file="bug45451.jspf" %> 20 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug45nnn/bug45451e.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@page deferredSyntaxAllowedAsLiteral="true" %> 18 | <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %> 19 | <%@ include file="bug45451.jspf" %> 20 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug48nnn/bug48616.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ taglib prefix="bugs" uri="http://tomcat.apache.org/bugs" %> 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug48nnn/bug48701-TVI-NG.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ taglib uri="http://tomcat.apache.org/bugs" prefix="bugs" %> 18 | 19 | 20 |

00-PASS

21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug48nnn/bug48701-UseBean.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

00-PASS

-------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug48nnn/bug48701-VI.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ taglib uri="http://tomcat.apache.org/bugs" prefix="bugs" %> 18 | 19 | 20 |

00-PASS

21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug49nnn/bug49555.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%@ taglib uri="http://tomcat.apache.org/bugs" prefix="bugs" %> 18 |

00-${bugs:bug49555()}

19 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug49nnn/bug49726b.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | Bug 49726 test case 19 | 20 |

OK

21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo bar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo bar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo bar/foobar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo bar/foobar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo#bar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo#bar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo%bar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo%bar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo&bar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo&bar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo+bar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo+bar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo;bar.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo;bar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug5nnnn/bug53467].jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK

20 | 21 | 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug5nnnn/bug53545.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

OK

4 | 5 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug5nnnn/bug53986.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <%--- Test comment ---%> 18 | 19 | 20 |

OK

21 | 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/el-as-literal.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

00-${'hello world'}

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Index page 4 | 5 | 6 |

This is the index page served by the default Servlet.

7 | 8 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/welcome-files/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 |

OK-JSP

20 | 21 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo-wide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo-wide.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-button.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-middle.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav-item.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-upper.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/favicon.ico -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat-power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat-power.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/docs/README.txt: -------------------------------------------------------------------------------- 1 | Licensed to the Apache Software Foundation (ASF) under one or more 2 | contributor license agreements. See the NOTICE file distributed with 3 | this work for additional information regarding copyright ownership. 4 | The ASF licenses this file to You under the Apache License, Version 2.0 5 | (the "License"); you may not use this file except in compliance with 6 | the License. You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | 16 | This is a dummy README file for the sample 17 | web application. 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/sample.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/sample.war -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/web/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/web/images/tomcat.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/architecture/requestProcess/requestProcess.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/architecture/requestProcess/requestProcess.pdf -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/architecture/startup/serverStartup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/architecture/startup/serverStartup.pdf -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/add.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/cors-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/cors-flowchart.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/design.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/docs.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/fix.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/printer.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/tomcat.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/update.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/images/void.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-initiate-election.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-initiate-election.dia -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-initiate-election.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-initiate-election.jpg -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-message-arrives.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-message-arrives.dia -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-message-arrives.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-message-arrives.jpg -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/classes/websocket/snake/Direction.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one or more 3 | * contributor license agreements. See the NOTICE file distributed with 4 | * this work for additional information regarding copyright ownership. 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 6 | * (the "License"); you may not use this file except in compliance with 7 | * the License. You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | package websocket.snake; 18 | 19 | public enum Direction { 20 | NONE, NORTH, SOUTH, EAST, WEST 21 | } 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/tags/helloWorld.tag: -------------------------------------------------------------------------------- 1 | 17 | Hello, world! 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/forward/one.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 | 21 | 22 | VM Memory usage < 50%. 23 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/forward/two.html: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | VM Memory usage > 50%. 23 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/execute.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/read.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/return.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/include/foo.html: -------------------------------------------------------------------------------- 1 | 17 | To get the current time in ms 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/include/foo.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 | 21 | <%= System.currentTimeMillis() %> 22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsp2/jspx/textRotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsp2/jspx/textRotate.jpg -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsp2/misc/coda.jspf: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 | This banner included with <include-coda> 20 |
21 |
22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsp2/misc/prelude.jspf: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 | This banner included with <include-prelude> 20 |
21 |
22 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/execute.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/return.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/add.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/design.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/docs.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/fix.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/tomcat.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/update.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/host-manager/images/void.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <% response.sendRedirect(response.encodeRedirectURL(request.getContextPath() + 18 | "/html")); %> -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/add.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/design.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/docs.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/fix.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/tomcat.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/update.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/690a1f656251ad8fd9d3f259fb210d5ca0e6110c/tomcat-7.0.42-sourcecode/webapps/manager/images/void.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/index.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Licensed to the Apache Software Foundation (ASF) under one or more 3 | contributor license agreements. See the NOTICE file distributed with 4 | this work for additional information regarding copyright ownership. 5 | The ASF licenses this file to You under the Apache License, Version 2.0 6 | (the "License"); you may not use this file except in compliance with 7 | the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, software 12 | distributed under the License is distributed on an "AS IS" BASIS, 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | See the License for the specific language governing permissions and 15 | limitations under the License. 16 | --%> 17 | <% response.sendRedirect(response.encodeRedirectURL(request.getContextPath() + 18 | "/html")); %> --------------------------------------------------------------------------------