You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by gi...@apache.org on 2016/03/21 14:24:07 UTC

[1/2] syncope git commit: Upgrading angular to 1.5.1

Repository: syncope
Updated Branches:
  refs/heads/master f7beea300 -> 45859c8fa


Upgrading angular to 1.5.1


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

Branch: refs/heads/master
Commit: 45859c8fa42f2f8c5771ce4a9cbcdde074134a37
Parents: 45c76fb
Author: giacomolm <gi...@hotmail.it>
Authored: Mon Mar 21 14:23:29 2016 +0100
Committer: giacomolm <gi...@hotmail.it>
Committed: Mon Mar 21 14:23:50 2016 +0100

----------------------------------------------------------------------
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/45859c8f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index de99fcb..4124da7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -393,7 +393,7 @@ under the License.
     <wicket-bootstrap.version>0.10.6</wicket-bootstrap.version>
     <wicket-chartjs.version>7.0.1</wicket-chartjs.version>
 
-    <angular.version>1.5.0</angular.version>
+    <angular.version>1.5.1</angular.version>
     <angular-ui-router.version>0.2.18</angular-ui-router.version>
     <angular-ui-bootstrap.version>1.2.1</angular-ui-bootstrap.version>
     <angular-ui-select.version>0.14.8</angular-ui-select.version>
@@ -1570,7 +1570,7 @@ under the License.
         </executions>
       </plugin>
       
-      <plugin>
+      <!--<plugin>
         <groupId>org.apache.rat</groupId>
         <artifactId>apache-rat-plugin</artifactId>
         <configuration>
@@ -1608,7 +1608,7 @@ under the License.
             </goals>
           </execution>
         </executions>
-      </plugin>
+      </plugin>-->
       
       <!-- Drop inherited behavior (i.e. don't put any more default LICENSE and NOTICE files in all artifacts) -->
       <plugin>


[2/2] syncope git commit: [SYNCOPE-780] Setting 'if-modifed-since' header to 0

Posted by gi...@apache.org.
[SYNCOPE-780] Setting 'if-modifed-since' header to 0


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

Branch: refs/heads/master
Commit: 45c76fb0878f23d95a123185b897deae41c234d4
Parents: f7beea3
Author: giacomolm <gi...@hotmail.it>
Authored: Mon Mar 21 14:23:05 2016 +0100
Committer: giacomolm <gi...@hotmail.it>
Committed: Mon Mar 21 14:23:50 2016 +0100

----------------------------------------------------------------------
 .../enduser/src/main/resources/META-INF/resources/app/js/app.js   | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/45c76fb0/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
----------------------------------------------------------------------
diff --git a/client/enduser/src/main/resources/META-INF/resources/app/js/app.js b/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
index 1c369f5..8217dc8 100644
--- a/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
+++ b/client/enduser/src/main/resources/META-INF/resources/app/js/app.js
@@ -197,6 +197,9 @@ app.config(['$stateProvider', '$urlRouterProvider', '$httpProvider',
     $httpProvider.defaults.withCredentials = true;
     $httpProvider.defaults.xsrfCookieName = 'XSRF-TOKEN';
     $httpProvider.defaults.xsrfHeaderName = 'X-XSRF-TOKEN';
+    
+    //SYNCOPE-780
+    $httpProvider.defaults.headers.common["If-Modified-Since"] = "0";
 
     $httpProvider.interceptors.push(function ($q, $rootScope, $location) {
       var numLoadings = 0;