<%-- The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the Venice Web Communities System. The Initial Developer of the Original Code is Eric J. Bowersox , for Silverwrist Design Studios. Portions created by Eric J. Bowersox are Copyright (C) 2001 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved. Contributor(s): --%> <%@ page import = "java.util.*" %> <%@ page import = "com.silverwrist.util.StringUtil" %> <%@ page import = "com.silverwrist.venice.core.*" %> <%@ page import = "com.silverwrist.venice.servlets.Variables" %> <%@ page import = "com.silverwrist.venice.servlets.format.*" %> <% AdminFindUser data = AdminFindUser.retrieve(request); Variables.failIfNull(data); RenderData rdat = RenderConfig.createRenderData(application,request,response); String stdfont = rdat.getStdFontTag(ColorSelectors.CONTENT_FOREGROUND,2); %> <% rdat.writeContentHeader(out,"User Account Management",null); %> <%= stdfont %>">Return to System Administration Menu

<%-- Display the search form --%> <% if (rdat.useHTMLComments()) { %><% } %>

">
<%= rdat.getStdFontTag(ColorSelectors.CONTENT_FOREGROUND,4) %>Find Users:
<%= stdfont %> Display all users whose  
  
" ALT="Search" WIDTH=80 HEIGHT=24 BORDER=0>
<% List results = data.getResultsList(); %> <% if (results!=null) { %> <% if (rdat.useHTMLComments()) { %><% } %> <% // Determine the number of results to display and whether to display a "next" button int dcount = results.size(); boolean go_next = false; if (dcount>data.getNumResultsDisplayed()) { // there's a "next" dcount = data.getNumResultsDisplayed(); go_next = true; } // end if %>
<%= rdat.getStdFontTag(ColorSelectors.CONTENT_FOREGROUND,3) %> <%-- The initial search results --%> Search Results <% if (data.getFindCount()>0) { %> (Displaying <%= data.getOffset() + 1 %>-<%= data.getOffset() + dcount %> of <%= data.getFindCount() %>) <% } else { %>(None)<% } %> <% if (go_next || (data.getOffset()>0)) { %> <%-- The navigational form that allows us to page through the results --%> <% if (rdat.useHTMLComments()) { %><% } %>
">
<% if (data.getOffset()>0) { %> " ALT="Previous" WIDTH=80 HEIGHT=24 BORDER=0> <% } else { %> " WIDTH=80 HEIGHT=24 BORDER=0> <% } // end if %>    <% if (go_next) { %> " ALT="Next" WIDTH=80 HEIGHT=24 BORDER=0> <% } else { %> " WIDTH=80 HEIGHT=24 BORDER=0> <% } // end if %>
<% } else { %> <% } %>

<%-- Display the results of the search --%> <% for (int i=0; i <% } // end for %>
" ALT="*" WIDTH=14 HEIGHT=14 BORDER=0> <%= stdfont %> <% UserFound uf = (UserFound)(results.get(i)); %> "><%= uf.getName() %>
<%= StringUtil.encodeHTML(uf.getGivenName()) %> <%= StringUtil.encodeHTML(uf.getFamilyName()) %>, from <%= StringUtil.encodeHTML(uf.getLocality()) %>, <%= StringUtil.encodeHTML(uf.getRegion()) %> <%= uf.getCountry() %> <% if (!StringUtil.isStringEmpty(uf.getDescription())) { %>
<%= StringUtil.encodeHTML(uf.getDescription()) %> <% } // end if %>
">[Modify User]

<% } // end if (results found) %>