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

WEB邮件程序

开发平台:

C/C++

  1. /* CVS ID: $Id: HTMLParsedDocument.java,v 1.2 2000/04/06 08:02:02 wastl Exp $ */
  2. package net.wastl.webmail.ui.html;
  3. import gnu.regexp.*;
  4. import net.wastl.webmail.server.HTTPSession;
  5. import net.wastl.webmail.server.Storage;
  6. // XXX This class is broken!
  7. /*
  8.  * HTMLParsed.java
  9.  *
  10.  * Created: Fri Feb  5 08:34:34 1999
  11.  *
  12.  * Copyright (C) 1999-2000 Sebastian Schaffert
  13.  * 
  14.  * This program is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU General Public License
  16.  * as published by the Free Software Foundation; either version 2
  17.  * of the License, or (at your option) any later version.
  18.  * 
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  * 
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  27.  */
  28. /**
  29.  *
  30.  * @author Sebastian Schaffert
  31.  * @version $Revision: 1.2 $
  32.  */
  33. public class HTMLParsedDocument extends HTMLDocument {
  34.     protected static RE regexp;
  35.     
  36.     public HTMLParsedDocument(HTTPSession sess, String cont) {
  37. super("WebMail Mailbox for "+sess.getEnv("LOGIN"),cont);
  38. long start=System.currentTimeMillis();
  39. if(regexp == null) {
  40. try {
  41. regexp=new RE("<<([^>]+)>>",RE.REG_ICASE & RE.REG_MULTILINE,RESyntax.RE_SYNTAX_PERL5);
  42. } catch(Exception e) {
  43. e.printStackTrace();
  44. }
  45. }
  46. String subst="";
  47. REMatch[] matches=regexp.getAllMatches(cont);
  48. for(int i=0;i<matches.length;i++) {
  49. try {
  50. subst=sess.getEnv(matches[i].substituteInto("$1"));
  51. if(subst==null) {
  52. subst="";
  53. }
  54. } catch(Exception e) {
  55. e.printStackTrace();
  56. subst="";
  57. }
  58. try {
  59. content=regexp.substitute(content,subst,0);
  60. } catch(NullPointerException e) {
  61. System.err.println(content);
  62. System.err.println(subst);
  63. System.err.println(regexp);
  64. e.printStackTrace();
  65. }
  66. }
  67.     }
  68.     public HTMLParsedDocument(Storage loader, HTTPSession sess, String docname) {
  69. // this(sess,loader.getTextFile(loader.getStringResource(docname,sess.getLocale()),sess.getLocale()));
  70. }
  71.     
  72. } // HTMLFrameSet