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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: WebMailTitle.java,v 1.3 2000/04/06 08:02:02 wastl Exp $ */
  2. import net.wastl.webmail.server.*;
  3. import net.wastl.webmail.server.http.*;
  4. import net.wastl.webmail.ui.html.*;
  5. import net.wastl.webmail.ui.xml.*;
  6. /**
  7.  * WebMailTitle.java
  8.  *
  9.  * Created: Wed Sep  1 16:34:55 1999
  10.  *
  11.  * Copyright (C) 1999-2000 Sebastian Schaffert
  12.  * 
  13.  * This program is free software; you can redistribute it and/or
  14.  * modify it under the terms of the GNU General Public License
  15.  * as published by the Free Software Foundation; either version 2
  16.  * of the License, or (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  26.  */
  27. /**
  28.  * Show WebMail title.
  29.  *
  30.  * provides: title
  31.  *
  32.  * @author Sebastian Schaffert
  33.  * @version
  34.  */
  35. public class WebMailTitle implements Plugin, URLHandler {
  36.     
  37.     public static final String VERSION="1.1";
  38.     public static final String URL="/title";
  39.     Storage store;
  40.     public WebMailTitle() {
  41.     }
  42.     public void register(WebMailServer parent) {
  43. parent.getURLHandler().registerHandler(URL,this);
  44. store=parent.getStorage();
  45.     }
  46.     public String getName() {
  47. return "WebMailTitle";
  48.     }
  49.     public String getDescription() {
  50. return "The WebMail title-frame plugin";
  51.     }
  52.     public String getVersion() {
  53. return VERSION;
  54.     }
  55.     public String getURL() {
  56. return URL;
  57.     }
  58.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws WebMailException {
  59. if(session == null) {
  60.     throw new WebMailException("No session was given. If you feel this is incorrect, please contact your system administrator");
  61. }
  62. //return new HTMLParsedDocument(store,session,"title");
  63. UserData user=((WebMailSession)session).getUser();
  64. return new XHTMLDocument(session.getModel(),store.getStylesheet("title.xsl",user.getPreferredLocale(),user.getTheme()));
  65.     }
  66.     public String provides() {
  67. return "title";
  68.     }
  69.     public String requires() {
  70. return "";
  71.     }
  72.     
  73. } // WebMailTitle