Fixing bad html links
This commit is contained in:
parent
3423375a97
commit
1233ae108e
|
@ -226,7 +226,7 @@
|
|||
<JDURL>https://download.eclipse.org/jetty/stable-9/apidocs</JDURL>
|
||||
<JXURL>https://download.eclipse.org/jetty/stable-9/xref</JXURL>
|
||||
<SRCDIR>${basedir}/../jetty.project/</SRCDIR>
|
||||
<GITBROWSEURL>https://github.com/eclipse/jetty.project/master</GITBROWSEURL>
|
||||
<GITBROWSEURL>https://github.com/eclipse/jetty.project/tree/jetty-9.4.x</GITBROWSEURL>
|
||||
<icons>font</icons>
|
||||
<pagenums />
|
||||
<toc />
|
||||
|
|
|
@ -411,4 +411,4 @@ public class FooLoginModule extends AbstractLoginModule
|
|||
|
||||
An example webapp using JAAS can be found in the Jetty GitHub repository:
|
||||
|
||||
* link:{GITBROWSEURL}/tests/test-webapps/test-jaas-webapp[https://github.com/eclipse/jetty.project/tree/master/tests/test-webapps/test-jaas-webapp]
|
||||
* link:{GITBROWSEURL}/tests/test-webapps/test-jaas-webapp[https://github.com/eclipse/jetty.project/tree/jetty-9.4.x/tests/test-webapps/test-jaas-webapp]
|
||||
|
|
|
@ -65,18 +65,20 @@ Adding modules in this way will append the associated module properties to the `
|
|||
....
|
||||
[my-base]$ java -jar /home/user/jetty-distribution-{VERSION}/start.jar --add-to-start=http,https,deploy
|
||||
|
||||
ssl initialised in ${jetty.base}/start.ini (appended)
|
||||
ssl enabled in ${jetty.base}/start.ini
|
||||
DOWNLOAD: https://github.com/eclipse/jetty.project/raw/master/jetty-server/src/main/config/etc/keystore to etc/keystore
|
||||
server initialised in ${jetty.base}/start.ini (appended)
|
||||
server enabled in ${jetty.base}/start.ini
|
||||
http initialised in ${jetty.base}/start.ini (appended)
|
||||
http enabled in ${jetty.base}/start.ini
|
||||
server enabled in ${jetty.base}/start.ini
|
||||
deploy initialised in ${jetty.base}/start.ini (appended)
|
||||
deploy enabled in ${jetty.base}/start.ini
|
||||
MKDIR: ${jetty.base}/webapps
|
||||
server enabled in ${jetty.base}/start.ini
|
||||
INFO : webapp transitively enabled, ini template available with --add-to-start=webapp
|
||||
INFO : server transitively enabled, ini template available with --add-to-start=server
|
||||
INFO : security transitively enabled
|
||||
INFO : servlet transitively enabled
|
||||
INFO : http initialized in ${jetty.base}/start.ini
|
||||
INFO : https initialized in ${jetty.base}/start.ini
|
||||
INFO : threadpool transitively enabled, ini template available with --add-to-start=threadpool
|
||||
INFO : ssl transitively enabled, ini template available with --add-to-start=ssl
|
||||
INFO : bytebufferpool transitively enabled, ini template available with --add-to-start=bytebufferpool
|
||||
INFO : deploy initialized in ${jetty.base}/start.ini
|
||||
MKDIR : ${jetty.base}/etc
|
||||
COPY : ${jetty.home}/modules/ssl/keystore to ${jetty.base}/etc/keystore
|
||||
MKDIR : ${jetty.base}/webapps
|
||||
INFO : Base directory was modified
|
||||
....
|
||||
3. Look at your directory.
|
||||
+
|
||||
|
|
|
@ -104,7 +104,8 @@ If many responses are to be sent (e.g., a chat room), then writing one response
|
|||
|
||||
==== Examples
|
||||
|
||||
* The https://github.com/eclipse/jetty.project/blob/jetty-8/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java[ChatServlet example] shows how the suspend/resume style can be used to directly code a chat room (See similar https://github.com/eclipse/jetty.project/blob/master/tests/test-webapps/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java[example] using Async Servlets).
|
||||
* The https://github.com/eclipse/jetty.project/blob/jetty-9.4.x/tests/test-webapps/test-jetty-webapp/src/main/java/com/acme/ChatServlet.java[ChatServlet example]
|
||||
shows how to make a chat room using Async Servlets.
|
||||
The same principles are applied to frameworks like http://cometd.org/[cometd] which provide an richer environment for such applications, based on Continuations.
|
||||
|
||||
* The link:{JDURL}/org/eclipse/jetty/servlets/QoSFilter.html[QoSFilter] uses suspend/resume style to limit the number of requests simultaneously within the filter.
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
$JETTY_BASE/start.ini file. The Jetty demo-base already has JAAS enabled in its start.ini file. </p>
|
||||
|
||||
<p>The full source of this demonstration is available <a
|
||||
href="https://github.com/eclipse/jetty.project/blob/master/tests/test-webapps/test-jaas-webapp">here</a>.</p>
|
||||
href="https://github.com/eclipse/jetty.project/tree/jetty-9.4.x/tests/test-webapps/test-jaas-webapp">here</a>.</p>
|
||||
|
||||
<h2>Using the Demo</h2>
|
||||
<P>
|
||||
|
@ -38,7 +38,7 @@ href="https://github.com/eclipse/jetty.project/blob/master/tests/test-webapps/te
|
|||
</p>
|
||||
|
||||
<hr/>
|
||||
<center><a href="https://www.eclipse.org/jetty"><img style="border:0" src="images/small_powered_by.gif"/></a></center>
|
||||
<center><a href="https://www.eclipse.org/jetty/"><img style="border:0" src="images/small_powered_by.gif"/></a></center>
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
|
|
@ -58,11 +58,11 @@ It is configured as a jetty base directory in $JETTY_HOME/demo_base.
|
|||
<h2>Useful links:</h2>
|
||||
<ul>
|
||||
<li><a
|
||||
href="https://github.com/eclipse/jetty.project/blob/master/tests/test-webapps/test-jetty-webapp">Source
|
||||
href="https://github.com/eclipse/jetty.project/tree/jetty-9.4.x/tests/test-webapps/test-jetty-webapp">Source
|
||||
tree of this webapp</a></li>
|
||||
<li><a href="https://www.eclipse.org/jetty">Jetty project home</a></li>
|
||||
<li><a href="https://www.eclipse.org/jetty/">Jetty project home</a></li>
|
||||
<li><a href="https://www.eclipse.org/jetty/documentation/current/">Documentation</a></li>
|
||||
<li><a href="http://www.webtide.com">Commercial Support</a></li>
|
||||
<li><a href="https://webtide.com">Commercial Support</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ This example shows how to configure and lookup resources such as DataSources, a
|
|||
</p>
|
||||
<p>This will create a $JETTY_BASE/start.d/jndi.ini file to enable and parameterise JNDI. If the --add-to-start option instead, then the same initialisation will be appended to the
|
||||
$JETTY_BASE/start.ini file instead. The jetty demo-base already has JNDI enabled in the start.ini file and some mock resources included. </p>
|
||||
<p>The full source of this demonstration is available <a href="https://github.com/eclipse/jetty.project/blob/master/tree/tests/test-webapps/test-jndi-webapp">here</a>.</p>
|
||||
<p>The full source of this demonstration is available <a href="https://github.com/eclipse/jetty.project/tree/jetty-9.4.x/tests/test-webapps/test-jndi-webapp">here</a>.</p>
|
||||
|
||||
|
||||
<h2>Execution</h2>
|
||||
|
|
|
@ -21,7 +21,7 @@ This example tests some aspects of the servlet 3.1 specification:<ul>
|
|||
<li>servlet container initializers.
|
||||
<li>multi-part upload support.
|
||||
</ul>
|
||||
The source repository for this test is available <a href="https://github.com/eclipse/jetty.project/blob/master/tests/test-webapps/test-servlet-spec">here</a>.
|
||||
The source repository for this test is available <a href="https://github.com/eclipse/jetty.project/tree/jetty-9.4.x/tests/test-webapps/test-servlet-spec/test-spec-webapp">here</a>.
|
||||
</p>
|
||||
|
||||
<h3>Test Servlet 2.5/3.0 Annotations, Fragments and Initializers</h3>
|
||||
|
|
Loading…
Reference in New Issue