Updated chapter listing

Signed-off-by: WalkerWatch <chris@webtide.com>
This commit is contained in:
WalkerWatch 2016-07-01 11:23:43 -04:00
parent 225c6a8086
commit f830bb35d5
7 changed files with 26 additions and 26 deletions

View File

@ -18,6 +18,7 @@
include::startup/chapter.adoc[]
include::sessions/chapter.adoc[]
include::logging/chapter.adoc[]
include::jndi/chapter.adoc[]
include::annotations/chapter.adoc[]
include::jmx/chapter.adoc[]
@ -27,4 +28,3 @@ include::fastcgi/chapter.adoc[]
include::extras/chapter.adoc[]
include::runner/chapter.adoc[]
include::tuning/chapter.adoc[]
include::logging/chapter.adoc[]

View File

@ -77,9 +77,9 @@ context.setAttribute("org.eclipse.jetty.webapp.basetempdir", "/tmp/foo");
There are several ways to use a particular directory as the temporary directory:
call WebAppContext.setTempDirectory(String dir)::
Like before this can be accomplished with an xml file or directly in code. Here's an example of setting the temp directory in xml:
+
*Call WebAppContext.setTempDirectory(String dir)*
Like before this can be accomplished with an xml file or directly in code. Here's an example of setting the temp directory in xml:
[source, xml, subs="{sub-order}"]
----
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
@ -101,8 +101,8 @@ context.setWar("foo.war");
context.setTempDirectory(new File("/some/dir/foo"));
----
set the `javax.servlet.context.tempdir` context attribute::
You should set this context attribute with the name of directory you want to use as the temp directory. Again, you can do this in xml:
*Set the `javax.servlet.context.tempdir` context attribute*
You should set this context attribute with the name of directory you want to use as the temp directory. Again, you can do this in xml:
[source, xml, subs="{sub-order}"]
----

View File

@ -16,14 +16,14 @@
= Jetty Development Guide
include::maven/chapter.adoc[]
include::ant/chapter.adoc[]
include::handlers/chapter.adoc[]
include::embedding/chapter.adoc[]
include::debugging/chapter.adoc[]
include::frameworks/chapter.adoc[]
include::clients/http/chapter.adoc[]
include::maven/chapter.adoc[]
include::handlers/chapter.adoc[]
include::debugging/chapter.adoc[]
include::websockets/intro/chapter.adoc[]
include::websockets/jetty/chapter.adoc[]
//include::websockets/java/chapter.adoc[]
include::continuations/chapter.adoc[]
include::frameworks/chapter.adoc[]
include::ant/chapter.adoc[]

View File

@ -23,4 +23,3 @@ This guide covers the latter, a standalone distribution suitable for deploying w
include::jetty-installing.adoc[]
include::jetty-running.adoc[]
include::jetty-deploying.adoc[]
include::jetty-coordinates.adoc[]

View File

@ -20,3 +20,4 @@
include::what-is-jetty.adoc[]
include::what-version.adoc[]
include::jetty-javaee.adoc[]
include::jetty-coordinates.adoc[]

View File

@ -19,7 +19,7 @@
==== Maven Coordinates
Jetty has existed in Maven Central almost since its inception, however under a couple of different coordinates over the years.
Jetty has existed in Maven Central almost since its inception, though the coordinates have changed over the years.
When Jetty was based at SourceForge and then The Codehaus it was located under the `groupId` of `org.mortbay.jetty`.
With Jetty 7 the project moved to the Eclipse foundation and to a new `groupId` at that time to reflect its new home.

View File

@ -25,4 +25,4 @@ This guide is in two parts.
* The second part describes advanced uses of Jetty, providing in depth coverage of specific features like our highly scalable async client, proxy servlet configuration, the Jetty Maven plugin, and using Jetty as an embedded server. The advanced section includes tutorials, howtos, videos, and reference materials.
Feedback is always welcome!
Additionally, if you are interested in how to contribute to the open source project there is a section on that as well!
Additionally, if you are interested in how to contribute to the open source project there is a link:#community[section on that as well!]