Repository: pdfbox-docs
Updated Branches:
  refs/heads/asf-site 56fcc09d5 -> 1e7821a52


Site checkin for project Apache PDFBox Website


Project: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/commit/1e7821a5
Tree: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/tree/1e7821a5
Diff: http://git-wip-us.apache.org/repos/asf/pdfbox-docs/diff/1e7821a5

Branch: refs/heads/asf-site
Commit: 1e7821a5281e07d00d9f7b0ff948a12862859bf9
Parents: 56fcc09
Author: Maruan Sahyoun <sahy...@fileaffairs.de>
Authored: Tue Jan 26 21:07:03 2016 +0100
Committer: Maruan Sahyoun <sahy...@fileaffairs.de>
Committed: Tue Jan 26 21:07:03 2016 +0100

----------------------------------------------------------------------
 content/1.8/cookbook/pdfavalidation.html        |   3 +-
 content/2.0/dependencies.html                   |  14 +-
 content/doap_PDFBox.rdf                         |   7 -
 content/download.html                           | 158 +++++++-------
 content/index.html                              |  43 +---
 .../2016/01/15/pdfbox-2.0.0-RC3-released.html   | 207 -------------------
 .../news/2016/01/18/pdfbox-1.8.11-released.html | 200 ------------------
 content/siteupdate.html                         |   3 +
 8 files changed, 97 insertions(+), 538 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/1.8/cookbook/pdfavalidation.html
----------------------------------------------------------------------
diff --git a/content/1.8/cookbook/pdfavalidation.html 
b/content/1.8/cookbook/pdfavalidation.html
index 1d73e29..2f15089 100644
--- a/content/1.8/cookbook/pdfavalidation.html
+++ b/content/1.8/cookbook/pdfavalidation.html
@@ -139,7 +139,8 @@ Check Compliance with PDF/A-1b</p>
 <p>This small sample shows how to check the compliance of a file with the 
PDF/A-1b specification.</p>
 <div class="highlight"><pre><code class="language-java" data-lang="java"><span 
class="n">ValidationResult</span> <span class="n">result</span> <span 
class="o">=</span> <span class="kc">null</span><span class="o">;</span>
 
