01: //The contents of this file are subject to the Mozilla Public License Version 1.1
02: //(the "License"); you may not use this file except in compliance with the
03: //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
04: //
05: //Software distributed under the License is distributed on an "AS IS" basis,
06: //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
07: //for the specific language governing rights and
08: //limitations under the License.
09: //
10: //The Original Code is "The Columba Project"
11: //
12: //The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13: //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
14: //
15: //All Rights Reserved.
16: package org.columba.mail.gui.message.util;
17:
18: import java.util.regex.Matcher;
19: import java.util.regex.Pattern;
20:
21: /**
22: * @author freddy
23: *
24: * To change this generated comment edit the template variable "typecomment":
25: * Window>Preferences>Java>Templates.
26: * To enable and disable the creation of type comments go to
27: * Window>Preferences>Java>Code Generation.
28: */
29: public class DocumentParser {
30: private final static String[] smilyImage = { "face1.png",
31: "face4.png", "face8.png", "face3.png", "face11.png",
32: "face2.png", "face15.png" };
33: private final static Pattern[] smilyPattern = {
34: Pattern.compile("\\s:-\\)"), Pattern.compile("\\s:-\\("),
35: Pattern.compile("\\s:-\\|"), Pattern.compile("\\s;-\\)"),
36: Pattern.compile("\\s:cry:"), Pattern.compile("\\s:o"),
37: Pattern.compile("\\s8\\)"), };
38: private static final Pattern markQuotingsPattern = Pattern.compile(
39: "(^( )*>[^\\n]*)|\\n(( )*>[^\\n]*)",
40: Pattern.CASE_INSENSITIVE);
41:
42: public DocumentParser() {
43: }
44:
45: /*
46: *
47: * make quotes font-color darkgray
48: *
49: */
50: public static String markQuotings(String input) throws Exception {
51: Matcher matcher = markQuotingsPattern.matcher(input);
52:
53: return matcher
54: .replaceAll("\n<font class=\"quoting\">$1$3</font>");
55: }
56:
57: public static String addSmilies(String input) throws Exception {
58: Matcher matcher;
59:
60: for (int i = 0; i < smilyPattern.length; i++) {
61: matcher = smilyPattern[i].matcher(input);
62: input = matcher.replaceAll(" <IMG SRC=\""
63: + smilyImage[i] + "\">");
64: }
65:
66: return input;
67: }
68: }
|