﻿/**
  * project CoCaPa - Comissão de Carnaval de Pataias
  * description Application object with common configurations.
  * version 1.0 (12/10/2009)
  * creationdate 12/10/2009
  * author 1001 Acessos - Telecomunicacoes e Informatica, Lda
  */

 Ext.namespace('application'); 
 
 application = new function() {
 
	/**
	  * Site common
	  */
	this.BOOKMARK_TITLE = "Carnavaldepataias.com";
	this.BOOKMARK_URL = "http://www.carnavaldepataias.com";
	this.EMAIL_ADDRESS = "geral@carnavaldepataias.com";
	this.EMAIL_CONTACT_SUBJECT = "Carnavaldepataias.com | Contacto feito a partir do site ";
	this.EMAIL_REGISTER_SUBJECT = "Carnavaldepataias.com | Adicionar a lista de envio de newsletter";

	this.IMAGE_ROOT_FOLDER = "src/images/";
	this.FLASH_ROOT_FOLDER = "src/flash/";
	this.DOWNLOAD_ROOT_FOLDER = "src/downloads/";
	this.UPLOAD_IMAGE_FOLDER = "../src/images/";
	this.UPLOAD_FLASH_FOLDER = "../src/flash/";
	this.DEBUG_MODE = true;

	/**
	  * Site main
	  */
	this.PAGE_SIZE = 10;
	this.MAX_RECORDS = 999999;
	this.MAX_LATEST_EVENTS = 5;
	this.ADVERTISE_BANNER_WIDTH = 180;
	this.ADVERTISE_BANNER_HEIGHT = 120;

	/**
	  * Site publicity banners
	  */
	this.LOADING_BANNERS = "A carregar banners...";
	this.NO_BANNERS = "Não existem banners.";
	
	/**
	  * Admin common
	  */
	 this.NUM_ROWS_GRID_VERY_LOW = 10;
	 this.NUM_ROWS_GRID_LOW = 25;
	 this.NUM_ROWS_GRID_MIDDLE = 50;
	 this.NUM_ROWS_GRID_HIGH = 100;
	 this.NUM_ROWS_GRID_VERY_HIGH = 200;

	/**
	 * Admin login
	 */
	this.LOGIN_IMAGES_PATH = 'src/images/';
	this.LOGIN_WINDOW_LOGO = 'adminheader.jpg';
	this.LOGIN_BOTTOM_LOGO = 'logo_medium.png';

	/**
	 * Admin main
	 */
	this.MAIN_IMAGES_PATH = '../images/';
	this.MAIN_TOP_LEFT_LOGO = 'adminheader_small.jpg';
	this.MAIN_TOP_RIGHT_LOGO = 'logo_small.png';
	this.MAIN_MAX_NUM_TABS = 10;
	this.DEBUG_MODE = true;
	 
	/**
	 * Admin paths
	 */
	this.IMAGES_PATH = '../images/';
	this.BANNERS_PATH = '../flash/';
	this.DOWNLOAD_PATH = "../downloads/";
	
 }
 
