Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 418847 | Differences between
and this patch

Collapse All | Expand All

(-)system/app.class.php (-1 / +4 lines)
Lines 1143-1148 Link Here
1143
		$this->set("foundation_db_class",	 	'FoundationDBConnectionRW');
1143
		$this->set("foundation_db_class",	 	'FoundationDBConnectionRW');
1144
		$this->set("foundation_db_classfile_ro",'dbconnection_foundation_ro.class.php');
1144
		$this->set("foundation_db_classfile_ro",'dbconnection_foundation_ro.class.php');
1145
		$this->set("foundation_db_class_ro", 	'DBConnectionFoundation');
1145
		$this->set("foundation_db_class_ro", 	'DBConnectionFoundation');
1146
		$this->set("gerrit_db_classfile_ro",	'dbconnection_gerrit_ro.class.php');
1147
		$this->set("gerrit_db_class_ro",		'DBConnectionGerrit');
1146
		$this->set("ipzilla_db_classfile_ro",	'dbconnection_ipzilla_ro.class.php');
1148
		$this->set("ipzilla_db_classfile_ro",	'dbconnection_ipzilla_ro.class.php');
1147
		$this->set("ipzilla_db_class_ro",	 	'DBConnectionIPZillaRO');
1149
		$this->set("ipzilla_db_class_ro",	 	'DBConnectionIPZillaRO');
1148
		$this->set("ipzilla_db_classfile",	 	'dbconnection_ipzilla_rw.class.php');
1150
		$this->set("ipzilla_db_classfile",	 	'dbconnection_ipzilla_rw.class.php');
Lines 1164-1170 Link Here
1164
		$this->set("conferences_db_classfile",	'dbconnection.conferences_rw.class.php');
1166
		$this->set("conferences_db_classfile",	'dbconnection.conferences_rw.class.php');
1165
		$this->set("conferences_db_class", 	 	'DBConnectionConferencesRW');
1167
		$this->set("conferences_db_class", 	 	'DBConnectionConferencesRW');
1166
		$this->set("marketplace_db_classfile_ro",	 	'dbconnection_marketplace_ro.class.php');
1168
		$this->set("marketplace_db_classfile_ro",	 	'dbconnection_marketplace_ro.class.php');
1167
		$this->set("marketplace_db_class_ro",	 	 	'DBConnectionMarket');
1169
		$this->set("marketplace_db_class_ro",	  	'DBConnectionMarket');
1168
		#-----------------------------------------------------------------------------------------------------
1170
		#-----------------------------------------------------------------------------------------------------
1169
	}
1171
	}
1170
1172
Lines 1314-1319 Link Here
1314
	function eclipse_sql ($statement) 	{ return $this->sql ($statement, "eclipse"); }			// Whole Eclipse database
1316
	function eclipse_sql ($statement) 	{ return $this->sql ($statement, "eclipse"); }			// Whole Eclipse database
1315
	function epic_sql ($statement) 		{ return $this->sql ($statement, "epic"); }				// EPIC (read-only!)
1317
	function epic_sql ($statement) 		{ return $this->sql ($statement, "epic"); }				// EPIC (read-only!)
1316
	function foundation_sql($statement) { return $this->sql ($statement, "foundation"); }		// Foundation internal database
1318
	function foundation_sql($statement) { return $this->sql ($statement, "foundation"); }		// Foundation internal database
1319
	function gerrit_sql($statement) 	{ return $this->sql ($statement, "gerrit"); }			// Gerrit
1317
	function ipzilla_sql ($statement) 	{ return $this->sql ($statement, "ipzilla"); }			// IPZilla
1320
	function ipzilla_sql ($statement) 	{ return $this->sql ($statement, "ipzilla"); }			// IPZilla
1318
	function ipzillatest_sql ($statement) { return $this->sql ($statement, "ipzillatest"); }	// IPZilla test database
1321
	function ipzillatest_sql ($statement) { return $this->sql ($statement, "ipzillatest"); }	// IPZilla test database
1319
	function live_sql ($statement) 		{ return $this->sql ($statement, "live"); }				// Eclipse Live (read-only!)
1322
	function live_sql ($statement) 		{ return $this->sql ($statement, "live"); }				// Eclipse Live (read-only!)

Return to bug 418847