Update of /var/cvs/applications/searchrelate/templates
In directory james.mmbase.org:/tmp/cvs-serv27967

Modified Files:
        Searcher.js.jsp 
Log Message:
needed canEditrelations value in more places



See also: http://cvs.mmbase.org/viewcvs/applications/searchrelate/templates


Index: Searcher.js.jsp
===================================================================
RCS file: /var/cvs/applications/searchrelate/templates/Searcher.js.jsp,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -b -r1.58 -r1.59
--- Searcher.js.jsp     27 Nov 2008 16:03:02 -0000      1.58
+++ Searcher.js.jsp     28 Nov 2008 15:02:30 -0000      1.59
@@ -19,7 +19,7 @@
  * - mmsrCommitted         (use   $("div.mm_related").bind("mmsrCommitted", 
function (e, submitter, status, relater) ) )
  *
  * @author Michiel Meeuwissen
- * @version $Id: Searcher.js.jsp,v 1.58 2008/11/27 16:03:02 andre Exp $
+ * @version $Id: Searcher.js.jsp,v 1.59 2008/11/28 15:02:30 andre Exp $
  */
 
 
@@ -505,6 +505,7 @@
     this.value = "";
     this.offset = 0;
     this.transaction   = null;
+    this.canEditrelations = $(r.div).hasClass("can_editrelations");
     var self = this;
     $(d).find("span.transactioname").each(function() {
         this.transaction = this.nodeValue;
@@ -590,7 +591,8 @@
                    fields: this.fields, 
                    pagesize: this.pagesize, 
                    maxpages: this.maxpages, 
-                   customizedir: this.customizedir };
+                   customizedir: this.customizedir,
+                   editrelations: this.canEditrelations };
 
     var result = this.searchResults["" + offset];
     this.logger.debug("Searching " + this.searchUrl + " " + params);
@@ -716,7 +718,7 @@
 
 MMBaseSearcher.prototype.getTr = function(node) {
     var url = "${mm:link('/mmbase/searchrelate/node.tr.jspx')}";
-    var params = {id: this.getQueryId(), node: node, fields: this.fields, 
customizedir: this.customizedir};
+    var params = {id: this.getQueryId(), node: node, fields: this.fields, 
customizedir: this.customizedir, editrelations: this.canEditrelations};
     var result;
     $.ajax({async: false, url: url, type: "GET", dataType: "xml", data: params,
             complete: function(res, status){
_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to