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 2020/03/10 17:13:28 UTC

[syncope] branch 2_0_X updated (4de472e -> a1daf0d)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a change to branch 2_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git.


    from 4de472e  Fixing missing JobActionPanel for SchedTaskDirectoryPanel
     new 4a53e6e  Upgrading asciidoctorj-pdf
     new a1daf0d  Fixing 'view executions' menu items for Sched, Pull and Push tasks

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/syncope/client/console/tasks/SchedTaskDirectoryPanel.java | 5 ++---
 pom.xml                                                              | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)


[syncope] 01/02: Upgrading asciidoctorj-pdf

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch 2_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 4a53e6e90f3bb70e53fa552584032dcdc35c6464
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Mar 10 17:59:58 2020 +0100

    Upgrading asciidoctorj-pdf
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e7e1f38..6d2113f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2628,7 +2628,7 @@ under the License.
               <dependency>
                 <groupId>org.asciidoctor</groupId>
                 <artifactId>asciidoctorj-pdf</artifactId>
-                <version>1.5.2</version>
+                <version>1.5.3</version>
               </dependency>
             </dependencies>
             <configuration>


[syncope] 02/02: Fixing 'view executions' menu items for Sched, Pull and Push tasks

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch 2_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit a1daf0d5c587408baf390071f79fd24d3f9d9a10
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Mar 10 17:49:15 2020 +0100

    Fixing 'view executions' menu items for Sched, Pull and Push tasks
---
 .../apache/syncope/client/console/tasks/SchedTaskDirectoryPanel.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/client/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskDirectoryPanel.java b/client/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskDirectoryPanel.java
index 974d744..232c812 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskDirectoryPanel.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskDirectoryPanel.java
@@ -236,7 +236,7 @@ public abstract class SchedTaskDirectoryPanel<T extends SchedTaskTO>
                 SchedTaskDirectoryPanel.this.getTogglePanel().close(target);
                 viewTask(taskTO, target);
             }
-        }, ActionLink.ActionType.VIEW, StandardEntitlement.TASK_READ);
+        }, ActionLink.ActionType.VIEW_EXECUTIONS, StandardEntitlement.TASK_READ);
 
         panel.add(new ActionLink<T>() {
 
@@ -251,8 +251,7 @@ public abstract class SchedTaskDirectoryPanel<T extends SchedTaskTO>
                                 target).setResourceModel(
                                 new StringResourceModel("inner.task.edit",
                                         SchedTaskDirectoryPanel.this,
-                                        Model.of(Pair.of(
-                                                ActionLink.ActionType.EDIT, model.getObject())))));
+                                        Model.of(Pair.of(ActionLink.ActionType.EDIT, model.getObject())))));
             }
 
             @Override