Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore.php |
— | — | @@ -1325,7 +1325,13 @@ |
1326 | 1326 | |
1327 | 1327 | function setup($verbose = true) { |
1328 | 1328 | global $wgDBtype; |
1329 | | - $this->reportProgress("Setting up standard database configuration for SMW ...\n\n",$verbose); |
| 1329 | + $this->reportProgress("Setting up database configuration for SMW ...\n\n",$verbose); |
| 1330 | + $this->reportProgress("Selected storage engine is \"SMWSQLStore\" (or an extension thereof).\n\n",$verbose); |
| 1331 | + $this->reportProgress("============================================================================\n", $verbose); |
| 1332 | + $this->reportProgress("WARNING: This store is deprecated and will loose support in future versions!\n", $verbose); |
| 1333 | + $this->reportProgress("Please consider switching your wiki to SQLStore2! For details, see\n",$verbose); |
| 1334 | + $this->reportProgress("http://semantic-mediawiki.org/wiki/Help:Installation_1.2#Notes_on_Upgrading\n",$verbose); |
| 1335 | + $this->reportProgress("============================================================================\n\n", $verbose); |
1330 | 1336 | |
1331 | 1337 | if ($wgDBtype === 'postgres') { |
1332 | 1338 | $this->reportProgress("For Postgres, please import the file SMW_Postgres_Schema.sql manually\n",$verbose); |
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore2.php |
— | — | @@ -1085,6 +1085,7 @@ |
1086 | 1086 | function setup($verbose = true) { |
1087 | 1087 | global $wgDBtype; |
1088 | 1088 | $this->reportProgress("Setting up standard database configuration for SMW ...\n\n",$verbose); |
| 1089 | + $this->reportProgress("Selected storage engine is \"SMWSQLStore2\" (or an extension thereof)\n\n",$verbose); |
1089 | 1090 | if ($wgDBtype === 'postgres') { |
1090 | 1091 | $this->reportProgress("For Postgres, please import the file SMW_Postgres_Schema_2.sql manually\n",$verbose); |
1091 | 1092 | return; |