You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by bu...@apache.org on 2015/11/10 09:41:56 UTC

svn commit: r971954 [7/9] - in /websites/staging/mina/trunk/content: ./ asyncweb-project/ ftpserver-project/ mina-project/ mina-project/userguide/ mina-project/userguide/ch1-getting-started/ mina-project/userguide/ch10-executor-filter/ mina-project/use...

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch5-filters/ch5-filters.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch5-filters/ch5-filters.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch5-filters/ch5-filters.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,7 +169,18 @@
     </div>
 
 
-<h1 id="chapter-5-filters">Chapter 5 - Filters</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="chapter-5-filters">Chapter 5 - Filters<a class="headerlink" href="#chapter-5-filters" title="Permanent link">&para;</a></h1>
 <p>IoFilter is one of the MINA core constructs that serves a very important role. It filters all I/O events and requests between IoService and IoHandler. If you have an experience with web application programming, you can safely think that it's a cousin of Servlet filter. Many out-of-the-box filters are provided to accelerate network application development pace by simplifying typical cross-cutting concerns using the out-of-the-box filters such as:</p>
 <ul>
 <li>LoggingFilter logs all events and requests.</li>
@@ -180,9 +202,9 @@
 </li>
 </ul>
 </div>
-<h2 id="filters-already-present">Filters already present</h2>
+<h2 id="filters-already-present">Filters already present<a class="headerlink" href="#filters-already-present" title="Permanent link">&para;</a></h2>
 <p>We have many filters already written. The following table list all the existing filters, with a short description of their usage.</p>
-<table>
+<table class="table">
 <thead>
 <tr>
 <th>Filter</th>
@@ -293,7 +315,7 @@
 </tr>
 </tbody>
 </table>
