2004-12-12 03:51:51 +00:00
|
|
|
<?php
|
|
|
|
|
/*************************/
|
2004-12-19 01:12:19 +00:00
|
|
|
/* config file for AppDB */
|
2004-12-12 03:51:51 +00:00
|
|
|
/*************************/
|
2004-03-15 16:22:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* global params
|
|
|
|
|
*/
|
2004-12-19 01:12:19 +00:00
|
|
|
define("APPDB_DEBUG","0"); //turns debugging on/off
|
2006-07-07 16:39:27 +00:00
|
|
|
define("APPDB_DONT_CLEAR_COOKIES_VAR","0"); // set to 1 if you have more than one Web application on the same virtual host
|
2004-12-23 01:13:26 +00:00
|
|
|
define("APPDB_THUMBNAIL_WIDTH","128"); // width of the screenshot's thumbnails
|
|
|
|
|
define("APPDB_THUMBNAIL_HEIGHT","128"); // height of the screenshot's thumbnails
|
2005-04-23 02:24:35 +00:00
|
|
|
define("APPDB_SCREENSHOT_MAXWIDTH","1024"); // width of the screenshot's thumbnails
|
|
|
|
|
define("APPDB_SCREENSHOT_MAXHEIGHT","768"); // height of the screenshot's thumbnails
|
2007-05-26 16:32:45 +00:00
|
|
|
define("APPDB_ROOT", "http://localhost/appdb/"); // path to AppDB
|
2004-12-19 01:12:19 +00:00
|
|
|
define("APPDB_OWNER","WineHQ"); // with what product/company is this AppDB related ?
|
|
|
|
|
define("APPDB_OWNER_URL","http://www.winehq.org/"); // website of this product/company
|
2005-01-30 00:57:34 +00:00
|
|
|
define("APPDB_OWNER_EMAIL","appdb@winehq.org"); // e-mail of this product/company
|
2007-05-12 16:30:32 +00:00
|
|
|
define("APPDB_SENDER_EMAIL","appdb-noreply@winehq.org"); // The e-mail address which appears as the sender in mails sent by the AppDB
|
2004-12-19 01:12:19 +00:00
|
|
|
define("BUGZILLA_ROOT","http://bugs.winehq.org/"); // path to bugzilla
|
|
|
|
|
|
2006-12-02 19:44:31 +00:00
|
|
|
// AppDB developers: Use this define to disable email from being sent from the appdb during testing
|
|
|
|
|
//if(!defined("DISABLE_EMAIL"))
|
|
|
|
|
// define("DISABLE_EMAIL", true); // disable email, see mail_appdb() in include/mail.php
|
2004-03-15 16:22:00 +00:00
|
|
|
|
2007-04-23 23:36:32 +00:00
|
|
|
// AppDB developers: Use this define to print the contents of the e-mail instead
|
|
|
|
|
// of sending it, useful for testing e-mail notifications. Has no effect if
|
|
|
|
|
// DISABLE_EMAIL is set
|
|
|
|
|
//if(!defined("PRINT_EMAIL"))
|
|
|
|
|
// define("PRINT_EMAIL", true); // print email, see mail_appdb() in include/mail.php
|
|
|
|
|
|
2004-03-15 16:22:00 +00:00
|
|
|
/*
|
2004-12-19 01:12:19 +00:00
|
|
|
* apps database info
|
2004-03-15 16:22:00 +00:00
|
|
|
*/
|
2004-12-19 01:12:19 +00:00
|
|
|
define("APPS_DBUSER","wineowner");
|
|
|
|
|
define("APPS_DBPASS","lemonade");
|
|
|
|
|
define("APPS_DBHOST","localhost");
|
|
|
|
|
define("APPS_DB","apidb");
|
2004-03-15 16:22:00 +00:00
|
|
|
|
|
|
|
|
|
2004-12-13 03:50:11 +00:00
|
|
|
/*
|
2004-12-19 01:12:19 +00:00
|
|
|
* bugzilla database info
|
2004-12-13 03:50:11 +00:00
|
|
|
*/
|
2004-12-19 01:12:19 +00:00
|
|
|
define("BUGZILLA_DBUSER","root");
|
|
|
|
|
define("BUGZILLA_DBPASS","");
|
|
|
|
|
define("BUGZILLA_DBHOST","localhost");
|
|
|
|
|
define("BUGZILLA_DB","bugs");
|
|
|
|
|
define("BUGZILLA_PRODUCT_ID","1");
|
2004-03-15 16:22:00 +00:00
|
|
|
?>
|