Author: keith
Date: Mon Jul 21 01:44:35 2008
New Revision: 19763
URL: http://wso2.org/svn/browse/wso2?view=rev&revision=19763

Log:
Suppresing anonymous and system users when dispaying user and roles


Modified:
   trunk/mashup/java/modules/www/service_security_manager.jsp

Modified: trunk/mashup/java/modules/www/service_security_manager.jsp
URL: 
http://wso2.org/svn/browse/wso2/trunk/mashup/java/modules/www/service_security_manager.jsp?rev=19763&r1=19762&r2=19763&view=diff
==============================================================================
--- trunk/mashup/java/modules/www/service_security_manager.jsp  (original)
+++ trunk/mashup/java/modules/www/service_security_manager.jsp  Mon Jul 21 
01:44:35 2008
@@ -130,6 +130,9 @@
             {
                 selected = users[i].firstChild.firstChild.nodeValue;
                 name = users[i].lastChild.firstChild.nodeValue;
+                if ("system" == name || "anonymous" == name) {
+                    continue;
+                }
                 checked = '';
                 if ("true" == selected) {
                     checked ='checked="true"';

_______________________________________________
Mashup-dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/mashup-dev

Reply via email to