Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2013-09-13 05:51:55 +0000
committerGreg Wilkins2013-09-13 05:51:55 +0000
commita2a475b4afee79f975f312d46e6f7152e405d409 (patch)
tree5417a5b4ea16e87e01ddc6b78ba0d1cffe11d115 /tests/test-webapps/test-jetty-webapp/src
parentbb8d8fb9998ba6c69a0c2a34a688f7924f3c2e64 (diff)
downloadorg.eclipse.jetty.project-a2a475b4afee79f975f312d46e6f7152e405d409.tar.gz
org.eclipse.jetty.project-a2a475b4afee79f975f312d46e6f7152e405d409.tar.xz
org.eclipse.jetty.project-a2a475b4afee79f975f312d46e6f7152e405d409.zip
minor text cleanups in demo webapps
Diffstat (limited to 'tests/test-webapps/test-jetty-webapp/src')
-rw-r--r--tests/test-webapps/test-jetty-webapp/src/main/webapp/index.html55
-rw-r--r--tests/test-webapps/test-jetty-webapp/src/main/webapp/small_powered_by.gifbin0 -> 4787 bytes
2 files changed, 39 insertions, 16 deletions
diff --git a/tests/test-webapps/test-jetty-webapp/src/main/webapp/index.html b/tests/test-webapps/test-jetty-webapp/src/main/webapp/index.html
index e7d57b4855..2e7ec1a1f7 100644
--- a/tests/test-webapps/test-jetty-webapp/src/main/webapp/index.html
+++ b/tests/test-webapps/test-jetty-webapp/src/main/webapp/index.html
@@ -10,29 +10,53 @@
</style>
</HEAD>
<BODY>
-<A HREF="http://jetty.eclipse.org"><IMG SRC="jetty_banner.gif"></A>
+ <A HREF="http://www.eclipse.org/jetty"><IMG SRC="jetty_banner.gif"></A>
+ <br/>
+ <b><a href="http://localhost:8080/">Demo Home</a></b>
+ <hr/>
+ <center><span style="color:red; font-variant:small-caps; font-weight:bold">Test Web Application Only - Do NOT Deploy in Production</span> </center>
+
<h1>Welcome to Jetty 9</h1>
<p>
-This is the Test webapp for the Jetty 9 HTTP Server and Servlet Container. It is
-deployed in $JETTY_HOME/webapp.demo and configured by $JETTY_HOME/start.d/900-demo.ini
+This is the Test webapp for the Jetty 9 HTTP Server and Servlet Container.
+It is configured as a jetty base directory in $JETTY_HOME/demo_base.
+</p>
+
+<h2>Jetty Tests:</h2>
+<table border=0>
+<tr valign=top><td>
<ul>
<li>Servet: <a href="hello/">Hello World</a></li>
-<li>Dump: <a href="dump/info">Request</a>, <a href="session/">Session</a>, <a href="cookie/">Cookie</a></li>
+<li>Dump Servlets: <ul>
+ <li><a href="dump/info">Request</a></li>
+ <li><a href="session/">Session</a></li>
+ <li><a href="cookie/">Cookie</a></li>
+ </ul></li>
+<li>Comet Chat Examples:
+ <ul>
+ <li><a href="chat/">Long Polling</a></li>
+ <li><a href="ws">WebSocket (Jetty API)</a></li>
+ <li><a href="javax.websocket">WebSocket (javax.websocket)</a></li>
+ </ul>
+ </li>
<li>JSP: <a href="jsp/">examples</a></li>
-<li>Comet Chat: <a href="chat/">Long Polling</a>, <a href="ws">WebSocket (Jetty API)</a>, <a href="javax.websocket">WebSocket (javax.websocket)</a></li>
+
+</ul></td><td><ul>
<li><a href="auth.html">Authentication</a></li>
<li><a href="dispatch">Dispatcher Servlet</a></li>
<li><a href="rewrite/">Request Rewrite Servlet</a></li>
-<li>static content:
-<a href="d.txt">tiny</a>,
-<a href="da.txt">small</a>,
-<a href="dat.txt">medium</a>,
-<a href="data.txt">large</a>,
-<a href="data.txt.gz">large gziped</a></li>
+<li>Static content: <ul>
+ <li><a href="d.txt">tiny</a></li>
+ <li><a href="da.txt">small</a></li>
+ <li><a href="dat.txt">medium</a></li>
+ <li><a href="data.txt">large</a></li>
+ <li><a href="data.txt.gz">large gziped</a></li>
+ </ul></li>
</ul>
+</td></tr></table>
-<p>
-Useful links are:<ul>
+<h2>Useful links:</h2>
+<ul>
<li><a
href="http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree/tests/test-webapps/test-jetty-webapp">Source
tree of this webapp</a></li>
@@ -42,8 +66,7 @@ tree of this webapp</a></li>
</ul>
</p>
-<p>
-<a href="/">MAIN MENU</a>
-</p>
+<hr/>
+<center> <a href="http://www.eclipse.org/jetty"><img style="border:0" src="small_powered_by.gif"/></a></center>
</BODY>
</HTML>
diff --git a/tests/test-webapps/test-jetty-webapp/src/main/webapp/small_powered_by.gif b/tests/test-webapps/test-jetty-webapp/src/main/webapp/small_powered_by.gif
new file mode 100644
index 0000000000..c5dd44319f
--- /dev/null
+++ b/tests/test-webapps/test-jetty-webapp/src/main/webapp/small_powered_by.gif
Binary files differ

Back to the top