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

WEB邮件程序

开发平台:

C/C++

  1. import net.wastl.webmail.server.*;
  2. import net.wastl.webmail.server.http.*;
  3. import net.wastl.webmail.ui.html.*;
  4. import java.util.Enumeration;
  5. /**
  6.  * About.java
  7.  *
  8.  * Created: Wed Sep  1 17:16:06 1999
  9.  *
  10.  * Copyright (C) 1999-2000 Sebastian Schaffert
  11.  * 
  12.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version 2
  15.  * of the License, or (at your option) any later version.
  16.  * 
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  * 
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  25.  */
  26. /**
  27.  *
  28.  *
  29.  *
  30.  * @author Sebastian Schaffert
  31.  * @version
  32.  */
  33. public class About implements Plugin, URLHandler {
  34.         
  35.     public static final String VERSION="1.00";
  36.     public static final String URL="/about";
  37.     WebMailServer parent;
  38.     public About() {
  39.     }
  40.     public void register(WebMailServer parent) {
  41. parent.getURLHandler().registerHandler(URL,this);
  42. this.parent=parent;
  43.     }
  44.     public String getName() {
  45. return "About";
  46.     }
  47.     public String getDescription() {
  48. return "About WebMail";
  49.     }
  50.     public String getVersion() {
  51. return VERSION;
  52.     }
  53.     public String getURL() {
  54. return URL;
  55.     }
  56.     public HTMLDocument handleURL(String suburl, HTTPSession session, HTTPRequestHeader header) throws DocumentNotFoundException {
  57. String content="<BODY BGCOLOR=WHITE><CENTER><H1>About WebMail</H1></CENTER><BR>";
  58. content+="<H3>Copyright</H3><BR>WebMail is (c)1999 by Sebastian Schaffert, wastl@wastl.net "
  59.     +"and is distributed under the terms of the <A HREF="<<BASE>>/license/gnu">GNU Lesser General Public License</A> "
  60.     +".<BR><P><HR><P>"
  61.     +"<H3>Registered Plugins</H3><BR><UL>";
  62. Enumeration e=parent.getPluginHandler().getPlugins();
  63. while(e.hasMoreElements()) {
  64.     Plugin p=(Plugin)e.nextElement();
  65.     content+="<LI><B>"+p.getName()+"</B> (v"+p.getVersion()+"): "+p.getDescription()+"</LI>";
  66. }
  67. //System.gc();
  68. content+="</UL><P><HR><P><H3>System Information</H3><BR><UL><LI><B>Operating System:</B> "+System.getProperty("os.name")
  69.     +"/"+System.getProperty("os.arch")+" "+System.getProperty("os.version")+"</LI><LI><B>Java Virtual Machine:</B> "
  70.     +System.getProperty("java.vm.name")+" version "+System.getProperty("java.version")+" from "
  71.     +System.getProperty("java.vendor")+"</LI><LI><B>Free memory for this JVM:</B> "
  72.     +Runtime.getRuntime().freeMemory()+" bytes</LI></UL></BODY>";
  73. return new HTMLDocument("About WebMail",content);
  74.     }
  75.     
  76.     public String provides() {
  77. return "about";
  78.     }
  79.     public String requires() {
  80. return "";
  81.     }
  82.     
  83. } // About