You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2014/04/24 22:01:50 UTC

svn commit: r1589858 - in /wicket/common/site/trunk/_site/guide/guide: pages/repeaters_4.html repeaters.html single.html single.pdf src/docs/guide/repeaters/repeaters_4.gdoc src/docs/img/jsr303-form-validation.png

Author: adelbene
Date: Thu Apr 24 20:01:49 2014
New Revision: 1589858

URL: http://svn.apache.org/r1589858
Log:
Fixed a spell-error

Modified:
    wicket/common/site/trunk/_site/guide/guide/pages/repeaters_4.html
    wicket/common/site/trunk/_site/guide/guide/repeaters.html
    wicket/common/site/trunk/_site/guide/guide/single.html
    wicket/common/site/trunk/_site/guide/guide/single.pdf
    wicket/common/site/trunk/_site/guide/guide/src/docs/guide/repeaters/repeaters_4.gdoc
    wicket/common/site/trunk/_site/guide/guide/src/docs/img/jsr303-form-validation.png

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=1589858&r1=1589857&r2=1589858&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 Thu Apr 24 20:01:49 2014
@@ -160,7 +160,7 @@ function addJsClass() {
                 
 
 <h2 id="repeaters_4">13.4 Pageable repeaters</h2>
-<p class="paragraph"/>Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query).<p class="paragraph"/>All these components implements interface <code>org.apache.wicket.markup.html.navigation.paging.IPageable</code> and use interface <code>IDataProvider</code> (placed in package <code>org.apache.wicket.markup.repeater.data</code>) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2.<p class="paragraph"/>The methods defined by IDataProvider are the following:
+<p class="paragraph"/>Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query).<p class="paragraph"/>All these components implement interface <code>org.apache.wicket.markup.html.navigation.paging.IPageable</code> and use interface <code>IDataProvider</code> (placed in package <code>org.apache.wicket.markup.repeater.data</code>) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2.<p class="paragraph"/>The methods defined by IDataProvider are the following:
 <ul class="star">
 <li>iterator(long first, long count): returns an iterator over a subset of the entire dataset. The subset starts from the item at position first and includes all the next count items (i.e. it's the closed interval first,first+count).</li>
 <li>size(): gets the size of the entire dataset.</li>
@@ -216,6 +216,7 @@ Wicket provides also component PageableL
 </blockquote>
 
 
+
                 <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>

Modified: wicket/common/site/trunk/_site/guide/guide/repeaters.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/repeaters.html?rev=1589858&r1=1589857&r2=1589858&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/repeaters.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/repeaters.html Thu Apr 24 20:01:49 2014
@@ -262,7 +262,7 @@ listItems.add(<span class="java&#45;keyw
 
 
 <h2 id="repeaters_4">13.4 Pageable repeaters</h2>
-<p class="paragraph"/>Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query).<p class="paragraph"/>All these components implements interface <code>org.apache.wicket.markup.html.navigation.paging.IPageable</code> and use interface <code>IDataProvider</code> (placed in package <code>org.apache.wicket.markup.repeater.data</code>) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2.<p class="paragraph"/>The methods defined by IDataProvider are the following:
+<p class="paragraph"/>Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query).<p class="paragraph"/>All these components implement interface <code>org.apache.wicket.markup.html.navigation.paging.IPageable</code> and use interface <code>IDataProvider</code> (placed in package <code>org.apache.wicket.markup.repeater.data</code>) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2.<p class="paragraph"/>The methods defined by IDataProvider are the following:
 <ul class="star">
 <li>iterator(long first, long count): returns an iterator over a subset of the entire dataset. The subset starts from the item at position first and includes all the next count items (i.e. it's the closed interval first,first+count).</li>
 <li>size(): gets the size of the entire dataset.</li>
@@ -318,6 +318,7 @@ Wicket provides also component PageableL
 </blockquote>
 
 
+
 <h2 id="repeaters_5">13.5 Summary</h2>
 <p class="paragraph"/>In this chapter we have explored the built-in set of components called repeaters which are designed to repeat their own markup in output to display a set of items. We have started with component <code>RepeatingView</code> which can be used to repeat a simple markup fragment.<p class="paragraph"/>Then, we have seen components <code>ListView</code> and <code>RefreshingView</code> which should be used when the markup to repeat contains nested components to populate.<p class="paragraph"/>Finally, we have discussed those repeaters that support data paging and that are called pageable repeaters. We ended the chapter looking at an example where a pageable repeater is used with panel PagingNavigator to make its dataset navigable by the user.
 

Modified: wicket/common/site/trunk/_site/guide/guide/single.html
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/single.html?rev=1589858&r1=1589857&r2=1589858&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/single.html (original)
+++ wicket/common/site/trunk/_site/guide/guide/single.html Thu Apr 24 20:01:49 2014
@@ -2342,7 +2342,7 @@ listItems.add(<span class="java&#45;keyw
 
 
 <h2 id="repeaters_4">13.4 Pageable repeaters</h2>
-<p class="paragraph"/>Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query).<p class="paragraph"/>All these components implements interface <code>org.apache.wicket.markup.html.navigation.paging.IPageable</code> and use interface <code>IDataProvider</code> (placed in package <code>org.apache.wicket.markup.repeater.data</code>) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2.<p class="paragraph"/>The methods defined by IDataProvider are the following:
+<p class="paragraph"/>Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query).<p class="paragraph"/>All these components implement interface <code>org.apache.wicket.markup.html.navigation.paging.IPageable</code> and use interface <code>IDataProvider</code> (placed in package <code>org.apache.wicket.markup.repeater.data</code>) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2.<p class="paragraph"/>The methods defined by IDataProvider are the following:
 <ul class="star">
 <li>iterator(long first, long count): returns an iterator over a subset of the entire dataset. The subset starts from the item at position first and includes all the next count items (i.e. it's the closed interval first,first+count).</li>
 <li>size(): gets the size of the entire dataset.</li>
@@ -2398,6 +2398,7 @@ Wicket provides also component PageableL
 </blockquote>
 
 
+
 <h2 id="repeaters_5">13.5 Summary</h2>
 <p class="paragraph"/>In this chapter we have explored the built-in set of components called repeaters which are designed to repeat their own markup in output to display a set of items. We have started with component <code>RepeatingView</code> which can be used to repeat a simple markup fragment.<p class="paragraph"/>Then, we have seen components <code>ListView</code> and <code>RefreshingView</code> which should be used when the markup to repeat contains nested components to populate.<p class="paragraph"/>Finally, we have discussed those repeaters that support data paging and that are called pageable repeaters. We ended the chapter looking at an example where a pageable repeater is used with panel PagingNavigator to make its dataset navigable by the user.
 

Modified: wicket/common/site/trunk/_site/guide/guide/single.pdf
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/single.pdf?rev=1589858&r1=1589857&r2=1589858&view=diff
==============================================================================
Binary files - no diff available.

Modified: wicket/common/site/trunk/_site/guide/guide/src/docs/guide/repeaters/repeaters_4.gdoc
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/src/docs/guide/repeaters/repeaters_4.gdoc?rev=1589858&r1=1589857&r2=1589858&view=diff
==============================================================================
--- wicket/common/site/trunk/_site/guide/guide/src/docs/guide/repeaters/repeaters_4.gdoc (original)
+++ wicket/common/site/trunk/_site/guide/guide/src/docs/guide/repeaters/repeaters_4.gdoc Thu Apr 24 20:01:49 2014
@@ -2,7 +2,7 @@
 
 Wicket offers a number of components that should be used when we have to display a big number of  items (for example the results of a select SQL query). 
 
-All these components implements interface @org.apache.wicket.markup.html.navigation.paging.IPageable@ and use interface @IDataProvider@ (placed in package @org.apache.wicket.markup.repeater.data@) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2. 
+All these components implement interface @org.apache.wicket.markup.html.navigation.paging.IPageable@ and use interface @IDataProvider@ (placed in package @org.apache.wicket.markup.repeater.data@) as data source. This interface is designed to support data paging. We will see an example of data paging later in paragraph 11.4.2. 
 
 The methods defined by IDataProvider are the following:
 * iterator(long first, long count): returns an iterator over a subset of the entire dataset. The subset starts from the item at position first and includes all the next count items (i.e. it's the closed interval [first,first+count]).
@@ -109,4 +109,4 @@ To explore the other pageable repeaters 
 
 {note}
 Wicket provides also component PageableListView which is a sublcass of ListView that implements interface IPageable, hence it can be considered a pageable repeaters even if it doesn't use interface IDataProvider as data source.
-{note}
\ No newline at end of file
+{note}

Modified: wicket/common/site/trunk/_site/guide/guide/src/docs/img/jsr303-form-validation.png
URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_site/guide/guide/src/docs/img/jsr303-form-validation.png?rev=1589858&r1=1589857&r2=1589858&view=diff
==============================================================================
Binary files - no diff available.