├── catalina-home ├── temp │ └── safeToDelete.tmp ├── logs │ ├── localhost.2017-11-21.log │ ├── 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 │ ├── 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_access_log.2013-10-14.txt │ ├── localhost_access_log.2017-11-14.txt │ ├── localhost_access_log.2017-11-18.txt │ ├── catalina.2017-11-21.log │ ├── localhost.2017-11-25.log │ ├── localhost_access_log.2017-11-22.txt │ ├── localhost.2017-11-18.log │ ├── catalina.2017-11-25.log │ └── localhost_access_log.2013-10-15.txt ├── lib │ ├── catalina.jar │ ├── el-api.jar │ ├── jasper.jar │ ├── jsp-api.jar │ ├── ecj-4.2.2.jar │ ├── jasper-el.jar │ ├── tomcat-api.jar │ ├── catalina-ant.jar │ ├── catalina-ha.jar │ ├── servlet-api.jar │ ├── tomcat-coyote.jar │ ├── tomcat-dbcp.jar │ ├── tomcat-jdbc.jar │ ├── tomcat-util.jar │ ├── annotations-api.jar │ ├── catalina-tribes.jar │ ├── tomcat-i18n-es.jar │ ├── tomcat-i18n-fr.jar │ └── tomcat-i18n-ja.jar ├── bin │ ├── bootstrap.jar │ ├── tomcat-juli.jar │ ├── commons-daemon.jar │ ├── tomcat-native.tar.gz │ └── commons-daemon-native.tar.gz ├── webapps │ ├── ROOT │ │ ├── bg-nav.png │ │ ├── tomcat.gif │ │ ├── tomcat.png │ │ ├── asf-logo.png │ │ ├── bg-button.png │ │ ├── bg-middle.png │ │ ├── bg-upper.png │ │ ├── favicon.ico │ │ ├── bg-nav-item.png │ │ ├── asf-logo-wide.gif │ │ └── tomcat-power.gif │ ├── docs │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── code.gif │ │ │ ├── docs.gif │ │ │ ├── fix.gif │ │ │ ├── void.gif │ │ │ ├── design.gif │ │ │ ├── printer.gif │ │ │ ├── tomcat.gif │ │ │ ├── update.gif │ │ │ ├── asf-logo.gif │ │ │ └── cors-flowchart.png │ │ ├── appdev │ │ │ └── sample │ │ │ │ ├── sample.war │ │ │ │ ├── web │ │ │ │ └── images │ │ │ │ │ └── tomcat.gif │ │ │ │ └── docs │ │ │ │ └── README.txt │ │ └── architecture │ │ │ ├── startup │ │ │ └── serverStartup.pdf │ │ │ └── requestProcess │ │ │ └── requestProcess.pdf │ ├── manager │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── code.gif │ │ │ ├── docs.gif │ │ │ ├── fix.gif │ │ │ ├── void.gif │ │ │ ├── design.gif │ │ │ ├── tomcat.gif │ │ │ ├── update.gif │ │ │ └── asf-logo.gif │ │ └── index.jsp │ ├── examples │ │ ├── jsp │ │ │ ├── images │ │ │ │ ├── code.gif │ │ │ │ ├── read.gif │ │ │ │ ├── return.gif │ │ │ │ └── execute.gif │ │ │ ├── jsp2 │ │ │ │ ├── jspx │ │ │ │ │ └── textRotate.jpg │ │ │ │ ├── tagfiles │ │ │ │ │ └── helloWorld.tag.html │ │ │ │ └── misc │ │ │ │ │ ├── coda.jspf │ │ │ │ │ ├── prelude.jspf │ │ │ │ │ ├── coda.jspf.html │ │ │ │ │ └── prelude.jspf.html │ │ │ ├── plugin │ │ │ │ └── applet │ │ │ │ │ └── Clock2.class │ │ │ ├── include │ │ │ │ ├── foo.html │ │ │ │ ├── foo.jsp │ │ │ │ └── foo.jsp.html │ │ │ ├── forward │ │ │ │ ├── one.jsp │ │ │ │ ├── two.html │ │ │ │ └── one.jsp.html │ │ │ ├── jsptoserv │ │ │ │ ├── jsptoservlet.jsp │ │ │ │ └── hello.jsp │ │ │ ├── source.jsp │ │ │ └── async │ │ │ │ └── async3.jsp │ │ ├── WEB-INF │ │ │ ├── lib │ │ │ │ ├── jstl.jar │ │ │ │ └── standard.jar │ │ │ ├── classes │ │ │ │ ├── cal │ │ │ │ │ ├── Entry.class │ │ │ │ │ ├── Entries.class │ │ │ │ │ ├── TableBean.class │ │ │ │ │ └── JspCalendar.class │ │ │ │ ├── ServletToJsp.class │ │ │ │ ├── async │ │ │ │ │ ├── Async0.class │ │ │ │ │ ├── Async1.class │ │ │ │ │ ├── Async2.class │ │ │ │ │ ├── Async3.class │ │ │ │ │ ├── Async0$1.class │ │ │ │ │ ├── Async1$1.class │ │ │ │ │ ├── Async2$1.class │ │ │ │ │ ├── Stockticker.class │ │ │ │ │ ├── AsyncStockServlet.class │ │ │ │ │ ├── Stockticker$Stock.class │ │ │ │ │ └── Stockticker$TickListener.class │ │ │ │ ├── error │ │ │ │ │ └── Smart.class │ │ │ │ ├── CookieExample.class │ │ │ │ ├── SessionExample.class │ │ │ │ ├── HelloWorldExample.class │ │ │ │ ├── chat │ │ │ │ │ ├── ChatServlet.class │ │ │ │ │ └── ChatServlet$MessageSender.class │ │ │ │ ├── dates │ │ │ │ │ └── JspCalendar.class │ │ │ │ ├── examples │ │ │ │ │ ├── FooTag.class │ │ │ │ │ ├── LogTag.class │ │ │ │ │ ├── ShowSource.class │ │ │ │ │ ├── ValuesTag.class │ │ │ │ │ ├── ExampleTagBase.class │ │ │ │ │ └── FooTagExtraInfo.class │ │ │ │ ├── util │ │ │ │ │ └── HTMLFilter.class │ │ │ │ ├── RequestInfoExample.class │ │ │ │ ├── RequestParamExample.class │ │ │ │ ├── checkbox │ │ │ │ │ └── CheckTest.class │ │ │ │ ├── num │ │ │ │ │ └── NumberGuessBean.class │ │ │ │ ├── sessions │ │ │ │ │ └── DummyCart.class │ │ │ │ ├── RequestHeaderExample.class │ │ │ │ ├── colors │ │ │ │ │ └── ColorGameBean.class │ │ │ │ ├── filters │ │ │ │ │ └── ExampleFilter.class │ │ │ │ ├── jsp2 │ │ │ │ │ └── examples │ │ │ │ │ │ ├── BookBean.class │ │ │ │ │ │ ├── FooBean.class │ │ │ │ │ │ ├── ValuesBean.class │ │ │ │ │ │ ├── el │ │ │ │ │ │ └── Functions.class │ │ │ │ │ │ └── simpletag │ │ │ │ │ │ ├── TileSimpleTag.class │ │ │ │ │ │ ├── RepeatSimpleTag.class │ │ │ │ │ │ ├── EchoAttributesTag.class │ │ │ │ │ │ ├── FindBookSimpleTag.class │ │ │ │ │ │ ├── ShuffleSimpleTag.class │ │ │ │ │ │ └── HelloWorldSimpleTag.class │ │ │ │ ├── websocket │ │ │ │ │ ├── snake │ │ │ │ │ │ ├── Snake.class │ │ │ │ │ │ ├── Location.class │ │ │ │ │ │ ├── Direction.class │ │ │ │ │ │ ├── Location$1.class │ │ │ │ │ │ ├── SnakeWebSocketServlet.class │ │ │ │ │ │ ├── SnakeWebSocketServlet$1.class │ │ │ │ │ │ ├── SnakeWebSocketServlet$SnakeMessageInbound.class │ │ │ │ │ │ └── Direction.java │ │ │ │ │ ├── echo │ │ │ │ │ │ ├── EchoMessage.class │ │ │ │ │ │ ├── EchoStream$1.class │ │ │ │ │ │ ├── EchoStream.class │ │ │ │ │ │ ├── EchoStream$EchoStreamInbound.class │ │ │ │ │ │ └── EchoMessage$EchoMessageInbound.class │ │ │ │ │ └── chat │ │ │ │ │ │ ├── ChatWebSocketServlet$1.class │ │ │ │ │ │ ├── ChatWebSocketServlet.class │ │ │ │ │ │ └── ChatWebSocketServlet$ChatMessageInbound.class │ │ │ │ ├── listeners │ │ │ │ │ ├── ContextListener.class │ │ │ │ │ └── SessionListener.class │ │ │ │ ├── validators │ │ │ │ │ └── DebugValidator.class │ │ │ │ └── compressionFilters │ │ │ │ │ ├── CompressionFilter.class │ │ │ │ │ ├── CompressionResponseStream.class │ │ │ │ │ ├── CompressionFilterTestServlet.class │ │ │ │ │ └── CompressionServletResponseWrapper.class │ │ │ └── tags │ │ │ │ └── helloWorld.tag │ │ └── servlets │ │ │ └── images │ │ │ ├── code.gif │ │ │ ├── return.gif │ │ │ └── execute.gif │ └── host-manager │ │ ├── images │ │ ├── add.gif │ │ ├── code.gif │ │ ├── docs.gif │ │ ├── fix.gif │ │ ├── void.gif │ │ ├── design.gif │ │ ├── tomcat.gif │ │ ├── update.gif │ │ └── asf-logo.gif │ │ └── index.jsp └── work │ └── Catalina │ └── localhost │ ├── _ │ └── org │ │ └── apache │ │ └── jsp │ │ └── index_jsp.class │ ├── manager │ └── org │ │ └── apache │ │ └── jsp │ │ └── WEB_002dINF │ │ └── jsp │ │ └── _401_jsp.class │ └── examples │ └── org │ └── apache │ └── jsp │ └── jsp │ └── jsp2 │ └── el │ └── composite_jsp.class ├── tomcat-7.0.42-sourcecode ├── test │ ├── webapp-3.0 │ │ ├── bug53257 │ │ │ ├── foo bar.txt │ │ │ ├── foo#bar.txt │ │ │ ├── foo%bar.txt │ │ │ ├── foo&bar.txt │ │ │ ├── foo+bar.txt │ │ │ ├── foo;bar.txt │ │ │ ├── foo bar │ │ │ │ ├── foobar.txt │ │ │ │ └── foobar.jsp │ │ │ ├── foo bar.jsp │ │ │ ├── foo#bar.jsp │ │ │ ├── foo%bar.jsp │ │ │ ├── foo&bar.jsp │ │ │ ├── foo+bar.jsp │ │ │ └── foo;bar.jsp │ │ ├── bug5nnnn │ │ │ ├── bug53545.html │ │ │ ├── bug53467].jsp │ │ │ └── bug53986.jsp │ │ ├── index.html │ │ ├── WEB-INF │ │ │ ├── bug53545.tld │ │ │ ├── jsp │ │ │ │ └── bug53574.jsp │ │ │ └── tags │ │ │ │ ├── bug42390.tag │ │ │ │ ├── echo-deferred.tag │ │ │ │ ├── echo-noel.tag │ │ │ │ ├── echo-long.tag │ │ │ │ └── echo.tag │ │ ├── welcome-files │ │ │ └── index.jsp │ │ ├── el-as-literal.jsp │ │ ├── bug42390.jsp │ │ ├── bug49nnn │ │ │ ├── bug49555.jsp │ │ │ ├── bug49726b.jsp │ │ │ └── bug49726a.jsp │ │ ├── bug48nnn │ │ │ ├── bug48701-UseBean.jsp │ │ │ ├── bug48616.jsp │ │ │ ├── bug48701-VI.jsp │ │ │ └── bug48701-TVI-NG.jsp │ │ ├── bug45nnn │ │ │ ├── bug45451b.jsp │ │ │ ├── bug45451e.jsp │ │ │ └── bug45451c.jsp │ │ └── bug36923.jsp │ ├── webapp-3.0-fragments │ │ ├── WEB-INF │ │ │ ├── classes │ │ │ │ └── #Bug51584.txt │ │ │ └── lib │ │ │ │ ├── resources.jar │ │ │ │ └── resources2.jar │ │ ├── bug51396.jsp │ │ ├── folder │ │ │ └── resourceE.jsp │ │ └── warDirContext.jsp │ ├── org │ │ └── apache │ │ │ └── tomcat │ │ │ └── util │ │ │ └── net │ │ │ ├── ca.jks │ │ │ ├── user1.jks │ │ │ ├── localhost.jks │ │ │ └── localhost-copy1.jks │ ├── webapp-3.0-virtual-webapp │ │ ├── src │ │ │ └── main │ │ │ │ ├── webapp │ │ │ │ ├── WEB-INF │ │ │ │ │ ├── lib │ │ │ │ │ │ └── rsrc.jar │ │ │ │ │ └── classes │ │ │ │ │ │ └── rsrc │ │ │ │ │ │ └── resourceA.properties │ │ │ │ └── rsrc │ │ │ │ │ └── resourceF.properties │ │ │ │ ├── misc │ │ │ │ └── resourceI.properties │ │ │ │ ├── webapp2 │ │ │ │ ├── rsrc │ │ │ │ │ ├── resourceH.properties │ │ │ │ │ └── resourceF.properties │ │ │ │ ├── rsrc2 │ │ │ │ │ └── resourceJ.properties │ │ │ │ └── WEB-INF │ │ │ │ │ └── classes │ │ │ │ │ ├── rsrc │ │ │ │ │ └── resourceG.properties │ │ │ │ │ └── rsrc2 │ │ │ │ │ └── resourceK.properties │ │ │ │ └── lib │ │ │ │ └── rsrc │ │ │ │ └── resourceD.properties │ │ └── target │ │ │ └── classes │ │ │ └── rsrc │ │ │ └── resourceB.properties │ ├── webapp-3.0-fragments-empty-absolute-ordering │ │ └── WEB-INF │ │ │ └── lib │ │ │ └── resources.jar │ ├── webapp-2.5 │ │ └── el-as-literal.jsp │ ├── webapp-3.0-virtual-library │ │ └── target │ │ │ └── classes │ │ │ ├── rsrc │ │ │ └── resourceC.properties │ │ │ └── META-INF │ │ │ └── resources │ │ │ └── rsrc │ │ │ └── resourceE.properties │ ├── webapp-2.3 │ │ └── el-as-literal.jsp │ ├── webapp-2.4 │ │ └── el-as-literal.jsp │ └── webapp-3.0-servletsecurity2 │ │ ├── protected.jsp │ │ └── unprotected.jsp ├── java │ ├── org │ │ └── apache │ │ │ ├── el │ │ │ └── readme.md │ │ │ ├── juli │ │ │ └── readme.md │ │ │ ├── jasper │ │ │ └── readme.md │ │ │ ├── catalina │ │ │ ├── readme.md │ │ │ ├── core │ │ │ │ ├── LocalStrings_es.properties │ │ │ │ ├── RestrictedListeners.properties │ │ │ │ ├── RestrictedFilters.properties │ │ │ │ └── RestrictedServlets.properties │ │ │ ├── util │ │ │ │ ├── CharsetMapperDefault.properties │ │ │ │ └── ServerInfo.properties │ │ │ ├── tribes │ │ │ │ ├── membership │ │ │ │ │ ├── LocalStrings.properties │ │ │ │ │ └── LocalStrings_es.properties │ │ │ │ └── util │ │ │ │ │ └── LocalStrings.properties │ │ │ ├── filters │ │ │ │ └── LocalStrings_fr.properties │ │ │ └── security │ │ │ │ └── LocalStrings_fr.properties │ │ │ ├── coyote │ │ │ ├── readme.md │ │ │ └── LocalStrings_es.properties │ │ │ ├── tomcat │ │ │ ├── readme.md │ │ │ └── util │ │ │ │ ├── threads │ │ │ │ └── res │ │ │ │ │ ├── LocalStrings_fr.properties │ │ │ │ │ ├── LocalStrings_ja.properties │ │ │ │ │ ├── LocalStrings.properties │ │ │ │ │ └── LocalStrings_es.properties │ │ │ │ ├── file │ │ │ │ └── LocalStrings.properties │ │ │ │ ├── http │ │ │ │ └── mapper │ │ │ │ │ └── LocalStrings.properties │ │ │ │ ├── net │ │ │ │ └── jsse │ │ │ │ │ └── res │ │ │ │ │ ├── LocalStrings_fr.properties │ │ │ │ │ └── LocalStrings_ja.properties │ │ │ │ ├── buf │ │ │ │ └── LocalStrings_es.properties │ │ │ │ └── codec │ │ │ │ └── binary │ │ │ │ └── package.html │ │ │ └── naming │ │ │ ├── readme.md │ │ │ ├── package.html │ │ │ ├── factory │ │ │ └── package.html │ │ │ └── java │ │ │ └── package.html │ └── javax │ │ ├── readme.md │ │ ├── servlet │ │ └── jsp │ │ │ └── tagext │ │ │ ├── doc-files │ │ │ ├── TagProtocol.gif │ │ │ ├── BodyTagProtocol.gif │ │ │ ├── VariableInfo-1.gif │ │ │ └── IterationTagProtocol.gif │ │ │ └── JspIdConsumer.java │ │ ├── mail │ │ └── internet │ │ │ └── MimePart.java │ │ └── persistence │ │ └── PersistenceContextType.java ├── res │ ├── header.bmp │ ├── tomcat.ico │ ├── side_left.bmp │ ├── META-INF │ │ ├── default.notice │ │ ├── jsp-api.jar.notice │ │ ├── default.manifest │ │ ├── el-api.jar.manifest │ │ ├── servlet-api.jar.manifest │ │ ├── jsp-api.jar.manifest │ │ ├── annotations-api.jar.manifest │ │ ├── bootstrap.jar.manifest │ │ └── servlet-api.jar.notice │ ├── confinstall │ │ ├── tomcat-users_2.xml │ │ └── tomcat-users_1.xml │ └── checkstyle │ │ └── header-al2.txt ├── webapps │ ├── ROOT │ │ ├── asf-logo.png │ │ ├── bg-nav.png │ │ ├── bg-upper.png │ │ ├── favicon.ico │ │ ├── tomcat.gif │ │ ├── tomcat.png │ │ ├── bg-button.png │ │ ├── bg-middle.png │ │ ├── asf-logo-wide.gif │ │ ├── bg-nav-item.png │ │ └── tomcat-power.gif │ ├── docs │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── fix.gif │ │ │ ├── code.gif │ │ │ ├── design.gif │ │ │ ├── docs.gif │ │ │ ├── tomcat.gif │ │ │ ├── update.gif │ │ │ ├── void.gif │ │ │ ├── asf-logo.gif │ │ │ ├── printer.gif │ │ │ └── cors-flowchart.png │ │ ├── appdev │ │ │ └── sample │ │ │ │ ├── sample.war │ │ │ │ ├── web │ │ │ │ └── images │ │ │ │ │ └── tomcat.gif │ │ │ │ └── docs │ │ │ │ └── README.txt │ │ ├── architecture │ │ │ ├── startup │ │ │ │ └── serverStartup.pdf │ │ │ └── requestProcess │ │ │ │ └── requestProcess.pdf │ │ ├── tribes │ │ │ ├── leader-election-message-arrives.dia │ │ │ ├── leader-election-message-arrives.jpg │ │ │ ├── leader-election-initiate-election.dia │ │ │ └── leader-election-initiate-election.jpg │ │ └── META-INF │ │ │ └── context.xml │ ├── manager │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── fix.gif │ │ │ ├── code.gif │ │ │ ├── docs.gif │ │ │ ├── void.gif │ │ │ ├── asf-logo.gif │ │ │ ├── design.gif │ │ │ ├── tomcat.gif │ │ │ └── update.gif │ │ └── index.jsp │ ├── host-manager │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── fix.gif │ │ │ ├── code.gif │ │ │ ├── docs.gif │ │ │ ├── void.gif │ │ │ ├── asf-logo.gif │ │ │ ├── design.gif │ │ │ ├── tomcat.gif │ │ │ └── update.gif │ │ └── index.jsp │ └── examples │ │ ├── WEB-INF │ │ ├── lib │ │ │ ├── jstl.jar │ │ │ └── standard.jar │ │ ├── tags │ │ │ └── helloWorld.tag │ │ └── classes │ │ │ └── websocket │ │ │ └── snake │ │ │ └── Direction.java │ │ ├── jsp │ │ ├── images │ │ │ ├── code.gif │ │ │ ├── read.gif │ │ │ ├── execute.gif │ │ │ └── return.gif │ │ ├── jsp2 │ │ │ ├── jspx │ │ │ │ └── textRotate.jpg │ │ │ └── misc │ │ │ │ ├── coda.jspf │ │ │ │ └── prelude.jspf │ │ ├── include │ │ │ ├── foo.html │ │ │ └── foo.jsp │ │ ├── forward │ │ │ ├── one.jsp │ │ │ └── two.html │ │ ├── jsptoserv │ │ │ └── jsptoservlet.jsp │ │ └── source.jsp │ │ └── servlets │ │ └── images │ │ ├── code.gif │ │ ├── execute.gif │ │ └── return.gif └── modules │ └── jdbc-pool │ └── NOTICE ├── socketProcessor.png ├── sun.misc.GC$Daemon.class ├── java.io.DeleteOnExitHook$1.class ├── .gitignore ├── sun.rmi.transport.DGCImpl$1.class ├── sun.rmi.transport.DGCAckHandler$1.class ├── java.lang.ApplicationShutdownHooks$1.class ├── java.util.logging.LogManager$Cleaner.class ├── sun.nio.ch.FileChannelImpl$Unmapper.class ├── sun.nio.fs.NativeBuffer$Deallocator.class ├── java.lang.ref.Finalizer$FinalizerThread.class ├── java.lang.ref.Reference$ReferenceHandler.class ├── java.util.concurrent.ThreadPoolExecutor$Worker.class ├── org.apache.juli.ClassLoaderLogManager$Cleaner.class ├── sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class ├── org.apache.catalina.startup.ClassLoaderFactory$2.class ├── org.apache.tomcat.util.net.JIoEndpoint$Acceptor.class ├── org.apache.tomcat.util.net.JIoEndpoint$AsyncTimeout.class ├── org.apache.catalina.startup.HostConfig$DeployDirectory.class ├── sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class ├── com.sun.jmx.remote.internal.ServerCommunicatorAdmin$Timeout.class ├── org.apache.catalina.startup.Catalina$CatalinaShutdownHook.class ├── org.apache.catalina.startup.ClassLoaderFactory$Repository.class ├── org.apache.catalina.startup.HostConfig$DeployedApplication.class ├── org.apache.catalina.startup.TldConfig$TldJarScannerCallback.class ├── org.apache.catalina.startup.ClassLoaderFactory$RepositoryType.class ├── org.apache.catalina.startup.ContextConfig$DefaultWebXmlCacheEntry.class ├── java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.class ├── org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.class ├── org.apache.catalina.startup.ContextConfig$FragmentJarScannerCallback.class ├── pom.xml └── README.md /catalina-home/temp/safeToDelete.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost.2017-11-21.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-14.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-18.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-19.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-21.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/manager.2017-11-22.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-14.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-18.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-19.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-21.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/host-manager.2017-11-22.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2013-10-14.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2017-11-14.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /catalina-home/logs/localhost_access_log.2017-11-18.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /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.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /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.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/el/readme.md: -------------------------------------------------------------------------------- 1 | #### 实习那el规范 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug53257/foo bar/foobar.txt: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/readme.md: -------------------------------------------------------------------------------- 1 | ##### 此包用途是 Servlet 规范的API 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/juli/readme.md: -------------------------------------------------------------------------------- 1 | ### tomcat的日志系统 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/jasper/readme.md: -------------------------------------------------------------------------------- 1 | #### 实现jsp规范,编译jsp文件 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/classes/#Bug51584.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/readme.md: -------------------------------------------------------------------------------- 1 | ##### 此包是Tomcat 自身架构 2 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/coyote/readme.md: -------------------------------------------------------------------------------- 1 | #### http, ajp 协议相关实现的类 2 | -------------------------------------------------------------------------------- /socketProcessor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/socketProcessor.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/tomcat/readme.md: -------------------------------------------------------------------------------- 1 | ### Tomcat 的工具包,net, digester(解析) xml 解析器 2 | -------------------------------------------------------------------------------- /sun.misc.GC$Daemon.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.misc.GC$Daemon.class -------------------------------------------------------------------------------- /catalina-home/lib/catalina.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/catalina.jar -------------------------------------------------------------------------------- /catalina-home/lib/el-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/el-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/jasper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/jasper.jar -------------------------------------------------------------------------------- /catalina-home/lib/jsp-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/jsp-api.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/naming/readme.md: -------------------------------------------------------------------------------- 1 | #### JNDI(Java Naming and Directory Interface,Java命名和目录接口) 实现 2 | -------------------------------------------------------------------------------- /catalina-home/bin/bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/bin/bootstrap.jar -------------------------------------------------------------------------------- /catalina-home/lib/ecj-4.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/ecj-4.2.2.jar -------------------------------------------------------------------------------- /catalina-home/lib/jasper-el.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/jasper-el.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-api.jar -------------------------------------------------------------------------------- /java.io.DeleteOnExitHook$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.io.DeleteOnExitHook$1.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug5nnnn/bug53545.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

