<%-- 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.*" %> <% ConferenceMembership data = ConferenceMembership.retrieve(request); Variables.failIfNull(data); RenderData rdat = RenderConfig.createRenderData(application,request,response); %> <% rdat.writeContentHeader(out,"Set Conference Membership:",data.getConfName()); %> <%= rdat.getStdFontTag(null,2) %> ">Return to Manage Conference Menu

<%= rdat.getStdFontTag(null,3) %>Find users in SIG "<%= data.getSIGName() %>":

"> <%= rdat.getStdFontTag(null,2) %> Display all SIG members whose  

" ALT="Search" WIDTH=80 HEIGHT=24 BORDER=0>
<% if (data.displayList()) { %> <% int dcount = data.getSize(); %>
<% if (data.conferenceMemberList()) { %> <%-- The conference list header --%> <%= rdat.getStdFontTag(null,3) %> Members of Conference "<%= StringUtil.encodeHTML(data.getConfName()) %>":
<% } else { %> <% // Determine the number of results to display and whether to display a "next" button boolean go_next = false; if (dcount>data.getNumResultsDisplayed()) { // there's a "next" dcount = data.getNumResultsDisplayed(); go_next = true; } // end if %>
<%= rdat.getStdFontTag(null,2) %> <%-- The search results header --%> 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 { %> <% } %>

<% } // end if %> <%-- Display the results of the search --%>
"> <% for (int i=0; i <% UserFound uf = data.getItem(i); %> <% } // end for %>
" ALT="*" WIDTH=14 HEIGHT=14 BORDER=0> <%= rdat.getStdFontTag(null,2) %> "><%= uf.getName() %> <%= rdat.getStdFontTag(null,2) %> <% data.outputDropDown(out,uf.getUID(),uf.getLevel()); %>

" NAME="update" ALT="Update" WIDTH=80 HEIGHT=24 BORDER=0>

<% } // end if %> <% rdat.writeFooter(out); %>