You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ms...@apache.org on 2016/07/07 15:34:32 UTC

[2/3] pdfbox-docs git commit: Site checkin for project Apache PDFBox Website

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/2.0/cookbook/encryption.html
----------------------------------------------------------------------
diff --git a/content/2.0/cookbook/encryption.html b/content/2.0/cookbook/encryption.html
index f471b8f..8769440 100644
--- a/content/2.0/cookbook/encryption.html
+++ b/content/2.0/cookbook/encryption.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -138,28 +138,28 @@
 
 <p>This small sample shows how to encrypt a file so that it can be viewed, but not printed..</p>
 
-<p>``` java
-PDDocument doc = PDDocument.load(\u201cfilename.pdf\u201d);</p>
-
-<p>// Define the length of the encryption key.
-// Possible values are 40, 128 or 256.
-int keyLength = 256;</p>
-
-<p>AccessPermission ap = new AccessPermission();</p>
+<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">PDDocument</span> <span class="n">doc</span> <span class="o">=</span> <span class="n">PDDocument</span><span class="o">.</span><span class="na">load</span><span class="o">(</span><span class="s">"filename.pdf"</span><span class="o">);</span>
 
-<p>// disable printing, everything else is allowed
-ap.setCanPrint(false);</p>
-
-<p>// owner password (to open the file with all permissions) is \u201c12345\u201d
-// user password (to open the file but with restricted permissions, is empty here) 
-StandardProtectionPolicy spp = new StandardProtectionPolicy(\u201c12345\u201d, \u201c\u201d, ap);
-spp.setEncryptionKeyLength(keyLength);
-spp.setPermissions(ap);
-doc.protect(spp);</p>
-
-<p>doc.save(\u201cfilename-encrypted.pdf\u201d);
-doc.close();
-```</p>
+<span class="c1">// Define the length of the encryption key.</span>
+<span class="c1">// Possible values are 40, 128 or 256.</span>
+<span class="kt">int</span> <span class="n">keyLength</span> <span class="o">=</span> <span class="mi">256</span><span class="o">;</span>
+    
+<span class="n">AccessPermission</span> <span class="n">ap</span> <span class="o">=</span> <span class="k">new</span> <span class="n">AccessPermission</span><span class="o">();</span>
+        
+<span class="c1">// disable printing, everything else is allowed</span>
+<span class="n">ap</span><span class="o">.</span><span class="na">setCanPrint</span><span class="o">(</span><span class="kc">false</span><span class="o">);</span>
+        
+<span class="c1">// owner password (to open the file with all permissions) is "12345"</span>
+<span class="c1">// user password (to open the file but with restricted permissions, is empty here) </span>
+<span class="n">StandardProtectionPolicy</span> <span class="n">spp</span> <span class="o">=</span> <span class="k">new</span> <span class="n">StandardProtectionPolicy</span><span class="o">(</span><span class="s">"12345"</span><span class="o">,</span> <span class="s">""</span><span class="o">,</span> <span class="n">ap</span><span class="o">);</span>
+<span class="n">spp</span><span class="o">.</span><span class="na">setEncryptionKeyLength</span><span class="o">(</span><span class="n">keyLength</span><span class="o">);</span>
+<span class="n">spp</span><span class="o">.</span><span class="na">setPermissions</span><span class="o">(</span><span class="n">ap</span><span class="o">);</span>
+<span class="n">doc</span><span class="o">.</span><span class="na">protect</span><span class="o">(</span><span class="n">spp</span><span class="o">);</span>
+        
+<span class="n">doc</span><span class="o">.</span><span class="na">save</span><span class="o">(</span><span class="s">"filename-encrypted.pdf"</span><span class="o">);</span>
+<span class="n">doc</span><span class="o">.</span><span class="na">close</span><span class="o">();</span>
+</code></pre>
+</div>
 
             </div>
         </div>
