You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2015/08/20 11:40:39 UTC

[1/8] syncope git commit: Fixing a "focus" bug when searching roles. Currently, hitting "enter" on the final textfield doesn't search, but switches tabs instead.

Repository: syncope
Updated Branches:
  refs/heads/1_1_X dce78dbd0 -> bc41d9bc3
  refs/heads/1_2_X dff48fd30 -> 4ae3e2cb4
  refs/heads/master 0e5694a3a -> 4cdb34b3c


Fixing a "focus" bug when searching roles. Currently, hitting "enter" on the final textfield doesn't search, but switches tabs instead.

Conflicts:
	console/src/main/java/org/apache/syncope/console/pages/Roles.java


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

Branch: refs/heads/1_2_X
Commit: dce78dbd08cd5d29334485337c5282b1e8f0e6d1
Parents: 3621adf
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Fri May 15 16:35:27 2015 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Fri May 15 16:49:36 2015 +0100

----------------------------------------------------------------------
 .../org/apache/syncope/console/pages/Roles.java | 33 +++++++++++---------
 1 file changed, 18 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/dce78dbd/console/src/main/java/org/apache/syncope/console/pages/Roles.java
----------------------------------------------------------------------
diff --git a/console/src/main/java/org/apache/syncope/console/pages/Roles.java b/console/src/main/java/org/apache/syncope/console/pages/Roles.java
index b691073..563c2ee 100644
--- a/console/src/main/java/org/apache/syncope/console/pages/Roles.java
+++ b/console/src/main/java/org/apache/syncope/console/pages/Roles.java
@@ -104,26 +104,29 @@ public class Roles extends BasePage {
         final RoleSearchPanel searchPanel = new RoleSearchPanel.Builder("searchPanel").build();
         searchForm.add(searchPanel);
 
-        searchForm.add(new ClearIndicatingAjaxButton("search", new ResourceModel("search"), getPageReference()) {
+        final ClearIndicatingAjaxButton searchButton =
+                new ClearIndicatingAjaxButton("search", new ResourceModel("search"), getPageReference()) {
 
-            private static final long serialVersionUID = -958724007591692537L;
+                private static final long serialVersionUID = -958724007591692537L;
 
-            @Override
-            protected void onSubmitInternal(final AjaxRequestTarget target, final Form<?> form) {
-                final NodeCond searchCond = searchPanel.buildSearchCond();
-                LOG.debug("Node condition {}", searchCond);
+                @Override
+                protected void onSubmitInternal(final AjaxRequestTarget target, final Form<?> form) {
+                    final NodeCond searchCond = searchPanel.buildSearchCond();
+                    LOG.debug("Node condition {}", searchCond);
 
-                doSearch(target, searchCond, searchResult);
+                    doSearch(target, searchCond, searchResult);
 
-                Session.get().getFeedbackMessages().clear();
-                target.add(searchPanel.getSearchFeedback());
-            }
+                    Session.get().getFeedbackMessages().clear();
+                    target.add(searchPanel.getSearchFeedback());
+                }
 
-            @Override
-            protected void onError(final AjaxRequestTarget target, final Form<?> form) {
-                target.add(searchPanel.getSearchFeedback());
-            }
-        });
+                @Override
+                protected void onError(final AjaxRequestTarget target, final Form<?> form) {
+                    target.add(searchPanel.getSearchFeedback());
+                }
+            };
+        searchForm.add(searchButton);
+        searchForm.setDefaultButton(searchButton);
     }
 
     private void doSearch(final AjaxRequestTarget target, final NodeCond searchCond,


[2/8] syncope git commit: Fixing a "focus" bug when searching roles. Currently, hitting "enter" on the final textfield doesn't search, but switches tabs instead.

Posted by il...@apache.org.
Fixing a "focus" bug when searching roles. Currently, hitting "enter" on the final textfield doesn't search, but switches tabs instead.

Conflicts:
	console/src/main/java/org/apache/syncope/console/pages/Roles.java


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

Branch: refs/heads/master
Commit: dce78dbd08cd5d29334485337c5282b1e8f0e6d1
Parents: 3621adf
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Fri May 15 16:35:27 2015 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Fri May 15 16:49:36 2015 +0100

----------------------------------------------------------------------
 .../org/apache/syncope/console/pages/Roles.java | 33 +++++++++++---------
 1 file changed, 18 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/dce78dbd/console/src/main/java/org/apache/syncope/console/pages/Roles.java
----------------------------------------------------------------------
diff --git a/console/src/main/java/org/apache/syncope/console/pages/Roles.java b/console/src/main/java/org/apache/syncope/console/pages/Roles.java
index b691073..563c2ee 100644
--- a/console/src/main/java/org/apache/syncope/console/pages/Roles.java
+++ b/console/src/main/java/org/apache/syncope/console/pages/Roles.java
@@ -104,26 +104,29 @@ public class Roles extends BasePage {
         final RoleSearchPanel searchPanel = new RoleSearchPanel.Builder("searchPanel").build();
         searchForm.add(searchPanel);
 
-        searchForm.add(new ClearIndicatingAjaxButton("search", new ResourceModel("search"), getPageReference()) {
+        final ClearIndicatingAjaxButton searchButton =
+                new ClearIndicatingAjaxButton("search", new ResourceModel("search"), getPageReference()) {
 
-            private static final long serialVersionUID = -958724007591692537L;
+                private static final long serialVersionUID = -958724007591692537L;
 
-            @Override
-            protected void onSubmitInternal(final AjaxRequestTarget target, final Form<?> form) {
-                final NodeCond searchCond = searchPanel.buildSearchCond();
-                LOG.debug("Node condition {}", searchCond);
+                @Override
+                protected void onSubmitInternal(final AjaxRequestTarget target, final Form<?> form) {
+                    final NodeCond searchCond = searchPanel.buildSearchCond();
+                    LOG.debug("Node condition {}", searchCond);
 
-                doSearch(target, searchCond, searchResult);
+                    doSearch(target, searchCond, searchResult);
 
-                Session.get().getFeedbackMessages().clear();
-                target.add(searchPanel.getSearchFeedback());
-            }
+                    Session.get().getFeedbackMessages().clear();
+                    target.add(searchPanel.getSearchFeedback());
+                }
 
-            @Override
-            protected void onError(final AjaxRequestTarget target, final Form<?> form) {
-                target.add(searchPanel.getSearchFeedback());
-            }
-        });
+                @Override
+                protected void onError(final AjaxRequestTarget target, final Form<?> form) {
+                    target.add(searchPanel.getSearchFeedback());
+                }
+            };
+        searchForm.add(searchButton);
+        searchForm.setDefaultButton(searchButton);
     }
 
     private void doSearch(final AjaxRequestTarget target, final NodeCond searchCond,


[7/8] syncope git commit: Restoring Travis CI notifications via e-mail

Posted by il...@apache.org.
Restoring Travis CI notifications via e-mail


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

Branch: refs/heads/1_2_X
Commit: 4ae3e2cb40980702268041d4d9c961a41797a6cd
Parents: dff48fd bc41d9b
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Thu Aug 20 11:39:57 2015 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Thu Aug 20 11:39:57 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/4ae3e2cb/.travis.yml
----------------------------------------------------------------------
diff --cc .travis.yml
index e9245f1,68bdf96..7e98db5
--- a/.travis.yml
+++ b/.travis.yml
@@@ -17,8 -17,9 +17,9 @@@ language: jav
  jdk:
    - openjdk6
  # default install is mvn install --quiet -DskipTests=true
 -install: mvn --show-version --errors -P skipTests
 +install: mvn --show-version --quiet -P skipTests
  #invoker.streamLogs: we cannot access to log files through Travis web ui, so display everything in the console
 -script: mvn --show-version --errors clean install -Dinvoker.streamLogs=true
 +script: mvn --show-version --quiet clean install -Dinvoker.streamLogs=true
  notifications:
-   webhooks: http://rovere.tirasa.net/cgi-bin/travis.cgi
+   email:
+     - dev@syncope.apache.org


[8/8] syncope git commit: Merge branch '1_2_X'

Posted by il...@apache.org.
Merge branch '1_2_X'


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

Branch: refs/heads/master
Commit: 4cdb34b3c9719541dc6b19d12d7a7d8015c7d96e
Parents: 0e5694a 4ae3e2c
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Thu Aug 20 11:40:15 2015 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Thu Aug 20 11:40:15 2015 +0200

----------------------------------------------------------------------

----------------------------------------------------------------------



[6/8] syncope git commit: Restoring Travis CI notifications via e-mail

Posted by il...@apache.org.
Restoring Travis CI notifications via e-mail


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

Branch: refs/heads/master
Commit: 4ae3e2cb40980702268041d4d9c961a41797a6cd
Parents: dff48fd bc41d9b
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Thu Aug 20 11:39:57 2015 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Thu Aug 20 11:39:57 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/4ae3e2cb/.travis.yml
----------------------------------------------------------------------
diff --cc .travis.yml
index e9245f1,68bdf96..7e98db5
--- a/.travis.yml
+++ b/.travis.yml
@@@ -17,8 -17,9 +17,9 @@@ language: jav
  jdk:
    - openjdk6
  # default install is mvn install --quiet -DskipTests=true
 -install: mvn --show-version --errors -P skipTests
 +install: mvn --show-version --quiet -P skipTests
  #invoker.streamLogs: we cannot access to log files through Travis web ui, so display everything in the console
 -script: mvn --show-version --errors clean install -Dinvoker.streamLogs=true
 +script: mvn --show-version --quiet clean install -Dinvoker.streamLogs=true
  notifications:
-   webhooks: http://rovere.tirasa.net/cgi-bin/travis.cgi
+   email:
+     - dev@syncope.apache.org


[5/8] syncope git commit: Restoring Travis CI notifications via e-mail

Posted by il...@apache.org.
Restoring Travis CI notifications via e-mail


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

Branch: refs/heads/1_1_X
Commit: bc41d9bc36075e5f7e3c80d9be0cdfbd782b0b05
Parents: dce78db
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Thu Aug 20 11:38:40 2015 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Thu Aug 20 11:38:40 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/bc41d9bc/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 9ecafc7..68bdf96 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,4 +21,5 @@ install: mvn --show-version --errors -P skipTests
 #invoker.streamLogs: we cannot access to log files through Travis web ui, so display everything in the console
 script: mvn --show-version --errors clean install -Dinvoker.streamLogs=true
 notifications:
-  webhooks: http://rovere.tirasa.net/cgi-bin/travis.cgi
+  email:
+    - dev@syncope.apache.org


[3/8] syncope git commit: Restoring Travis CI notifications via e-mail

Posted by il...@apache.org.
Restoring Travis CI notifications via e-mail


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

Branch: refs/heads/1_2_X
Commit: bc41d9bc36075e5f7e3c80d9be0cdfbd782b0b05
Parents: dce78db
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Thu Aug 20 11:38:40 2015 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Thu Aug 20 11:38:40 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/bc41d9bc/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 9ecafc7..68bdf96 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,4 +21,5 @@ install: mvn --show-version --errors -P skipTests
 #invoker.streamLogs: we cannot access to log files through Travis web ui, so display everything in the console
 script: mvn --show-version --errors clean install -Dinvoker.streamLogs=true
 notifications:
-  webhooks: http://rovere.tirasa.net/cgi-bin/travis.cgi
+  email:
+    - dev@syncope.apache.org


[4/8] syncope git commit: Restoring Travis CI notifications via e-mail

Posted by il...@apache.org.
Restoring Travis CI notifications via e-mail


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

Branch: refs/heads/master
Commit: bc41d9bc36075e5f7e3c80d9be0cdfbd782b0b05
Parents: dce78db
Author: Francesco Chicchiriccò <il...@apache.org>
Authored: Thu Aug 20 11:38:40 2015 +0200
Committer: Francesco Chicchiriccò <il...@apache.org>
Committed: Thu Aug 20 11:38:40 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/bc41d9bc/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 9ecafc7..68bdf96 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,4 +21,5 @@ install: mvn --show-version --errors -P skipTests
 #invoker.streamLogs: we cannot access to log files through Travis web ui, so display everything in the console
 script: mvn --show-version --errors clean install -Dinvoker.streamLogs=true
 notifications:
-  webhooks: http://rovere.tirasa.net/cgi-bin/travis.cgi
+  email:
+    - dev@syncope.apache.org