syncope git commit: Upgrading CXF

2017-01-31 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 79418c693 -> 0355ec1c8


Upgrading CXF


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

Branch: refs/heads/2_0_X
Commit: 0355ec1c8cf13b175ea78dfbfe1deb51379670df
Parents: 79418c6
Author: Francesco Chicchiriccò 
Authored: Wed Feb 1 08:19:07 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Wed Feb 1 08:19:07 2017 +0100

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/0355ec1c/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 2a40497..4735872 100644
--- a/pom.xml
+++ b/pom.xml
@@ -357,7 +357,7 @@ under the License.
 1.5.1
 1.3.2
 
-3.1.9
+3.1.10
 
 2.17.5  
 
@@ -402,7 +402,7 @@ under the License.
 ${project.build.directory}/log
 
${project.build.directory}/activiti-modeler
 
-1.5.10
+1.5.12
 2.2.10
 
 2.2.4



[2/6] syncope git commit: [SYNCOPE-1004] Now managing selfRead() too

2017-01-31 Thread ilgrosso
[SYNCOPE-1004] Now managing selfRead() too


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

Branch: refs/heads/2_0_X
Commit: c3458e4a8929329e97fe8eba8c72dcafb61ba948
Parents: 9707b20
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:25:22 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:25:22 2017 +0100

--
 .../src/main/java/org/apache/syncope/core/logic/UserLogic.java  | 2 +-
 .../provisioning/java/notification/NotificationManagerImpl.java | 5 +
 .../syncope/core/rest/cxf/service/UserSelfServiceImpl.java  | 4 ++--
 .../src/test/java/org/apache/syncope/fit/core/ReportITCase.java | 2 +-
 4 files changed, 9 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/c3458e4a/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
