]> source.dussan.org Git - archiva.git/commitdiff
[MRM-1610] Use Jackson as jaxrs provider for cxf for performance reasons
authorOlivier Lamy <olamy@apache.org>
Thu, 1 Mar 2012 11:46:24 +0000 (11:46 +0000)
committerOlivier Lamy <olamy@apache.org>
Thu, 1 Mar 2012 11:46:24 +0000 (11:46 +0000)
fix proxy connector screen update policies.

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1295525 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/archiva/proxy-connectors.js

index dbd73ec98a9a43c9c83cf082f88565140b76ecbf..6cc6272a7863b1dd231ab7beb7289ff7ae1a8b98 100644 (file)
@@ -80,9 +80,11 @@ $(function() {
     //this.modified.subscribe(function(newValue){$.log("ProxyConnector modified:"+newValue)});
 
     this.updatePolicyEntry=function(key,value){
-      for(var i=0;i<policiesEntries.length;i++){
-        if (policiesEntries[i].key==key){
-          policiesEntries[i].value=value;
+      $.log("updatePolicyEntry:"+key+":"+value);
+      for(var i=0;i<self.policiesEntries().length;i++){
+        if (self.policiesEntries()[i].key==key){
+          self.policiesEntries()[i].value=value;
+          $.log("really updatedPolicyEntry:"+key+":"+self.policiesEntries()[i].value);
           self.modified(true);
         }
       }
@@ -138,8 +140,13 @@ $(function() {
     }
 
     changePolicyOption=function(id){
-      var value = $("#main-content #policy-"+id + " option:selected").val();
-      self.proxyConnector.updatePolicyEntry(id,value);
+      var selectedOption=$("#main-content #policy-"+id + " option:selected");
+      if (selectedOption.length>0){
+        var value = selectedOption.val();
+        $.log("changePolicyOption:"+id+":"+value);
+        self.proxyConnector.updatePolicyEntry(id,value);
+
+      }
     }
 
 
@@ -366,9 +373,8 @@ $(function() {
                                                 proxyConnector:ko.toJS(proxyConnector)
                                                 } ).html();
 
-      $.log("tmpl:"+tmplHtml);
       targetContent.append(tmplHtml);
-      $.log("showSettings#targetContent:"+id+","+targetContent.length+","+targetContent.attr("id")+",html:"+targetContent.html());
+
       var targetImg = $((targetImgStartId?targetImgStartId:"#proxy-connectors-grid-remoterepo-settings-edit-")
                             +proxyConnector.sourceRepoId()+"-"+proxyConnector.targetRepoId());
       targetImg.attr("data-content",targetContent.html());
@@ -618,7 +624,9 @@ $(function() {
     if (data==null){
       return null;
     }
-    return new PolicyInformation(mapStringArray(data.options),data.defaultOption,data.id,data.name);
+    var policyInformation = new PolicyInformation(mapStringArray(data.options),data.defaultOption,data.id,data.name);
+    $.log("policyInformation.options:"+policyInformation.options());
+    return policyInformation;
   }
 
   mapPolicyInformations=function(data){