1111N/A/*
1111N/A * CDDL HEADER START
1111N/A *
1111N/A * The contents of this file are subject to the terms of the
1111N/A * Common Development and Distribution License (the "License").
1111N/A * You may not use this file except in compliance with the License.
1111N/A *
1111N/A * See LICENSE.txt included in this distribution for the specific
1111N/A * language governing permissions and limitations under the License.
1111N/A *
1111N/A * When distributing Covered Code, include this CDDL HEADER in each
1111N/A * file and include the License file at LICENSE.txt.
1111N/A * If applicable, add the following below this CDDL HEADER, with the
1111N/A * fields enclosed by brackets "[]" replaced with your own identifying
1111N/A * information: Portions Copyright [yyyy] [name of copyright owner]
1111N/A *
1111N/A * CDDL HEADER END
1111N/A */
1111N/A
1111N/A/*
1111N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
1111N/A */
1111N/A
1111N/Apackage org.opensolaris.opengrok.web;
1111N/A
1111N/A/**
1111N/A * web specific constants (web.xml has the only dup of this)
1111N/A * + some of the constants of data root
1111N/A * @author Lubos Kosco
1111N/A */
1111N/Apublic final class Constants {
1111N/A
1111N/A //full name of cross reference prefix
1111N/A public static final String xrefP="/xref";
1111N/A //short cut for easier recognition of servlets in jsp pages, TODO redesign to be more intuitive
1190N/A public static final String xrefS="/xr";
1111N/A public static final String moreP="/more";
1111N/A public static final String moreS="/mo";
1111N/A public static final String diffP="/diff";
1111N/A public static final String diffS="/di";
1111N/A public static final String histP="/hist";
1111N/A public static final String histL="/history";
1111N/A public static final String histS="/hi";
1111N/A public static final String rssP="/rss";
1111N/A public static final String rawP="/raw";
1111N/A //full blown search from main page or top bar
1111N/A public static final String searchP="/search";
1111N/A //search from cross reference, can lead to direct match(which opens directly)
1190N/A public static final String searchR="/s";
1111N/A}