Repository: syncope
Updated Branches:
  refs/heads/2_0_X 748afdc89 -> 57511d6e7
  refs/heads/master 1174b1d97 -> 581648c89


It's 2018 since a while...


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

Branch: refs/heads/2_0_X
Commit: 57511d6e7788bd8f82ae5f96743fc62ebf8b257b
Parents: 748afdc
Author: Francesco Chicchiriccò <[email protected]>
Authored: Fri Jan 12 08:57:06 2018 +0100
Committer: Francesco Chicchiriccò <[email protected]>
Committed: Fri Jan 12 08:57:06 2018 +0100

----------------------------------------------------------------------
 NOTICE                                                       | 2 +-
 client/cli/NOTICE                                            | 2 +-
 client/console/NOTICE                                        | 2 +-
 deb/console/NOTICE                                           | 2 +-
 deb/core/NOTICE                                              | 2 +-
 deb/enduser/NOTICE                                           | 2 +-
 .../src/test/resources/rest/UpdateScript.groovy              | 8 +++++++-
 ide/eclipse/NOTICE                                           | 2 +-
 ide/netbeans/NOTICE                                          | 2 +-
 installer/NOTICE                                             | 2 +-
 standalone/NOTICE                                            | 2 +-
 11 files changed, 17 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
index 2950cef..f9f015b 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/client/cli/NOTICE
----------------------------------------------------------------------
diff --git a/client/cli/NOTICE b/client/cli/NOTICE
index e5ccd95..3171f8e 100644
--- a/client/cli/NOTICE
+++ b/client/cli/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/client/console/NOTICE
----------------------------------------------------------------------
diff --git a/client/console/NOTICE b/client/console/NOTICE
index 7c247d3..527bc38 100644
--- a/client/console/NOTICE
+++ b/client/console/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/deb/console/NOTICE
----------------------------------------------------------------------
diff --git a/deb/console/NOTICE b/deb/console/NOTICE
index 5d3ce0a..6b58cb0 100644
--- a/deb/console/NOTICE
+++ b/deb/console/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/deb/core/NOTICE
----------------------------------------------------------------------
diff --git a/deb/core/NOTICE b/deb/core/NOTICE
index b3f0bd3..62f339b 100644
--- a/deb/core/NOTICE
+++ b/deb/core/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/deb/enduser/NOTICE
----------------------------------------------------------------------
diff --git a/deb/enduser/NOTICE b/deb/enduser/NOTICE
index 32a67bc..c2c1e56 100644
--- a/deb/enduser/NOTICE
+++ b/deb/enduser/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/fit/core-reference/src/test/resources/rest/UpdateScript.groovy
----------------------------------------------------------------------
diff --git a/fit/core-reference/src/test/resources/rest/UpdateScript.groovy 
b/fit/core-reference/src/test/resources/rest/UpdateScript.groovy
index 37371a7..c0d258a 100644
--- a/fit/core-reference/src/test/resources/rest/UpdateScript.groovy
+++ b/fit/core-reference/src/test/resources/rest/UpdateScript.groovy
@@ -79,8 +79,14 @@ case "UPDATE":
     
     String payload = mapper.writeValueAsString(node);
 
-    webClient.path("/users/" + uid);
+    // this if update works with PUT
+    webClient.path("users").path(uid);
     webClient.put(payload);
+    
+    // this instead if update works with PATCH
+    //webClient.path("users").path(uid);
+    
//WebClient.getConfig(webClient).getRequestContext().put("use.async.http.conduit",
 true);
+    //webClient.invoke("PATCH", payload);
 
   default:
     break

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/ide/eclipse/NOTICE
----------------------------------------------------------------------
diff --git a/ide/eclipse/NOTICE b/ide/eclipse/NOTICE
index a7a92fc..58ffaea 100644
--- a/ide/eclipse/NOTICE
+++ b/ide/eclipse/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/ide/netbeans/NOTICE
----------------------------------------------------------------------
diff --git a/ide/netbeans/NOTICE b/ide/netbeans/NOTICE
index 83f23f3..f56d19f 100644
--- a/ide/netbeans/NOTICE
+++ b/ide/netbeans/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/installer/NOTICE
----------------------------------------------------------------------
diff --git a/installer/NOTICE b/installer/NOTICE
index 58aee89..59cbff9 100644
--- a/installer/NOTICE
+++ b/installer/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/syncope/blob/57511d6e/standalone/NOTICE
----------------------------------------------------------------------
diff --git a/standalone/NOTICE b/standalone/NOTICE
index 30d9b93..4757afa 100644
--- a/standalone/NOTICE
+++ b/standalone/NOTICE
@@ -1,5 +1,5 @@
 Apache Syncope
-Copyright 2012-2017 The Apache Software Foundation
+Copyright 2012-2018 The Apache Software Foundation
 
 This product includes software developed by:
 The Apache Software Foundation (http://www.apache.org/).

Reply via email to