Repository: wicket Updated Branches: refs/heads/master 86b3abad1 -> 380c2d38f
WICKET-6368 Fix Listing's indents in UserGuide Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/380c2d38 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/380c2d38 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/380c2d38 Branch: refs/heads/master Commit: 380c2d38f13c7fa63426ec1627038941a9759fcd Parents: 86b3aba Author: Andrea Del Bene <[email protected]> Authored: Fri May 26 17:41:47 2017 +0200 Committer: Andrea Del Bene <[email protected]> Committed: Fri May 26 17:41:47 2017 +0200 ---------------------------------------------------------------------- .../main/asciidoc/helloWorld/helloWorld_2.adoc | 5 ++-- .../main/asciidoc/helloWorld/helloWorld_3.adoc | 2 +- .../src/main/asciidoc/layout/layout_2.adoc | 2 +- .../src/main/asciidoc/layout/layout_3.adoc | 26 ++++++++++---------- 4 files changed, 18 insertions(+), 17 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/380c2d38/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_2.adoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_2.adoc b/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_2.adoc index 8d7d968..f2b3c52 100644 --- a/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_2.adoc +++ b/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_2.adoc @@ -39,8 +39,9 @@ If we are using Servlet 3 or a later version, we can of course use a class in pl [source,java] ---- -@WebFilter(value = "/*", initParams = { @WebInitParam(name = "applicationClassName", value = "com.mycompany.WicketApplication"), - @WebInitParam(name="filterMappingUrlPattern", value="/*") }) +@WebFilter(value = "/*", initParams = { + @WebInitParam(name = "applicationClassName", value = "com.mycompany.WicketApplication"), + @WebInitParam(name="filterMappingUrlPattern", value="/*") }) public class ProjectFilter extends WicketFilter { } http://git-wip-us.apache.org/repos/asf/wicket/blob/380c2d38/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_3.adoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_3.adoc b/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_3.adoc index 4dab143..dc4275c 100644 --- a/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_3.adoc +++ b/wicket-user-guide/src/main/asciidoc/helloWorld/helloWorld_3.adoc @@ -24,7 +24,7 @@ import org.apache.wicket.markup.html.WebPage; public class HomePage extends WebPage { public HomePage() { - add(new Label("helloMessage", "Hello WicketWorld!")); + add(new Label("helloMessage", "Hello WicketWorld!")); } } ---- http://git-wip-us.apache.org/repos/asf/wicket/blob/380c2d38/wicket-user-guide/src/main/asciidoc/layout/layout_2.adoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/main/asciidoc/layout/layout_2.adoc b/wicket-user-guide/src/main/asciidoc/layout/layout_2.adoc index d0fce6d..c28191a 100644 --- a/wicket-user-guide/src/main/asciidoc/layout/layout_2.adoc +++ b/wicket-user-guide/src/main/asciidoc/layout/layout_2.adoc @@ -58,7 +58,7 @@ While panels and pages have much in common, there are some notable differences b <body> <wicket:panel> <!-- Your markup goes here --> - </wicket:panel> + </wicket:panel> </body> </html> ---- http://git-wip-us.apache.org/repos/asf/wicket/blob/380c2d38/wicket-user-guide/src/main/asciidoc/layout/layout_3.adoc ---------------------------------------------------------------------- diff --git a/wicket-user-guide/src/main/asciidoc/layout/layout_3.adoc b/wicket-user-guide/src/main/asciidoc/layout/layout_3.adoc index 291ba62..c53a8b9 100644 --- a/wicket-user-guide/src/main/asciidoc/layout/layout_3.adoc +++ b/wicket-user-guide/src/main/asciidoc/layout/layout_3.adoc @@ -19,16 +19,16 @@ we can build a panel called _HeaderPanel_ with a related markup file called Head <body> <wicket:panel> <table width="100%" style="border: 0px none;"> - <tbody> - <tr> - <td> - <img alt="Jug4Tenda" src="wicketLayout_files/logo_jug4tenda.gif"> - </td> - <td> - <h1>Gestione Anagrafica</h1> - </td> - </tr> - </tbody> + <tbody> + <tr> + <td> + <img alt="Jug4Tenda" src="wicketLayout_files/logo_jug4tenda.gif"> + </td> + <td> + <h1>Gestione Anagrafica</h1> + </td> + </tr> + </tbody> </table> </wicket:panel> </body> @@ -101,15 +101,15 @@ public class JugTemplate extends WebPage { private Component menuPanel; private Component footerPanel; - public JugTemplate(){ + public JugTemplate(){ add(headerPanel = new HeaderPanel("headerPanel")); add(menuPanel = new MenuPanel("menuPanel")); add(footerPanel = new FooterPanel("footerPanel")); add(new Label(CONTENT_ID, "Put your content here")); } - //getters for layout areas - //... + //getters for layout areas + //... } ----
