Extension:TradeTrack
From MediaWiki.org
|
TradeTrack Release status: beta |
|
|---|---|
| Implementation | Special page |
| Description | A simple workflow for trademark usage requests. WMF specific. |
| Author(s) | Jorm (WMF)Talk |
| Last version | 0.9 (Wed Oct 6 13:50:30 PDT 2010) |
| MediaWiki | 1.16 |
| License | GPL |
| Download | Download snapshot Subversion [Help] |
|
Check usage (experimental) |
|
This software is specifically designed for use by the Wikimedia Foundation. It is a workflow system designed for external users to apply for the use of Wikimedia trademarks. It is likely to be of little value to anyone outside of the Wikimedia Foundation.
[edit] Installation
- Download the package.
- Unzip/untar the package in your extensions/ directory in your wiki
- Add database tables from TradeTrack.sql using the sql.php MediaWiki tool.
- (On Unix, if the current directory is the MediaWiki root directory, you can say "php maintenance/sql.php extensions/TradeTrack/TradeTrack.sql".) If you haven't created the AdminSettings.php file, you will have to do that first; see Manual:AdminSettings.php.
- Alternatively, you can run the SQL File manually (you can use the command "mysql -u $USER -p -e 'source TradeTrack.sql'" on Unix), but you might have to edit it first, and replace the /*$wgDBprefix*/ and /*$wgDBTableOptions*/ strings with the corresponding settings.
- Add this line to the end of your LocalSettings.php:
-
require_once( "$IP/extensions/TradeTrack/TradeTrack.php" );
-
- You need to define three email addresses in LocalSettings.php after that:
-
$wgTradeTrackEmailCommercial = "foo@bar.com";
-
$wgTradeTrackEmailNonCommercial = "foo@bar.com";
-
$wgTradeTrackEmailMedia = "foo@bar.com";
-