svn commit: samba r21366 - in branches/SAMBA_4_0/webapps/swat/source/class/swat/module/ldbbrowse: .

idra at samba.org idra at samba.org
Thu Feb 15 14:48:48 GMT 2007


Author: idra
Date: 2007-02-15 14:48:47 +0000 (Thu, 15 Feb 2007)
New Revision: 21366

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=21366

Log:

Until we have a schema enforcing module (which will make it
impossible to add object without an objectclass), we need to
use the default ldb search filter (an empty one), to retrieve
all objects, and all record contents.


Modified:
   branches/SAMBA_4_0/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js


Changeset:
Modified: branches/SAMBA_4_0/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js
===================================================================
--- branches/SAMBA_4_0/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js	2007-02-15 14:09:39 UTC (rev 21365)
+++ branches/SAMBA_4_0/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js	2007-02-15 14:48:47 UTC (rev 21366)
@@ -311,7 +311,7 @@
           }
 
           // Build the search expression
-          var searchExpr = "(objectclass=*)";
+          var searchExpr = "";
 
           // Get our module descriptor
           var module = fsm.getObject("swat.main.module");
@@ -415,7 +415,7 @@
           baseDN = hierarchy.reverse().join(",");
 
           // Build the search expression
-          var searchExpr = "(objectclass=*)";
+          var searchExpr = "";
 
           // Get our module descriptor
           var module = fsm.getObject("swat.main.module");



More information about the samba-cvs mailing list