Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2012-10-17 11:01:57 +0000
committerGreg Wilkins2012-10-17 11:01:57 +0000
commitd15f2077a0f7a9eebf241e68025bb85a1bc41ad7 (patch)
tree6eb5287b06db9f8face1ca9cc64db0fa5c9963c0
parent8c5ad05eb845ef1122a6c7efde6577d5911db270 (diff)
downloadorg.eclipse.jetty.project-d15f2077a0f7a9eebf241e68025bb85a1bc41ad7.tar.gz
org.eclipse.jetty.project-d15f2077a0f7a9eebf241e68025bb85a1bc41ad7.tar.xz
org.eclipse.jetty.project-d15f2077a0f7a9eebf241e68025bb85a1bc41ad7.zip
jetty-9 enable JSP by default
-rw-r--r--jetty-distribution/src/main/resources/start.ini7
-rw-r--r--jetty-distribution/src/main/resources/webapps/ROOT/index.html6
2 files changed, 10 insertions, 3 deletions
diff --git a/jetty-distribution/src/main/resources/start.ini b/jetty-distribution/src/main/resources/start.ini
index 15a5d262fd..5cd54882fe 100644
--- a/jetty-distribution/src/main/resources/start.ini
+++ b/jetty-distribution/src/main/resources/start.ini
@@ -84,6 +84,13 @@ etc/jetty-jmx.xml
#===========================================================
#===========================================================
+# Java Server Pages
+#-----------------------------------------------------------
+OPTIONS=jsp
+#===========================================================
+
+
+#===========================================================
# Annotations JNDI JASS processing
#-----------------------------------------------------------
# OPTIONS=annotations
diff --git a/jetty-distribution/src/main/resources/webapps/ROOT/index.html b/jetty-distribution/src/main/resources/webapps/ROOT/index.html
index bc7e2b8c5a..92de4ddf2a 100644
--- a/jetty-distribution/src/main/resources/webapps/ROOT/index.html
+++ b/jetty-distribution/src/main/resources/webapps/ROOT/index.html
@@ -43,9 +43,9 @@ The project is 100% <a href="http://en.wikipedia.org/wiki/Open_source">Open Sour
<h2>getting&nbsp;help ...</h2>
<ul>
<li><a href="http://www.eclipse.org/jetty/mailinglists.php">Mailing lists @ eclipse</a></li>
- <li><a href="http://www.webtide.com/support.jsp">Webtide support</a></li>
- <li><a href="http://www.webtide.com/training.jsp">Webtide training</a></li>
- <li><a href="http://www.webtide.com/development.jsp">Webtide development</a></li>
+ <li><a href="http://www.webtide.com/advice/">Developer Advice</a></li>
+ <li><a href="http://www.webtide.com/development">Custom Development</a></li>
+ <li><a href="http://www.webtide.com/support">Production support</a></li>
</ul>
</td>
</tr>

Back to the top