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 2016/11/19 13:56:18 UTC

wicket git commit: WICKET-6280 started to fix urls based on parameters value

Repository: wicket
Updated Branches:
  refs/heads/master 7ffeceaca -> ed8d56c30


WICKET-6280 started to fix urls based on parameters value

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

Branch: refs/heads/master
Commit: ed8d56c305d0a825491b090e62505c123dd520e5
Parents: 7ffecea
Author: Andrea Del Bene <ad...@apache.org>
Authored: Sat Nov 19 14:55:52 2016 +0100
Committer: Andrea Del Bene <ad...@apache.org>
Committed: Sat Nov 19 14:55:52 2016 +0100

----------------------------------------------------------------------
 wicket-user-guide/application.properties              | 3 ---
 wicket-user-guide/src/main/asciidoc/howToSource.adoc  | 2 +-
 wicket-user-guide/src/main/asciidoc/introduction.adoc | 2 +-
 wicket-user-guide/src/main/asciidoc/single.adoc       | 5 ++++-
 4 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/ed8d56c3/wicket-user-guide/application.properties
----------------------------------------------------------------------
diff --git a/wicket-user-guide/application.properties b/wicket-user-guide/application.properties
deleted file mode 100644
index 804d9ac..0000000
--- a/wicket-user-guide/application.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-#Grails Metadata file
-#Sat Mar 28 13:07:59 CET 2015
-app.grails.version=2.2.4

http://git-wip-us.apache.org/repos/asf/wicket/blob/ed8d56c3/wicket-user-guide/src/main/asciidoc/howToSource.adoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/main/asciidoc/howToSource.adoc b/wicket-user-guide/src/main/asciidoc/howToSource.adoc
index c2d8faf..c92640f 100644
--- a/wicket-user-guide/src/main/asciidoc/howToSource.adoc
+++ b/wicket-user-guide/src/main/asciidoc/howToSource.adoc
@@ -1,5 +1,5 @@
 
-Most of the code you will find in this document is available as a  https://github.com/bitstorm/Wicket-tutorial-examples[Git repository] and is licensed under the ASF 2.0. Examples are hosted live at {externalink:wicket.tutorial.examples.url}. To get a local copy of the repository you can run the clone command from shell:
+Most of the code you will find in this document is available as a  https://github.com/bitstorm/Wicket-tutorial-examples[Git repository] and is licensed under the ASF 2.0. Examples are hosted live at {wicket_tutorial_examples_url}[{wicket_tutorial_examples_url}]. To get a local copy of the repository you can run the clone command from shell:
 
 [source,java]
 ----

http://git-wip-us.apache.org/repos/asf/wicket/blob/ed8d56c3/wicket-user-guide/src/main/asciidoc/introduction.adoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/main/asciidoc/introduction.adoc b/wicket-user-guide/src/main/asciidoc/introduction.adoc
index 8d54c60..6832c72 100644
--- a/wicket-user-guide/src/main/asciidoc/introduction.adoc
+++ b/wicket-user-guide/src/main/asciidoc/introduction.adoc
@@ -2,7 +2,7 @@
 Wicket has been around since 2004 and it has been an Apache project since 2007. During these years it has proved to be a solid and valuable solution for building enterprise web applications.
 
 Wicket core developers have done a wonderful job with this framework and they continue to improve it release after release.
-However Wicket never provided a freely available documentation and even if you can find on Internet many live examples and many technical articles on it (most of them at {externalink:wicket.examples.url}Wicket Examples Site{externalink} and at  http://wicketinaction.com[Wicket in Action] ), the lack of an organized and freely available documentation has always been a sore point for this framework.
+However Wicket never provided a freely available documentation and even if you can find on Internet many live examples and many technical articles on it (most of them at {wicket_examples_url}[Wicket Examples Site] and at http://wicketinaction.com[Wicket in Action]), the lack of an organized and freely available documentation has always been a sore point for this framework.
 
 That's quite an issue because many other popular frameworks (like Spring, Hibernate or Struts) offer a vast and very good documentation which substantially contributed to their success.
 

http://git-wip-us.apache.org/repos/asf/wicket/blob/ed8d56c3/wicket-user-guide/src/main/asciidoc/single.adoc
----------------------------------------------------------------------
diff --git a/wicket-user-guide/src/main/asciidoc/single.adoc b/wicket-user-guide/src/main/asciidoc/single.adoc
index f320bdc..f7bc061 100644
--- a/wicket-user-guide/src/main/asciidoc/single.adoc
+++ b/wicket-user-guide/src/main/asciidoc/single.adoc
@@ -6,8 +6,11 @@ The Apache Software Foundation
 
 :sectnums:
 
-== Introduction
+//custom variables used inside the guide
+:wicket_examples_url: http://examples7x.wicket.apache.org
+:wicket_tutorial_examples_url: http://examples-wickettutorial.rhcloud.com/
 
+== Introduction
 include::introduction.adoc[]
 
 == How to use the example code