Fixing bad html links

This commit is contained in:
Joakim Erdfelt 2020-09-30 09:23:35 -05:00
parent 3423375a97
commit 1233ae108e
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
8 changed files with 25 additions and 22 deletions

View File

@ -226,7 +226,7 @@
<JDURL>https://download.eclipse.org/jetty/stable-9/apidocs</JDURL> <JDURL>https://download.eclipse.org/jetty/stable-9/apidocs</JDURL>
<JXURL>https://download.eclipse.org/jetty/stable-9/xref</JXURL> <JXURL>https://download.eclipse.org/jetty/stable-9/xref</JXURL>
<SRCDIR>${basedir}/../jetty.project/</SRCDIR> <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> <icons>font</icons>
<pagenums /> <pagenums />
<toc /> <toc />

View File

@ -411,4 +411,4 @@ public class FooLoginModule extends AbstractLoginModule
An example webapp using JAAS can be found in the Jetty GitHub repository: 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]

View File

@ -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 [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) INFO : webapp transitively enabled, ini template available with --add-to-start=webapp
ssl enabled in ${jetty.base}/start.ini INFO : server transitively enabled, ini template available with --add-to-start=server
DOWNLOAD: https://github.com/eclipse/jetty.project/raw/master/jetty-server/src/main/config/etc/keystore to etc/keystore INFO : security transitively enabled
server initialised in ${jetty.base}/start.ini (appended) INFO : servlet transitively enabled
server enabled in ${jetty.base}/start.ini INFO : http initialized in ${jetty.base}/start.ini
http initialised in ${jetty.base}/start.ini (appended) INFO : https initialized in ${jetty.base}/start.ini
http enabled in ${jetty.base}/start.ini INFO : threadpool transitively enabled, ini template available with --add-to-start=threadpool
server enabled in ${jetty.base}/start.ini INFO : ssl transitively enabled, ini template available with --add-to-start=ssl
deploy initialised in ${jetty.base}/start.ini (appended) INFO : bytebufferpool transitively enabled, ini template available with --add-to-start=bytebufferpool
deploy enabled in ${jetty.base}/start.ini INFO : deploy initialized in ${jetty.base}/start.ini
MKDIR: ${jetty.base}/webapps MKDIR : ${jetty.base}/etc
server enabled in ${jetty.base}/start.ini 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. 3. Look at your directory.
+ +

View File

@ -104,7 +104,8 @@ If many responses are to be sent (e.g., a chat room), then writing one response
==== Examples ==== 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 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. * The link:{JDURL}/org/eclipse/jetty/servlets/QoSFilter.html[QoSFilter] uses suspend/resume style to limit the number of requests simultaneously within the filter.

View File

@ -24,7 +24,7 @@
$JETTY_BASE/start.ini file. The Jetty demo-base already has JAAS enabled in its start.ini file. </p> $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 <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> <h2>Using the Demo</h2>
<P> <P>
@ -38,7 +38,7 @@ href="https://github.com/eclipse/jetty.project/blob/master/tests/test-webapps/te
</p> </p>
<hr/> <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> </BODY>
</HTML> </HTML>

View File

@ -58,11 +58,11 @@ It is configured as a jetty base directory in $JETTY_HOME/demo_base.
<h2>Useful links:</h2> <h2>Useful links:</h2>
<ul> <ul>
<li><a <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> 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="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> </ul>
</p> </p>

View File

@ -27,7 +27,7 @@ This example shows how to configure and lookup resources such as DataSources, a
</p> </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 <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> $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> <h2>Execution</h2>

View File

@ -21,7 +21,7 @@ This example tests some aspects of the servlet 3.1 specification:<ul>
<li>servlet container initializers. <li>servlet container initializers.
<li>multi-part upload support. <li>multi-part upload support.
</ul> </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> </p>
<h3>Test Servlet 2.5/3.0 Annotations, Fragments and Initializers</h3> <h3>Test Servlet 2.5/3.0 Annotations, Fragments and Initializers</h3>