Index: trunk/extensions/SubPageList/INSTALL |
— | — | @@ -4,6 +4,25 @@ |
5 | 5 | Latest version of the install file: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SubPageList/INSTALL?view=co |
6 | 6 | |
7 | 7 | |
| 8 | +== Download == |
| 9 | + |
| 10 | +You can find the current version of SubPageList on the [https://code.google.com/p/subpagelist/downloads/list Google Code download page], |
| 11 | +as well as a [https://code.google.com/p/subpagelist/downloads/list?can=1 list of legacy downloads]. |
| 12 | + |
| 13 | +You can also get the code directly from SVN. Tags can be obtained via |
| 14 | + |
| 15 | + svn checkout <nowiki>http://svn.wikimedia.org/svnroot/mediawiki/tags/extensions/SubPageList/REL_version</nowiki> |
| 16 | + |
| 17 | +Where 'version' is the version number of the tag, such as 0_1 (see the [http://svn.wikimedia.org/svnroot/mediawiki/tags/extensions/SubPageList/ available tags]). |
| 18 | +The latest code can be obtained from trunk: |
| 19 | + |
| 20 | + svn checkout <nowiki>http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/SubPageList/</nowiki> |
| 21 | + |
| 22 | +SUbPageList requires [[Extension:Validator|Validator]] 0.4.2 or above in order to work. A compatible |
| 23 | +copy of Validator always comes bundled with the regular releases, and is automatically loaded by SubPageList, |
| 24 | +so you do not need to worry about it when using one of these. If you are getting the code from SVN, make |
| 25 | +sure you also get a copy of Validator ([[Extension:Validator#Download|see here for instructions]]). |
| 26 | + |
8 | 27 | == Installation == |
9 | 28 | |
10 | 29 | Once you have downloaded the code, place the ''SubPageList'' and ''Validator'' directories within your |
— | — | @@ -21,3 +40,4 @@ |
22 | 41 | is set in the [http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/SubPageList/SubPageList.settings.php?view=markup SubPageList settings file]. |
23 | 42 | You should NOT modify the settings file, but can have a look at it to get an idea of how to use the settings, in case the below descriptions do not suffice. |
24 | 43 | |
| 44 | +As of version 0.1, there are no settings yet. |
Index: trunk/extensions/SubPageList/RELEASE-NOTES |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | |
7 | 7 | |
8 | 8 | === Version 0.1 === |
9 | | -201x-xx-xx |
| 9 | +2010-12-31 |
10 | 10 | |
11 | 11 | * Copied the code of SubPageList3 and ... |
12 | 12 | ** Modified code to make use of Validator for parameter handling. |
Index: trunk/extensions/SubPageList/SubPageList.php |
— | — | @@ -35,9 +35,9 @@ |
36 | 36 | die( '<b>Error:</b> You need to have <a href="http://www.mediawiki.org/wiki/Extension:Validator">Validator</a> installed in order to use <a href="http://www.mediawiki.org/wiki/Extension:SubPageList">SubPageList</a>.<br />' ); |
37 | 37 | } |
38 | 38 | |
39 | | -define( 'SPL_VERSION', '0.1 alpha' ); |
| 39 | +define( 'SPL_VERSION', '0.1' ); |
40 | 40 | |
41 | | -$wgExtensionCredits['other'][] = array( |
| 41 | +$wgExtensionCredits['parserhook'][] = array( |
42 | 42 | 'path' => __FILE__, |
43 | 43 | 'name' => 'SubPageList', |
44 | 44 | 'version' => SPL_VERSION, |
Index: trunk/extensions/SubPageList/README |
— | — | @@ -13,4 +13,4 @@ |
14 | 14 | you can use to list subpages. |
15 | 15 | * Backward compatible with the [[Extension:SubPageList3|SubPageList3 extension]]. |
16 | 16 | * Supports multiple parameters that enable you to customize the subpage list. |
17 | | - |
| 17 | +* Full integration with the [[Extension:Validator|Validator extension]]. |