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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: WebMailHelp.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.ContentProvider;
  5. import net.wastl.webmail.ui.html.*;
  6. import net.wastl.webmail.ui.xml.*;
  7. import net.wastl.webmail.misc.*;
  8. import org.w3c.dom.*;
  9. import org.apache.xerces.parsers.*;
  10. /*
  11.  * WebMailHelp.java
  12.  *
  13.  * Created: Wed Sep  1 16:23:14 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.  * Show WebMail help file
  33.  *
  34.  * provides: help
  35.  * requires: content bar
  36.  *
  37.  * @author Sebastian Schaffert
  38.  * @version
  39.  */
  40. public class WebMailHelp implements Plugin, URLHandler {
  41.     public static final String VERSION="2.0";
  42.     public static final String URL="/help";
  43.     ExpireableCache cache;
  44.     Storage store;
  45.     public WebMailHelp() {
  46.     }
  47.     public void register(WebMailServer parent) {
  48. parent.getURLHandler().registerHandler(URL,this);
  49. cache=new ExpireableCache(20,(float).9);
  50. store=parent.getStorage();
  51.     }
  52.     public String getName() {
  53. return "WebMailHelp";
  54.     }
  55.     public String getDescription() {
  56. return "This is the WebMail help content-provider.";
  57.     }
  58.     public String getVersion() {
  59. return VERSION;
  60.     }
  61.     public String getURL() {
  62. return URL;
  63.     }
  64.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws WebMailException {
  65. UserData user=((WebMailSession)session).getUser();
  66. Document helpdoc=(Document)cache.get(user.getPreferredLocale().getLanguage()+"/"+user.getTheme());
  67. if(helpdoc == null) {
  68.     String helpdocpath=store.getBasePath(user.getPreferredLocale(),user.getTheme())+"help.xml";
  69.     
  70.     DOMParser parser = new DOMParser();
  71.     try {
  72. parser.parse(helpdocpath);
  73.     } catch(Exception ex) {
  74. ex.printStackTrace();
  75. throw new WebMailException("Could not parse "+helpdocpath);
  76.     }
  77.     helpdoc=parser.getDocument();
  78.     cache.put(user.getPreferredLocale().getLanguage()+"/"+user.getTheme(),helpdoc);
  79. }
  80. /* Unfortunately we can't use two input documents, so we will temporarily insert the help document
  81.    into the user's model */
  82. Node n=session.getModel().importNode(helpdoc.getDocumentElement(),true);
  83. session.getModel().getDocumentElement().appendChild(n);
  84. if(header.isContentSet("helptopic") && session instanceof WebMailSession) {
  85.     ((WebMailSession)session).getUserModel().setStateVar("helptopic",header.getContent("helptopic"));
  86. }
  87. HTMLDocument retdoc=new XHTMLDocument(session.getModel(),store.getStylesheet("help.xsl",user.getPreferredLocale(),user.getTheme()));
  88. /* Here we remove the help document from the model */
  89. session.getModel().getDocumentElement().removeChild(n);
  90. /* Remove the indicator for a specific help topic */
  91. if(header.isContentSet("helptopic") && session instanceof WebMailSession) {
  92.     ((WebMailSession)session).getUserModel().removeAllStateVars("helptopic");
  93. }
  94. return retdoc;
  95.     }
  96.     public String provides() {
  97. return "help";
  98.     }
  99.     public String requires() {
  100. return "content bar";
  101.     }
  102. } // WebMailHelp