Index: trunk/extensions/ParserFun/RELEASE-NOTES |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | 'Parser Fun' Changelog: |
3 | 3 | ======================= |
4 | 4 | |
5 | | - * (trunk) -- Version 0.1rc (initial release) |
| 5 | + * December 2, 2011 -- Version 0.1 (initial release) |
6 | 6 | - Magic word prefix 'THIS:', which is working with basically all functions returning page related information: |
7 | 7 | 'FULLPAGENAME', 'PAGENAME', 'BASEPAGENAME', 'SUBPAGENAME', 'SUBJECTPAGENAME', 'TALKPAGENAME', 'NAMESPACE', |
8 | 8 | 'SUBJECTSPACE', 'ARTICLESPACE', 'TALKSPACE' and their URL-encoded equivalents ending with 'EE'. |
— | — | @@ -10,4 +10,4 @@ |
11 | 11 | + <1> - input text (required) |
12 | 12 | + unstrip - 'none', 'nowiki', 'general', 'all' to unstrip input first. Allows to parse text inside <nowiki>. |
13 | 13 | + parse - whether text should really be parsed (in case you want to unstrip only) |
14 | | - - Distributed under ISC license and put into mediawiki.org svn repository. |
\ No newline at end of file |
| 14 | + - Distributed under ISC license and put into mediawiki.org svn repository. |
Index: trunk/extensions/ParserFun/ParserFun.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | * Support: http://www.mediawiki.org/wiki/Extension_talk:Parser_Fun |
10 | 10 | * Source code: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/ParserFun |
11 | 11 | * |
12 | | - * @version: 0.1rc |
| 12 | + * @version: 0.1 |
13 | 13 | * @license: ISC license |
14 | 14 | * @author: Daniel Werner < danweetz@web.de > |
15 | 15 | * |
— | — | @@ -79,7 +79,7 @@ |
80 | 80 | * |
81 | 81 | * @var string |
82 | 82 | */ |
83 | | - const VERSION = '0.1rc'; |
| 83 | + const VERSION = '0.1'; |
84 | 84 | |
85 | 85 | const MAG_THIS = 'this'; |
86 | 86 | |
Index: trunk/extensions/ParserFun/README |
— | — | @@ -34,8 +34,8 @@ |
35 | 35 | # Parser Fun |
36 | 36 | require_once( "$IP/extensions/ParserFun/ParserFun.php" ); |
37 | 37 | |
38 | | -This extension requires Jeroen De Dauws 'Validator' extension in a version higher |
39 | | -than 0.4.11. It must be included before the 'Parser Fun' extension. |
| 38 | +This extension requires Jeroen De Dauws 'Validator' extension (version 0.4.13 or |
| 39 | +above). It must be included before the 'Parser Fun' extension. |
40 | 40 | You can get it at: http://www.mediawiki.org/wiki/Extension:Validator |
41 | 41 | |
42 | 42 | |