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 2017/05/12 12:35:20 UTC

wicket git commit: WICKET-6367 added more fixes for unordered lists.

Repository: wicket
Updated Branches:
  refs/heads/master 4e7f30f9c -> 02fa3f487


WICKET-6367 added more fixes for unordered lists.


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/02fa3f48
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/02fa3f48
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/02fa3f48

Branch: refs/heads/master
Commit: 02fa3f4874df79c7117d3028a075fd99bd6d3c80
Parents: 4e7f30f
Author: Andrea Del Bene <an...@innoteam.it>
Authored: Fri May 12 14:34:12 2017 +0200
Committer: Andrea Del Bene <an...@innoteam.it>
Committed: Fri May 12 14:34:12 2017 +0200

----------------------------------------------------------------------
 .../src/main/asciidoc/http2push/http2push_1.adoc              | 1 +
 .../src/main/asciidoc/repeaters/repeaters_4.adoc              | 7 ++++---
 2 files changed, 5 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/02fa3f48/wicket-user-guide/src/main/asciidoc/http2push/http2push_1.adoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/main/asciidoc/http2push/http2push_1.adoc b/wicket-user-guide/src/main/asciidoc/http2push/http2push_1.adoc
index f948203..b4b0a31 100644
--- a/wicket-user-guide/src/main/asciidoc/http2push/http2push_1.adoc
+++ b/wicket-user-guide/src/main/asciidoc/http2push/http2push_1.adoc
@@ -64,6 +64,7 @@ public class HTTP2Page extends WebPage
 Basically the resource is pushed before the actual response of the component is send to the client (browser) and because of this the client does not need to send an additional request.
 
 The PushHeaderItem behaves like explained in the following steps:
+
 * When a browser requests the page with an initial commit everything is going to be pushed with (200)
 * When a browser requests the page a second time resources are not pushed (304) not modified, because of the actual ResourceReferences headers
 * When a browser requests the page a second time and the markup of the page has changed everything is going to be pushed again (200)

http://git-wip-us.apache.org/repos/asf/wicket/blob/02fa3f48/wicket-user-guide/src/main/asciidoc/repeaters/repeaters_4.adoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/main/asciidoc/repeaters/repeaters_4.adoc b/wicket-user-guide/src/main/asciidoc/repeaters/repeaters_4.adoc
index 420bc8f..7e1f2a5 100644
--- a/wicket-user-guide/src/main/asciidoc/repeaters/repeaters_4.adoc
+++ b/wicket-user-guide/src/main/asciidoc/repeaters/repeaters_4.adoc
@@ -6,10 +6,11 @@ Wicket offers a number of components that should be used when we have to display
 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 <<repeaters.adoc#_pageable_repeaters,paragraph 13.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>>
+
+* *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>>
 ).
-* size(): gets the size of the entire dataset. 
-* model(T object): this method is used to wrap an item returned by the iterator with a model. This can be necessary if, for example, we need to wrap items with a detachable model to prevent them from being serialized.
+* *size():* gets the size of the entire dataset. 
+* *model(T object):* this method is used to wrap an item returned by the iterator with a model. This can be necessary if, for example, we need to wrap items with a detachable model to prevent them from being serialized.
 
 Wicket already provides implementations of IDataProvider to work with a List as data source (ListDataProvider) and to support data sorting (SortableDataProvider).