Index: trunk/extensions/Variables/RELEASE-NOTES |
— | — | @@ -0,0 +1,36 @@ |
| 2 | + Post svn Changelog: |
| 3 | + =================== |
| 4 | + |
| 5 | + * November 13, 2011 -- Version 1.4 by Daniel Werner |
| 6 | + - Cleanup for use with more current MW versions: |
| 7 | + + 'ParserFirstCallInit' hook in use and no more global extension functions. |
| 8 | + + State of the Art internationalization files added. |
| 9 | + - Put into mediawiki.org svn, 'RELEASE-NOTES' and 'README' files added. |
| 10 | + |
| 11 | + |
| 12 | + Pre svn Changelog: |
| 13 | + ================== |
| 14 | + |
| 15 | + The following pre-svn changelog was composed by Daniel Werner in the hope it might |
| 16 | + give an almost complete overview of all major releases of 'Variables' extension. |
| 17 | + All changes can still be retrace at |
| 18 | + |
| 19 | + http://www.mediawiki.org/w/index.php?title=Extension:VariablesExtension&action=history |
| 20 | + |
| 21 | + * July 20, 2010 -- Version 1.3 by Daniel Werner |
| 22 | + - Removed critical bug. Some kind of "Superglobal" variables. In some cases values |
| 23 | + were passed from one page to another page during page imports and job queue jobs. |
| 24 | + |
| 25 | + * March 28, 2009 -- Version 1.2 by Daniel Werner |
| 26 | + - '#varexists' function introduced |
| 27 | + |
| 28 | + * December 5, 2008 -- Version 1.1 by user 'Xiloynaha' |
| 29 | + - '#vardefineecho' function introduced |
| 30 | + |
| 31 | + * June 24, 2007 -- r3, Language file added by unknown contributor |
| 32 | + |
| 33 | + * October 11, 2006 -- r2, Fixes for MediaWiki 1.8 compatbility by Tom Hempel |
| 34 | + - '$wgExtensionCredits' and '$wgHooks' being used. |
| 35 | + |
| 36 | + * October 11, 2006 -- r1, initial release by Rob Adams |
| 37 | + - First version of 'Variables', introducing '#vardefine' and '#var' |
Property changes on: trunk/extensions/Variables/RELEASE-NOTES |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 38 | + native |
Index: trunk/extensions/Variables/README |
— | — | @@ -0,0 +1,26 @@ |
| 2 | +== About == |
| 3 | + |
| 4 | +The 'Variables' extension for MediaWiki introduces parser functions for defining page-scoped |
| 5 | +variables within wiki pages. |
| 6 | + |
| 7 | +* Website: http://www.mediawiki.org/wiki/Extension:Variables |
| 8 | +* Authors: Rob Adams, Tom Hempel, Xiloynaha and Daniel Werner |
| 9 | +* License: Public domain |
| 10 | + |
| 11 | + |
| 12 | +== Installation == |
| 13 | + |
| 14 | +Once you have downloaded the code, place the 'Variables' directory within your |
| 15 | +MediaWiki 'extensions' directory. Then add the following code to your |
| 16 | +[[Manual:LocalSettings.php|LocalSettings.php]] file: |
| 17 | + |
| 18 | + # Variables |
| 19 | + require_once( "$IP/extensions/Variables/Variables.php" ); |
| 20 | + |
| 21 | + |
| 22 | +== Contributing == |
| 23 | + |
| 24 | +If you have bug reports or feature requests, please add them to the ''Variables'' |
| 25 | +Talk page [0]. You can also send them to Daniel Werner < danweetz@web.de > |
| 26 | + |
| 27 | +[0] http://www.mediawiki.org/w/index.php?title=Extension_talk:Variables |
Property changes on: trunk/extensions/Variables/README |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 28 | + native |