OK

4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_STORE 3 | .svn 4 | .iml 5 | target/ 6 | tomcat-study.iml 7 | .clss 8 | .log 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /catalina-home/bin/tomcat-juli.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/bin/tomcat-juli.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina-ant.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/catalina-ant.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina-ha.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/catalina-ha.jar -------------------------------------------------------------------------------- /catalina-home/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/servlet-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-coyote.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-coyote.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-dbcp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-dbcp.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-jdbc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-jdbc.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-util.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-util.jar -------------------------------------------------------------------------------- /sun.rmi.transport.DGCImpl$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.rmi.transport.DGCImpl$1.class -------------------------------------------------------------------------------- /catalina-home/bin/commons-daemon.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/bin/commons-daemon.jar -------------------------------------------------------------------------------- /catalina-home/lib/annotations-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/annotations-api.jar -------------------------------------------------------------------------------- /catalina-home/lib/catalina-tribes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/catalina-tribes.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-i18n-es.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-i18n-es.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-i18n-fr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-i18n-fr.jar -------------------------------------------------------------------------------- /catalina-home/lib/tomcat-i18n-ja.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/lib/tomcat-i18n-ja.jar -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/bg-nav.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/tomcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/tomcat.png -------------------------------------------------------------------------------- /catalina-home/bin/tomcat-native.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/bin/tomcat-native.tar.gz -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/asf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/asf-logo.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/bg-button.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/bg-middle.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/bg-upper.png -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/favicon.ico -------------------------------------------------------------------------------- /sun.rmi.transport.DGCAckHandler$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.rmi.transport.DGCAckHandler$1.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/res/header.bmp -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/tomcat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/res/tomcat.ico -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/bg-nav-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/bg-nav-item.png -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/add.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/docs.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/void.gif -------------------------------------------------------------------------------- /java.lang.ApplicationShutdownHooks$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.lang.ApplicationShutdownHooks$1.class -------------------------------------------------------------------------------- /java.util.logging.LogManager$Cleaner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.util.logging.LogManager$Cleaner.class -------------------------------------------------------------------------------- /sun.nio.ch.FileChannelImpl$Unmapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.nio.ch.FileChannelImpl$Unmapper.class -------------------------------------------------------------------------------- /sun.nio.fs.NativeBuffer$Deallocator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.nio.fs.NativeBuffer$Deallocator.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/side_left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/res/side_left.bmp -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/asf-logo-wide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/asf-logo-wide.gif -------------------------------------------------------------------------------- /catalina-home/webapps/ROOT/tomcat-power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/ROOT/tomcat-power.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/design.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/printer.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/update.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/add.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/docs.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/void.gif -------------------------------------------------------------------------------- /java.lang.ref.Finalizer$FinalizerThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.lang.ref.Finalizer$FinalizerThread.class -------------------------------------------------------------------------------- /catalina-home/bin/commons-daemon-native.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/bin/commons-daemon-native.tar.gz -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/asf-logo.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/design.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/update.gif -------------------------------------------------------------------------------- /java.lang.ref.Reference$ReferenceHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.lang.ref.Reference$ReferenceHandler.class -------------------------------------------------------------------------------- /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/webapps/examples/jsp/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/jsp/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/jsp/images/read.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/add.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/docs.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/void.gif -------------------------------------------------------------------------------- /catalina-home/webapps/manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/manager/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/favicon.ico -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat.png -------------------------------------------------------------------------------- /catalina-home/webapps/docs/appdev/sample/sample.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/appdev/sample/sample.war -------------------------------------------------------------------------------- /catalina-home/webapps/docs/images/cors-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/images/cors-flowchart.png -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/jsp/images/return.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/design.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/update.gif -------------------------------------------------------------------------------- /java.util.concurrent.ThreadPoolExecutor$Worker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.util.concurrent.ThreadPoolExecutor$Worker.class -------------------------------------------------------------------------------- /org.apache.juli.ClassLoaderLogManager$Cleaner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.juli.ClassLoaderLogManager$Cleaner.class -------------------------------------------------------------------------------- /sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.rmi.transport.tcp.TCPTransport$AcceptLoop.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-middle.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/add.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/jsp/images/execute.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/servlets/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/servlets/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/host-manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/host-manager/images/asf-logo.gif -------------------------------------------------------------------------------- /org.apache.catalina.startup.ClassLoaderFactory$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.ClassLoaderFactory$2.class -------------------------------------------------------------------------------- /org.apache.tomcat.util.net.JIoEndpoint$Acceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.tomcat.util.net.JIoEndpoint$Acceptor.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo-wide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/asf-logo-wide.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/bg-nav-item.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat-power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/ROOT/tomcat-power.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/docs.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/void.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/add.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/fix.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/servlets/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/servlets/images/return.gif -------------------------------------------------------------------------------- /org.apache.tomcat.util.net.JIoEndpoint$AsyncTimeout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.tomcat.util.net.JIoEndpoint$AsyncTimeout.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/printer.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/docs.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/void.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/jsp2/jspx/textRotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/jsp/jsp2/jspx/textRotate.jpg -------------------------------------------------------------------------------- /catalina-home/webapps/examples/servlets/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/servlets/images/execute.gif -------------------------------------------------------------------------------- /org.apache.catalina.startup.HostConfig$DeployDirectory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.HostConfig$DeployDirectory.class -------------------------------------------------------------------------------- /sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/add.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/fix.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/design.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/manager/images/update.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/appdev/sample/web/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/appdev/sample/web/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/Entry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/cal/Entry.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/plugin/applet/Clock2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/jsp/plugin/applet/Clock2.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/sample.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/sample.war -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/read.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/code.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/docs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/docs.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/void.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/void.gif -------------------------------------------------------------------------------- /catalina-home/webapps/docs/architecture/startup/serverStartup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/architecture/startup/serverStartup.pdf -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/ServletToJsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/ServletToJsp.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async0.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Async0.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Async1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Async3.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/Entries.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/cal/Entries.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/error/Smart.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/error/Smart.class -------------------------------------------------------------------------------- /com.sun.jmx.remote.internal.ServerCommunicatorAdmin$Timeout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/com.sun.jmx.remote.internal.ServerCommunicatorAdmin$Timeout.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.Catalina$CatalinaShutdownHook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.Catalina$CatalinaShutdownHook.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ClassLoaderFactory$Repository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.ClassLoaderFactory$Repository.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.HostConfig$DeployedApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.HostConfig$DeployedApplication.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.TldConfig$TldJarScannerCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.TldConfig$TldJarScannerCallback.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/ca.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/ca.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/images/cors-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/images/cors-flowchart.png -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/execute.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/jsp/images/return.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/asf-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/asf-logo.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/design.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/design.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/host-manager/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/host-manager/images/update.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/CookieExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/CookieExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/SessionExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Async0$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Async1$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Async2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Async2$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/TableBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/cal/TableBean.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ClassLoaderFactory$RepositoryType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.ClassLoaderFactory$RepositoryType.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/user1.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/user1.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/code.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/HelloWorldExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/HelloWorldExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/cal/JspCalendar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/cal/JspCalendar.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/dates/JspCalendar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/dates/JspCalendar.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/FooTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/examples/FooTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/LogTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/examples/LogTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/util/HTMLFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/util/HTMLFilter.class -------------------------------------------------------------------------------- /catalina-home/work/Catalina/localhost/_/org/apache/jsp/index_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/work/Catalina/localhost/_/org/apache/jsp/index_jsp.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsp2/jspx/textRotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/jsp/jsp2/jspx/textRotate.jpg -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/examples/servlets/images/return.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/RequestInfoExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/RequestParamExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/ShowSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/examples/ValuesTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/sessions/DummyCart.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ContextConfig$DefaultWebXmlCacheEntry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.ContextConfig$DefaultWebXmlCacheEntry.class -------------------------------------------------------------------------------- /catalina-home/webapps/docs/architecture/requestProcess/requestProcess.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/docs/architecture/requestProcess/requestProcess.pdf -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/RequestHeaderExample.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/RequestHeaderExample.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Snake.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Snake.class -------------------------------------------------------------------------------- /java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.class -------------------------------------------------------------------------------- /org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.class -------------------------------------------------------------------------------- /org.apache.catalina.startup.ContextConfig$FragmentJarScannerCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/org.apache.catalina.startup.ContextConfig$FragmentJarScannerCallback.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/web/images/tomcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/appdev/sample/web/images/tomcat.gif -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/AsyncStockServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$Stock.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/ValuesBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/ValuesBean.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost-copy1.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/test/org/apache/tomcat/util/net/localhost-copy1.jks -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/lib/resources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments/WEB-INF/lib/resources2.jar -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/architecture/startup/serverStartup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/architecture/startup/serverStartup.pdf -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/listeners/ContextListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/listeners/SessionListener.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/validators/DebugValidator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/validators/DebugValidator.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Direction.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/Location$1.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/TagProtocol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/TagProtocol.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-message-arrives.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-message-arrives.jpg -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/LocalStrings_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/LocalStrings_es.properties -------------------------------------------------------------------------------- /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/webapps/docs/tribes/leader-election-initiate-election.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/tribes/leader-election-initiate-election.jpg -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$TickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/async/Stockticker$TickListener.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/BodyTagProtocol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/VariableInfo-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/VariableInfo-1.gif -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/webapps/docs/architecture/requestProcess/requestProcess.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/webapps/docs/architecture/requestProcess/requestProcess.pdf -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$1.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet.class -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/IterationTagProtocol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/tomcat-7.0.42-sourcecode/java/javax/servlet/jsp/tagext/doc-files/IterationTagProtocol.gif -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$1.class -------------------------------------------------------------------------------- /catalina-home/work/Catalina/localhost/manager/org/apache/jsp/WEB_002dINF/jsp/_401_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/work/Catalina/localhost/manager/org/apache/jsp/WEB_002dINF/jsp/_401_jsp.class -------------------------------------------------------------------------------- /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/HEAD/tomcat-7.0.42-sourcecode/test/webapp-3.0-virtual-webapp/src/main/webapp/WEB-INF/lib/rsrc.jar -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/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/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/work/Catalina/localhost/examples/org/apache/jsp/jsp/jsp2/el/composite_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/work/Catalina/localhost/examples/org/apache/jsp/jsp/jsp2/el/composite_jsp.class -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$EchoStreamInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoStream$EchoStreamInbound.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage$EchoMessageInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/echo/EchoMessage$EchoMessageInbound.class -------------------------------------------------------------------------------- /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/HEAD/tomcat-7.0.42-sourcecode/test/webapp-3.0-fragments-empty-absolute-ordering/WEB-INF/lib/resources.jar -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$ChatMessageInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/chat/ChatWebSocketServlet$ChatMessageInbound.class -------------------------------------------------------------------------------- /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/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$SnakeMessageInbound.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stateIs0/Tomcat-Source-Code/HEAD/catalina-home/webapps/examples/WEB-INF/classes/websocket/snake/SnakeWebSocketServlet$SnakeMessageInbound.class -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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@ -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/confinstall/tomcat-users_2.xml: -------------------------------------------------------------------------------- 1 | 6 | 11 | 18 | 19 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/WEB-INF/tags/helloWorld.tag: -------------------------------------------------------------------------------- 1 | 17 | Hello, world! 18 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/confinstall/tomcat-users_1.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /catalina-home/webapps/examples/jsp/include/foo.html: -------------------------------------------------------------------------------- 1 | 17 | To get the current time in ms 18 | -------------------------------------------------------------------------------- /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/include/foo.html: -------------------------------------------------------------------------------- 1 | 17 | To get the current time in ms 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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.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.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.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.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.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/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/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-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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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 | -------------------------------------------------------------------------------- /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")); %> -------------------------------------------------------------------------------- /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/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/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/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/webapps/docs/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /catalina-home/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/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/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/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/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/two.html: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | 20 | 21 | 22 | VM Memory usage > 50%. 23 | -------------------------------------------------------------------------------- /catalina-home/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/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/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/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/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/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/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/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/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/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/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/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/jsp2/misc/prelude.jspf: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 | This banner included with <include-prelude> 20 |
21 |
22 | -------------------------------------------------------------------------------- /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/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/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/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/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/org/apache/naming/package.html: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 |

