- New words in the dictionary - Bugs fixed in HTML Checker tag stack which rejected <IMG> and <LI> and had a potential infinite loop - Multipart handling now handles Windows-uploaded filenames correctly - Bug fixed in PostOperations that was causing nuke to fail and scribble and hide to succeed but throw an internal servlet error - Enhanced conference listing now gives a better activity report in conferences - Top Content font enlarged - Null posts now work (they used to in WebbMe) - Slippage display corrected - Probably a couple of other things I can't think of just now.
		
			
				
	
	
		
			76 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
<%--
 | 
						|
  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 <http://www.mozilla.org/MPL/>.
 | 
						|
 | 
						|
  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 <erbo@silcom.com>,
 | 
						|
  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.*" %>
 | 
						|
<%
 | 
						|
  ConferenceListing data = ConferenceListing.retrieve(request);
 | 
						|
  Variables.failIfNull(data);
 | 
						|
  RenderData rdat = RenderConfig.createRenderData(application,request,response);
 | 
						|
%>
 | 
						|
<% if (rdat.useHTMLComments()) { %><!-- Conference list for SIG #<%= data.getSIGID() %> --><% } %>
 | 
						|
<% rdat.writeContentHeader(out,"Conference List:",data.getSIGName()); %>
 | 
						|
<% if (data.getNumConferences()>0) { %>
 | 
						|
  <TABLE BORDER=0 ALIGN=LEFT>
 | 
						|
    <% for (int i=0; i<data.getNumConferences(); i++) { %>
 | 
						|
      <TR VALIGN=TOP>
 | 
						|
        <TD ALIGN=CENTER WIDTH=14>
 | 
						|
          <IMG SRC="<%= rdat.getFullImagePath("purple-ball.gif") %>" ALT="*" WIDTH=14 HEIGHT=14 BORDER=0>
 | 
						|
        </TD>
 | 
						|
        <TD ALIGN=LEFT><%= rdat.getStdFontTag(null,2) %>
 | 
						|
          <% String path = "confdisp?sig=" + data.getSIGID() + "&conf=" + data.getConferenceID(i); %>
 | 
						|
          <A HREF="<%= rdat.getEncodedServletPath(path) %>"><%= StringUtil.encodeHTML(data.getConferenceName(i)) %></A> -
 | 
						|
          Latest activity: <%= rdat.getActivityString(data.getLastUpdateDate(i)) %>
 | 
						|
          <% if (data.anyUnread(i)) { %>
 | 
						|
            <IMG SRC="<%= rdat.getFullImagePath("tag_new.gif") %>" ALT=\"New!\" BORDER=0 WIDTH=40 HEIGHT=20>
 | 
						|
          <% } // end if %>
 | 
						|
          <BR>
 | 
						|
          <% int count = data.getNumHosts(i); %>
 | 
						|
          <% if (count>0) { %>
 | 
						|
            <% if (count>1) { %>Hosts<% } else { %>Host<% } %>:
 | 
						|
            <% for (int j=0; j<count; j++) { %>
 | 
						|
              <A HREF="<%= rdat.getEncodedServletPath("user/" + data.getHostName(i,j)) %>"><%= data.getHostName(i,j) %></A><% if (j<(count-1)) { %>,<% } %>
 | 
						|
            <% } // end for (each hostname) %>
 | 
						|
          <% } else { %>
 | 
						|
            Hosts: <EM>(none)</EM>
 | 
						|
          <% } // end if (hosts present in the conference) %><BR>	
 | 
						|
          <EM><%= StringUtil.encodeHTML(data.getDescription(i)) %></EM>
 | 
						|
        </FONT></TD>
 | 
						|
      </TR>
 | 
						|
    <% } // end for (each conference) %>
 | 
						|
  </TABLE><BR CLEAR=LEFT>
 | 
						|
<% } else { %>
 | 
						|
  <EM>No conferences found in this SIG.</EM><BR>
 | 
						|
<% } // end if (conferences present) %>
 | 
						|
<P>
 | 
						|
<DIV ALIGN="LEFT">
 | 
						|
  <% if (data.canManageConferences()) { %>
 | 
						|
    <A HREF="<%= rdat.getEncodedServletPath("confops?cmd=S&sig=" + data.getSIGID()) %>"><IMG
 | 
						|
     SRC="<%= rdat.getFullImagePath("bn_manage.gif") %>" ALT="Manage" WIDTH=80 HEIGHT=24
 | 
						|
     BORDER=0></A> 
 | 
						|
  <% } // end if %>
 | 
						|
  <% if (data.canCreateConference()) { %>
 | 
						|
    <A HREF="<%= rdat.getEncodedServletPath("confops?cmd=C&sig=" + data.getSIGID()) %>"><IMG
 | 
						|
     SRC="<%= rdat.getFullImagePath("bn_create_new.gif") %>" ALT="Create New" WIDTH=80 HEIGHT=24
 | 
						|
     BORDER=0></A> 
 | 
						|
  <% } // end if %>
 | 
						|
</DIV>
 | 
						|
<% rdat.writeFooter(out); %>
 |