| Index: trunk/phase3/LocalSettings.sample |
| — | — | @@ -102,6 +102,13 @@ |
| 103 | 103 | # $wgDBmysql4 = true; |
| 104 | 104 | # $wgEnablePersistentLC = true; |
| 105 | 105 | |
| | 106 | +## You can customize the interface messages through the wiki; |
| | 107 | +## see [[MediaWiki:All pages]]. (This requires a sysop account.) |
| | 108 | +## This causes a performance hit, though; if you don't need it, |
| | 109 | +## feel free to turn it off: |
| | 110 | +# |
| | 111 | +# $wgUseDatabaseMessages = false; |
| | 112 | + |
| 106 | 113 | ## Set $wgUseImageResize to true if you want to enable dynamic |
| 107 | 114 | ## server side image resizing ("Thumbnails") |
| 108 | 115 | # |
| Index: trunk/phase3/RELEASE-NOTES |
| — | — | @@ -1,6 +1,6 @@ |
| 2 | 2 | = MediaWiki release notes = |
| 3 | 3 | |
| 4 | | -== Version 1.2.0rc1, 2004-02-27 == |
| | 4 | +== Version 1.2.0rc1, 2004-02-28 == |
| 5 | 5 | |
| 6 | 6 | This is a RELEASE CANDIDATE for the new production release. It is more or |
| 7 | 7 | less in sync with what is running on Wikipedia right now. There may be |
| — | — | @@ -18,22 +18,29 @@ |
| 19 | 19 | * Optional compression of old revision text (requires zlib support) |
| 20 | 20 | * Fuzzy title search (experimental, requires memcached) |
| 21 | 21 | * Page rendering cache (experimental) |
| 22 | | -* JavaScript editing toolbar (off by default in user preferences) |
| | 22 | +* Editing toolbar to demonstrate wiki syntax to newbies |
| | 23 | + (off by default in user preferences) |
| | 24 | +* Support for authenticated SMTP outgoing e-mail (experimental) |
| 23 | 25 | |
| 24 | 26 | Fixes and tweaks: |
| 25 | 27 | * Should work out of the box on MySQL 3.2.x again. On 4.x set |
| 26 | 28 | $wgEnablePersistentLC = true; to turn on the link cache table |
| 27 | 29 | for a slight rendering speed boost. |
| | 30 | +* Works with short tags disabled. |
| 28 | 31 | * Various bug fixes. |
| 29 | 32 | * Other stuff we forgot. |
| 30 | 33 | * Documentation more out of date than ever before! |
| 31 | 34 | |
| 32 | | -=== IMPORTANT BEHAVIOR CHANGES: === |
| | 35 | +=== Behavior changes === |
| 33 | 36 | |
| 34 | | -* wiki.phtml and redirect.phtml are now installed as index.php and redirect.php |
| 35 | | - by default. If you are upgrading from an older version, you will have to |
| 36 | | - change $wgScript in LocalSettings.php to point to index.php and |
| 37 | | - redirect.php. |
| | 37 | +* wiki.phtml and redirect.phtml are now renamed to index.php and redirect.php |
| | 38 | + The old names are provided too for compatibility, but make sure they don't |
| | 39 | + conflict if you've been putting other files in your wiki. |
| | 40 | +* Uploaded filenames are more strictly checked than before. See bits in |
| | 41 | + DefaultSettings.php to tweak this behavior to your needs. |
| | 42 | +* Database messages are now enabled by default, so the interface messages can |
| | 43 | + be tweaked through the wiki with a sysop account. Disable this if you |
| | 44 | + don't want the performance hit. |
| 38 | 45 | |
| 39 | 46 | === Database changes === |
| 40 | 47 | |
| Index: trunk/phase3/includes/DefaultSettings.php |
| — | — | @@ -82,8 +82,8 @@ |
| 83 | 83 | $wgMaxNameChars = 32; # Maximum number of bytes in username |
| 84 | 84 | |
| 85 | 85 | # Translation using MediaWiki: namespace |
| 86 | | -# Not recommended unless memcached is installed |
| 87 | | -$wgUseDatabaseMessages = false; |
| | 86 | +# This will increase load times by 25-60% unless memcached is installed |
| | 87 | +$wgUseDatabaseMessages = true; |
| 88 | 88 | $wgMsgCacheExpiry = 86400; |
| 89 | 89 | |
| 90 | 90 | $wgExtraSubtitle = ""; |