<%-- 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-02 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved. Contributor(s): --%> <%@ page import = "java.util.*" %> <%@ page import = "com.silverwrist.venice.core.*" %> <%@ page import = "com.silverwrist.venice.ui.view.JSPView" %> <%@ taglib uri="/tlds/util" prefix="util" %> <%@ taglib uri="/tlds/community" prefix="comm" %> <%@ taglib uri="/tlds/conference" prefix="conf" %> <% JSPView view = JSPView.get(request); List confs = (List)(view.getRequestAttribute("conference.list")); final int[] a_prev = (int[])(view.getRequestAttribute("conference.prev.array")); final int[] a_next = (int[])(view.getRequestAttribute("conference.next.array")); final boolean[] a_hidden = (boolean[])(view.getRequestAttribute("conference.hidden.array")); %> Manage conference list for community "" Community: conf/conferences.js.vs?cc= Return to Conference List

<% if (confs.size()>0) { %> <% for (int i=0; i <% ConferenceContext conf = (ConferenceContext)(confs.get(i)); %> <% } // end for %>
<% if (a_hidden[i]) { %> conf/manage_list_sethide.js.vs?cc=&conf=<%= conf.getConfID() %>&flag=0 <% } else { %> conf/manage_list_sethide.js.vs?cc=&conf=<%= conf.getConfID() %>&flag=1 <% } // end if %> <% if (i==(confs.size()-1)) { %> <% } else { %> conf/manage_list_swap.js.vs?cc=&conf=<%= conf.getConfID() %>&other=<%= a_next[i] %> <% } // end if %> <% if (i==0) { %> <% } else { %> conf/manage_list_swap.js.vs?cc=&conf=<%= conf.getConfID() %>&other=<%= a_prev[i] %> <% } // end if %> conf/manage_list_delete.js.vs?cc=&conf=<%= conf.getConfID() %> <%= conf.getName() %>

This indicates that the conference is displayed in the community's conference list. Click the symbol to hide it.
This indicates that the conference is hidden in the community's conference list. Click the symbol to display it.
Click this symbol to move the specified conference down in the community's conference list.
Click this symbol to move the specified conference up in the community's conference list.
Click this symbol to delete the specified conference. You will be prompted to confirm this action.
<% } else { %> There are no conferences in this community. <% } // end if %>