Author: adelbene
Date: Tue Nov 11 15:16:14 2014
New Revision: 1638149

URL: http://svn.apache.org/r1638149
Log:
Fixed ref to CryptoMapper. Changed "Fork me" ribbon to open a new tab.

Modified:
    wicket/common/site/trunk/_layouts/default.html
    
wicket/common/site/trunk/_site/guide/guide/src/docs/guide/security/security_3.gdoc

Modified: wicket/common/site/trunk/_layouts/default.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_layouts/default.html?rev=1638149&r1=1638148&r2=1638149&view=diff
==============================================================================
--- wicket/common/site/trunk/_layouts/default.html (original)
+++ wicket/common/site/trunk/_layouts/default.html Tue Nov 11 15:16:14 2014
@@ -27,7 +27,7 @@
     </div>
     <div class="github-fork-ribbon-wrapper right" style="position : fixed;">
         <div class="github-fork-ribbon">
-            <a href="https://github.com/apache/wicket";>Fork me on GitHub</a>
+            <a href="https://github.com/apache/wicket"; target="_blank">Fork me 
on GitHub</a>
         </div>
     </div>
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/src/docs/guide/security/security_3.gdoc
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/src/docs/guide/security/security_3.gdoc?rev=1638149&r1=1638148&r2=1638149&view=diff
==============================================================================
--- 
wicket/common/site/trunk/_site/guide/guide/src/docs/guide/security/security_3.gdoc
 (original)
+++ 
wicket/common/site/trunk/_site/guide/guide/src/docs/guide/security/security_3.gdoc
 Tue Nov 11 15:16:14 2014
@@ -4,7 +4,7 @@ HTTPS is the standard technology adopted
 
 In Wicket we can easily protect our pages with HTTPS mounting a special 
request mapper called @HttpsMapper@ and using annotation RequireHttps with 
those pages we want to serve over this protocol. Both these two entities are in 
package @org.apache.wicket.protocol.https@.
 
-HttpsMapper wraps an existing mapper and redirects incoming requests to HTTPS 
if the related response must render a page containing annotation 
@RequireHttps@. Most of the times the wrapped mapper will be the root one, just 
like we saw before for @CryptoManager@ in paragraph 8.6.6.
+HttpsMapper wraps an existing mapper and redirects incoming requests to HTTPS 
if the related response must render a page containing annotation 
@RequireHttps@. Most of the times the wrapped mapper will be the root one, just 
like we saw before for @CryptoManager@ in paragraph 10.6.
 
 Another parameter needed to build a @HttpsMapper@ is an instance of class 
@HttpsConfi@g. This class allows us to specify which ports must be used for 
HTTPS and HTTP. By default the port numbers used by these two protocols are 
respectively 443 and 80.
 
@@ -53,4 +53,4 @@ public class HttpsPage extends BaseClass
 public class HttpsPage implements IMarker{
 //Page code...
 }
-{code}
\ No newline at end of file
+{code}


Reply via email to