Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_13.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_13.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_13.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_13.html Tue Feb  3 
11:19:18 2015
@@ -194,7 +194,7 @@ Forms are the standard solution to let u
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_2.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_2.html Tue Feb  3 
11:19:18 2015
@@ -177,7 +177,7 @@ Remember that component model is updated
 <li><strong class="bold">ComponentFeedbackMessageFilter</strong>: shows only 
messages coming from a specific component.</li>
 <li><strong class="bold">ContainerFeedbackMessageFilter</strong>: shows only 
messages coming from a specific container or from any of its children 
components.</li>
 <li><strong class="bold">ErrorLevelFeedbackMessageFilter</strong>: shows only 
messages with a level of severity equals or greater than a given lower bound. 
Class FeedbackMessage defines a set of static constants to express different 
levels of severity: DEBUG, ERROR, WARNING, INFO, SUCCESS, etc.... Levels of 
severity for feedback messages are discussed in paragraph 10.2.6.</li>
-</ul><p class="paragraph"/>These filters are intended to be used when there 
are more than one feedback panel (or more than one form) in the same page. We 
can pass a filter to a feedback panel via its constructor or using the 
setFilter method. Custom filters can be created implementing the 
IFeedbackMessageFilter interface. An example of custom filter is illustrated on 
page 89.<p class="paragraph"/><h3>Built-in validators</h3><p 
class="paragraph"/>Wicket already provides a number of built-in validators 
ready to be used. The following table is a short reference where validators are 
listed along with a brief description of what they do. The default feedback 
message used by each of them is reported as well:<p 
class="paragraph"/><h4>EmailAddressValidator</h4><p class="paragraph"/>Checks 
if input respects the format local-part&#64;domain.<p 
class="paragraph"/><strong class="bold">Message:</strong><p 
class="paragraph"/><code>The value of '${label}' is not a valid email 
address.</code><p cla
 ss="paragraph"/><h4>UrlValidator</h4><p class="paragraph"/>Checks if input is 