@@ -172,7 +172,7 @@ doc.close();
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -183,17 +183,17 @@ doc.close();
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/2.0/dependencies.html
----------------------------------------------------------------------
diff --git a/content/2.0/dependencies.html b/content/2.0/dependencies.html
index c977e7b..23229bb 100644
--- a/content/2.0/dependencies.html
+++ b/content/2.0/dependencies.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -207,7 +207,7 @@ included in the Java platform.</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -218,17 +218,17 @@ included in the Java platform.</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/2.0/examples.html
----------------------------------------------------------------------
diff --git a/content/2.0/examples.html b/content/2.0/examples.html
index 2ac52ee..9032316 100644
--- a/content/2.0/examples.html
+++ b/content/2.0/examples.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -145,7 +145,7 @@
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -156,17 +156,17 @@
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/2.0/getting-started.html
----------------------------------------------------------------------
diff --git a/content/2.0/getting-started.html b/content/2.0/getting-started.html
index 4f30af6..3376c88 100644
--- a/content/2.0/getting-started.html
+++ b/content/2.0/getting-started.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -173,7 +173,7 @@ https://bugs.openjdk.java.net/browse/JDK-8041125</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -184,17 +184,17 @@ https://bugs.openjdk.java.net/browse/JDK-8041125</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/2.0/migration.html
----------------------------------------------------------------------
diff --git a/content/2.0/migration.html b/content/2.0/migration.html
index 5c66aee..2645b33 100644
--- a/content/2.0/migration.html
+++ b/content/2.0/migration.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -379,7 +379,7 @@ To understand this yourself, view any file with PDFDebugger and have a look at t
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -390,17 +390,17 @@ To understand this yourself, view any file with PDFDebugger and have a look at t
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/building.html
----------------------------------------------------------------------
diff --git a/content/building.html b/content/building.html
index 6e077d0..8d82f76 100644
--- a/content/building.html
+++ b/content/building.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -221,7 +221,7 @@ libraries discussed above into the pdfbox/target/dependencies directory. You can
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -232,17 +232,17 @@ libraries discussed above into the pdfbox/target/dependencies directory. You can
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/codingconventions.html
----------------------------------------------------------------------
diff --git a/content/codingconventions.html b/content/codingconventions.html
index f9718b5..e70b7ea 100644
--- a/content/codingconventions.html
+++ b/content/codingconventions.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -325,7 +325,7 @@ you invoke Source -&gt; Organize Imports (Ctrl+Shift+O).</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -336,17 +336,17 @@ you invoke Source -&gt; Organize Imports (Ctrl+Shift+O).</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/css/site.css
----------------------------------------------------------------------
diff --git a/content/css/site.css b/content/css/site.css
index d8281e8..d0e3a9a 100644
--- a/content/css/site.css
+++ b/content/css/site.css
@@ -21,6 +21,11 @@
  *  format used to add content, doesn't allow to classes to the elements
  */
 
+body {
+    font-size: 15px;
+    line-height: 1.5;
+}
+
 body > .container {
   min-width: 750px;
   max-width: none !important;

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/download.html
----------------------------------------------------------------------
diff --git a/content/download.html b/content/download.html
index 9e5b9b9..5024db4 100644
--- a/content/download.html
+++ b/content/download.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -397,7 +397,7 @@ Section 740.13) for both object code and source code.
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -408,17 +408,17 @@ Section 740.13) for both object code and source code.
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/errors/403.html
----------------------------------------------------------------------
diff --git a/content/errors/403.html b/content/errors/403.html
index 45086d4..aff8d18 100644
--- a/content/errors/403.html
+++ b/content/errors/403.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -154,7 +154,7 @@
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -165,17 +165,17 @@
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/errors/404.html
----------------------------------------------------------------------
diff --git a/content/errors/404.html b/content/errors/404.html
index 504d3dc..af67754 100644
--- a/content/errors/404.html
+++ b/content/errors/404.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -154,7 +154,7 @@
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -165,17 +165,17 @@
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/ideas.html
----------------------------------------------------------------------
diff --git a/content/ideas.html b/content/ideas.html
index be512bc..0c1ebae 100644
--- a/content/ideas.html
+++ b/content/ideas.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -228,7 +228,7 @@ level. This could in addition be a good basis for PDF/A and other compliance che
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -239,17 +239,17 @@ level. This could in addition be a good basis for PDF/A and other compliance che
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 2d93452..2042761 100644
--- a/content/index.html
+++ b/content/index.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -130,9 +130,9 @@
                 </ul>
             </div>
             <div class="col-xs-12 col-sm-9">