--
diff --git 
a/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java 
b/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
index b5a41da..f51fdb6 100644
--- a/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
+++ b/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
@@ -115,7 +115,7 @@ public class UserLogic extends AbstractAnyLogic {
 
 @PreAuthorize("isAuthenticated()")
 @Transactional(readOnly = true)
-public Pair readSelf() {
+public Pair selfRead() {
 return ImmutablePair.of(
 POJOHelper.serialize(AuthContextUtils.getAuthorizations()),
 binder.returnUserTO(binder.getAuthenticatedUserTO()));

http://git-wip-us.apache.org/repos/asf/syncope/blob/c3458e4a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
--
diff --git 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
index 6248185..1a021ae 100644
--- 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
+++ 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
@@ -28,6 +28,7 @@ import java.util.Map;
 import java.util.Set;
 import org.apache.commons.jexl3.MapContext;
 import org.apache.commons.lang3.StringUtils;
+import org.apache.commons.lang3.tuple.Pair;
 import org.apache.syncope.common.lib.to.GroupTO;
 import org.apache.syncope.common.lib.to.UserTO;
 import org.apache.syncope.common.lib.types.AuditElements;
@@ -270,6 +271,10 @@ public class NotificationManagerImpl implements 
NotificationManager {
 any = userDAO.find(((UserTO) before).getKey());
 } else if (output instanceof UserTO) {
 any = userDAO.find(((UserTO) output).getKey());
+} else if (output instanceof Pair
+&& ((Pair) output).getRight() instanceof UserTO) {
+
+any = userDAO.find(((UserTO) ((Pair) output).getRight()).getKey());
 } else if (output instanceof ProvisioningResult
 && ((ProvisioningResult) output).getEntity() instanceof 
UserTO) {
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/c3458e4a/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
--
diff --git 
a/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
 
b/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
index 3ccfd82..c76986e 100644
--- 
a/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
+++ 
b/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
@@ -56,7 +56,7 @@ public class UserSelfServiceImpl extends AbstractServiceImpl 
implements UserSelf
 
 @Override
 public Response read() {
-Pair self = logic.readSelf();
+Pair self = logic.selfRead();
 return Response.ok().
 header(RESTHeaders.RESOURCE_KEY, self.getValue().getKey()).
 header(RESTHeaders.OWNED_ENTITLEMENTS, self.getKey()).
@@ -72,7 +72,7 @@ public class UserSelfServiceImpl extends 

[6/6] syncope git commit: [SYNCOPE-1003] Missing traslations provided

2017-01-31 Thread ilgrosso
[SYNCOPE-1003] Missing traslations provided


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

Branch: refs/heads/master
Commit: d80e02334de47b7b1c9bb738f1f66b70d2826780
Parents: 8df515e
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:25:48 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:29:16 2017 +0100

--
 .../MailTemplateDirectoryPanel.java |  2 +-
 .../NotificationDirectoryPanel.java | 12 -
 .../console/panels/SecurityQuestionsPanel.java  |  4 +--
 .../panels/TypeExtensionDirectoryPanel.java |  2 +-
 .../policies/AccountPolicyDirectoryPanel.java   |  6 ++---
 .../policies/PasswordPolicyDirectoryPanel.java  |  4 +--
 .../console/policies/PolicyDirectoryPanel.java  |  8 +++---
 .../policies/PolicyRuleDirectoryPanel.java  |  4 +--
 .../console/reports/ReportDirectoryPanel.java   | 16 ++--
 .../reports/ReportTemplateDirectoryPanel.java   |  2 +-
 .../reports/ReportletDirectoryPanel.java|  4 +--
 .../console/status/AnyStatusDirectoryPanel.java |  6 ++---
 .../status/ResourceStatusDirectoryPanel.java|  6 ++---
 .../tasks/NotificationTaskDirectoryPanel.java   | 14 +-
 .../tasks/PropagationTaskDirectoryPanel.java| 18 ++---
 .../tasks/ProvisioningTaskDirectoryPanel.java   | 16 ++--
 .../console/tasks/SchedTaskDirectoryPanel.java  | 18 ++---
 .../notifications/NotificationTasks.properties  | 26 +++
 .../NotificationTasks_it.properties | 26 +++
 .../NotificationTasks_pt_BR.properties  | 26 +++
 .../NotificationTasks_ru.properties | 27 
 21 files changed, 176 insertions(+), 71 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/d80e0233/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
--
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
index e3c3f0a..ba1bfd5 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
@@ -110,7 +110,7 @@ public class MailTemplateDirectoryPanel
 protected List> getColumns() {
 List> columns = new ArrayList<>();
 columns.add(new PropertyColumn(
-new StringResourceModel("key", this, null), "key", "key"));
+new StringResourceModel("key", this), "key", "key"));
 
 columns.add(new ActionColumn(new 
ResourceModel("actions", "")) {
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/d80e0233/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
--
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
index 51f2616..c6de77f 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
@@ -88,17 +88,17 @@ public class NotificationDirectoryPanel
 protected List> getColumns() {
 List> columns = new ArrayList<>();
 columns.add(new KeyPropertyColumn(
-new StringResourceModel("key", this, null), "key", "key"));
+new StringResourceModel("key", this), "key", "key"));
 columns.add(new PropertyColumn(
-new StringResourceModel("sender", this, null), "sender", 
"sender"));
+new StringResourceModel("sender", this), "sender", "sender"));
 columns.add(new PropertyColumn(
-new StringResourceModel("subject", this, null), "subject", 
"subject"));
+new StringResourceModel("subject", this), "subject", 

[5/6] syncope git commit: [SYNCOPE-1004] Now managing selfRead() too

2017-01-31 Thread ilgrosso
[SYNCOPE-1004] Now managing selfRead() too


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

Branch: refs/heads/master
Commit: 8df515ecf485aa342b5b3098a78e23ea8a2c18f3
Parents: 07b1238
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:25:22 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:29:12 2017 +0100

--
 .../src/main/java/org/apache/syncope/core/logic/UserLogic.java  | 2 +-
 .../provisioning/java/notification/NotificationManagerImpl.java | 5 +
 .../syncope/core/rest/cxf/service/UserSelfServiceImpl.java  | 4 ++--
 .../src/test/java/org/apache/syncope/fit/core/ReportITCase.java | 2 +-
 4 files changed, 9 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/8df515ec/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
--
diff --git 
a/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java 
b/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
index b5a41da..f51fdb6 100644
--- a/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
+++ b/core/logic/src/main/java/org/apache/syncope/core/logic/UserLogic.java
@@ -115,7 +115,7 @@ public class UserLogic extends AbstractAnyLogic {
 
 @PreAuthorize("isAuthenticated()")
 @Transactional(readOnly = true)
-public Pair readSelf() {
+public Pair selfRead() {
 return ImmutablePair.of(
 POJOHelper.serialize(AuthContextUtils.getAuthorizations()),
 binder.returnUserTO(binder.getAuthenticatedUserTO()));

http://git-wip-us.apache.org/repos/asf/syncope/blob/8df515ec/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
--
diff --git 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
index 6248185..1a021ae 100644
--- 
a/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
+++ 
b/core/provisioning-java/src/main/java/org/apache/syncope/core/provisioning/java/notification/NotificationManagerImpl.java
@@ -28,6 +28,7 @@ import java.util.Map;
 import java.util.Set;
 import org.apache.commons.jexl3.MapContext;
 import org.apache.commons.lang3.StringUtils;
+import org.apache.commons.lang3.tuple.Pair;
 import org.apache.syncope.common.lib.to.GroupTO;
 import org.apache.syncope.common.lib.to.UserTO;
 import org.apache.syncope.common.lib.types.AuditElements;
@@ -270,6 +271,10 @@ public class NotificationManagerImpl implements 
NotificationManager {
 any = userDAO.find(((UserTO) before).getKey());
 } else if (output instanceof UserTO) {
 any = userDAO.find(((UserTO) output).getKey());
+} else if (output instanceof Pair
+&& ((Pair) output).getRight() instanceof UserTO) {
+
+any = userDAO.find(((UserTO) ((Pair) output).getRight()).getKey());
 } else if (output instanceof ProvisioningResult
 && ((ProvisioningResult) output).getEntity() instanceof 
UserTO) {
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/8df515ec/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
--
diff --git 
a/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
 
b/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
index 3ccfd82..c76986e 100644
--- 
a/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
+++ 
b/core/rest-cxf/src/main/java/org/apache/syncope/core/rest/cxf/service/UserSelfServiceImpl.java
@@ -56,7 +56,7 @@ public class UserSelfServiceImpl extends AbstractServiceImpl 
implements UserSelf
 
 @Override
 public Response read() {
-Pair self = logic.readSelf();
+Pair self = logic.selfRead();
 return Response.ok().
 header(RESTHeaders.RESOURCE_KEY, self.getValue().getKey()).
 header(RESTHeaders.OWNED_ENTITLEMENTS, self.getKey()).
@@ -72,7 +72,7 @@ public class UserSelfServiceImpl extends 

[3/6] syncope git commit: [SYNCOPE-1003] Missing traslations provided

2017-01-31 Thread ilgrosso
[SYNCOPE-1003] Missing traslations provided


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

Branch: refs/heads/2_0_X
Commit: 79418c693dd5308c6d7ca00c96e1fdf1f24c5320
Parents: c3458e4
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:25:48 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:25:48 2017 +0100

--
 .../MailTemplateDirectoryPanel.java |  2 +-
 .../NotificationDirectoryPanel.java | 12 -
 .../console/panels/SecurityQuestionsPanel.java  |  4 +--
 .../panels/TypeExtensionDirectoryPanel.java |  2 +-
 .../policies/AccountPolicyDirectoryPanel.java   |  6 ++---
 .../policies/PasswordPolicyDirectoryPanel.java  |  4 +--
 .../console/policies/PolicyDirectoryPanel.java  |  8 +++---
 .../policies/PolicyRuleDirectoryPanel.java  |  4 +--
 .../console/reports/ReportDirectoryPanel.java   | 16 ++--
 .../reports/ReportTemplateDirectoryPanel.java   |  2 +-
 .../reports/ReportletDirectoryPanel.java|  4 +--
 .../console/status/AnyStatusDirectoryPanel.java |  6 ++---
 .../status/ResourceStatusDirectoryPanel.java|  6 ++---
 .../tasks/NotificationTaskDirectoryPanel.java   | 14 +-
 .../tasks/PropagationTaskDirectoryPanel.java| 18 ++---
 .../tasks/ProvisioningTaskDirectoryPanel.java   | 16 ++--
 .../console/tasks/SchedTaskDirectoryPanel.java  | 18 ++---
 .../notifications/NotificationTasks.properties  | 26 +++
 .../NotificationTasks_it.properties | 26 +++
 .../NotificationTasks_pt_BR.properties  | 26 +++
 .../NotificationTasks_ru.properties | 27 
 21 files changed, 176 insertions(+), 71 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/79418c69/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
--
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
index e3c3f0a..ba1bfd5 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/MailTemplateDirectoryPanel.java
@@ -110,7 +110,7 @@ public class MailTemplateDirectoryPanel
 protected List> getColumns() {
 List> columns = new ArrayList<>();
 columns.add(new PropertyColumn(
-new StringResourceModel("key", this, null), "key", "key"));
+new StringResourceModel("key", this), "key", "key"));
 
 columns.add(new ActionColumn(new 
ResourceModel("actions", "")) {
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/79418c69/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
--
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
index 51f2616..c6de77f 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/notifications/NotificationDirectoryPanel.java
@@ -88,17 +88,17 @@ public class NotificationDirectoryPanel
 protected List> getColumns() {
 List> columns = new ArrayList<>();
 columns.add(new KeyPropertyColumn(
-new StringResourceModel("key", this, null), "key", "key"));
+new StringResourceModel("key", this), "key", "key"));
 columns.add(new PropertyColumn(
-new StringResourceModel("sender", this, null), "sender", 
"sender"));
+new StringResourceModel("sender", this), "sender", "sender"));
 columns.add(new PropertyColumn(
-new StringResourceModel("subject", this, null), "subject", 
"subject"));
+new StringResourceModel("subject", this), "subject", 

[4/6] syncope git commit: Upgrading Swagger UI

2017-01-31 Thread ilgrosso
Upgrading Swagger UI


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

Branch: refs/heads/master
Commit: 07b12385b9f6875f5d29c962a6088baf2c9a6f4f
Parents: b812f8d
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:00:43 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:29:05 2017 +0100

--
 .../src/main/resources/META-INF/resources/swagger/index.html | 4 +++-
 pom.xml  | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/07b12385/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
--
diff --git 
a/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html 
b/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
index 3a033c9..6df05db 100644
--- a/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
+++ b/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
@@ -20,6 +20,7 @@ under the License.
 
 
   
+  
   
   
   Swagger UI - Apache Syncope ${syncope.version}
@@ -102,7 +103,8 @@ under the License.
 docExpansion: "none",
 jsonEditor: false,
 defaultModelRendering: 'schema',
-showRequestHeaders: false
+showRequestHeaders: false,
+showOperationIds: false
   });
 
   // 

http://git-wip-us.apache.org/repos/asf/syncope/blob/07b12385/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 96c9cd6..ede31d5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -403,7 +403,7 @@ under the License.
 
${project.build.directory}/activiti-modeler
 
 1.5.12
-2.2.8
+2.2.10
 
 2.2.4
 1.11.4



[1/6] syncope git commit: Upgrading Swagger UI

2017-01-31 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/2_0_X a9dd8cc16 -> 79418c693
  refs/heads/master b812f8db1 -> d80e02334


Upgrading Swagger UI


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

Branch: refs/heads/2_0_X
Commit: 9707b205499d421da0cc89be5da98e75cc5c05cc
Parents: a9dd8cc
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:00:43 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:00:43 2017 +0100

--
 .../src/main/resources/META-INF/resources/swagger/index.html | 4 +++-
 pom.xml  | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/9707b205/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
--
diff --git 
a/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html 
b/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
index 3a033c9..6df05db 100644
--- a/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
+++ b/ext/swagger-ui/src/main/resources/META-INF/resources/swagger/index.html
@@ -20,6 +20,7 @@ under the License.
 
 
   
+  
   
   
   Swagger UI - Apache Syncope ${syncope.version}
@@ -102,7 +103,8 @@ under the License.
 docExpansion: "none",
 jsonEditor: false,
 defaultModelRendering: 'schema',
-showRequestHeaders: false
+showRequestHeaders: false,
+showOperationIds: false
   });
 
   // 

http://git-wip-us.apache.org/repos/asf/syncope/blob/9707b205/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 3dd51fc..2a40497 100644
--- a/pom.xml
+++ b/pom.xml
@@ -403,7 +403,7 @@ under the License.
 
${project.build.directory}/activiti-modeler
 
 1.5.10
-2.2.8
+2.2.10
 
 2.2.4
 1.11.4



syncope git commit: Upgrading Camel

2017-01-31 Thread ilgrosso
Repository: syncope
Updated Branches:
  refs/heads/master 221d6f866 -> b812f8db1


Upgrading Camel


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

Branch: refs/heads/master
Commit: b812f8db149ca6846f03ecdb064087a28573b2dd
Parents: 221d6f8
Author: Francesco Chicchiriccò 
Authored: Tue Jan 31 17:12:28 2017 +0100
Committer: Francesco Chicchiriccò 
Committed: Tue Jan 31 17:12:28 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/syncope/blob/b812f8db/pom.xml
--
diff --git a/pom.xml b/pom.xml
index dd38cb4..96c9cd6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -359,7 +359,7 @@ under the License.
 
 3.2.0-SNAPSHOT
 
-2.18.1  
+2.18.2  
 
 2.8.6
 



svn commit: r1781029 - /syncope/site/docs/reference-guide.html

2017-01-31 Thread ilgrosso
Author: ilgrosso
Date: Tue Jan 31 08:20:45 2017
New Revision: 1781029

URL: http://svn.apache.org/viewvc?rev=1781029=rev
Log:
Fixing typo - live

Modified:
syncope/site/docs/reference-guide.html

Modified: syncope/site/docs/reference-guide.html
URL: 
http://svn.apache.org/viewvc/syncope/site/docs/reference-guide.html?rev=1781029=1781028=1781029=diff
==
--- syncope/site/docs/reference-guide.html (original)
+++ syncope/site/docs/reference-guide.html Tue Jan 31 08:20:45 2017
@@ -6939,7 +6939,7 @@ Master.audit.sql=audit_mysql_innodb.sql<
 
 
 
-This assumes that the InnoDB engine is enabled in your MySQL instance - if 
this is not the case, then change the value
+This assumes that the InnoDB engine is enabled in your MariaDB instance - if 
this is not the case, then change the value
 for Master.audit to audit.sql.
 
 
@@ -8317,4 +8317,4 @@ Version 2.0.2
 https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/highlight.min.js";>
 hljs.initHighlighting()
 
-
\ No newline at end of file
+




[CONF] Apache Syncope > Jazz

2017-01-31 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Jazz 
 
 
  
 
 
 
 
 
 
 ... 
 
case-insensitive search, selectable via REST and available by default from the Admin Console 
Enduser application's default HTML / CSS template now responsive 
sample External Resource provided, using the Scripted REST connector 
 Apache FOP upgraded to the latest stable version available, providing major enhancements to report export as PDF and RTF 
brand new Log Viewer, which provides full access to Core logs from the Admin console.  
  Image Added  Upgrading from 2.0.1? There are some notes about this process. ...  
 
 
  
 
 
 
 
 
 
 
 
 
 

View page
• 
 
 
 
 
 
 

Add comment
• 
 
 
 
 
 
 

Like 
 
 
  
 
 
  
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 
Stop watching space
• 
 
 
 
 
 
 
Manage notifications 
 
 
 
 
 
 
 
 
 
 
  
 
 
This message was sent by Atlassian Confluence 5.8.4  
 
 
  
 
 
 
 
 
 
 
 
 




syncope git commit: Fix typo

2017-01-31 Thread mdisabatino
Repository: syncope
Updated Branches:
  refs/heads/master 8004d7e9c -> 221d6f866


Fix typo


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

Branch: refs/heads/master
Commit: 221d6f8667390bbd2426041c566c7aa2b95bfab7
Parents: 8004d7e
Author: Marco Di Sabatino Di Diodoro 
Authored: Tue Jan 31 09:12:19 2017 +0100
Committer: Marco Di Sabatino Di Diodoro 
Committed: Tue Jan 31 09:13:42 2017 +0100

--
 .../workingwithapachesyncope/systemadministration/dbms.adoc| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/221d6f86/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
--
diff --git 
a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
 
b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
index 7b9749e..4199b44 100644
--- 
a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
+++ 
b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
@@ -74,7 +74,7 @@ Master.audit.sql=audit_mysql_innodb.sql
 
 
 [WARNING]
-This assumes that the InnoDB engine is enabled in your MySQL instance - if 
this is not the case, then change the value
+This assumes that the InnoDB engine is enabled in your MariaDB instance - if 
this is not the case, then change the value
 for `Master.audit` to `audit.sql`.
 
 [WARNING]



syncope git commit: Fix typo

2017-01-31 Thread mdisabatino
Repository: syncope
Updated Branches:
  refs/heads/2_0_X 628c0e6b3 -> a9dd8cc16


Fix typo


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

Branch: refs/heads/2_0_X
Commit: a9dd8cc16bac39c3f1b6bc5f66ed292b87a7ca14
Parents: 628c0e6
Author: Marco Di Sabatino Di Diodoro 
Authored: Tue Jan 31 09:12:19 2017 +0100
Committer: Marco Di Sabatino Di Diodoro 
Committed: Tue Jan 31 09:12:40 2017 +0100

--
 .../workingwithapachesyncope/systemadministration/dbms.adoc| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/syncope/blob/a9dd8cc1/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
--
diff --git 
a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
 
b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
index 7b9749e..4199b44 100644
--- 
a/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
+++ 
b/src/main/asciidoc/reference-guide/workingwithapachesyncope/systemadministration/dbms.adoc
@@ -74,7 +74,7 @@ Master.audit.sql=audit_mysql_innodb.sql
 
 
 [WARNING]
-This assumes that the InnoDB engine is enabled in your MySQL instance - if 
this is not the case, then change the value
+This assumes that the InnoDB engine is enabled in your MariaDB instance - if 
this is not the case, then change the value
 for `Master.audit` to `audit.sql`.
 
 [WARNING]



[CONF] Apache Syncope > Upgrade from 2.0.1 to 2.0.2

2017-01-31 Thread Francesco Chicchiricco (Confluence)
Title: Message Title



 
 
 
 
 
 
 

Francesco Chicchiricco edited a page 
 
 
  
 
 
 
 
 
 
 
  
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Upgrade from 2.0.1 to 2.0.2 
 
 
  
 
 
 
 
 
 
 ... Replace the following files with their 2.0.2 counterparts (re-apply any customization previously made): 
 
 endusercore/src/main/resources/endusersecurityContext.properties  xml   
 core/src/main/resources/restCXFContext.xml   
 core/src/main/resources/log4j2.xml
 all files under enduser/src/main/webapp/app/
      
 
 
  
 
 
 
 
 
 
 
 
 
 

View page
• 
 
 
 
 
 
 

Add comment
• 
 
 
 
 
 
 

Like 
 
 
  
 
 
  
 
 
  
 
 
  
 
 
 
 
 
 
 
 
 
 
Stop watching space
• 
 
 
 
 
 
 
Manage notifications 
 
 
 
 
 
 
 
 
 
 
  
 
 
This message was sent by Atlassian Confluence 5.8.4