/*
* $Header: /cvsroot/mvnforum/mvnforum/src/com/mvnforum/MVNForumGlobal.java,v 1.17 2005/01/18 11:52:08 minhnn Exp $
* $Author: minhnn $
* $Revision: 1.17 $
* $Date: 2005/01/18 11:52:08 $
*
* ====================================================================
*
* Copyright (C) 2002-2005 by MyVietnam.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* All copyright notices regarding mvnForum MUST remain intact
* in the scripts and in the outputted HTML.
* The "powered by" text/logo with a link back to
* http://www.mvnForum.com and http://www.MyVietnam.net in the
* footer of the pages MUST remain visible when the pages
* are viewed on the internet or intranet.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* Support can be obtained from support forums at:
* http://www.mvnForum.com/mvnforum/index
*
* Correspondence and Marketing Questions can be sent to:
* info@MyVietnam.net
*
* @author: Minh Nguyen minhnn@MyVietnam.net
* @author: Mai Nguyen mai.nh@MyVietnam.net
*/
package com.mvnforum;
public class MVNForumGlobal {
private MVNForumGlobal() {
}
/*************************************************************************
* NOTE: below constants can be changed for each build,
* these constant MUST NOT break the compatibility
*************************************************************************/
public final static String IMAGE_DIR = "/mvnplugin/mvnforum/images";
public final static String EMOTION_DIR = "/mvnplugin/mvnforum/images/emotion/";
public final static String CSS_FULLPATH = "/mvnplugin/mvnforum/css/style.css";
public final static String LOGO_FULLPATH = "/mvnplugin/mvnforum/images/logo.gif";
// Note that we cannot put / at the end because getRealPath will remove it in Tomcat 4.1.7 :((
public final static String UPLOADED_AVATAR_DIR = "/mvnplugin/mvnforum/upload/memberavatars";
public final static String UPLOADED_COMPANY_DIR = "/mvnplugin/mvnforum/upload/company";
public final static String COMPANY_DEFAULT_CSS_PATH = "/mvnplugin/mvnforum/upload/company/style.css";
public final static String COMPANY_DEFAULT_LOGO_PATH = "/mvnplugin/mvnforum/upload/company/logo.gif";
public final static String RESOURCE_BUNDLE_NAME = "mvnForum_i18n";
/** value to control the flood prevention. Note value from 0 to 999 is belong to mvnCore */
public final static Integer FLOOD_ID_NEW_POST = new Integer(1000);
public final static Integer FLOOD_ID_NEW_MEMBER = new Integer(1001);
public final static Integer FLOOD_ID_LOGIN = new Integer(1002);
public final static Integer FLOOD_ID_NEW_MESSAGE = new Integer(1003);
/** The maximum length of the email in database */
public final static int MAX_MEMBER_EMAIL_LENGTH = 60;
/** The maximum length of the member login name in database */
public final static int MAX_MEMBER_LOGIN_LENGTH = 30;
public final static String TEMPLATE_SENDACTIVATECODE_PREFIX = "sendactivemailtemplate";
public final static String TEMPLATE_SENDACTIVATECODE_SUBJECT = "sendactivemailtemplate-subject.ftl";
public final static String TEMPLATE_SENDACTIVATECODE_BODY = "sendactivemailtemplate-body.ftl";
public final static String TEMPLATE_FORGOTPASSWORD_PREFIX = "forgotpasswordtemplate";
public final static String TEMPLATE_FORGOTPASSWORD_SUBJECT = "forgotpasswordtemplate-subject.ftl";
public final static String TEMPLATE_FORGOTPASSWORD_BODY = "forgotpasswordtemplate-body.ftl";
public final static String TEMPLATE_WATCHMAIL_PREFIX = "watchmailtemplate";
public final static String TEMPLATE_WATCHMAIL_SUBJECT = "watchmailtemplate-subject.ftl";
public final static String TEMPLATE_WATCHMAIL_BODY = "watchmailtemplate-body.ftl";
// Constant for Company module
public final static String COMPANY_GROUP_FREFIX = "CompanyGroup: ";
}