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
|
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
|
|
|
|
|
define("APPDB_SCREENSHOT_MAXWIDTH","800"); // width of the screenshot's thumbnails
|
|
|
|
|
define("APPDB_SCREENSHOT_MAXHEIGHT","600"); // height of the screenshot's thumbnails
|
2004-12-19 01:12:19 +00:00
|
|
|
define("APPDB_ROOT", "http://appdb.winehq.org/"); // path to AppDB
|
|
|
|
|
define("STANDARD_NOTIFY_FOOTER","------- You are receiving this mail because: -------\n".
|
2005-01-29 00:43:41 +00:00
|
|
|
"You are a maintainer of this application or an AppDB administrator\n".
|
2004-12-19 01:12:19 +00:00
|
|
|
"to change your preferences go to: ".APPDB_ROOT."preferences.php\n");
|
|
|
|
|
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
|
|
|
|
|
define("BUGZILLA_ROOT","http://bugs.winehq.org/"); // path to bugzilla
|
|
|
|
|
|
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
|
|
|
?>
|