HMTLContentBar.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:4k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: HMTLContentBar.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. import java.util.*;
  3. import net.wastl.webmail.ui.*;
  4. import net.wastl.webmail.ui.html.*;
  5. import net.wastl.webmail.ui.xml.*;
  6. import net.wastl.webmail.server.*;
  7. import net.wastl.webmail.server.http.HTTPRequestHeader;
  8. import net.wastl.webmail.misc.*;
  9. import gnu.regexp.*;
  10. /*
  11.  * HMTLContentBar.java
  12.  *
  13.  * Created: Wed Sep  1 13:08:11 1999
  14.  *
  15.  * Copyright (C) 1999-2000 Sebastian Schaffert
  16.  * 
  17.  * This program is free software; you can redistribute it and/or
  18.  * modify it under the terms of the GNU General Public License
  19.  * as published by the Free Software Foundation; either version 2
  20.  * of the License, or (at your option) any later version.
  21.  * 
  22.  * This program is distributed in the hope that it will be useful,
  23.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25.  * GNU General Public License for more details.
  26.  * 
  27.  * You should have received a copy of the GNU General Public License
  28.  * along with this program; if not, write to the Free Software
  29.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  30.  */
  31. /**
  32.  * The content bar on the left.
  33.  *
  34.  * provides: content bar
  35.  * requires:
  36.  *
  37.  * @author Sebastian Schaffert
  38.  * @version
  39.  */
  40. public class HMTLContentBar implements ContentBar, Plugin, URLHandler {
  41.     
  42.     public static final String VERSION="1.1";
  43.     public static final String URL="/content";
  44.     String template;
  45.     String bar;
  46.     ContentProviderHeap providers;
  47.     Storage store;
  48.     public HMTLContentBar() {
  49. providers=new ContentProviderHeap(20);
  50.     }
  51.     
  52.     public void register(WebMailServer parent) {
  53. this.store=parent.getStorage();
  54. parent.setContentBar(this);
  55. parent.getURLHandler().registerHandler(URL,this);
  56.     }
  57.     public String getVersion() {
  58. return VERSION;
  59.     }
  60.     public String getName() {
  61. return "ContentBar";
  62.     }
  63.     public String getDescription() {
  64. return "This is the content-bar on the left frame in the mailbox window. "+
  65.     "ContentProviders register with this content-bar to have a link and an icon added.";
  66.     }
  67.     public String getURL() {
  68. return URL;
  69.     }
  70.     public void registerContentItem(ContentProvider provider) {
  71. providers.insert(provider);
  72. initBar();
  73.     }
  74.     protected void initBar() {
  75. bar="";
  76. ContentProviderHeap tmp=providers.getClone();
  77. while(!tmp.isEmpty()) {
  78.     ContentProvider c=tmp.next();
  79.     bar+="<A HREF="<<BASE>>/SESS-<<SESSION>>"+c.getURL()+"" TARGET=""+c.getTarget()+"" onMouseOver="self.status='"+
  80. c.getDescription()+"';"><IMG SRC="<<BASE>>"+c.getIconPath()+"" BORDER=0 ALT=""+c.getName()+""></A></BR>";
  81. }
  82.     }
  83.     
  84.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws WebMailException {
  85. if(session == null) {
  86.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  87. }
  88. WebMailSession sess=(WebMailSession)session;
  89. //  if(store != null) {
  90. //      template=store.getTextFile(store.getStringResource("content",sess.getLocale()),sess.getLocale());
  91. //      try {
  92. //  RE regexp2=new RE("<<CONTENTBAR>>",RE.REG_ICASE & RE.REG_MULTILINE);
  93. //  REMatch[] matches=regexp2.getAllMatches(template);
  94. //  for(int i=0;i<matches.length;i++) {     
  95. //      template=regexp2.substitute(template,bar,0);
  96. //  }
  97. //      } catch(Exception ex) {}
  98.     
  99. //      return new HTMLParsedDocument(sess,template);
  100. //  } else {
  101. //      return null;
  102. //  }
  103. UserData user=sess.getUser();
  104. return new XHTMLDocument(session.getModel(),store.getStylesheet("navbar.xsl",user.getPreferredLocale(),user.getTheme()));
  105.     }
  106.     public String provides() {
  107. return "content bar";
  108.     }
  109.     public String requires() {
  110. return "";
  111.     }
  112. } // HMTLContentBar