Index: trunk/extensions/SemanticWatchlist/INSTALL |
— | — | @@ -0,0 +1,44 @@ |
| 2 | +These is the install file for the Semantic Watchlist extension. |
| 3 | + |
| 4 | +Extension page on mediawiki.org: http://www.mediawiki.org/wiki/Extension:SemanticWatchlist |
| 5 | +Latest version of the install file: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SemanticWatchlist/INSTALL?view=co |
| 6 | + |
| 7 | + |
| 8 | +== Requirements == |
| 9 | + |
| 10 | +Semantic Watchlist requires: |
| 11 | + |
| 12 | +* MediaWiki 1.17 or above |
| 13 | +* Semantic MediaWiki 1.6 or above |
| 14 | +* PHP 5.2 or above |
| 15 | + |
| 16 | +== Download == |
| 17 | + |
| 18 | +You can find the current version of Semantic Watchlist on the [https://code.google.com/p/semanticwatchlist/downloads/list Google Code download page], |
| 19 | +as well as a [https://code.google.com/p/semanticwatchlist/downloads/list?can=1 list of legacy downloads]. |
| 20 | + |
| 21 | +You can also get the code directly from SVN. Tags can be obtained via |
| 22 | + |
| 23 | + svn checkout <nowiki>http://svn.wikimedia.org/svnroot/mediawiki/tags/extensions/SemanticWatchlist/REL_version</nowiki> |
| 24 | + |
| 25 | +Where 'version' is the version number of the tag, such as 0_1 (see the [http://svn.wikimedia.org/svnroot/mediawiki/tags/extensions/SemanticWatchlist/ available tags]). |
| 26 | +The latest code can be obtained from trunk: |
| 27 | + |
| 28 | + svn checkout <nowiki>http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/SemanticWatchlist/</nowiki> |
| 29 | + |
| 30 | +== Installation == |
| 31 | + |
| 32 | +Once you have downloaded the code, place the ''SemanticWatchlist'' directory within your MediaWiki |
| 33 | +'extensions' directory. Then add the following code to your [[Manual:LocalSettings.php|LocalSettings.php]] file: |
| 34 | + |
| 35 | +# Semantic Watchlist |
| 36 | +require_once( "$IP/extensions/SemanticWatchlist/SemanticWatchlist.php" ); |
| 37 | + |
| 38 | +== Configuration == |
| 39 | + |
| 40 | +Configuration of Semantic Watchlist is done by adding simple PHP statements to your |
| 41 | +[[Manual:LocalSettings.php|LocalSettings.php]] file. These statements need to be placed |
| 42 | +AFTER the inclusion of Semantic Watchlist. The options are listed below and their default |
| 43 | +is set in the [http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SemanticWatchlist/SemanticWatchlist.settings.php?view=markup Semantic Watchlist settings file]. |
| 44 | +You should NOT modify the settings file, but can have a look at it to get an idea of |
| 45 | +how to use the settings, in case the below descriptions do not suffice. |