From: Brad <bra...@us...> - 2005-11-19 01:08:19
|
Update of /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21779/src/java/org/archive/wayback Modified Files: WaybackConstants.java Log Message: TWEAK: moved HTTP and DNS URL prefix constants here. Index: WaybackConstants.java =================================================================== RCS file: /cvsroot/archive-access/archive-access/projects/wayback/src/java/org/archive/wayback/WaybackConstants.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WaybackConstants.java 16 Nov 2005 03:11:29 -0000 1.1 --- WaybackConstants.java 19 Nov 2005 01:08:09 -0000 1.2 *************** *** 34,37 **** --- 34,48 ---- /** + * prefixes of HTTP protocol URL.. + */ + public static final String HTTP_URL_PREFIX = "http://"; + + /** + * prefixes of DNS Record URLs.. + */ + public static final String DNS_URL_PREFIX = "dns:"; + + + /** * Request: filter results before this 14-digit timestamp */ |