-                <h1 id="apache-pdfbox---a-java-pdf-library">Apache PDFBox - A Java PDF Library</h1>
+                <h1 id="apache-pdfboxsupregsup---a-java-pdf-library">Apache PDFBox<sup>�</sup> - A Java PDF Library</h1>
 
-<p class="lead">The Apache PDFBox\u2122 library is an open source Java tool for working with
+<p class="lead">The Apache PDFBox<sup>&reg;</sup> 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.
 
@@ -261,7 +261,7 @@ release hopefully could be the final one.</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -272,17 +272,17 @@ release hopefully could be the final one.</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/mailinglists.html
----------------------------------------------------------------------
diff --git a/content/mailinglists.html b/content/mailinglists.html
index 2f9f24c..925b562 100644
--- a/content/mailinglists.html
+++ b/content/mailinglists.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -202,7 +202,7 @@ to the <strong>Commit Mailing List</strong>.</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -213,17 +213,17 @@ to the <strong>Commit Mailing List</strong>.</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/news/2015/10/19/pdfbox-2.0.0-RC1-released.html
----------------------------------------------------------------------
diff --git a/content/news/2015/10/19/pdfbox-2.0.0-RC1-released.html b/content/news/2015/10/19/pdfbox-2.0.0-RC1-released.html
index aadd6ec..cb287e8 100644
--- a/content/news/2015/10/19/pdfbox-2.0.0-RC1-released.html
+++ b/content/news/2015/10/19/pdfbox-2.0.0-RC1-released.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -149,7 +149,7 @@ PDFBox 1.8 or earlier an overview about things to look at when switching over. M
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -160,17 +160,17 @@ PDFBox 1.8 or earlier an overview about things to look at when switching over. M
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/content/news/2015/11/22/pdfbox-2.0.0-RC2-released.html
----------------------------------------------------------------------
diff --git a/content/news/2015/11/22/pdfbox-2.0.0-RC2-released.html b/content/news/2015/11/22/pdfbox-2.0.0-RC2-released.html
index 767fdca..c73c662 100644
--- a/content/news/2015/11/22/pdfbox-2.0.0-RC2-released.html
+++ b/content/news/2015/11/22/pdfbox-2.0.0-RC2-released.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -153,7 +153,7 @@ release hopefully could be the final one.</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -164,17 +164,17 @@ release hopefully could be the final one.</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/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
index d1886a0..29599f4 100644
--- 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
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -155,7 +155,7 @@ release hopefully could be the final one.</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -166,17 +166,17 @@ release hopefully could be the final one.</p>
     <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) {

http://git-wip-us.apache.org/repos/asf/pdfbox-docs/blob/3aa32c87/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
index 11c5fc5..87289e1 100644
--- a/content/news/2016/01/18/pdfbox-1.8.11-released.html
+++ b/content/news/2016/01/18/pdfbox-1.8.11-released.html
@@ -2,16 +2,16 @@
 <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.
@@ -30,13 +30,13 @@
 
     <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet">
     <link href="/css/pygments-github.css" rel="stylesheet">
-    
+
     <link href="/css/site.css" rel="stylesheet">
+
     
+
     
-    
-     
-    
+
     
 
 </head>
@@ -54,22 +54,22 @@
         </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</a>
@@ -111,11 +111,11 @@
                             <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="/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>
@@ -148,7 +148,7 @@ Apache PDFBox version 1.8.11.</p>
                     <!-- 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>.
+                    <p>Copyright � 2009&ndash;2016 <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>
@@ -159,17 +159,17 @@ Apache PDFBox version 1.8.11.</p>
     <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) {