changeset 1666:1beeb9319d78

Creating site for 2.5-SNAPSHOT
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Tue, 21 Nov 2017 19:34:58 +0000
parents fe8300fdcd9d
children 8a9c66abb57c
files auth.html build-maven.html client-integration.html digilib-config.html digilib-short.html features.html history.html iiif-api.html image-directories.html index.html install-digilib.html issue-tracking.html java-settings.html license.html mail-lists.html plugins.html project-info.html scaler-api.html server-setup.html source-repository.html team-list.html
diffstat 21 files changed, 136 insertions(+), 109 deletions(-) [+]
line wrap: on
line diff
--- a/auth.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/auth.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Access control</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/build-maven.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/build-maven.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Building digilib with Maven</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
@@ -283,9 +283,40 @@
 <p>You can see a summary of your running digilib configuration at the URL <a class="externalLink" href="http://localhost:8080/digilib/server/dlConfig.jsp">http://localhost:8080/digilib/server/dlConfig.jsp</a></p></div>
 <div class="section">
 <h2><a name="Additional_Maven_build_options"></a>Additional Maven build options</h2>
+<p>Some build options have to be activated as Maven profiles with the <tt>-P</tt> command line option when building digilib. For example, to build digilib with the Manifester servlet (&#x201c;iiif-presentation&#x201d;) use:</p>
+
+<div class="source">
+<div class="source">
+<pre>mvn -Piiif-presentation package
+</pre></div></div>
+<p>You can add multiple profiles at the same time if necessary.</p>
 <div class="section">
 <h3><a name="servlet2"></a>servlet2</h3>
-<p>Digilib uses the Asynchronous Servlet API (3.0) by default. You will need Java version 6 or later and Tomcat version 7 or Jetty version 8 or later to use it. If you want to use the old non-Asynchronous Servlet API (2.3) add <tt>-Pservlet2</tt> to the Maven command line above.</p></div></div>
+<p>Digilib uses the Asynchronous Servlet API (3.0) by default. You will need Java version 6 or later and Tomcat version 7 or Jetty version 8 or later to use it.</p>
+<p><tt>-Pservlet2</tt> builds a servlet with the the old non-Asynchronous Servlet API (2.3).</p>
+<p>This creates a WAR file with the postfix &#x201c;-srv2&#x201d;. The build process uses the file <tt>webapp/src/main/webapp/WEB-INF/web-2.4.xml</tt> as <tt>web.xml</tt> file.</p></div>
+<div class="section">
+<h3><a name="servlet3"></a>servlet3</h3>
+<p><tt>-Pservlet3</tt> builds digillib with the Asynchronous Servlet API (3.0). This is the default profile, it will be used if you do not specify any profile.</p>
+<p>This creates a WAR file with the postfix &#x201c;-srv3&#x201d;. The build process uses the file <tt>webapp/src/main/webapp/WEB-INF/web-3.0.xml</tt> as <tt>web.xml</tt> file. </p></div>
+<div class="section">
+<h3><a name="iiif-presentation"></a>iiif-presentation</h3>
+<p><tt>-Piiif-presentation</tt> builds digilib with the &#x201c;Manifester&#x201d; servlet for IIIF Presentation API support (see <a href="iiif-api.html">digilib IIIF support documentation</a>). </p>
+<p>This creates a WAR file with the postfix &#x201c;-srv3p&#x201d;. The build process uses the file <tt>webapp/src/main/webapp/WEB-INF/web-iiif-pres.xml</tt> as <tt>web.xml</tt> file.</p></div>
+<div class="section">
+<h3><a name="text"></a>text</h3>
+<p><tt>-Ptext</tt> builds digilib with the &#x201c;Texter&#x201d; servlet to download plain text or XML files (see <a class="externalLink" href="https://github.com/robcast/digilib/tree/master/text">the source</a>). You have to add <tt>-Pservlet3</tt> or <tt>-Pservlet2</tt> as well.</p>
+<p>You also have to copy the mapping for the &#x201c;Texter&#x201d; servlet from <tt>web-additional.xml</tt> into the <tt>web.xml</tt> file used by the selected servlet API like <tt>web-3.0.xml</tt>.</p></div>
+<div class="section">
+<h3><a name="pdf"></a>pdf</h3>
+<p><tt>-Ppdf</tt> builds digilib with the &#x201c;PDFCache&#x201d; servlet to generate and download PDF files from images. (see <a class="externalLink" href="https://github.com/robcast/digilib/tree/master/pdf">the source</a>).</p>
+<p>You also have to copy the mapping for the &#x201c;PDFCache&#x201d; servlet from <tt>web-additional.xml</tt> into the <tt>web.xml</tt> file used by the selected servlet API like <tt>web-3.0.xml</tt>.</p></div></div>
+<div class="section">
+<h2><a name="create-sprites"></a>create-sprites</h2>
+<p><tt>-Pcreate-sprites</tt> re-creates the image sprite file (<tt>webapp/src/main/webapp/jquery/img/dl-buttons-full-32-sprite.png</tt>) from the separate icon image files. This option only needs to be used if you are a developer and you want to change the icon images.</p></div>
+<div class="section">
+<h2><a name="running_tests"></a>running tests</h2>
+<p><tt>-DskipTests=false</tt> enables some functional tests. The tests are run as part of the normal build process. You can also run just the tests with <tt>mvn -DskipTests=false test</tt>.</p></div>
                   </div>
             </div>
           </div>
--- a/client-integration.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/client-integration.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Integrating digilib into your web page</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/digilib-config.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/digilib-config.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Configuring digilib</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
@@ -215,7 +215,7 @@
 <h2><a name="Available_parameters"></a>Available parameters</h2>
 <p>The documented parameter values below are the defaults.</p>
 <p>If relative paths are provided as file locations, these will be resolved with the web application&#x2019;s directory as base.</p>
-<p>You can inspect a summary of your running digilib configuration at the URL <tt>&lt;base_url&gt;/server/dlConfig.jsp</tt>.</p>
+<p>You can inspect a summary of your running digilib configuration at the URL <tt>&lt;base_url&gt;/server/dlConfig.jsp</tt> e.g. <a class="externalLink" href="http://localhost:8080/digilib/server/dlConfig.jsp">http://localhost:8080/digilib/server/dlConfig.jsp</a>.</p>
 <div class="section">
 <h3><a name="Image_locations"></a>Image locations</h3>
 
@@ -223,7 +223,7 @@
 <div class="source">
 <pre>&lt;parameter name=&quot;basedir-list&quot; value=&quot;sample-images&quot; /&gt;
 </pre></div></div>
-<p>A list of directories where images are searched. See <a href="image-directories.html">this document</a> for details.</p>
+<p>A list of directories where images are searched. See <a href="image-directories.html">this document</a> for details (<b>required</b>).</p>
 
 <div class="source">
 <div class="source">
@@ -254,7 +254,7 @@
 <pre>&lt;parameter name=&quot;mapping-file&quot; value=&quot;digilib-map.xml&quot; /&gt;
 </pre></div></div>
 <p>The location of the mapping file. Refer to <a class="externalLink" href="https://github.com/robcast/digilib/blob/master/webapp/src/main/webapp/WEB-INF/digilib-map.xml.template">digilib-map.xml.template</a> for an example. </p>
-<p>The file contains <tt>mapping</tt> elements with a <tt>link</tt> attribute containing a &#x2018;virtual directory&#x2019; name that is mapped to the directory given in the <tt>dir</tt> attribute.</p></div>
+<p>The file contains <tt>mapping</tt> elements with a <tt>link</tt> attribute containing a &#x2018;virtual directory&#x2019; name that is redirected to the directory given in the <tt>dir</tt> attribute.</p></div>
 <div class="section">
 <h3><a name="Image_processing_options"></a>Image processing options</h3>
 
@@ -296,6 +296,12 @@
 
 <div class="source">
 <div class="source">
+<pre>&lt;parameter name=&quot;use-authorization&quot; value=&quot;false&quot; /&gt;
+</pre></div></div>
+<p>Enables or disables all authorization. If <tt>use-authorization</tt> is <tt>true</tt> you also have to configure <tt>authnops-class</tt>, <tt>authzops-class</tt> and the <tt>auth-file</tt> and its contents.</p>
+
+<div class="source">
+<div class="source">
 <pre>&lt;parameter name=&quot;auth-file&quot; value=&quot;digilib-auth.xml&quot; /&gt;
 </pre></div></div>
 <p>Configuration file for authentication and authorization. The format and content of the configuration file is determined by the chosen authentication and authorization classes. </p>
@@ -316,13 +322,7 @@
 <div class="source">
 <pre>&lt;parameter name=&quot;authzops-class&quot; value=&quot;digilib.auth.PathAuthzOps&quot; /&gt;
 </pre></div></div>
-<p>The class to handle authorization.</p>
-
-<div class="source">
-<div class="source">
-<pre>&lt;parameter name=&quot;use-authorization&quot; value=&quot;false&quot; /&gt;
-</pre></div></div>
-<p>Enable or disable all authorization. If <tt>use-authorization</tt> is <tt>true</tt> it also needs to be configured using <tt>authnops-class</tt> and <tt>authzops-class</tt> and the <tt>auth-file</tt>.</p></div>
+<p>The class to handle authorization.</p></div>
 <div class="section">
 <h3><a name="IIIF_API_options"></a>IIIF API options</h3>
 <p>The options configure the IIIF interface. For more information see the <a href="iiif-api">digilib IIIF documentation</a></p>
@@ -363,7 +363,7 @@
 <div class="source">
 <pre>&lt;parameter name=&quot;max-waiting-threads&quot; value=&quot;20&quot; /&gt;
 </pre></div></div>
-<p>The maximum number of requests waiting in the queue before sending &#x201c;service unavailable&#x201d;.</p>
+<p>The maximum number of requests waiting in the queue before new requests get &#x201c;service unavailable&#x201d;.</p>
 
 <div class="source">
 <div class="source">
@@ -377,7 +377,7 @@
 </pre></div></div>
 <p>Timeout for worker threads in milliseconds.</p></div>
 <div class="section">
-<h3><a name="Assorted_options"></a>Assorted options</h3>
+<h3><a name="Other_options"></a>Other options</h3>
 
 <div class="source">
 <div class="source">
@@ -404,40 +404,36 @@
 <div class="source">
 <pre>&lt;parameter name=&quot;log-config-file&quot; value=&quot;log4j-config.xml&quot; /&gt;
 </pre></div></div>
-<p>Location of the logging configuration file. The current logger is <a class="externalLink" href="https://logging.apache.org/log4j/1.2/manual.html">Log4J 1.2</a>.</p></div>
+<p>Location of the logging configuration file. The current logging library is <a class="externalLink" href="https://logging.apache.org/log4j/1.2/manual.html">Log4J 1.2</a>.</p></div>
 <div class="section">
-<h3><a name="Unknown_category"></a>Unknown category</h3>
-<p><b>TODO</b> move items to appropriate sections</p>
+<h3><a name="Options_for_developers"></a>Options for developers</h3>
+<p>Using these options you can replace default classes used by digilib with your own implementations to change the behaviour of digilib. </p>
 
 <div class="source">
 <div class="source">
-<pre>&lt;parameter name=&quot;dirmeta-class&quot; value=&quot;digilib.meta.IndexMetaDirMeta&quot; /&gt;
+<pre>&lt;parameter name=&quot;docuimage-class&quot; value=&quot;digilib.image.ImageLoaderDocuImage&quot; /&gt;
+</pre></div></div>
+<p>Class of the <tt>DocuImage</tt> instance. You can replace the <tt>digilib.image.DocuImage</tt> implementation to use a different image toolkit than Java ImageIO. (There are deprecated alternative implementations in the <tt>common-jai</tt>, <tt>common-imagej</tt> and <tt>common-bioformats</tt> modules.) </p>
+
+<div class="source">
+<div class="source">
+<pre>&lt;parameter name=&quot;docuimage-hacks&quot; value=&quot;&quot; /&gt;
 </pre></div></div>
-<p>Class for <b>TODO</b>.</p>
+<p>Text string to selectively enable specific <tt>Hacks</tt> in the <tt>DocuImage</tt> implementation (see <a class="externalLink" href="https://github.com/robcast/digilib/blob/master/common/src/main/java/digilib/image/ImageLoaderDocuImage.java">the source</a>)</p>
+
+<div class="source">
+<div class="source">
+<pre>&lt;parameter name=&quot;filemeta-class&quot; value=&quot;digilib.meta.IndexMetaFileMeta&quot; /&gt;
+&lt;parameter name=&quot;dirmeta-class&quot; value=&quot;digilib.meta.IndexMetaDirMeta&quot; /&gt;
+</pre></div></div>
+<p>Classes of the <tt>digilib.meta.FileMeta</tt> and <tt>digilib.meta.DirMeta</tt> implementations. You can change these implementations to change the way digilib finds metadata about image files.</p>
+<p><tt>IndexMetaFileMeta</tt> and <tt>IndexMetaDirMeta</tt> read metadata from <tt>index.meta</tt> and <tt>*.meta</tt> XML files according to the <a class="externalLink" href="http://intern.mpiwg-berlin.mpg.de/digitalhumanities/mpiwg-metadata-documentation/formate/indexmeta-standard">index meta standard</a>.</p>
 
 <div class="source">
 <div class="source">
 <pre>&lt;parameter name=&quot;docudirectory-class&quot; value=&quot;digilib.io.BaseDirDocuDirectory&quot; /&gt;
 </pre></div></div>
-<p>Class for <b>TODO</b>.</p>
-
-<div class="source">
-<div class="source">
-<pre>&lt;parameter name=&quot;docuimage-class&quot; value=&quot;digilib.image.ImageLoaderDocuImage&quot; /&gt;
-</pre></div></div>
-<p>Class for the <tt>DocuImage</tt> instance, <b>TODO</b> elaborate intended use</p>
-
-<div class="source">
-<div class="source">
-<pre>&lt;parameter name=&quot;docuimage-hacks&quot; value=&quot;&quot; /&gt;
-</pre></div></div>
-<p><b>TODO</b> elaborate</p>
-
-<div class="source">
-<div class="source">
-<pre>&lt;parameter name=&quot;filemeta-class&quot; value=&quot;digilib.meta.IndexMetaFileMeta&quot; /&gt;
-</pre></div></div>
-<p>Class for <b>TODO</b>.</p></div></div>
+<p>Class of the <tt>digilib.io.DocuDirectory</tt> implementation. You can change this implementation to change the way digilib finds image files (including different resolutions).</p></div></div>
                   </div>
             </div>
           </div>
--- a/digilib-short.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/digilib-short.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; A short introduction to digilib</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/features.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/features.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; digilib features</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/history.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/history.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Early history of digilib (in German)</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/iiif-api.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/iiif-api.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; The digilib IIIF API</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/image-directories.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/image-directories.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Directory layout for images</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/index.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/index.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; </title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/install-digilib.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/install-digilib.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Installing digilib</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
@@ -211,7 +211,7 @@
 </ul>
 <div class="section">
 <h2><a name="Start_the_Servlet_Container"></a>Start the Servlet Container</h2>
-<p>Install and run the Servlet Container of your choice: <a class="externalLink" href="http://tomcat.apache.org/tomcat-7.0-doc/setup.html">Tomcat</a> or <a class="externalLink" href="http://wiki.eclipse.org/Jetty/Howto/Run_Jetty">Jetty</a>.</p>
+<p>Install and run the Servlet Container of your choice: <a class="externalLink" href="http://tomcat.apache.org/">Tomcat</a> or <a class="externalLink" href="http://wiki.eclipse.org/Jetty/">Jetty</a>.</p>
 <p>When the Servlet Container runs you should be able to access the start page on <a class="externalLink" href="http://localhost:8080/">http://localhost:8080/</a></p></div>
 <div class="section">
 <h2><a name="Deploy_via_WAR_file_or_web_application_directory"></a>Deploy via WAR file or web application directory?</h2>
@@ -222,7 +222,7 @@
 <div class="section">
 <h2><a name="Where_to_get_a_WAR_file_or_web_application_directory"></a>Where to get a WAR file or web application directory?</h2>
 <p>The preferred way is to <a href="build-maven.html">build your own</a> WAR file or web application directory using the digilib sources. In this way you can change the configuration files in the source directory and create a new WAR file or web application directory any time you need. Also you get the chance to always use the latest digilib version by updating the source code. </p>
-<p>You can also download a digilib WAR file with a default configuration from the <a class="externalLink" href="https://sourceforge.net/projects/digilib/files/">SourceForge download page</a> or the latest digilib build from the <a class="externalLink" href="https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/">daily build page</a>. The default configuration will only show a set of sample images. If you want to show your own images you will need to change the <a href="digilib-config.html">digilib configuration</a> to point to your image directories. </p></div>
+<p>You can also download a digilib WAR file with a default configuration from the <a class="externalLink" href="https://github.com/robcast/digilib/releases">GitHub release page</a> or the latest digilib build from the <a class="externalLink" href="https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/">daily build page</a>. The default configuration will only show a set of sample images. If you want to show your own images you will need to change the <a href="digilib-config.html">digilib configuration</a> to point to your image directories. </p></div>
 <div class="section">
 <h2><a name="Install_a_digilib_WAR_file"></a>Install a digilib WAR file</h2>
 
@@ -232,13 +232,13 @@
   
 <li>Rename the WAR file to <tt>digilib.war</tt>.</li>
   
-<li>Deploy the WAR file by copying it into the <tt>webapps</tt> directory of your Servlet Container.</li>
+<li>Deploy the WAR file by copying it into the <tt>webapps</tt> directory of your  Servlet Container.</li>
   
 <li>Restart your Servlet Container (this may not be necessary).</li>
   
 <li>Access your digilib instance at <a class="externalLink" href="http://localhost:8080/digilib/digilib.html">http://localhost:8080/digilib/digilib.html</a>.</li>
 </ol>
-<p>You will now be able to see the sample images provided with the digilib installation in the default configuration yor your own images if you have updated the <a href="digilib-config.html">configuration</a>.</p>
+<p>You will now be able to see the sample images provided with the digilib installation in the default configuration or your own images if you have updated the <a href="digilib-config.html">configuration</a>.</p>
 <p>In digilib you can view images by providing the directory and file name as the <tt>fn</tt> parameter to <tt>digilib.html</tt>, e.g. if your file is called <tt>ruler.jpg</tt> and it is in the base directory you can now access the URL</p>
 <p><a class="externalLink" href="http://localhost:8080/digilib/digilib.html?fn=ruler">http://localhost:8080/digilib/digilib.html?fn=ruler</a></p>
 <p>Read more about the layout of image files and directories <a href="image-directories.html">here</a>.</p></div>
@@ -249,15 +249,15 @@
   
 <li>Get a digilib web application directory.</li>
   
-<li>Rename the WAR file to <tt>digilib.war</tt>.</li>
+<li>Rename the directory to <tt>digilib</tt>.</li>
   
-<li>Deploy the WAR file by copying it into the <tt>webapps</tt> directory of your Servlet Container.</li>
+<li>Deploy the directory by copying it into the <tt>webapps</tt> directory of your  Servlet Container.</li>
   
 <li>Restart your Servlet Container (this may not be necessary).</li>
   
 <li>Access your digilib instance at <a class="externalLink" href="http://localhost:8080/digilib/digilib.html">http://localhost:8080/digilib/digilib.html</a></li>
 </ol>
-<p>You will now be able to see the sample images provided with the digilib installation in the default configuration yor your own images if you have updated the <a href="digilib-config.html">configuration</a>.</p>
+<p>You will now be able to see the sample images provided with the digilib installation in the default configuration or your own images if you have updated the <a href="digilib-config.html">configuration</a>.</p>
 <p>In digilib you can view images by providing the directory and file name as the <tt>fn</tt> parameter to <tt>digilib.html</tt>, e.g. if your file is called <tt>ruler.jpg</tt> and it is in the base directory you can now access the URL</p>
 <p><a class="externalLink" href="http://localhost:8080/digilib/digilib.html?fn=ruler">http://localhost:8080/digilib/digilib.html?fn=ruler</a></p>
 <p>Read more about the layout of image files and directories <a href="image-directories.html">here</a>.</p></div>
@@ -268,9 +268,9 @@
 
 <ol style="list-style-type: decimal">
   
-<li>Make sure that your Servlet Container is not running and remove any <tt>digilib.war</tt> files from the <tt>webapps</tt> directory.</li>
+<li>Make sure that your Servlet Container is not running and remove any  <tt>digilib.war</tt> files from the <tt>webapps</tt> directory.</li>
   
-<li>Copy your <tt>digilib</tt> directory into the <tt>webapps</tt> directory of the Servlet Container.</li>
+<li>Keep the <tt>digilib</tt> directory in the <tt>webapps</tt> directory of the  Servlet Container.</li>
 </ol></div>
                   </div>
             </div>
--- a/issue-tracking.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/issue-tracking.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Issue Tracking</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/java-settings.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/java-settings.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Java VM memory settings for digilib</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/license.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/license.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Project License</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/mail-lists.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/mail-lists.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/plugins.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/plugins.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Digilib Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/project-info.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/project-info.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/scaler-api.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/scaler-api.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; The digilib Scaler API</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/server-setup.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/server-setup.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Server setups for digilib</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/source-repository.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/source-repository.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Source Repository</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>
                       
                 
--- a/team-list.html	Mon Nov 20 20:24:00 2017 +0000
+++ b/team-list.html	Tue Nov 21 19:34:58 2017 +0000
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <!--
- | Generated by Apache Maven Doxia at 2017-11-20
+ | Generated by Apache Maven Doxia at 2017-11-21
  | Rendered using Apache Maven Fluido Skin 1.3.0
 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta charset="UTF-8" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <meta name="Date-Revision-yyyymmdd" content="20171120" />
+    <meta name="Date-Revision-yyyymmdd" content="20171121" />
     <meta http-equiv="Content-Language" content="en" />
     <title>digilib - The Digital Image Library &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.3.0.min.css" />
@@ -41,7 +41,7 @@
         <ul class="breadcrumb">
                 
                     
-                  <li id="publishDate">Last Published: 2017-11-20</li>
+                  <li id="publishDate">Last Published: 2017-11-21</li>
                   <li class="divider">|</li> <li id="projectVersion">Version: 2.5-SNAPSHOT</li>