This package contains a memory based naming service provider.

20 | 21 |

22 | 23 | 24 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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-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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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.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/jsp2/misc/prelude.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-prelude&gt;
21 | </center>
22 | <hr>
23 | 
24 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/res/checkstyle/header-al2.txt: -------------------------------------------------------------------------------- 1 | ^<\?xml.*>$ 2 | ^@echo off$ 3 | ^#! 4 | ^\W*$ 5 | ^(rem)?\W*Licensed to the Apache Software Foundation \(ASF\) under one or more$ 6 | ^(rem)?\W*contributor license agreements\. See the NOTICE file distributed with$ 7 | ^(rem)?\W*this work for additional information regarding copyright ownership\.$ 8 | ^(rem)?\W*The ASF licenses this file to You under the Apache License, Version 2\.0$ 9 | ^(rem)?\W*\(the "License"\); you may not use this file except in compliance with$ 10 | ^(rem)?\W*the License\. You may obtain a copy of the License at$ 11 | ^(rem)?\W*$ 12 | ^(rem)?\W*http://www.apache.org/licenses/LICENSE-2\.0$ 13 | ^(rem)?\W*$ 14 | ^(rem)?\W*Unless required by applicable law or agreed to in writing, software$ 15 | ^(rem)?\W*distributed under the License is distributed on an "AS IS" BASIS,$ 16 | ^(rem)?\W*WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\.$ 17 | ^(rem)?\W*See the License for the specific language governing permissions and$ 18 | ^(rem)?\W*limitations under the License\.$ 19 | ^(rem)?\W*$ -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug49nnn/bug49726a.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 contentType="text/html"%> 18 | 19 | Bug 49726 test case 20 | 21 |

OK

22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/java/org/apache/catalina/core/RestrictedServlets.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.SSIServlet=restricted 17 | org.apache.catalina.servlets.CGIServlet=restricted 18 | org.apache.catalina.manager.JMXProxyServlet=restricted 19 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/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/jsp/jsptoserv/hello.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 | I have been invoked by 22 | <% out.print (request.getAttribute("servletName").toString()); %> 23 | Servlet. 24 |

25 | 26 | -------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/tags/echo-long.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.Long"%><%@ 19 | attribute name="index" type="java.lang.String" %><%@ 20 | tag body-content="empty" %>

${index}-${echo}

-------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/WEB-INF/tags/echo.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 %><%@ 17 | attribute name="echo" type="java.lang.String"%><%@ 18 | attribute name="dummy" type="java.lang.String" required="false"%><%@ 19 | tag body-content="empty" %>

${echo}

-------------------------------------------------------------------------------- /tomcat-7.0.42-sourcecode/test/webapp-3.0/bug36923.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" %> 18 | 19 | Bug 36923 test case 20 | 21 |

00-${<%= "hello world" %>}

22 | 23 | 24 | 25 | --------------------------------------------------------------------------------