01: /*
02: * Created on 28-Jan-2006
03: */
04: package uk.org.ponder.htmlutil;
05:
06: public class HTMLConstants {
07:
08: public static final String JS_BLOCK_START = "\n//<![CDATA[\n";
09: public static final String JS_BLOCK_END = "\n//]]>\n";
10:
11: public static String[][] tagtoURL = {
12: { "href", "<a ", "<link " },
13: { "src", "<img ", "<frame ", "<script ", "<iframe ",
14: "<style ", "<input ", "<embed " },
15: { "action", "<form " } };
16: // Every tag may have a "background" attribute holding a URL
17: public static String[] ubiquitousURL = { "background" };
18: }
|