-<h2 id="overriding-events-selectively">Overriding Events Selectively</h2>
+<h2 id="overriding-events-selectively">Overriding Events Selectively<a class="headerlink" href="#overriding-events-selectively" title="Permanent link">&para;</a></h2>
 <p>You can extend IoAdapter instead of implementing IoFilter directly. Unless overriden, any received events will be forward to the next filter immediately:</p>
 <div class="codehilite"><pre><span class="kd">public</span> <span class="kd">class</span> <span class="nc">MyFilter</span> <span class="kd">extends</span> <span class="n">IoFilterAdapter</span> <span class="o">{</span>
     <span class="nd">@Override</span>
@@ -306,7 +328,7 @@
 </pre></div>
 
 
-<h2 id="transforming-a-write-request">Transforming a Write Request</h2>
+<h2 id="transforming-a-write-request">Transforming a Write Request<a class="headerlink" href="#transforming-a-write-request" title="Permanent link">&para;</a></h2>
 <p>If you are going to transform an incoming write request via IoSession.write(), things can get pretty tricky. For example, let's assume your filter transforms HighLevelMessage to LowLevelMessage when IoSession.write() is invoked with a HighLevelMessage object. You could insert appropriate transformation code to your filter's filterWrite() method and think that's all. However, you have to note that you also need to take care of messageSent event because an IoHandler or any filters next to yours will expect messageSent() method is called with HighLevelMessage as a parameter, because it's irrational for the caller to get notified that LowLevelMessage is sent when the caller actually wrote HighLevelMessage. Consequently, you have to implement both filterWrite() and messageSent() if your filter performs transformation.</p>
 <p>Please also note that you still need to implement similar mechanism even if the types of the input object and the output object are identical (e.g. CompressionFilter) because the caller of IoSession.write() will expect exactly what he wrote in his or her messageSent() handler method.</p>
 <p>Let's assume that you are implementing a filter that transforms a String into a char[]. Your filter's filterWrite() will look like the following:</p>
@@ -353,7 +375,7 @@
 
 
 <p>If you are using MINA 2.0, it will be somewhat different from 1.0 and 1.1. Please refer to <a href="http://mina.apache.org/mina-project/xref/org/apache/mina/filter/compression/CompressionFilter.html">CompressionFilter</a> and <a href="http://mina.apache.org/mina-project/xref/org/apache/mina/filter/reqres/RequestResponseFilter.html">RequestResponseFilter</a> meanwhile.</p>
-<h2 id="be-careful-when-filtering-sessioncreated-event">Be Careful When Filtering sessionCreated Event</h2>
+<h2 id="be-careful-when-filtering-sessioncreated-event">Be Careful When Filtering sessionCreated Event<a class="headerlink" href="#be-careful-when-filtering-sessioncreated-event" title="Permanent link">&para;</a></h2>
 <p>sessionCreated is a special event that must be executed in the I/O processor thread (see Configuring Thread Model). Never forward sessionCreated event to the other thread.</p>
 <div class="codehilite"><pre><span class="kd">public</span> <span class="kt">void</span> <span class="nf">sessionCreated</span><span class="o">(</span><span class="n">NextFilter</span> <span class="n">nextFilter</span><span class="o">,</span> <span class="n">IoSession</span> <span class="n">session</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">Exception</span> <span class="o">{</span>
     <span class="c1">// ...</span>
@@ -370,7 +392,7 @@
 </pre></div>
 
 
-<h2 id="watch-out-the-empty-buffers">Watch out the Empty Buffers!</h2>
+<h2 id="watch-out-the-empty-buffers">Watch out the Empty Buffers!<a class="headerlink" href="#watch-out-the-empty-buffers" title="Permanent link">&para;</a></h2>
 <p>MINA uses an empty buffer as an internal signal at a couple of cases. Empty buffers sometimes become a problem because it's a cause of various exceptions such as IndexOutOfBoundsException. This section explains how to avoid such a unexpected situation.</p>
 <p>ProtocolCodecFilter uses an empty buffer (i.e. buf.hasRemaining() = 0) to mark the end of the message. If your filter is placed before the ProtocolCodecFilter, please make sure your filter forward the empty buffer to the next filter if your filter implementation can throw a unexpected exception if the buffer is empty:</p>
 <div class="codehilite"><pre><span class="kd">public</span> <span class="kt">void</span> <span class="nf">messageSent</span><span class="o">(</span><span class="n">NextFilter</span> <span class="n">nextFilter</span><span class="o">,</span> <span class="n">IoSession</span> <span class="n">session</span><span class="o">,</span> <span class="n">Object</span> <span class="n">message</span><span class="o">)</span> <span class="o">{</span>

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/apr-transport.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/apr-transport.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/apr-transport.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,10 +169,21 @@
     </div>
 
 
-<h1 id="apr-transport">APR Transport</h1>
-<h2 id="introduction">Introduction</h2>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="apr-transport">APR Transport<a class="headerlink" href="#apr-transport" title="Permanent link">&para;</a></h1>
+<h2 id="introduction">Introduction<a class="headerlink" href="#introduction" title="Permanent link">&para;</a></h2>
 <p><a href="http://apr.apache.org/">APR (Apache Portable Runtime)</a> provide superior scalability, performance, and better integration with native server technologies. APR transport is supported by MINA. In this section, we shall touch base upon how to use APR transport with MINA. We shall the Time Server example for this.</p>
-<h2 id="pre-requisite">Pre-requisite</h2>
+<h2 id="pre-requisite">Pre-requisite<a class="headerlink" href="#pre-requisite" title="Permanent link">&para;</a></h2>
 <DIV class="info" markdown="1">
     APR transport depends following components<BR>
     APR library - Download/install appropriate library for the platform from <A href="http://www.apache.org/dist/tomcat/tomcat-connectors/native/" class="external-link" rel="nofollow">http://www.apache.org/dist/tomcat/tomcat-connectors/native/</A><BR>
@@ -169,7 +191,7 @@
     <P>Put the native library in PATH</P>
 </DIV>
 
-<h2 id="using-apr-transport">Using APR Transport</h2>
+<h2 id="using-apr-transport">Using APR Transport<a class="headerlink" href="#using-apr-transport" title="Permanent link">&para;</a></h2>
 <p>Refer <a href="http://mina.apache.org/mina-project/xref/org/apache/mina/example/gettingstarted/timeserver/">Time Server</a> example for complete source</p>
 <p>Lets see how NIO based Time server implementation looks like</p>
 <div class="codehilite"><pre><span class="n">IoAcceptor</span> <span class="n">acceptor</span> <span class="o">=</span> <span class="k">new</span> <span class="n">NioSocketAcceptor</span><span class="o">();</span>

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/ch6-transports.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/ch6-transports.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/ch6-transports.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,7 +169,18 @@
     </div>
 
 
-<h1 id="chapter-6-transports">Chapter 6 - Transports</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="chapter-6-transports">Chapter 6 - Transports<a class="headerlink" href="#chapter-6-transports" title="Permanent link">&para;</a></h1>
 <ul>
 <li><a href="apr-transport.html">APR Transport</a></li>
 <li><a href="serial-transport.html">Serial Transport</a></li>

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/serial-transport.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/serial-transport.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch6-transports/serial-transport.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,12 +169,23 @@
     </div>
 
 
-<h1 id="serial-transport">Serial Transport</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="serial-transport">Serial Transport<a class="headerlink" href="#serial-transport" title="Permanent link">&para;</a></h1>
 <p>With the MINA 2.0 you are able to connect to serial port like you use to connect to a TCP/IP port with MINA.</p>
-<h2 id="getting-mina-20">Getting MINA 2.0</h2>
+<h2 id="getting-mina-20">Getting MINA 2.0<a class="headerlink" href="#getting-mina-20" title="Permanent link">&para;</a></h2>
 <p>You you can download the latest built version (2.0.2).</p>
 <p>If you prefer to build the code from the trunk, and need assistance to do so, please consult the Developer Guide.</p>
-<h2 id="prerequisite">Prerequisite</h2>
+<h2 id="prerequisite">Prerequisite<a class="headerlink" href="#prerequisite" title="Permanent link">&para;</a></h2>
 <DIV class="info" markdown="1">
     <B>Useful Information</B><BR>
     Before accessing serial port from a Java program you need a native library (.DLL or .so depending of your OS). MINA use the one from RXTX.org : <A href="ftp://ftp.qbang.org/pub/rxtx/rxtx-2.1-7-bins-r2.zip" class="external-link" rel="nofollow">ftp://ftp.qbang.org/pub/rxtx/rxtx-2.1-7-bins-r2.zip</A>. <BR>
@@ -175,7 +197,7 @@
     The <B>mina-transport-serial</B> jar is not included in the full distribution. You can download it from <A href="http://repo1.maven.org/maven2/org/apache/mina/mina-transport-serial/2.0.2/" class="external-link" rel="nofollow">here</A>
 </DIV>
 
-<h2 id="connecting-to-a-serial-port">Connecting to a serial port</h2>
+<h2 id="connecting-to-a-serial-port">Connecting to a serial port<a class="headerlink" href="#connecting-to-a-serial-port" title="Permanent link">&para;</a></h2>
 <p>Serial communication for MINA provide only an IoConnector, due to the point-to-point nature of the communication media.</p>
 <p>At this point you are supposed to have already read the MINA tutorial.</p>
 <p>Now for connecting to a serial port you need a SerialConnector :</p>

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch7-handler/ch7-handler.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch7-handler/ch7-handler.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch7-handler/ch7-handler.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,7 +169,18 @@
     </div>
 
 
-<h1 id="chapter-7-handler">Chapter 7 - Handler</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="chapter-7-handler">Chapter 7 - Handler<a class="headerlink" href="#chapter-7-handler" title="Permanent link">&para;</a></h1>
 <p>Handles all I/O events fired by MINA. The interface is hub of all activities done at the end of the Filter Chain.</p>
 <p>IoHandler has following functions</p>
 <ul>
@@ -170,20 +192,20 @@
 <li>messageReceived</li>
 <li>messageSent</li>
 </ul>
-<h2 id="sessioncreated-event">sessionCreated Event</h2>
+<h2 id="sessioncreated-event">sessionCreated Event<a class="headerlink" href="#sessioncreated-event" title="Permanent link">&para;</a></h2>
 <p>Session Created event is fired when a new connection is created. For TCP its the result of connection accept, and for UDP this is generated when a UDP packet is received. This function can be used to initialize session attributes, and perform one time activities for a particular connection.</p>
 <p>This function is invoked from the I/O processor thread context, hence should be implemented in a way that it consumes minimal amount of time, as the same thread handles multiple sessions.</p>
-<h2 id="sessionopened-event">sessionOpened Event</h2>
+<h2 id="sessionopened-event">sessionOpened Event<a class="headerlink" href="#sessionopened-event" title="Permanent link">&para;</a></h2>
 <p>Session opened event is invoked when a connection is opened. Its is always called after sessionCreated event. If a thread model is configured, this function is called in a thread other than the I/O processor thread.</p>
-<h2 id="sessionclosed-event">sessionClosed Event</h2>
+<h2 id="sessionclosed-event">sessionClosed Event<a class="headerlink" href="#sessionclosed-event" title="Permanent link">&para;</a></h2>
 <p>Session Closed event is closed, when a session is closed. Session cleaning activities like cash cleanup can be performed here.</p>
-<h2 id="sessionidle-event">sessionIdle Event</h2>
+<h2 id="sessionidle-event">sessionIdle Event<a class="headerlink" href="#sessionidle-event" title="Permanent link">&para;</a></h2>
 <p>Session Idle event is fired when a session becomes idle. This function is not invoked for UDP transport.</p>
-<h2 id="exceptioncaught-event">exceptionCaught Event</h2>
+<h2 id="exceptioncaught-event">exceptionCaught Event<a class="headerlink" href="#exceptioncaught-event" title="Permanent link">&para;</a></h2>
 <p>This functions is called, when an Exception is thrown by user code or by MINA. The connection is closed, if its an IOException.</p>
-<h2 id="messagereceived-event">messageReceived Event</h2>
+<h2 id="messagereceived-event">messageReceived Event<a class="headerlink" href="#messagereceived-event" title="Permanent link">&para;</a></h2>
 <p>Message Received event is fired whenever a message is received. This is where the most of the processing of an application happens. You need to take care of all the message type you expect here.</p>
-<h2 id="messagesent-event">messageSent Event</h2>
+<h2 id="messagesent-event">messageSent Event<a class="headerlink" href="#messagesent-event" title="Permanent link">&para;</a></h2>
 <p>Message Sent event is fired, whenever a message aka response has been sent(calling IoSession.write()).</p>
 
 

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch8-iobuffer/ch8-iobuffer.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch8-iobuffer/ch8-iobuffer.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch8-iobuffer/ch8-iobuffer.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,7 +169,18 @@
     </div>
 
 
-<h1 id="chapter-8-iobuffer">Chapter 8 - IoBuffer</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="chapter-8-iobuffer">Chapter 8 - IoBuffer<a class="headerlink" href="#chapter-8-iobuffer" title="Permanent link">&para;</a></h1>
 <p>A byte buffer used by MINA applications.</p>
 <p>This is a replacement for <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/nio/ByteBuffer.html">ByteBuffer</a>. MINA does not use NIO ByteBuffer directly for two reasons:</p>
 <ul>
@@ -173,8 +195,8 @@
     <P>Last, not least, the current implementation defeat one of the target : zero-copy strategy (ie, once we have read the data from the socket, we want to avoid a copy being done later). As we use extensible byte buffers, we will most certainly copy those data if we have to manage big messages. Assuming that the MINA ByteBuffer is just a wrapper on top of NIO ByteBuffer, this can be a real problem when using direct buffers.</P>
 </DIV>
 
-<h2 id="iobuffer-operations">IoBuffer Operations</h2>
-<h3 id="allocating-a-new-buffer">Allocating a new Buffer</h3>
+<h2 id="iobuffer-operations">IoBuffer Operations<a class="headerlink" href="#iobuffer-operations" title="Permanent link">&para;</a></h2>
+<h3 id="allocating-a-new-buffer">Allocating a new Buffer<a class="headerlink" href="#allocating-a-new-buffer" title="Permanent link">&para;</a></h3>
 <p>IoBuffer is an abstract class, hence can't be instantiated directly. To allocate IoBuffer, we need to use one of the two allocate() methods.</p>
 <div class="codehilite"><pre><span class="c1">// Allocates a new buffer with a specific size, defining its type (direct or heap)</span>
 <span class="kd">public</span> <span class="kd">static</span> <span class="n">IoBuffer</span> <span class="nf">allocate</span><span class="o">(</span><span class="kt">int</span> <span class="n">capacity</span><span class="o">,</span> <span class="kt">boolean</span> <span class="n">direct</span><span class="o">)</span>
@@ -199,7 +221,7 @@
 
 
 <p>When using the second form, don't forget to set the default buffer type before, otherwise you will get Heap buffers by default.</p>
-<h2 id="creating-auto-expanding-buffer">Creating Auto Expanding Buffer</h2>
+<h2 id="creating-auto-expanding-buffer">Creating Auto Expanding Buffer<a class="headerlink" href="#creating-auto-expanding-buffer" title="Permanent link">&para;</a></h2>
 <p>Creating auto expanding buffer is not very easy with java NIO API's, because of the fixed size of the buffers. Having a buffer, that can auto expand on needs is a big plus for networking applications. To address this, IoBuffer has introduced the autoExpand property. It automatically expands its capacity and limit value.</p>
 <p>Lets see how to create an auto expanding buffer :</p>
 <div class="codehilite"><pre><span class="n">IoBuffer</span> <span class="n">buffer</span> <span class="o">=</span> <span class="n">IoBuffer</span><span class="o">.</span><span class="na">allocate</span><span class="o">(</span><span class="mi">8</span><span class="o">);</span>
@@ -215,7 +237,7 @@
     This mechanism is very likely to be removed from MINA 3.0, as it's not really the best way to handle increased buffer size. It should be replaced by something like a InputStream hiding a list or an array of fixed sized ByteBuffers.
 </DIV>
 
-<h2 id="creating-auto-shrinking-buffer">Creating Auto Shrinking Buffer</h2>
+<h2 id="creating-auto-shrinking-buffer">Creating Auto Shrinking Buffer<a class="headerlink" href="#creating-auto-shrinking-buffer" title="Permanent link">&para;</a></h2>
 <p>There are situations which calls for releasing additionally allocated bytes from the buffer, to preserve memory. IoBuffer provides autoShrink property to address the need.  If autoShrink is turned on, IoBuffer halves the capacity of the buffer when compact() is invoked and only 1/4 or less of the current capacity is being used. To manually shrink the buffer, use shrink() method.</p>
 <p>Lets see this in action :</p>
 <div class="codehilite"><pre><span class="n">IoBuffer</span> <span class="n">buffer</span> <span class="o">=</span> <span class="n">IoBuffer</span><span class="o">.</span><span class="na">allocate</span><span class="o">(</span><span class="mi">16</span><span class="o">);</span>
@@ -251,7 +273,7 @@
     Again, this mechanism should be a default one, without needing to explicitely tells the buffer that it can shrink.
 </DIV>
 
-<h2 id="buffer-allocation">Buffer Allocation</h2>
+<h2 id="buffer-allocation">Buffer Allocation<a class="headerlink" href="#buffer-allocation" title="Permanent link">&para;</a></h2>
 <p>IoBufferAllocater is responsible for allocating and managing buffers. To have precise control on the buffer allocation policy, implement the IoBufferAllocater interface.</p>
 <p>MINA ships with following implementations of IoBufferAllocater</p>
 <ul>

Modified: websites/staging/mina/trunk/content/mina-project/userguide/ch9-codec-filter/ch9-codec-filter.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/ch9-codec-filter/ch9-codec-filter.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/ch9-codec-filter/ch9-codec-filter.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -158,9 +169,20 @@
     </div>
 
 
-<h1 id="chapter-9-codec-filter">Chapter 9 - Codec Filter</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="chapter-9-codec-filter">Chapter 9 - Codec Filter<a class="headerlink" href="#chapter-9-codec-filter" title="Permanent link">&para;</a></h1>
 <p>This tutorial tries to explain why and how to use a ProtocolCodecFilter.</p>
-<h2 id="why-use-a-protocolcodecfilter">Why use a ProtocolCodecFilter?</h2>
+<h2 id="why-use-a-protocolcodecfilter">Why use a ProtocolCodecFilter?<a class="headerlink" href="#why-use-a-protocolcodecfilter" title="Permanent link">&para;</a></h2>
 <ul>
 <li>TCP guarantess delivery of all packets in the correct order.
 But there is no guarantee that one write operation on the sender-side will result in one read event on the receiving side.
@@ -170,7 +192,7 @@ In MINA terminology: without a ProtocolC
 <li>You could implement all this logic in your IoHandler, but adding a ProtocolCodecFilter will make your code much cleaner and easier to maintain.</li>
 <li>It allows you to separate your protocol logic from your business logic (IoHandler).</li>
 </ul>
-<h2 id="how">How ?</h2>
+<h2 id="how">How ?<a class="headerlink" href="#how" title="Permanent link">&para;</a></h2>
 <p>Your application is basically just receiving a bunch of bytes and you need to convert these bytes into messages (higher level objects).</p>
 <p>There are three common techniques for splitting the stream of bytes into messages:</p>
 <ul>
@@ -179,10 +201,10 @@ In MINA terminology: without a ProtocolC
 <li>using a delimiter; for example many text-based protocols append a newline (or CR LF pair) after every message (<a href="http://www.faqs.org/rfcs/rfc977.html">http://www.faqs.org/rfcs/rfc977.html</a>)</li>
 </ul>
 <p>In this tutorial we will use the first and second method since they are definitely easier to implement. Afterwards we will look at using a delimiter.</p>
-<h2 id="example">Example</h2>
+<h2 id="example">Example<a class="headerlink" href="#example" title="Permanent link">&para;</a></h2>
 <p>We will develop a (pretty useless) graphical chargen server to illustrate how to implement your own protocol codec (ProtocolEncoder, ProtocolDecoder, and ProtocolCodecFactory).
 The protocol is really simple. This is the layout of a request message:</p>
-<table>
+<table class="table">
 <thead>
 <tr>
 <th>4 bytes</th>
@@ -205,7 +227,7 @@ The protocol is really simple. This is t
 </ul>
 <p>The server responds with two images of the requested dimensions, with the requested number of characters painted on it.
 This is the layout of a response message:</p>
-<table>
+<table class="table">
 <thead>
 <tr>
 <th>4 bytes</th>
@@ -586,7 +608,7 @@ see <a href="http://www.nabble.com/Tutor
 
 
 <p><img alt="" src="../../../staticresources/images/mina/codec-filter.jpeg" /></p>
-<h2 id="conclusion">Conclusion</h2>
+<h2 id="conclusion">Conclusion<a class="headerlink" href="#conclusion" title="Permanent link">&para;</a></h2>
 <p>There is a lot more to tell about encoding and decoding. But I hope this tutorial already gets you started.
 I will try to add something about the DemuxingProtocolCodecFactory in the near future.
 And then we will also have a look at how to use a delimiter instead of a length prefix.</p>

Modified: websites/staging/mina/trunk/content/mina-project/userguide/user-guide-toc.html
==============================================================================
--- websites/staging/mina/trunk/content/mina-project/userguide/user-guide-toc.html (original)
+++ websites/staging/mina/trunk/content/mina-project/userguide/user-guide-toc.html Tue Nov 10 08:41:53 2015
@@ -74,7 +74,18 @@
           
           
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 
     <h5>Latest Downloads</h5>
     <ul>
@@ -139,7 +150,18 @@
 
 
 
-<h2 id="mina-20-user-guide">MINA 2.0 User Guide</h2>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h2 id="mina-20-user-guide">MINA 2.0 User Guide<a class="headerlink" href="#mina-20-user-guide" title="Permanent link">&para;</a></h2>
 <p>Part I - Basics</p>
 <ul>
 <li><a href="ch1-getting-started/ch1-getting-started.html">Chapter 1 - Getting Started</a></li>

Modified: websites/staging/mina/trunk/content/privacy-policy.html
==============================================================================
--- websites/staging/mina/trunk/content/privacy-policy.html (original)
+++ websites/staging/mina/trunk/content/privacy-policy.html Tue Nov 10 08:41:53 2015
@@ -82,7 +82,7 @@
     <ul>
         <li><a href="./downloads-mina.html">Mina 2.0.9</a></li>
         <li><a href="./downloads-ftpserver.html">FtpServer 1.0.6</a></li>
-        <li><a href="./downloads-sshd.html">SSHD 0.14.0</a></li>
+        <li><a href="./downloads-sshd.html">SSHD 1.0.0</a></li>
         <li><a href="./downloads-vysper.html">Vysper 0.7</a></li>
     </ul>
     <h5>Projects</h5>
@@ -119,7 +119,18 @@
 
 
 
-<h1 id="privacy-policy">Privacy Policy</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="privacy-policy">Privacy Policy<a class="headerlink" href="#privacy-policy" title="Permanent link">&para;</a></h1>
 <p>Information about your use of this website is collected using server access logs and a tracking cookie. The collected information consists of the following:</p>
 <ul>
 <li>The IP address from which you access the website;</li>

Modified: websites/staging/mina/trunk/content/special-thanks.html
==============================================================================
--- websites/staging/mina/trunk/content/special-thanks.html (original)
+++ websites/staging/mina/trunk/content/special-thanks.html Tue Nov 10 08:41:53 2015
@@ -82,7 +82,7 @@
     <ul>
         <li><a href="./downloads-mina.html">Mina 2.0.9</a></li>
         <li><a href="./downloads-ftpserver.html">FtpServer 1.0.6</a></li>
-        <li><a href="./downloads-sshd.html">SSHD 0.14.0</a></li>
+        <li><a href="./downloads-sshd.html">SSHD 1.0.0</a></li>
         <li><a href="./downloads-vysper.html">Vysper 0.7</a></li>
     </ul>
     <h5>Projects</h5>
@@ -119,8 +119,19 @@
 
 
 
-<h1 id="special-thanks">Special Thanks</h1>
-<h2 id="general-apache-sponsors">General Apache sponsors</h2>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="special-thanks">Special Thanks<a class="headerlink" href="#special-thanks" title="Permanent link">&para;</a></h1>
+<h2 id="general-apache-sponsors">General Apache sponsors<a class="headerlink" href="#general-apache-sponsors" title="Permanent link">&para;</a></h2>
 <p>Without those sponsors, the ASF would simply not exist or sustain its activities :</p>
 <ul>
 <li><a href="http://www.apache.org/foundation/thanks.html">http://www.apache.org/foundation/thanks.html</a></li>
@@ -130,9 +141,9 @@
 <li><a href="http://www.apache.org/foundation/sponsorship.html">http://www.apache.org/foundation/sponsorship.html</a></li>
 </ul>
 <p>Thanks !</p>
-<h2 id="organizations-who-helped-our-project">Organizations who helped our project ...</h2>
+<h2 id="organizations-who-helped-our-project">Organizations who helped our project ...<a class="headerlink" href="#organizations-who-helped-our-project" title="Permanent link">&para;</a></h2>
 <p>We would also like to thank the oganizations who provided some tools and images for free :</p>
-<table>
+<table class="table">
 <thead>
 <tr>
 <th>Company/Organization</th>

Modified: websites/staging/mina/trunk/content/sshd-project/building.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/building.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/building.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,14 +120,23 @@
       <div id="rightColumn">
 
 
-<h1 id="building-sshd">Building SSHD</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="building-sshd">Building SSHD<a class="headerlink" href="#building-sshd" title="Permanent link">&para;</a></h1>
 <p>SSHD uses <a href="http://maven.apache.org/">Maven</a> as its build tool. If you don't fancy using Maven you can use your IDE directly or Download a distribution or JAR.</p>
 <ul>
 <li>Download and <a href="http://maven.apache.org/download.html#Installation">install Maven</a>.</li>
 <li>Get the latest code from <a href="sources.html">SVN</a></li>
-<li>
-<p>Build the code with the following command</p>
-<div class="codehilite"><pre><span class="n">mvn</span> <span class="n">clean</span> <span class="n">install</span>
+<li>Build the code with the following command<div class="codehilite"><pre><span class="n">mvn</span> <span class="n">clean</span> <span class="n">install</span>
 </pre></div>
 
 

Modified: websites/staging/mina/trunk/content/sshd-project/configuring_security.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/configuring_security.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/configuring_security.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,7 +120,18 @@
       <div id="rightColumn">
 
 
-<h2 id="configuring-security">Configuring Security</h2>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h2 id="configuring-security">Configuring Security<a class="headerlink" href="#configuring-security" title="Permanent link">&para;</a></h2>
 <p>The SSHD server needs to be integrated and the security layer has to be customized to suit your needs.
 This layer is pluggable and use the following interfaces:</p>
 <ul>
@@ -124,7 +146,7 @@ This layer is pluggable and use the foll
 
 
 <p>If only one of those class is implemented, only the related authentication mechanism will be enabled.</p>
-<h2 id="jaas-integration">JAAS integration</h2>
+<h2 id="jaas-integration">JAAS integration<a class="headerlink" href="#jaas-integration" title="Permanent link">&para;</a></h2>
 <p>SSHD provides a password based authentication that delegates to JAAS.
 This can be configured in the following way:</p>
 <div class="codehilite"><pre><span class="n">SshServer</span> <span class="n">sshd</span> <span class="o">=</span> <span class="n">SshServer</span><span class="o">.</span><span class="na">setUpDefaultServer</span><span class="o">();</span>

Modified: websites/staging/mina/trunk/content/sshd-project/contributors.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/contributors.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/contributors.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,14 +120,25 @@
       <div id="rightColumn">
 
 
-<h1 id="commiters">Commiters</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="commiters">Commiters<a class="headerlink" href="#commiters" title="Permanent link">&para;</a></h1>
 <p>The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.</p>
 <ul>
 <li>Emmanuel L&eacute;charny</li>
 <li>Guillaume Nodet</li>
 <li>Shawn Pearce </li>
 </ul>
-<h1 id="contributors">Contributors</h1>
+<h1 id="contributors">Contributors<a class="headerlink" href="#contributors" title="Permanent link">&para;</a></h1>
 <p>The following additional people have contributed to this project through the way of suggestions, patches or documentation.</p>
 <ul>
 <li>Leo Bayer</li>

Modified: websites/staging/mina/trunk/content/sshd-project/documentation.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/documentation.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/documentation.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,12 +120,23 @@
       <div id="rightColumn">
 
 
-<h1 id="apache-sshd-documentation">Apache SSHD documentation</h1>
-<h2 id="resources">Resources</h2>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="apache-sshd-documentation">Apache SSHD documentation<a class="headerlink" href="#apache-sshd-documentation" title="Permanent link">&para;</a></h1>
+<h2 id="resources">Resources<a class="headerlink" href="#resources" title="Permanent link">&para;</a></h2>
 <ul>
 <li><a href="apidocs/index.html">API JavaDocs</a></li>
 </ul>
-<h2 id="tutorials">Tutorials</h2>
+<h2 id="tutorials">Tutorials<a class="headerlink" href="#tutorials" title="Permanent link">&para;</a></h2>
 <ul>
 <li><a href="configuring_security.html">Configuring security</a></li>
 <li><a href="embedding_ssh.html">Embedding SSHD in 5 minutes</a></li>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.1.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.1.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.1.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.1.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.1.0/sshd-0.1.0-project.tar.gz">Apache Mina SSHD 0.1.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.1.0/sshd-0.1.0-project.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.1.0/sshd-0.1.0-project.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.1.0/sshd-0.1.0-project.tar.gz.md5">MD5</a></li>
@@ -124,7 +146,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>While the SSHD server side is maturing, the client side will certainly see some major changes in the future, so that the APIs are not considered stable yet.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.10.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.10.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.10.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.10.0 contains a number of <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849&amp;version=12324784">enhancements and bug-fixes</a>.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.10.0/apache-sshd-0.10.0-src.tar.gz">Apache Mina SSHD 0.10.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.10.0/apache-sshd-0.10.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.10.0/apache-sshd-0.10.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.10.0/apache-sshd-0.10.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.10.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.10.1.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.10.1.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.10.1.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.10.1 contains 2 minor <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849&amp;version=12326289">packaging fixes</a>.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.10.1/apache-sshd-0.10.1-src.tar.gz">Apache Mina SSHD 0.10.1 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.10.1/apache-sshd-0.10.1-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.10.1/apache-sshd-0.10.1-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.10.1/apache-sshd-0.10.1-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.10.1 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.12.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.12.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.12.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.12.0 contains a number of <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849&amp;version=12326775">enhancements and bug-fixes</a>.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.12.0/apache-sshd-0.12.0-src.tar.gz">Apache Mina SSHD 0.12.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.12.0/apache-sshd-0.12.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.12.0/apache-sshd-0.12.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.12.0/apache-sshd-0.12.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.12.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.2.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.2.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.2.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.2.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.2.0/sshd-0.2.0-project.tar.gz">Apache Mina SSHD 0.2.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.2.0/sshd-0.2.0-project.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.2.0/sshd-0.2.0-project.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.2.0/sshd-0.2.0-project.tar.gz.md5">MD5</a></li>
@@ -124,7 +146,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.2.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 <ul>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.3.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.3.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.3.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.3.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.3.0/apache-sshd-0.3.0-src.tar.gz">Apache Mina SSHD 0.3.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.3.0/apache-sshd-0.3.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.3.0/apache-sshd-0.3.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.3.0/apache-sshd-0.3.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.3.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 <ul>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.4.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.4.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.4.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.4.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.4.0/apache-sshd-0.4.0-src.tar.gz">Apache Mina SSHD 0.4.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.4.0/apache-sshd-0.4.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.4.0/apache-sshd-0.4.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.4.0/apache-sshd-0.4.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.4.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 <ul>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.5.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.5.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.5.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.5.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.5.0/apache-sshd-0.5.0-src.tar.gz">Apache Mina SSHD 0.5.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.5.0/apache-sshd-0.5.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.5.0/apache-sshd-0.5.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.5.0/apache-sshd-0.5.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.5.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 <ul>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.6.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.6.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.6.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.6.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.6.0/apache-sshd-0.6.0-src.tar.gz">Apache Mina SSHD 0.6.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.6.0/apache-sshd-0.6.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.6.0/apache-sshd-0.6.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.6.0/apache-sshd-0.6.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.6.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 <ul>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.7.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.7.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.7.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.7.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.7.0/apache-sshd-0.7.0-src.tar.gz">Apache Mina SSHD 0.7.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.7.0/apache-sshd-0.7.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.7.0/apache-sshd-0.7.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.7.0/apache-sshd-0.7.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.7.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 <ul>

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.8.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.8.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.8.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.8.0 contains a few enhancements and bug-fixes.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.8.0/apache-sshd-0.8.0-src.tar.gz">Apache Mina SSHD 0.8.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.8.0/apache-sshd-0.8.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.8.0/apache-sshd-0.8.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.8.0/apache-sshd-0.8.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.8.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>
 

Modified: websites/staging/mina/trunk/content/sshd-project/download_0.9.0.html
==============================================================================
--- websites/staging/mina/trunk/content/sshd-project/download_0.9.0.html (original)
+++ websites/staging/mina/trunk/content/sshd-project/download_0.9.0.html Tue Nov 10 08:41:53 2015
@@ -71,7 +71,18 @@
         <div id="leftColumn">
                               
           
-            <div id="navigation">
+            <style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<div id="navigation">
 <h5>Overview</h5>
   <ul>
     <li><a href="./../sshd-project/index.html">Home</a> </li>
@@ -109,9 +120,20 @@
       <div id="rightColumn">
 
 
-<h1 id="overview">Overview</h1>
+<style type="text/css">
+/* The following code is added by mdx_elementid.py
+   It was originally lifted from http://subversion.apache.org/style/site.css */
+/*
+ * Hide class="elementid-permalink", except when an enclosing heading
+ * has the :hover property.
+ */
+.headerlink, .elementid-permalink {
+  visibility: hidden;
+}
+h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
+<h1 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.9.0 contains a few <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310849&amp;version=12323301">enhancements and bug-fixes</a>.</p>
-<h1 id="getting-the-distributions">Getting the Distributions</h1>
+<h1 id="getting-the-distributions">Getting the Distributions<a class="headerlink" href="#getting-the-distributions" title="Permanent link">&para;</a></h1>
 <ul>
 <li>Source distributions:<ul>
 <li><a href="http://archive.apache.org/dist/mina/sshd/0.9.0/apache-sshd-0.9.0-src.tar.gz">Apache Mina SSHD 0.9.0 Sources (.tar.gz)</a> <a href="http://archive.apache.org/dist/mina/sshd/0.9.0/apache-sshd-0.9.0-src.tar.gz.asc">PGP</a> <a href="http://archive.apache.org/dist/mina/sshd/0.9.0/apache-sshd-0.9.0-src.tar.gz.sha1">SHA</a> <a href="http://archive.apache.org/dist/mina/sshd/0.9.0/apache-sshd-0.9.0-src.tar.gz.md5">MD5</a></li>
@@ -128,7 +150,7 @@
 </ul>
 </li>
 </ul>
-<h1 id="release-notes">Release Notes</h1>
+<h1 id="release-notes">Release Notes<a class="headerlink" href="#release-notes" title="Permanent link">&para;</a></h1>
 <p>Apache Mina SSHD 0.9.0 contains a few enhancements and bug-fixes.
 Please report any feedback to <a href="mailto:users@mina.apache.org">users@mina.apache.org</a>.</p>