a valid URL. We can specify in the constructor which protocols are allowed 
(http://, https://, and ftp://).<p class="paragraph"/><strong 
class="bold">Message:</strong><p class="paragraph"/><code>The value of 
'${label}' is not a valid URL.</code><p 
class="paragraph"/><h4>DateValidator</h4><p class="paragraph"/>Validator class 
that can be extended or used as a factory class to get date validators to check 
if a date is bigger than a lower bound (method minimum(Date min)), smaller than 
a upper bound (method maximum(Date max)) or inside a range (method range(Date 
min, Date max)).<p class="paragraph"/><strong class="bold">Messages:</strong><p 
class="paragraph"/><code>The value of '${label}' is less than the minimum of 
${minimum}.</code><p class="paragraph"/><code>The value of '${label}' is larger 
than the maximum of ${maximum}.</code><p class="paragraph"/><code>The value of 
'${label}' is not between ${minimum} a
 nd ${maximum}.</code><p class="paragraph"/><h4>RangeValidator</h4><p 
class="paragraph"/>Validator class that can be extended or used as a factory 
class to get validators to check if a value is bigger than a given lower bound 
(method minimum(T min)), smaller than a upper bound (method maximum(T max)) or 
inside a range (method range(T min,T max)).<p class="paragraph"/>The type of 
the value is a generic subtype of java.lang.Comparable and must implement 
Serializable interface.<p class="paragraph"/><strong 
class="bold">Messages:</strong><p class="paragraph"/><code>The value of 
'${label}' must be at least ${minimum}.</code><p class="paragraph"/><code>The 
value of '${label}' must be at most ${maximum}.</code><p 
class="paragraph"/><code>The value of '${label}' must be between ${minimum} and 
${maximum}.</code><p class="paragraph"/><h4>StringValidator</h4><p 
class="paragraph"/>Validator class that can be extended or used as a factory 
class to get validators to check if the length of a string
  value is bigger then a given lower bound (method minimumLength (int min)), 
smaller then a given upper bound (method maximumLength (int max)) or within a 
given range (method lengthBetween(int min, int max)).<p class="paragraph"/>To 
accept only string values consisting of exactly n characters, we must use 
method exactLength(int length).<p class="paragraph"/><strong 
class="bold">Messages:</strong><p class="paragraph"/><code>The value of 
'${label}' is shorter than the minimum of ${minimum} characters.</code><p 
class="paragraph"/><code>The value of '${label}' is longer than the maximum of 
${maximum} characters.</code><p class="paragraph"/><code>The value of 
'${label}' is not between ${minimum} and ${maximum} characters long.</code><p 
class="paragraph"/><code>The value of '${label}' is not exactly ${exact} 
characters long.</code><p class="paragraph"/><h4>CreditCardValidator</h4><p 
class="paragraph"/>Checks if input is a valid credit card number. This 
validator supports some of the most p
 opular credit cards (like “American Express", "MasterCard", “Visa” or 
“Diners Club”).<p class="paragraph"/><strong 
class="bold">Message:</strong><p class="paragraph"/><code>The credit card 
number is invalid.</code><p 
class="paragraph"/><h4>EqualPasswordInputValidator</h4><p 
class="paragraph"/>This validator checks if two password fields have the same 
value.<p class="paragraph"/><strong class="bold">Message:</strong><p 
class="paragraph"/><code>${label0} and ${label1} must be equal.</code><p 
class="paragraph"/><h3>Overriding standard feedback messages with custom 
bundles</h3><p class="paragraph"/>If we don't like the default validation 
feedback messages, we can override them providing custom properties files. In 
these files we can write our custom messages using the same keys of the 
messages we want to override. For example if we wanted to override the default 
message for invalid email addresses, our properties file would contain a line 
like this:<p class="par
 agraph"/><code>EmailAddressValidator=Man, your email address is not 
good!</code><p class="paragraph"/>As we will see in the next chapter, Wicket 
searches for custom properties files in various positions inside the 
application's class path, but for now we will consider just the properties file 
placed next to our application class. The name of this file must be equal to 
the name of our application class:<p class="paragraph"/><img border="0" 
class="center" src="../img/custom-properties-file.png"></img><p 
class="paragraph"/>The example project OverrideMailMessage overrides email 
validator's message with a new one which also reports the value that failed 
validation:<p class="paragraph"/><code>EmailAddressValidator=The value 
'${input}' inserted for field '${label}' is not a valid email address.</code><p 
class="paragraph"/><img border="0" class="center" 
src="../img/validation-error-message.png"></img><p 
class="paragraph"/><h3>Creating custom validators</h3><p class="paragraph"/>If 
our web 
 application requires a complex validation logic and built-in validators are 
not enough, we can  implement our own custom validators. For example (project 
UsernameCustomValidator) suppose we are working on the registration page of our 
site where users can create their profile choosing their username. Our 
registration form should validate the new username checking if it was already 
chosen by another user. In a situation like this we may need to implement a 
custom validator that queries a specific data source to check if a username is 
already in use.<p class="paragraph"/>For the sake of simplicity, the validator 
of our example will check the given username against a fixed list of three 
existing usernames.<p class="paragraph"/>A custom validator must simply 
implement interface IValidator:<p class="paragraph"/><div 
class="code"><pre><span class="java&#45;keyword">public</span> class 
UsernameValidator <span class="java&#45;keyword">implements</span> 
IValidator&#60;<span class="java&#45;ob
 ject">String</span>&#62; &#123;
+</ul><p class="paragraph"/>These filters are intended to be used when there 
are more than one feedback panel (or more than one form) in the same page. We 
can pass a filter to a feedback panel via its constructor or using the 
setFilter method. Custom filters can be created implementing the 
IFeedbackMessageFilter interface. An example of custom filter is illustrated 
later in this paragraph.<p class="paragraph"/><h3>Built-in validators</h3><p 
class="paragraph"/>Wicket already provides a number of built-in validators 
ready to be used. The following table is a short reference where validators are 
listed along with a brief description of what they do. The default feedback 
message used by each of them is reported as well:<p 
class="paragraph"/><h4>EmailAddressValidator</h4><p class="paragraph"/>Checks 
if input respects the format local-part&#64;domain.<p 
class="paragraph"/><strong class="bold">Message:</strong><p 
class="paragraph"/><code>The value of '${label}' is not a valid email address.
 </code><p class="paragraph"/><h4>UrlValidator</h4><p class="paragraph"/>Checks 
if input is a valid URL. We can specify in the constructor which protocols are 
allowed (http://, https://, and ftp://).<p class="paragraph"/><strong 
class="bold">Message:</strong><p class="paragraph"/><code>The value of 
'${label}' is not a valid URL.</code><p 
class="paragraph"/><h4>DateValidator</h4><p class="paragraph"/>Validator class 
that can be extended or used as a factory class to get date validators to check 
if a date is bigger than a lower bound (method minimum(Date min)), smaller than 
a upper bound (method maximum(Date max)) or inside a range (method range(Date 
min, Date max)).<p class="paragraph"/><strong class="bold">Messages:</strong><p 
class="paragraph"/><code>The value of '${label}' is less than the minimum of 
${minimum}.</code><p class="paragraph"/><code>The value of '${label}' is larger 
than the maximum of ${maximum}.</code><p class="paragraph"/><code>The value of 
'${label}' is not between
  ${minimum} and ${maximum}.</code><p 
class="paragraph"/><h4>RangeValidator</h4><p class="paragraph"/>Validator class 
that can be extended or used as a factory class to get validators to check if a 
value is bigger than a given lower bound (method minimum(T min)), smaller than 
a upper bound (method maximum(T max)) or inside a range (method range(T min,T 
max)).<p class="paragraph"/>The type of the value is a generic subtype of 
java.lang.Comparable and must implement Serializable interface.<p 
class="paragraph"/><strong class="bold">Messages:</strong><p 
class="paragraph"/><code>The value of '${label}' must be at least 
${minimum}.</code><p class="paragraph"/><code>The value of '${label}' must be 
at most ${maximum}.</code><p class="paragraph"/><code>The value of '${label}' 
must be between ${minimum} and ${maximum}.</code><p 
class="paragraph"/><h4>StringValidator</h4><p class="paragraph"/>Validator 
class that can be extended or used as a factory class to get validators to 
check if the lengt
 h of a string value is bigger then a given lower bound (method minimumLength 
(int min)), smaller then a given upper bound (method maximumLength (int max)) 
or within a given range (method lengthBetween(int min, int max)).<p 
class="paragraph"/>To accept only string values consisting of exactly n 
characters, we must use method exactLength(int length).<p 
class="paragraph"/><strong class="bold">Messages:</strong><p 
class="paragraph"/><code>The value of '${label}' is shorter than the minimum of 
${minimum} characters.</code><p class="paragraph"/><code>The value of 
'${label}' is longer than the maximum of ${maximum} characters.</code><p 
class="paragraph"/><code>The value of '${label}' is not between ${minimum} and 
${maximum} characters long.</code><p class="paragraph"/><code>The value of 
'${label}' is not exactly ${exact} characters long.</code><p 
class="paragraph"/><h4>CreditCardValidator</h4><p class="paragraph"/>Checks if 
input is a valid credit card number. This validator supports some 
 of the most popular credit cards (like “American Express", "MasterCard", 
“Visa” or “Diners Club”).<p class="paragraph"/><strong 
class="bold">Message:</strong><p class="paragraph"/><code>The credit card 
number is invalid.</code><p 
class="paragraph"/><h4>EqualPasswordInputValidator</h4><p 
class="paragraph"/>This validator checks if two password fields have the same 
value.<p class="paragraph"/><strong class="bold">Message:</strong><p 
class="paragraph"/><code>${label0} and ${label1} must be equal.</code><p 
class="paragraph"/><h3>Overriding standard feedback messages with custom 
bundles</h3><p class="paragraph"/>If we don't like the default validation 
feedback messages, we can override them providing custom properties files. In 
these files we can write our custom messages using the same keys of the 
messages we want to override. For example if we wanted to override the default 
message for invalid email addresses, our properties file would contain a line 
like this:
 <p class="paragraph"/><code>EmailAddressValidator=Man, your email address is 
not good!</code><p class="paragraph"/>As we will see in the next chapter, 
Wicket searches for custom properties files in various positions inside the 
application's class path, but for now we will consider just the properties file 
placed next to our application class. The name of this file must be equal to 
the name of our application class:<p class="paragraph"/><img border="0" 
class="center" src="../img/custom-properties-file.png"></img><p 
class="paragraph"/>The example project OverrideMailMessage overrides email 
validator's message with a new one which also reports the value that failed 
validation:<p class="paragraph"/><code>EmailAddressValidator=The value 
'${input}' inserted for field '${label}' is not a valid email address.</code><p 
class="paragraph"/><img border="0" class="center" 
src="../img/validation-error-message.png"></img><p 
class="paragraph"/><h3>Creating custom validators</h3><p class="paragraph"
 />If our web application requires a complex validation logic and built-in 
validators are not enough, we can  implement our own custom validators. For 
example (project UsernameCustomValidator) suppose we are working on the 
registration page of our site where users can create their profile choosing 
their username. Our registration form should validate the new username checking 
if it was already chosen by another user. In a situation like this we may need 
to implement a custom validator that queries a specific data source to check if 
a username is already in use.<p class="paragraph"/>For the sake of simplicity, 
the validator of our example will check the given username against a fixed list 
of three existing usernames.<p class="paragraph"/>A custom validator must 
simply implement interface IValidator:<p class="paragraph"/><div 
class="code"><pre><span class="java&#45;keyword">public</span> class 
UsernameValidator <span class="java&#45;keyword">implements</span> 
IValidator&#60;<span class
 ="java&#45;object">String</span>&#62; &#123;
        List&#60;<span class="java&#45;object">String</span>&#62; 
existingUsernames = Arrays.asList(<span 
class="java&#45;quote">"bigJack"</span>, <span 
class="java&#45;quote">"anonymous"</span>, <span 
class="java&#45;quote">"mrSmith"</span>);<p class="paragraph"/>       <span 
class="java&#45;keyword">public</span> void validate(IValidatable&#60;<span 
class="java&#45;object">String</span>&#62; validatable) &#123;
                <span class="java&#45;object">String</span> chosenUserName = 
validatable.getValue();<p class="paragraph"/>              <span 
class="java&#45;keyword">if</span>(existingUsernames.contains(chosenUserName))&#123;
                        ValidationError error = <span 
class="java&#45;keyword">new</span> ValidationError(<span 
class="java&#45;keyword">this</span>);
@@ -224,7 +224,9 @@ Remember that component model is updated
                &#125;<p class="paragraph"/>    &#125;
     //UsernameValidator definition
     //&#8230;
-&#125;</pre></div><p class="paragraph"/>The two feedback panels must be 
filtered in order to display just the messages with a given level of severity 
(ERROR for validator message and SUCCESS for form's flash message). 
Unfortunately the built-in message filter ErrorLevelFeedbackMessageFilter is 
not suitable for this task because its filter condition does not check for an 
exact error level (the given level is used as lower bound value). As a 
consequence, we had to build a custom filter (inner class 
ExactErrorLevelFilter) to accept only the desired severity level (see method 
accept of interface IFeedbackMessageFilter). 
+&#125;</pre></div><p class="paragraph"/>The two feedback panels must be 
filtered in order to display just the messages with a given level of severity 
(ERROR for validator message and SUCCESS for form's flash message). 
Unfortunately the built-in message filter ErrorLevelFeedbackMessageFilter is 
not suitable for this task because its filter condition does not check for an 
exact error level (the given level is used as lower bound value). As a 
consequence, we had to build a custom filter (inner class 
ExactErrorLevelFilter) to accept only the desired severity level (see method 
accept of interface IFeedbackMessageFilter).<p class="paragraph"/><blockquote 
class="note">
+Since version 6.13.0 Wicket provides the additional filter class 
org.apache.wicket.feedback.ExactLevelFeedbackMessageFilter to accept only 
feedback messages of a certain error level.
+</blockquote><p class="paragraph"/>
 
 
                 <div style="clear:both;margin-top:15px;"></div>
@@ -253,7 +255,7 @@ Remember that component model is updated
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_3.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_3.html Tue Feb  3 
11:19:18 2015
@@ -252,7 +252,7 @@ If the user input can not be converted t
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_4.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_4.html Tue Feb  3 
11:19:18 2015
@@ -214,7 +214,7 @@ In this paragraph we will see the basic
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_5.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_5.html Tue Feb  3 
11:19:18 2015
@@ -239,7 +239,7 @@ Starting with Wicket version 6.0 interfa
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_6.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_6.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_6.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_6.html Tue Feb  3 
11:19:18 2015
@@ -201,7 +201,7 @@ Forms can be nested to an arbitrary leve
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_7.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_7.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_7.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_7.html Tue Feb  3 
11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_8.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_8.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_8.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_8.html Tue Feb  3 
11:19:18 2015
@@ -230,7 +230,7 @@ An example showing how to use this compo
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/forms2_9.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/forms2_9.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/forms2_9.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/forms2_9.html Tue Feb  3 
11:19:18 2015
@@ -241,7 +241,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_1.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_1.html Tue Feb  
3 11:19:18 2015
@@ -193,7 +193,7 @@ Wicket is available as a binary package
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_2.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_2.html Tue Feb  
3 11:19:18 2015
@@ -230,7 +230,7 @@ If we prefer to use a servlet instead of
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_3.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_3.html Tue Feb  
3 11:19:18 2015
@@ -217,7 +217,7 @@ If we specify a <code>wicket:id</code> a
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_4.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_4.html Tue Feb  
3 11:19:18 2015
@@ -220,7 +220,7 @@ We can specify the content of a link (i.
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_5.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/helloWorld_5.html Tue Feb  
3 11:19:18 2015
@@ -194,7 +194,7 @@ In the last paragraph we had a first tas
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/i18n_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/i18n_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/i18n_1.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/i18n_1.html Tue Feb  3 
11:19:18 2015
@@ -201,7 +201,7 @@ Providing a full description of Java sup
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/i18n_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/i18n_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/i18n_2.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/i18n_2.html Tue Feb  3 
11:19:18 2015
@@ -187,7 +187,8 @@ If you want to use UTF-8 with your text
        &#125;
 &#125;;<p class="paragraph"/>setStatelessHint(<span 
class="java&#45;keyword">true</span>);
 add(form.add(changeLocale))</pre></div><p class="paragraph"/>
-<h3>Localization of markup files</h3><p class="paragraph"/>Although resource 
bundles exist to extract local-dependent elements from our code and from UI 
components, in Wicket we can decide to provide different markup files for 
different locale settings. Just like standard markup files, by default 
localized markup files must be placed next to component's class and their file 
name must contain the locale's informations. In the following picture, 
CustomPanel comes with a standard (or default) markup file and with another one 
localized for German:<p class="paragraph"/><img border="0" class="center" 
src="../img/comp-with-markup-german.png"></img><p class="paragraph"/>When the 
current locale corresponds to German country (language code de), markup file 
CustomPanel_de.html will be used in place of the default one.<p 
class="paragraph"/><h3>Reading bundles with tag &#60;wicket:message&#62;</h3><p 
class="paragraph"/>String resources can be also retrieved directly from markup 
code using tag &#
 60;wicket:message&#62;. The key of the desired resource is specified with 
attribute key:<p class="paragraph"/><div class="code"><pre><span 
class="xml&#45;tag">&#60;wicket:message key=<span 
class="xml&#45;quote">"greetingMessage"</span>&#62;</span>message goes 
here<span class="xml&#45;tag">&#60;/wicket:message&#62;</span></pre></div><p 
class="paragraph"/>wicket:message can be adopted also to localize the 
attributes of a tag. The name of the attribute and the resource key are 
expressed as a colon-separated value. In the following markup the content of 
attribute value will be replaced with the localized resource having 'key4value' 
as key:<p class="paragraph"/><div class="code"><pre>&#60;input type=<span 
class="java&#45;quote">"submit"</span> value=<span 
class="java&#45;quote">"Preview value"</span> wicket:message=<span 
class="java&#45;quote">"value:key4value"</span>/&#62;</pre></div><p 
class="paragraph"/>If we want to specify multiple attributes at once, we can 
separate them with a com
 a:<p class="paragraph"/><div class="code"><pre>&#60;input type=<span 
class="java&#45;quote">"submit"</span> value=<span 
class="java&#45;quote">"Preview value"</span> wicket:message=<span 
class="java&#45;quote">"value:key4value, 
title:key4title"</span>/&#62;</pre></div>
+<h3>Localization of markup files</h3><p class="paragraph"/>Although resource 
bundles exist to extract local-dependent elements from our code and from UI 
components, in Wicket we can decide to provide different markup files for 
different locale settings. Just like standard markup files, by default 
localized markup files must be placed next to component's class and their file 
name must contain the locale's informations. In the following picture, 
CustomPanel comes with a standard (or default) markup file and with another one 
localized for German:<p class="paragraph"/><img border="0" class="center" 
src="../img/comp-with-markup-german.png"></img><p class="paragraph"/>When the 
current locale corresponds to German country (language code de), markup file 
CustomPanel_de.html will be used in place of the default one.<p 
class="paragraph"/><h3>Reading bundles with tag &#60;wicket:message&#62;</h3><p 
class="paragraph"/>String resources can be also retrieved directly from markup 
code using tag &#
 60;wicket:message&#62;. The key of the desired resource is specified with 
attribute key:<p class="paragraph"/><div class="code"><pre><span 
class="xml&#45;tag">&#60;wicket:message key=<span 
class="xml&#45;quote">"greetingMessage"</span>&#62;</span>message goes 
here<span class="xml&#45;tag">&#60;/wicket:message&#62;</span></pre></div><p 
class="paragraph"/>By default the resource value is not escaped for HTML 
entities. To do that use the <code>escape</code> attribute:<p 
class="paragraph"/><div class="code"><pre><span 
class="xml&#45;tag">&#60;wicket:message key=<span 
class="xml&#45;quote">"greetingMessage"</span> escape=<span 
class="xml&#45;quote">"true"</span>&#62;</span>message goes here<span 
class="xml&#45;tag">&#60;/wicket:message&#62;</span></pre></div><p 
class="paragraph"/>
+<code>wicket:message</code> can be adopted also to localize the attributes of 
a tag. The name of the attribute and the resource key are expressed as a 
colon-separated value. In the following markup the content of attribute 
<code>value</code> will be replaced with the localized resource having 
'key4value' as key:<p class="paragraph"/><div class="code"><pre>&#60;input 
type=<span class="java&#45;quote">"submit"</span> value=<span 
class="java&#45;quote">"Preview value"</span> wicket:message=<span 
class="java&#45;quote">"value:key4value"</span>/&#62;</pre></div><p 
class="paragraph"/>If we want to specify multiple attributes at once, we can 
separate them with a comma:<p class="paragraph"/><div 
class="code"><pre>&#60;input type=<span class="java&#45;quote">"submit"</span> 
value=<span class="java&#45;quote">"Preview value"</span> wicket:message=<span 
class="java&#45;quote">"value:key4value, 
title:key4title"</span>/&#62;</pre></div>
 
 
 
@@ -217,7 +218,7 @@ add(form.add(changeLocale))</pre></div><
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/i18n_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/i18n_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/i18n_3.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/i18n_3.html Tue Feb  3 
11:19:18 2015
@@ -213,7 +213,7 @@ form.anotherLabel.labelValue=Value <span
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/i18n_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/i18n_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/i18n_4.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/i18n_4.html Tue Feb  3 
11:19:18 2015
@@ -220,7 +220,7 @@ yellow=Giallo</pre></div><p class="parag
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/i18n_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/i18n_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/i18n_5.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/i18n_5.html Tue Feb  3 
11:19:18 2015
@@ -212,7 +212,7 @@ StringResourceModel srm = <span class="j
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/i18n_6.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/i18n_6.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/i18n_6.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/i18n_6.html Tue Feb  3 
11:19:18 2015
@@ -193,7 +193,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jee_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jee_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jee_1.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jee_1.html Tue Feb  3 
11:19:18 2015
@@ -208,7 +208,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jee_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jee_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jee_2.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jee_2.html Tue Feb  3 
11:19:18 2015
@@ -214,7 +214,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jee_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jee_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jee_3.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jee_3.html Tue Feb  3 
11:19:18 2015
@@ -194,7 +194,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jee_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jee_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jee_4.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jee_4.html Tue Feb  3 
11:19:18 2015
@@ -193,7 +193,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_1.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_1.html Tue 
Feb  3 11:19:18 2015
@@ -199,7 +199,7 @@ On Internet you can find different libra
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_2.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_2.html Tue 
Feb  3 11:19:18 2015
@@ -254,7 +254,7 @@ Our datepicker is not ready yet to be us
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_3.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/jsintegration_3.html Tue 
Feb  3 11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_1.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_1.html Tue Feb 
 3 11:19:18 2015
@@ -192,7 +192,7 @@ At the end of the previous chapter we ha
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_10.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_10.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_10.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_10.html Tue 
Feb  3 11:19:18 2015
@@ -229,7 +229,7 @@ myBorder.add(<span class="java&#45;keywo
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_11.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_11.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_11.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_11.html Tue 
Feb  3 11:19:18 2015
@@ -193,7 +193,7 @@ To perform this task Wicket provides a s
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_2.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_2.html Tue Feb 
 3 11:19:18 2015
@@ -195,7 +195,7 @@ label.add(AttributeModifier.prepend(<spa
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_3.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_3.html Tue Feb 
 3 11:19:18 2015
@@ -192,7 +192,7 @@ Tag attribute <code>id</code> plays a cr
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_4.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_4.html Tue Feb 
 3 11:19:18 2015
@@ -199,7 +199,7 @@ informationBox.setVisible(<span class="j
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_5.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_5.html Tue Feb 
 3 11:19:18 2015
@@ -215,7 +215,7 @@ replace(fragment);</pre></div>
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_6.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_6.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_6.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_6.html Tue Feb 
 3 11:19:18 2015
@@ -212,7 +212,7 @@ The <code>&#60;wicket:head&#62;</code> t
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_7.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_7.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_7.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_7.html Tue Feb 
 3 11:19:18 2015
@@ -199,7 +199,7 @@ Wicket's <code>&#60;wicket:remove&#62;</
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_8.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_8.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_8.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_8.html Tue Feb 
 3 11:19:18 2015
@@ -208,7 +208,7 @@ add(label);</pre></div><p class="paragra
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/keepControl_9.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/keepControl_9.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/keepControl_9.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/keepControl_9.html Tue Feb 
 3 11:19:18 2015
@@ -202,7 +202,7 @@ Our data are rarely displayed alone with
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/layout_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/layout_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/layout_1.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/layout_1.html Tue Feb  3 
11:19:18 2015
@@ -200,7 +200,7 @@ For the sake of simplicity we can consid
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/layout_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/layout_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/layout_2.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/layout_2.html Tue Feb  3 
11:19:18 2015
@@ -218,7 +218,7 @@ add(myPanel);</pre></div><p class="parag
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/layout_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/layout_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/layout_3.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/layout_3.html Tue Feb  3 
11:19:18 2015
@@ -277,7 +277,7 @@ The page class contains the code to phys
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/layout_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/layout_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/layout_4.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/layout_4.html Tue Feb  3 
11:19:18 2015
@@ -253,7 +253,7 @@ An example of a parent page using the ta
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/layout_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/layout_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/layout_5.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/layout_5.html Tue Feb  3 
11:19:18 2015
@@ -193,7 +193,7 @@ Wicket applies inheritance also to HTML
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/maven_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/maven_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/maven_1.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/maven_1.html Tue Feb  3 
11:19:18 2015
@@ -211,7 +211,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/maven_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/maven_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/maven_2.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/maven_2.html Tue Feb  3 
11:19:18 2015
@@ -255,7 +255,7 @@ QWickie is released under ASF 2.0 licens
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_1.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_1.html Tue Feb 
 3 11:19:18 2015
@@ -207,7 +207,7 @@ By default class Component escapes HTML
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_2.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_2.html Tue Feb 
 3 11:19:18 2015
@@ -222,7 +222,7 @@ Model is referred to as static model bec
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_3.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_3.html Tue Feb 
 3 11:19:18 2015
@@ -264,7 +264,7 @@ spouse.add(name = <span class="java&#45;
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_4.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_4.html Tue Feb 
 3 11:19:18 2015
@@ -208,7 +208,7 @@ form.add(<span class="java&#45;keyword">
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_5.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_5.html Tue Feb 
 3 11:19:18 2015
@@ -248,7 +248,7 @@ personsList = <span class="java&#45;keyw
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_6.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_6.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_6.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_6.html Tue Feb 
 3 11:19:18 2015
@@ -220,7 +220,7 @@ Since the model of this example holds a
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_7.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_7.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_7.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_7.html Tue Feb 
 3 11:19:18 2015
@@ -205,7 +205,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_8.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_8.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_8.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_8.html Tue Feb 
 3 11:19:18 2015
@@ -203,7 +203,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_9.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_9.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_9.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/modelsforms_9.html Tue Feb 
 3 11:19:18 2015
@@ -193,7 +193,7 @@ We have also introduced Wicket forms as
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_1.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_1.html 
Tue Feb  3 11:19:18 2015
@@ -195,7 +195,7 @@ The server can push plain text and binar
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_2.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_2.html 
Tue Feb  3 11:19:18 2015
@@ -262,7 +262,7 @@ IWebSocketConnection connection = webSoc
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_3.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_3.html 
Tue Feb  3 11:19:18 2015
@@ -202,7 +202,7 @@ Once a page that contributes <code>(Base
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_4.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_4.html 
Tue Feb  3 11:19:18 2015
@@ -194,7 +194,7 @@ Check <a href="https://github.com/apache
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_5.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_5.html 
Tue Feb  3 11:19:18 2015
@@ -193,7 +193,7 @@ Wicket-Atmosphere experimental module pr
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_6.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_6.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_6.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/nativewebsockets_6.html 
Tue Feb  3 11:19:18 2015
@@ -194,7 +194,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/pagestoring.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/pagestoring.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/pagestoring.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/pagestoring.html Tue Feb  
3 11:19:18 2015
@@ -219,7 +219,7 @@ Wicket comes with 2 default eviction str
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/repeaters_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/repeaters_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/repeaters_1.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/repeaters_1.html Tue Feb  
3 11:19:18 2015
@@ -167,9 +167,9 @@ function addJsClass() {
 <div class="code"><pre>&#60;ul&#62;
     &#60;li wicket:id=<span 
class="java&#45;quote">"listItems"</span>&#62;&#60;/li&#62;
 &#60;/ul&#62;</pre></div><p class="paragraph"/><strong class="bold">Java 
Code:</strong>
-<div class="code"><pre>RepeatingView listItems = <span 
class="java&#45;keyword">new</span> RepeatingView(<span 
class="java&#45;quote">"listItems"</span>);<p 
class="paragraph"/>listItems.add(<span class="java&#45;keyword">new</span> 
Label(listItems.newChildId(), <span class="java&#45;quote">"green"</span>);
-listItems.add(<span class="java&#45;keyword">new</span> 
Label(listItems.newChildId(), <span class="java&#45;quote">"blue"</span>);
-listItems.add(<span class="java&#45;keyword">new</span> 
Label(listItems.newChildId(), <span 
class="java&#45;quote">"red"</span>);</pre></div><p class="paragraph"/><strong 
class="bold">Generated markup:</strong>
+<div class="code"><pre>RepeatingView listItems = <span 
class="java&#45;keyword">new</span> RepeatingView(<span 
class="java&#45;quote">"listItems"</span>);<p 
class="paragraph"/>listItems.add(<span class="java&#45;keyword">new</span> 
Label(listItems.newChildId(), <span class="java&#45;quote">"green"</span>));
+listItems.add(<span class="java&#45;keyword">new</span> 
Label(listItems.newChildId(), <span class="java&#45;quote">"blue"</span>));
+listItems.add(<span class="java&#45;keyword">new</span> 
Label(listItems.newChildId(), <span 
class="java&#45;quote">"red"</span>));</pre></div><p class="paragraph"/><strong 
class="bold">Generated markup:</strong>
 <div class="code"><pre>&#60;ul&#62;
     &#60;li&#62;green&#60;/li&#62;
     &#60;li&#62;blue&#60;/li&#62;
@@ -177,6 +177,7 @@ listItems.add(<span class="java&#45;keyw
 &#60;/ul&#62;</pre></div><p class="paragraph"/>As we can see in this example, 
each child component has been rendered using the parent markup as if it was its 
own.
 
 
+
                 <div style="clear:both;margin-top:15px;"></div>
                 
                     <div class="toc-item prev-left"><a 
href="../../guide/forms2.html">&lt;&lt; <strong>12</strong><span>Wicket forms 
in detail</span></a></div>
@@ -203,7 +204,7 @@ listItems.add(<span class="java&#45;keyw
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/repeaters_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/repeaters_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/repeaters_2.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/repeaters_2.html Tue Feb  
3 11:19:18 2015
@@ -211,7 +211,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/repeaters_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/repeaters_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/repeaters_3.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/repeaters_3.html Tue Feb  
3 11:19:18 2015
@@ -215,7 +215,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/repeaters_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/repeaters_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/repeaters_4.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/repeaters_4.html Tue Feb  
3 11:19:18 2015
@@ -246,7 +246,7 @@ Wicket provides also component PageableL
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/repeaters_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/repeaters_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/repeaters_5.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/repeaters_5.html Tue Feb  
3 11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_1.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_1.html 
Tue Feb  3 11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_2.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_2.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_2.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_2.html 
Tue Feb  3 11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_3.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_3.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_3.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_3.html 
Tue Feb  3 11:19:18 2015
@@ -225,7 +225,7 @@ This paragraph will provide just the bas
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_4.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_4.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_4.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_4.html 
Tue Feb  3 11:19:18 2015
@@ -238,7 +238,7 @@ Remember that invalidateNow() will immed
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_5.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_5.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_5.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_5.html 
Tue Feb  3 11:19:18 2015
@@ -204,7 +204,7 @@ processing of an Ajax request Wicket wil
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: 
wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_6.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_6.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_6.html 
(original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/requestProcessing_6.html 
Tue Feb  3 11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>

Modified: wicket/common/site/trunk/_site/guide/guide/pages/resources_1.html
URL: 
http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/pages/resources_1.html?rev=1656683&r1=1656682&r2=1656683&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/pages/resources_1.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/pages/resources_1.html Tue Feb  
3 11:19:18 2015
@@ -192,7 +192,7 @@ function addJsClass() {
 <div id="footer">
     
 Copyright &copy; 2013-2014 — <a href="http://www.apache.org/"; 
target="_blank">The Apache Software Foundation</a> 
-                      — <b style="color:#E8590A !important;">(Generated on: 
2014-11-11)</b>
+                      — <b style="color:#E8590A !important;">(Generated on: 
2015-02-03)</b>
 
     
 </div>


Reply via email to