You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by bo...@apache.org on 2018/08/06 01:30:00 UTC

[1/3] tapestry-5 git commit: Add missing start page links in tapestry-hibernate integration test app

Repository: tapestry-5
Updated Branches:
  refs/heads/master bd8ad2615 -> 60b086ad6


Add missing start page links in tapestry-hibernate integration test app

Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/8ac2791d
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/8ac2791d
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/8ac2791d

Branch: refs/heads/master
Commit: 8ac2791d1c063f2241d8847c77c7999d170216e2
Parents: bd8ad26
Author: Bob Harner <bo...@gmail.com>
Authored: Sun Aug 5 21:10:30 2018 -0400
Committer: Bob Harner <bo...@gmail.com>
Committed: Sun Aug 5 21:10:30 2018 -0400

----------------------------------------------------------------------
 tapestry-hibernate/src/test/webapp/Start.tml | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8ac2791d/tapestry-hibernate/src/test/webapp/Start.tml
----------------------------------------------------------------------
diff --git a/tapestry-hibernate/src/test/webapp/Start.tml b/tapestry-hibernate/src/test/webapp/Start.tml
index e602297..4f1c53f 100644
--- a/tapestry-hibernate/src/test/webapp/Start.tml
+++ b/tapestry-hibernate/src/test/webapp/Start.tml
@@ -15,6 +15,15 @@
             <li>
                 <t:pagelink page="CachedForm">Cached Form</t:pagelink>
             </li>
+            <li>
+                <t:pagelink page="EncodeEntities">Encode Entities</t:pagelink>
+            </li>
+            <li>
+                <t:pagelink page="PersistEntity">Persist Entity</t:pagelink>
+            </li>
+            <li>
+                <t:pagelink page="SSOEntity">SSO Entity</t:pagelink>
+            </li>
         </ul>
     </body>
 </html>


[3/3] tapestry-5 git commit: Add descriptions to tasks to run integration test apps manually

Posted by bo...@apache.org.
Add descriptions to tasks to run integration test apps manually

Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/60b086ad
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/60b086ad
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/60b086ad

Branch: refs/heads/master
Commit: 60b086ad613db384ba29d9d717bf3c1a4b109e8d
Parents: cda2ac7
Author: Bob Harner <bo...@gmail.com>
Authored: Sun Aug 5 21:12:09 2018 -0400
Committer: Bob Harner <bo...@gmail.com>
Committed: Sun Aug 5 21:12:09 2018 -0400

----------------------------------------------------------------------
 tapestry-core/build.gradle | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/60b086ad/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 9165da2..0bf5c12 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -65,33 +65,38 @@ jar {
     }
 }
 
-// tasks for starting integration test apps, useful when debugging failing integration tests
 task runTestApp1(type:JavaExec) {
+  description 'Start app1 integration test app, useful when debugging failing integration tests'
   main = 'org.apache.tapestry5.test.JettyRunner'
   args "-d", "src/test/app1", "-p", "8080"
   classpath += project.sourceSets.test.runtimeClasspath
 }
 task runTestApp2(type:JavaExec) {
+  description 'Start app2 integration test app, useful when debugging failing integration tests'
   main = 'org.apache.tapestry5.test.JettyRunner'
   args "-d", "src/test/app2", "-p", "8080"
   classpath += project.sourceSets.test.runtimeClasspath
 }
 task runTestApp3(type:JavaExec) {
+  description 'Start app3 integration test app, useful when debugging failing integration tests'
   main = 'org.apache.tapestry5.test.JettyRunner'
   args "-d", "src/test/app3", "-p", "8080"
   classpath += project.sourceSets.test.runtimeClasspath
 }
 task runTestApp4(type:JavaExec) {
+  description 'Start app4 integration test app, useful when debugging failing integration tests'
   main = 'org.apache.tapestry5.test.JettyRunner'
   args "-d", "src/test/app4", "-p", "8080"
   classpath += project.sourceSets.test.runtimeClasspath
 }
 task runTestApp5(type:JavaExec) {
+  description 'Start app5 integration test app, useful when debugging failing integration tests'
   main = 'org.apache.tapestry5.test.JettyRunner'
   args "-d", "src/test/app5", "-p", "8080"
   classpath += project.sourceSets.test.runtimeClasspath
 }
 task runTestAppfolder(type:JavaExec) {
+  description 'Start appFolder integration test app, useful when debugging failing integration tests'
   main = 'org.apache.tapestry5.test.JettyRunner'
   args "-d", "src/test/appfolder", "-p", "8080"
   classpath += project.sourceSets.test.runtimeClasspath


[2/3] tapestry-5 git commit: Add Gradle task for running tapestry-hibernate integr. tests manually

Posted by bo...@apache.org.
Add Gradle task for running tapestry-hibernate integr. tests manually

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

Branch: refs/heads/master
Commit: cda2ac748f67793a3a493cacf8886e03d31faec6
Parents: 8ac2791
Author: Bob Harner <bo...@gmail.com>
Authored: Sun Aug 5 21:11:32 2018 -0400
Committer: Bob Harner <bo...@gmail.com>
Committed: Sun Aug 5 21:11:32 2018 -0400

----------------------------------------------------------------------
 tapestry-hibernate/build.gradle | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/cda2ac74/tapestry-hibernate/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-hibernate/build.gradle b/tapestry-hibernate/build.gradle
index 73a6658..37b54dc 100644
--- a/tapestry-hibernate/build.gradle
+++ b/tapestry-hibernate/build.gradle
@@ -14,4 +14,11 @@ jar {
     manifest {
         attributes 'Tapestry-Module-Classes': 'org.apache.tapestry5.hibernate.modules.HibernateModule'
     }
-}
\ No newline at end of file
+}
+
+task runTestApp0(type:JavaExec) {
+  description 'Start tapestry-hibernate integration test app, useful when debugging failing integration tests'
+  main = 'org.apache.tapestry5.test.JettyRunner'
+  args "-d", "src/test/webapp", "-p", "8080"
+  classpath += project.sourceSets.test.runtimeClasspath
+}