<%-- 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.*" %> <% ConferenceSequence data = ConferenceSequence.retrieve(request); Variables.failIfNull(data); RenderData rdat = RenderConfig.createRenderData(application,request,response); %> <% if (rdat.useHTMLComments()) { %><% } %> <% rdat.writeContentHeader(out,"Manage Conference List",null); %> <%= rdat.getStdFontTag(null,2) %> Return to Conference List

<% if (data.getNumConferences()>0) { %> <% for (int i=0; i <% ConferenceContext conf = data.getConference(i); String partial = "confops?sig=" + data.getSIGID() + "&conf=" + conf.getConfID(); String tail, image, alt; %> <% } // end for %>
<% if (data.isConferenceHidden(conf)) { // conference is hidden - this command will show it tail = "&cmd=SH&flag=0"; image = "icn_off.gif"; alt = "Hidden (toggle)"; } // end if else { // conference is non-hidden - this command will hide it tail = "&cmd=SH&flag=1"; image = "icn_on.gif"; alt = "Displayed (toggle)"; } // end else %> <%= alt %> <% if (i==(data.getNumConferences()-1)) { %> <% } else { %> <% tail = "&cmd=SS&oc=" + data.getNextConfID(conf); %> ALT="Move Down" BORDER=0 WIDTH=16 HEIGHT=16> <% } // end if %> <% if (i==0) { %> <% } else { %> <% tail = "&cmd=SS&oc=" + data.getPrevConfID(conf); %> ALT="Move Up" BORDER=0 WIDTH=16 HEIGHT=16> <% } // end if %> "> ALT="Remove" BORDER=0 WIDTH=16 HEIGHT=16> <%= rdat.getStdFontTag(null,2) %> <%= StringUtil.encodeHTML(conf.getName()) %>

ALT="Displayed (toggle)" BORDER=0 WIDTH=16 HEIGHT=16> <%= rdat.getStdFontTag(null,2) %> This indicates that the conference is displayed in the SIG's conference list. Click the symbol to hide it.
ALT="Hidden (toggle)" BORDER=0 WIDTH=16 HEIGHT=16> <%= rdat.getStdFontTag(null,2) %> This indicates that the conference is hidden in the SIG's conference list. Click the symbol to display it.
ALT="Move Down" BORDER=0 WIDTH=16 HEIGHT=16> <%= rdat.getStdFontTag(null,2) %> Click this symbol to move the specified conference down in the SIG's conference list.
ALT="Move Up" BORDER=0 WIDTH=16 HEIGHT=16> <%= rdat.getStdFontTag(null,2) %> Click this symbol to move the specified conference up in the SIG's conference list.
ALT="Remove" BORDER=0 WIDTH=16 HEIGHT=16> <%= rdat.getStdFontTag(null,2) %> Click this symbol to delete the specified conference. You will be prompted to confirm this action.
<% } else { %> <%= rdat.getStdFontTag(null,2) %>There are no conferences in this SIG. <% } // end if %> <% rdat.writeFooter(out); %>