-<span class="n">PreflightParser</span> <span class="n">parser</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PreflightParser</span><span class="o">(</span><span 
class="n">args</span><span class="o">[</span><span class="mi">0</span><span 
class="o">]);</span>
+<span class="n">FileDataSource</span> <span class="n">fd</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">FileDataSource</span><span class="o">(</span><span 
class="n">args</span><span class="o">[</span><span class="mi">0</span><span 
class="o">]);</span>
+<span class="n">PreflightParser</span> <span class="n">parser</span> <span 
class="o">=</span> <span class="k">new</span> <span 
class="n">PreflightParser</span><span class="o">(</span><span 
class="n">fd</span><span class="o">);</span>
 <span class="k">try</span>
 <span class="o">{</span>
 

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/2.0/dependencies.html
----------------------------------------------------------------------
diff --git a/content/2.0/dependencies.html b/content/2.0/dependencies.html
index aa52190..6d817a2 100644
--- a/content/2.0/dependencies.html
+++ b/content/2.0/dependencies.html
@@ -146,7 +146,7 @@
 or let commons-logging fall back to the standard <a 
href="http://java.sun.com/j2se/1.4.2/docs/guide/util/logging/overview.html";>java.util.logging
 API</a>
 included in the Java platform.</p>
 
-<p>For <strong>PDFBox Preflight tests only</strong> <a 
href="https://commons.apache.org/proper/commons-io/";>commons-io 2.4</a> is 
needed.</p>
+<p>For <strong>PDFBox Preflight only</strong> <a 
href="https://commons.apache.org/proper/commons-io/";>commons-io 2.4</a> is 
needed.</p>
 
 <h2 id="optional-components">Optional components</h2>
 
@@ -169,23 +169,17 @@ included in the Java platform.</p>
 
 <h3 id="encryption-and-signing">Encryption and Signing</h3>
 
-<p>Encrypting and sigining PDFs requires the <em>bcprov</em>, <em>bcmail</em> 
and <em>bcpkix</em> libraries from the <a 
href="http://www.bouncycastle.org/";>Legion of the Bouncy Castle</a>. These can 
be included in your Maven project using the following dependencies:</p>
+<p>Encrypting and sigining PDFs requires the <em>bcprov</em> and 
<em>bcmail</em> libraries from the <a 
href="http://www.bouncycastle.org/";>Legion of the Bouncy Castle</a>. These can 
be included in your Maven project using the following dependencies:</p>
 <div class="highlight"><pre><code class="language-" 
data-lang="">&lt;dependency&gt;
     &lt;groupId&gt;org.bouncycastle&lt;/groupId&gt;
     &lt;artifactId&gt;bcprov-jdk15on&lt;/artifactId&gt;
-    &lt;version&gt;1.54&lt;/version&gt;
+    &lt;version&gt;1.53&lt;/version&gt;
 &lt;/dependency&gt;
 
 &lt;dependency&gt;
     &lt;groupId&gt;org.bouncycastle&lt;/groupId&gt;
     &lt;artifactId&gt;bcmail-jdk15on&lt;/artifactId&gt;
-    &lt;version&gt;1.54&lt;/version&gt;
-&lt;/dependency&gt;
-
-&lt;dependency&gt;
-    &lt;groupId&gt;org.bouncycastle&lt;/groupId&gt;
-    &lt;artifactId&gt;bcpkix-jdk15on&lt;/artifactId&gt;
-    &lt;version&gt;1.54&lt;/version&gt;
+    &lt;version&gt;1.53&lt;/version&gt;
 &lt;/dependency&gt;
 </code></pre></div>
 <h3 id="java-cryptography-extension-jce">Java Cryptography Extension (JCE)</h3>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/doap_PDFBox.rdf
----------------------------------------------------------------------
diff --git a/content/doap_PDFBox.rdf b/content/doap_PDFBox.rdf
index 7c4db89..6e851b2 100644
--- a/content/doap_PDFBox.rdf
+++ b/content/doap_PDFBox.rdf
@@ -37,13 +37,6 @@
     <release>
       <Version>
         <name>Apache PDFBox</name>
-        <created>2016-01-18</created>
-        <revision>1.8.11</revision>
-      </Version>
-    </release>
-    <release>
-      <Version>
-        <name>Apache PDFBox</name>
         <created>2015-07-23</created>
         <revision>1.8.10</revision>
       </Version>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/download.html
----------------------------------------------------------------------
diff --git a/content/download.html b/content/download.html
index 96afa58..bfcb3c9 100644
--- a/content/download.html
+++ b/content/download.html
@@ -136,8 +136,8 @@
 <p>There are several ways to obtain the PDFBox binaries or sources:</p>
 
 <ul>
-    <li><a href="#20x">PDFBox 2.0.0 RC3</a></li>
-    <li><a href="#18x">PDFBox 1.8.11 release</a></li>
+    <li><a href="#20x">PDFBox 2.0.0 RC2</a></li>
+    <li><a href="#18x">PDFBox 1.8.10 release</a></li>
     <li><a href="#oldreleases">Previous releases</a></li>
     <li><a href="#scm">Latest source from version control</a></li>
     <li><a href="#snapshot">Latest development snapshot build</a></li>
@@ -165,132 +165,132 @@ Alternatively, <a 
href="http://www.apache.org/mirrors/";>view the complete list o
 </form>
 
 <a name="20x"></a>
-<h3>PDFBox 2.0.0-RC3</h3>
+<h3>PDFBox 2.0.0-RC2</h3>
 
-<p>This is the third release candidate of the upcoming major release based on 
the current svn trunk.
-    See the <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/RELEASE-NOTES.txt";>Release 
Notes</a> for more details.
+<p>This is the second release candidate of the upcoming major release based on 
the current svn trunk.
+    See the <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/RELEASE-NOTES.txt";>Release 
Notes</a> for more details.
     The <a href="http://pdfbox.apache.org/2.0/migration.html";>Migration 
Guide</a> gives an overview about things to look at when upgrading from earlier 
versions.
 </p>
 
 <ul>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3-src.zip">pdfbox-2.0.0-RC3-src.zip</a>
 14MB, source archive
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3-src.zip.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3-src.zip.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3-src.zip.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2-src.zip">pdfbox-2.0.0-RC2-src.zip</a>
 13.8MB, source archive
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2-src.zip.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2-src.zip.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2-src.zip.sha";>SHA1</a>
     </li>
     <li>
-      <a 
href="[preferred]pdfbox/2.0.0-RC3/pdfbox-app-2.0.0-RC3.jar">pdfbox-app-2.0.0-RC3.jar</a>
 7.9MB, pre-built PDFBox standalone binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-app-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-app-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-app-2.0.0-RC3.jar.sha";>SHA1</a>
+      <a 
href="[preferred]pdfbox/2.0.0-RC2/pdfbox-app-2.0.0-RC2.jar">pdfbox-app-2.0.0-RC2.jar</a>
 7.9MB, pre-built PDFBox standalone binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-app-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-app-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-app-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/preflight-app-2.0.0-RC3.jar">preflight-app-2.0.0-RC3.jar</a>
 8.5MB, pre-built Preflight standalone binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/preflight-app-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/preflight-app-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/preflight-app-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/preflight-app-2.0.0-RC2.jar">preflight-app-2.0.0-RC2.jar</a>
 8.6MB, pre-built Preflight standalone binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/preflight-app-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/preflight-app-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/preflight-app-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/debugger-app-2.0.0-RC3.jar">debugger-app-2.0.0-RC3.jar</a>
 7.9MB, pre-built Debugger standalone binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/debugger-app-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/debugger-app-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/debugger-app-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/debugger-app-2.0.0-RC2.jar">debugger-app-2.0.0-RC2.jar</a>
 7.8MB, pre-built Debugger standalone binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/debugger-app-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/debugger-app-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/debugger-app-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3.jar">pdfbox-2.0.0-RC3.jar</a>
 2.4MB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2.jar">pdfbox-2.0.0-RC2.jar</a>
 2.4MB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/fontbox-2.0.0-RC3.jar">fontbox-2.0.0-RC3.jar</a>
 1.5MB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/fontbox-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/fontbox-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/fontbox-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/fontbox-2.0.0-RC2.jar">fontbox-2.0.0-RC2.jar</a>
 1.5MB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/fontbox-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/fontbox-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/fontbox-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/preflight-2.0.0-RC3.jar">preflight-2.0.0-RC3.jar</a>
 242KB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/preflight-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/preflight-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/preflight-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/preflight-2.0.0-RC2.jar">preflight-2.0.0-RC2.jar</a>
 242KB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/preflight-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/preflight-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/preflight-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/xmpbox-2.0.0-RC3.jar">xmpbox-2.0.0-RC3.jar</a>
 131KB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/xmpbox-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/xmpbox-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/xmpbox-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/xmpbox-2.0.0-RC2.jar">xmpbox-2.0.0-RC2.jar</a>
 131KB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/xmpbox-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/xmpbox-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/xmpbox-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/pdfbox-tools-2.0.0-RC3.jar">pdfbox-tools-2.0.0-RC3.jar</a>
 68KB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-tools-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-tools-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-tools-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/pdfbox-tools-2.0.0-RC2.jar">pdfbox-tools-2.0.0-RC2.jar</a>
 68KB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-tools-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-tools-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-tools-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/2.0.0-RC3/pdfbox-debugger-2.0.0-RC3.jar">pdfbox-debugger-2.0.0-RC3.jar</a>
 218KB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-debugger-2.0.0-RC3.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-debugger-2.0.0-RC3.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC3/pdfbox-debugger-2.0.0-RC3.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/2.0.0-RC2/pdfbox-debugger-2.0.0-RC2.jar">pdfbox-debugger-2.0.0-RC2.jar</a>
 218KB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-debugger-2.0.0-RC2.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-debugger-2.0.0-RC2.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/2.0.0-RC2/pdfbox-debugger-2.0.0-RC2.jar.sha";>SHA1</a>
     </li>
 </ul>
 
 <a name="18x"></a>
-<h3>PDFBox 1.8.11</h3>
+<h3>PDFBox 1.8.10</h3>
 
 <p>
     This is an incremental feature release based on the earlier `1.8.x` 
releases.
-    See the <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/RELEASE-NOTES.txt";>Release 
Notes</a> for more details.
+    See the <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/RELEASE-NOTES.txt";>Release 
Notes</a> for more details.
 </p>
 
 <ul>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/pdfbox-1.8.11-src.zip">pdfbox-1.8.11-src.zip</a> 
11MB, source archive
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-1.8.11-src.zip.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-1.8.11-src.zip.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-1.8.11-src.zip.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/pdfbox-1.8.10-src.zip">pdfbox-1.8.10-src.zip</a> 
10.9MB, source archive
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-1.8.10-src.zip.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-1.8.10-src.zip.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-1.8.10-src.zip.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/pdfbox-app-1.8.11.jar">pdfbox-app-1.8.11.jar</a> 
10.6MB, pre-built PDFBox standalone binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-app-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-app-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-app-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/pdfbox-app-1.8.10.jar">pdfbox-app-1.8.10.jar</a> 
10.6MB, pre-built PDFBox standalone binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-app-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-app-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-app-1.8.10.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/preflight-app-1.8.11.jar">preflight-app-1.8.11.jar</a>
 7.1MB, pre-built Preflight standalone binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/preflight-app-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/preflight-app-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/preflight-app-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/preflight-app-1.8.10.jar">preflight-app-1.8.10.jar</a>
 7.1MB, pre-built Preflight standalone binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/preflight-app-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/preflight-app-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/preflight-app-1.8.10.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/pdfbox-1.8.11.jar">pdfbox-1.8.11.jar</a> 4.1MB, 
pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/pdfbox-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/pdfbox-1.8.10.jar">pdfbox-1.8.10.jar</a> 4.1MB, 
pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/pdfbox-1.8.10.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/fontbox-1.8.11.jar">fontbox-1.8.11.jar</a> 
219KB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/fontbox-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/fontbox-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/fontbox-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/fontbox-1.8.10.jar">fontbox-1.8.10.jar</a> 
219KB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/fontbox-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/fontbox-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/fontbox-1.8.10.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/jempbox-1.8.11.jar">jempbox-1.8.11.jar</a> 51KB, 
pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/jempbox-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/jempbox-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/jempbox-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/jempbox-1.8.10.jar">jempbox-1.8.10.jar</a> 51KB, 
pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/jempbox-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/jempbox-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/jempbox-1.8.10.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/preflight-1.8.11.jar">preflight-1.8.11.jar</a> 
298KB, pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/preflight-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/preflight-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/preflight-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/preflight-1.8.10.jar">preflight-1.8.10.jar</a> 
298KB, pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/preflight-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/preflight-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/preflight-1.8.10.jar.sha";>SHA1</a>
     </li>
     <li>
-        <a 
href="[preferred]pdfbox/1.8.11/xmpbox-1.8.11.jar">xmpbox-1.8.11.jar</a> 115KB, 
pre-built binary
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/xmpbox-1.8.11.jar.asc";>PGP</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/xmpbox-1.8.11.jar.md5";>MD5</a>
-        <a 
href="http://www.apache.org/dist/pdfbox/1.8.11/xmpbox-1.8.11.jar.sha";>SHA1</a>
+        <a 
href="[preferred]pdfbox/1.8.10/xmpbox-1.8.10.jar">xmpbox-1.8.10.jar</a> 115KB, 
pre-built binary
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/xmpbox-1.8.10.jar.asc";>PGP</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/xmpbox-1.8.10.jar.md5";>MD5</a>
+        <a 
href="http://www.apache.org/dist/pdfbox/1.8.10/xmpbox-1.8.10.jar.sha";>SHA1</a>
     </li>
             
 </ul>

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 4749f6b..30d4be0 100644
--- a/content/index.html
+++ b/content/index.html
@@ -140,14 +140,19 @@
     Apache PDFBox also includes several command line utilities.
     Apache PDFBox is published under the Apache License v2.0.</p>
 
-<h2>Apache PDFBox 1.8.11 released</h2>
+<h2>Apache PDFBox 2.0.0 RC2 released</h2>
 
 <p>The Apache PDFBox community is pleased to announce the release of
-Apache PDFBox version 1.8.11. </p>
+Apache PDFBox version 2.0.0 RC2. The release is available for download at:</p>
+
+<p><a 
href="http://pdfbox.apache.org/download.cgi";>http://pdfbox.apache.org/download.cgi</a></p>
 
-<p>The release is available for download at: <a 
href="http://pdfbox.apache.org/download.cgi";>http://pdfbox.apache.org/download.cgi</a></p>
+<p>The numerous feedback on our first release candidate helps us to fix a lot
+of issues. We&#39;d like to thank everybody who helps us to get a step foward.
+Please have a look at the new release candidate as well, so that the next
+release hopefully could be the final one.</p>
 
-<p>See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310760&amp;version=12333061";>full
 release notes</a> for details about this release.</p>
+<p>See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310760&amp;version=12319281";>full
 release notes</a> for details about this release.</p>
 
 <h2 id="getting-help">Getting Help</h2>
 
@@ -200,36 +205,6 @@ skills. Subscribe to the <a 
href="/mailinglists.html">Mailing Lists</a> and find
 
 <h2 id="news">News</h2>
 
-<h3>Apache PDFBox 2.0.0 RC3 released</h3>
-
-<p>The Apache PDFBox community is pleased to announce the release of
-Apache PDFBox version 2.0.0 RC3. The release is available for download at:</p>
-
-<p><a 
href="http://pdfbox.apache.org/download.cgi";>http://pdfbox.apache.org/download.cgi</a></p>
-
-<p>The numerous feedback on our second release candidate helps us to make
-this release candidate better again, e. g. optimized font cache, improved text
-extraction. A lot of bug fixes are included as well.
-We&#39;d like to thank everybody who helps us to get a step foward.
-Please have a look at the new release candidate as well, so that the next
-release hopefully could be the final one.</p>
-
-<p>See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310760&amp;version=12319281";>full
 release notes</a> for details about this release.</p>
-
-<h3>Apache PDFBox 2.0.0 RC2 released</h3>
-
-<p>The Apache PDFBox community is pleased to announce the release of
-Apache PDFBox version 2.0.0 RC2. The release is available for download at:</p>
-
-<p><a 
href="http://pdfbox.apache.org/download.cgi";>http://pdfbox.apache.org/download.cgi</a></p>
-
-<p>The numerous feedback on our first release candidate helps us to fix a lot
-of issues. We&#39;d like to thank everybody who helps us to get a step foward.
-Please have a look at the new release candidate as well, so that the next
-release hopefully could be the final one.</p>
-
-<p>See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310760&amp;version=12319281";>full
 release notes</a> for details about this release.</p>
-
 <h3>Apache PDFBox 2.0.0 RC1 released</h3>
 
 <p>With the initial discussions starting 3 years ago PDFBox 2.0.0 is in the 
works for

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/news/2016/01/15/pdfbox-2.0.0-RC3-released.html
----------------------------------------------------------------------
diff --git a/content/news/2016/01/15/pdfbox-2.0.0-RC3-released.html 
b/content/news/2016/01/15/pdfbox-2.0.0-RC3-released.html
deleted file mode 100644
index 9780d19..0000000
--- a/content/news/2016/01/15/pdfbox-2.0.0-RC3-released.html
+++ /dev/null
@@ -1,207 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<!--
-     
-     Licensed to the Apache Software Foundation (ASF) under one or more
-     contributor license agreements.  See the NOTICE file distributed with
-     this work for additional information regarding copyright ownership.
-     The ASF licenses this file to You under the Apache License, Version 2.0
-     (the "License"); you may not use this file except in compliance with
-     the License.  You may obtain a copy of the License at
-     
-     http://www.apache.org/licenses/LICENSE- 2.0
-     
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
-     -->
-
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <meta name="description" content="The Apache PDFBox™ library is an open 
source Java tool for working with PDF documents. This project allows creation 
of new PDF documents, manipulation of existing documents and the ability to 
extract content from documents. Apache PDFBox also includes several command 
line utilities. Apache PDFBox is published under the Apache License v2.0.
-">
-
-    <title>Apache PDFBox | Apache PDFBox 2.0.0 RC3 released</title>
-
-    <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
-    <link href="/assets/open-iconic/font/css/open-iconic-bootstrap.min.css" 
rel="stylesheet">
-    <link href="/css/pygments-github.css" rel="stylesheet">
-    
-    <link href="/css/site.css" rel="stylesheet">
-    
-    
-    
-     
-    
-    
-
-</head>
-
-<body>
-    <nav class="navbar navbar-default navbar-top">
-      <div class="container">
-        <div class="navbar-header">
-          <a href="/index.html">
-            <img class="logo" src="/images/logo-head.gif">
-          </a>
-          <p class="pull-right visible-xs">
-            <button type="button" class="btn btn-primary btn-sm" 
data-toggle="offcanvas">Menu</button>
-          </p>
-        </div>
-      </div>
-    </nav>
-    
-    <div class="container">
-        
-        <div class="row row-offcanvas row-offcanvas-left">
-            <div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar">
-                
-                <ul class="sidebar">
-                    <li class="sidebar-header">Apache PDFBox</li>
-                    <li><a href="/index.html">Overview</a></li>
-                    <li><a href="/download.cgi">Downloads</a></li>
-                    
-                    <li class="sidebar-header">Community</li>
-                    <li><a href="/support.html">Support</a></li>
-                    <li><a href="/mailinglists.html">Mailing Lists</a></li>
-                    <li><a href="/team.html">Project Team</a></li>
-                    
-                    <li class="sidebar-header">Documentation</li>
-                    <li class="sidebar-node" id="v2-0">
-                        <a href="#">2.0.0 (trunk)</a>
-                        <ul>
-                            <li><a href="/2.0/migration.html">Migration 
Guide</a></li>
-                            <li><a href="/2.0/getting-started.html">Getting 
Started</a></li>
-                            <li><a href="/2.0/examples.html">Examples</a></li>
-                            <li><a 
href="/2.0/dependencies.html">Dependencies</a></li>
-                            <li class="sidebar-node" id="v2-0-cookbook">
-                                <a href="#">Cookbook</a>
-                                <ul>
-                                    <li><a 
href="/2.0/cookbook/encryption.html">Document Encryption</a></li>
-                                </ul>
-                            </li>
-                            <li><a href="/2.0/commandline.html">Command Line 
Tools</a></li>
-                            <li><a href="/docs/2.0.0-SNAPSHOT/javadocs/">API 
Docs</a></li>
-                        </ul>
-                    </li>
-                    <li class="sidebar-node" id="v1-8">
-                        <a href="#">1.8.10</a>
-                        <ul>
-                            <li><a 
href="/1.8/architecture.html">Architecture</a></li>
-                            <li><a 
href="/1.8/dependencies.html">Dependencies</a></li>
-                            <li class="sidebar-node" id="v1-8-cookbook">
-                                <a href="#">Cookbook</a>
-                                <ul>
-                                    <li><a 
href="/1.8/cookbook/documentcreation.html">Document Creation</a></li>
-                                    <li><a 
href="/1.8/cookbook/textextraction.html">Text Extraction</a></li>
-                                    <li><a 
href="/1.8/cookbook/encryption.html">Document Encryption</a></li>
-                                    <li><a 
href="/1.8/cookbook/workingwithfonts.html">Working with Fonts</a></li>
-                                    <li><a 
href="/1.8/cookbook/workingwithmetadata.html">Working with Metadata</a></li>
-                                    <li><a 
href="/1.8/cookbook/workingwithattachments.html">Working with 
Attachments</a></li>
-                                    <li><a 
href="/1.8/cookbook/pdfavalidation.html">PDF/A Validation</a></li>
-                                    <li><a 
href="/1.8/cookbook/pdfacreation.html">Creating a PDF/A document</a></li>
-                                </ul>
-                            </li>
-                            <li><a href="/1.8/commandline.html">Command Line 
Tools</a></li>
-                            <li><a href="/docs/1.8.10/javadocs/">API 
Docs</a></li>
-                            <li><a href="/1.8/faq.html">FAQ</a></li>
-                        </ul>
-                    </li>
-                    
-                    <li class="sidebar-header">Development</li>
-                    <li><a href="/building.html">Building from Source</a></li>
-                    <li><a href="/codingconventions.html">Coding 
Conventions</a></li>
-                    <li><a href="/siteupdate.html">Update the Website</a></li> 
 
-                    <li><a 
href="https://builds.apache.org/view/All/job/PDFBox-trunk/";>Jenkins</a></li>
-                    <li><a href="https://travis-ci.org/apache/pdfbox";>Travis 
CI</a></li>
-                    <li><a 
href="https://analysis.apache.org/dashboard/index/org.apache.pdfbox:pdfbox-reactor";>SonarQube</a></li>
-                    <li><a 
href="https://issues.apache.org/jira/browse/PDFBOX";>JIRA</a></li>
-                    <li><a href="/ideas.html">Ideas</a></li>
-                    <li><a href="/references.html">External Links</a></li>
-
-                    <li class="sidebar-header">Apache Software Foundation</li>
-                    <li><a href="http://www.apache.org/";>Apache Software 
Foundation</a></li>
-                    <li><a 
href="http://www.apache.org/foundation/thanks.html";>ASF Sponsors</a></li>
-                    <li><a 
href="http://www.apache.org/security/";>Security</a></li>
-                </ul>
-            </div>
-            <div class="col-xs-12 col-sm-9">
-                <p>The Apache PDFBox community is pleased to announce the 
release of
-Apache PDFBox version 2.0.0 RC3. The release is available for download at:</p>
-
-<p><a 
href="http://pdfbox.apache.org/download.cgi";>http://pdfbox.apache.org/download.cgi</a></p>
-
-<p>The numerous feedback on our second release candidate helps us to make
-this release candidate better again, e. g. optimized font cache, improved text
-extraction. A lot of bug fixes are included as well.
-We&#39;d like to thank everybody who helps us to get a step foward.
-Please have a look at the new release candidate as well, so that the next
-release hopefully could be the final one.</p>
-
-<p>See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310760&amp;version=12319281";>full
 release notes</a> for details about this release.</p>
-
-            </div>
-        </div>
-    </div>
-
-    <footer class="footer">
-        <div class="container"
-            <div class="row">
-                <div class="span3">
-                    <!-- nothing in here on purpose -->
-                </div>
-                <div class="span9">
-                    <p>Copyright © 2009&ndash;2015 <a 
href="http://www.apache.org/";>The Apache Software Foundation</a>, Licensed 
under the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache License, 
Version 2.0</a>.
-                        <br/>Apache PDFBox, PDFBox, Apache, the Apache feather 
logo and the Apache PDFBox project logos are trademarks of The Apache Software 
Foundation.</p>
-                </div>
-            </div>
-        </div>
-    </footer>
-
-        <!-- Twitter Bootstrap and jQuery after this line. -->
-    <script src="//code.jquery.com/jquery-latest.js"></script>
-    <script src="/bootstrap/js/bootstrap.min.js"></script>
-    <script type="text/javascript">
-        
-        $(document).ready(function () {
-                $('[data-toggle="offcanvas"]').click(function () {
-                $('.row-offcanvas').toggleClass('active')
-            });
-        });
-        
-        $(function() {
-            // collapse tree nodes dynamically to support noscript
-            $('.sidebar-node').addClass('collapsed');
-            
-
-            // toggle expand/collapse
-            $('.sidebar-node > a').click(function(e) {
-                $(this).parent().toggleClass('collapsed');
-                e.preventDefault();
-            });
-
-            // preserve expand/collapse across page navigation
-            var path = document.location.pathname;
-            if (path.indexOf('/2.0') == 0) {
-                $('#v2-0').removeClass('collapsed');
-                if (path.indexOf('/2.0/cookbook') == 0) {
-                    $('#v2-0-cookbook').removeClass('collapsed');
-                }
-            } else {
-                $('#v1-8').removeClass('collapsed');
-                if (path.indexOf('/1.8/cookbook') == 0) {
-                    $('#v1-8-cookbook').removeClass('collapsed');
-                }
-            }
-
-        });
-    </script>
-
-</body>
-
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/news/2016/01/18/pdfbox-1.8.11-released.html
----------------------------------------------------------------------
diff --git a/content/news/2016/01/18/pdfbox-1.8.11-released.html 
b/content/news/2016/01/18/pdfbox-1.8.11-released.html
deleted file mode 100644
index 1afcf5c..0000000
--- a/content/news/2016/01/18/pdfbox-1.8.11-released.html
+++ /dev/null
@@ -1,200 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<!--
-     
-     Licensed to the Apache Software Foundation (ASF) under one or more
-     contributor license agreements.  See the NOTICE file distributed with
-     this work for additional information regarding copyright ownership.
-     The ASF licenses this file to You under the Apache License, Version 2.0
-     (the "License"); you may not use this file except in compliance with
-     the License.  You may obtain a copy of the License at
-     
-     http://www.apache.org/licenses/LICENSE- 2.0
-     
-     Unless required by applicable law or agreed to in writing, software
-     distributed under the License is distributed on an "AS IS" BASIS,
-     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-     See the License for the specific language governing permissions and
-     limitations under the License.
-     -->
-
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <meta name="description" content="The Apache PDFBox™ library is an open 
source Java tool for working with PDF documents. This project allows creation 
of new PDF documents, manipulation of existing documents and the ability to 
extract content from documents. Apache PDFBox also includes several command 
line utilities. Apache PDFBox is published under the Apache License v2.0.
-">
-
-    <title>Apache PDFBox | Apache PDFBox 1.8.11 released</title>
-
-    <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
-    <link href="/assets/open-iconic/font/css/open-iconic-bootstrap.min.css" 
rel="stylesheet">
-    <link href="/css/pygments-github.css" rel="stylesheet">
-    
-    <link href="/css/site.css" rel="stylesheet">
-    
-    
-    
-     
-    
-    
-
-</head>
-
-<body>
-    <nav class="navbar navbar-default navbar-top">
-      <div class="container">
-        <div class="navbar-header">
-          <a href="/index.html">
-            <img class="logo" src="/images/logo-head.gif">
-          </a>
-          <p class="pull-right visible-xs">
-            <button type="button" class="btn btn-primary btn-sm" 
data-toggle="offcanvas">Menu</button>
-          </p>
-        </div>
-      </div>
-    </nav>
-    
-    <div class="container">
-        
-        <div class="row row-offcanvas row-offcanvas-left">
-            <div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar">
-                
-                <ul class="sidebar">
-                    <li class="sidebar-header">Apache PDFBox</li>
-                    <li><a href="/index.html">Overview</a></li>
-                    <li><a href="/download.cgi">Downloads</a></li>
-                    
-                    <li class="sidebar-header">Community</li>
-                    <li><a href="/support.html">Support</a></li>
-                    <li><a href="/mailinglists.html">Mailing Lists</a></li>
-                    <li><a href="/team.html">Project Team</a></li>
-                    
-                    <li class="sidebar-header">Documentation</li>
-                    <li class="sidebar-node" id="v2-0">
-                        <a href="#">2.0.0 (trunk)</a>
-                        <ul>
-                            <li><a href="/2.0/migration.html">Migration 
Guide</a></li>
-                            <li><a href="/2.0/getting-started.html">Getting 
Started</a></li>
-                            <li><a href="/2.0/examples.html">Examples</a></li>
-                            <li><a 
href="/2.0/dependencies.html">Dependencies</a></li>
-                            <li class="sidebar-node" id="v2-0-cookbook">
-                                <a href="#">Cookbook</a>
-                                <ul>
-                                    <li><a 
href="/2.0/cookbook/encryption.html">Document Encryption</a></li>
-                                </ul>
-                            </li>
-                            <li><a href="/2.0/commandline.html">Command Line 
Tools</a></li>
-                            <li><a href="/docs/2.0.0-SNAPSHOT/javadocs/">API 
Docs</a></li>
-                        </ul>
-                    </li>
-                    <li class="sidebar-node" id="v1-8">
-                        <a href="#">1.8.10</a>
-                        <ul>
-                            <li><a 
href="/1.8/architecture.html">Architecture</a></li>
-                            <li><a 
href="/1.8/dependencies.html">Dependencies</a></li>
-                            <li class="sidebar-node" id="v1-8-cookbook">
-                                <a href="#">Cookbook</a>
-                                <ul>
-                                    <li><a 
href="/1.8/cookbook/documentcreation.html">Document Creation</a></li>
-                                    <li><a 
href="/1.8/cookbook/textextraction.html">Text Extraction</a></li>
-                                    <li><a 
href="/1.8/cookbook/encryption.html">Document Encryption</a></li>
-                                    <li><a 
href="/1.8/cookbook/workingwithfonts.html">Working with Fonts</a></li>
-                                    <li><a 
href="/1.8/cookbook/workingwithmetadata.html">Working with Metadata</a></li>
-                                    <li><a 
href="/1.8/cookbook/workingwithattachments.html">Working with 
Attachments</a></li>
-                                    <li><a 
href="/1.8/cookbook/pdfavalidation.html">PDF/A Validation</a></li>
-                                    <li><a 
href="/1.8/cookbook/pdfacreation.html">Creating a PDF/A document</a></li>
-                                </ul>
-                            </li>
-                            <li><a href="/1.8/commandline.html">Command Line 
Tools</a></li>
-                            <li><a href="/docs/1.8.10/javadocs/">API 
Docs</a></li>
-                            <li><a href="/1.8/faq.html">FAQ</a></li>
-                        </ul>
-                    </li>
-                    
-                    <li class="sidebar-header">Development</li>
-                    <li><a href="/building.html">Building from Source</a></li>
-                    <li><a href="/codingconventions.html">Coding 
Conventions</a></li>
-                    <li><a href="/siteupdate.html">Update the Website</a></li> 
 
-                    <li><a 
href="https://builds.apache.org/view/All/job/PDFBox-trunk/";>Jenkins</a></li>
-                    <li><a href="https://travis-ci.org/apache/pdfbox";>Travis 
CI</a></li>
-                    <li><a 
href="https://analysis.apache.org/dashboard/index/org.apache.pdfbox:pdfbox-reactor";>SonarQube</a></li>
-                    <li><a 
href="https://issues.apache.org/jira/browse/PDFBOX";>JIRA</a></li>
-                    <li><a href="/ideas.html">Ideas</a></li>
-                    <li><a href="/references.html">External Links</a></li>
-
-                    <li class="sidebar-header">Apache Software Foundation</li>
-                    <li><a href="http://www.apache.org/";>Apache Software 
Foundation</a></li>
-                    <li><a 
href="http://www.apache.org/foundation/thanks.html";>ASF Sponsors</a></li>
-                    <li><a 
href="http://www.apache.org/security/";>Security</a></li>
-                </ul>
-            </div>
-            <div class="col-xs-12 col-sm-9">
-                <p>The Apache PDFBox community is pleased to announce the 
release of
-Apache PDFBox version 1.8.11. </p>
-
-<p>The release is available for download at: <a 
href="http://pdfbox.apache.org/download.cgi";>http://pdfbox.apache.org/download.cgi</a></p>
-
-<p>See the <a 
href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310760&amp;version=12333061";>full
 release notes</a> for details about this release.</p>
-
-            </div>
-        </div>
-    </div>
-
-    <footer class="footer">
-        <div class="container"
-            <div class="row">
-                <div class="span3">
-                    <!-- nothing in here on purpose -->
-                </div>
-                <div class="span9">
-                    <p>Copyright © 2009&ndash;2015 <a 
href="http://www.apache.org/";>The Apache Software Foundation</a>, Licensed 
under the <a href="http://www.apache.org/licenses/LICENSE-2.0";>Apache License, 
Version 2.0</a>.
-                        <br/>Apache PDFBox, PDFBox, Apache, the Apache feather 
logo and the Apache PDFBox project logos are trademarks of The Apache Software 
Foundation.</p>
-                </div>
-            </div>
-        </div>
-    </footer>
-
-        <!-- Twitter Bootstrap and jQuery after this line. -->
-    <script src="//code.jquery.com/jquery-latest.js"></script>
-    <script src="/bootstrap/js/bootstrap.min.js"></script>
-    <script type="text/javascript">
-        
-        $(document).ready(function () {
-                $('[data-toggle="offcanvas"]').click(function () {
-                $('.row-offcanvas').toggleClass('active')
-            });
-        });
-        
-        $(function() {
-            // collapse tree nodes dynamically to support noscript
-            $('.sidebar-node').addClass('collapsed');
-            
-
-            // toggle expand/collapse
-            $('.sidebar-node > a').click(function(e) {
-                $(this).parent().toggleClass('collapsed');
-                e.preventDefault();
-            });
-
-            // preserve expand/collapse across page navigation
-            var path = document.location.pathname;
-            if (path.indexOf('/2.0') == 0) {
-                $('#v2-0').removeClass('collapsed');
-                if (path.indexOf('/2.0/cookbook') == 0) {
-                    $('#v2-0-cookbook').removeClass('collapsed');
-                }
-            } else {
-                $('#v1-8').removeClass('collapsed');
-                if (path.indexOf('/1.8/cookbook') == 0) {
-                    $('#v1-8-cookbook').removeClass('collapsed');
-                }
-            }
-
-        });
-    </script>
-
-</body>
-
-</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/1e7821a5/content/siteupdate.html
----------------------------------------------------------------------
diff --git a/content/siteupdate.html b/content/siteupdate.html
index 05db7c0..ca730a3 100644
--- a/content/siteupdate.html
+++ b/content/siteupdate.html
@@ -182,6 +182,9 @@
 </code></pre></div>
 <p>This will read the sources and generate the new content in the 
<code>./staging</code> directory.</p>
 
+<p>When you are happy with the new content update the source repository</p>
+<div class="highlight"><pre><code class="language-" data-lang="">git commit -m 
"..."
+</code></pre></div>
 <p>Upload the new content to the production site</p>
 <div class="highlight"><pre><code class="language-" data-lang="">mvn 
scm-publish:publish-scm
 </code></pre></div>

Reply via email to