lhc/web/wiklou.git
16 years ago* (bug 14497) Throw visible errors in installer scripts when SQL files fail due to...
Brion Vibber [Thu, 12 Jun 2008 00:15:29 +0000 (00:15 +0000)]
* (bug 14497) Throw visible errors in installer scripts when SQL files fail due to database permission or other error

Database::sourceFile() was suppressing the standard error reporting, and returning any errors as a string value.
While nice behavior in theory, several years ago, this doesn't work well in practice; most callers assume either that any error will be fatal and halt the script (no error checking) or that an error will return false and any boolean true is success. This caused false positive success, as error conditions returned as strings evaluated to true.
Changed to letting the database object's existing erorr reporting behavior control whether it throws an exception or suppresses the error and returns it as a string -- default behavior will be to throw an exception, making 'can't run CREATE TABLE' errors actually visible to the user trying to install an extension.
For good measure, failure to open the input file also throws an exception to ensure that it will produce a nice visible error instead of a hidden WTF.

16 years agoRe-add wfEncryptPassword() (removed in r35923 in favor of User::crypt() and User...
Roan Kattouw [Wed, 11 Jun 2008 22:20:26 +0000 (22:20 +0000)]
Re-add wfEncryptPassword() (removed in r35923 in favor of User::crypt() and User::oldCrypt()) for extension compatibility, so old extensions don't go around and throw fatal errors all over the place.

16 years agoLocalisation updates for core messages from Betawiki (2008-06-11 23:26 CEST)
Siebrand Mazeland [Wed, 11 Jun 2008 21:42:23 +0000 (21:42 +0000)]
Localisation updates for core messages from Betawiki (2008-06-11 23:26 CEST)

16 years agoRemoved $wgEnableCascadingProtection. It was a quite pointless configuration setting...
Bryan Tong Minh [Wed, 11 Jun 2008 21:36:07 +0000 (21:36 +0000)]
Removed $wgEnableCascadingProtection. It was a quite pointless configuration setting which was not even properly implemented. Cascading protection has been always possible regardless of this configuration setting.

16 years agoI think every string that evaluates to boolean false will be unaffected by this code...
Aryeh Gregor [Wed, 11 Jun 2008 21:34:03 +0000 (21:34 +0000)]
I think every string that evaluates to boolean false will be unaffected by this code block anyway (can't capitalize numbers), but we want a strict check here anyway.

16 years agoNo point in fetching the result in Database::unlock() if we're not using it anyway.
Chad Horohoe [Wed, 11 Jun 2008 19:57:14 +0000 (19:57 +0000)]
No point in fetching the result in Database::unlock() if we're not using it anyway.

16 years agocleanup for r36190 -- remove extra parameters left over from wfMsgExt() call
Brion Vibber [Wed, 11 Jun 2008 17:45:16 +0000 (17:45 +0000)]
cleanup for r36190 -- remove extra parameters left over from wfMsgExt() call

16 years agoUpdate
Meno25 [Wed, 11 Jun 2008 17:44:47 +0000 (17:44 +0000)]
Update

16 years agohoist by my own petard!
Brion Vibber [Wed, 11 Jun 2008 17:37:15 +0000 (17:37 +0000)]
hoist by my own petard!
fix syntax errors in my last commit

16 years agoLet's not go overboard with Xml::tag() for simple <div> and <span>s :)
Brion Vibber [Wed, 11 Jun 2008 17:34:47 +0000 (17:34 +0000)]
Let's not go overboard with Xml::tag() for simple <div> and <span>s :)

16 years agoTweak for r36189: Back to addWikiMsg but now with the appropriate parameter. Thanks...
Raimond Spekking [Wed, 11 Jun 2008 12:53:33 +0000 (12:53 +0000)]
Tweak for r36189: Back to addWikiMsg but now with the appropriate parameter. Thanks to Nikerabbit who points me to the correct usage.

16 years agoReapply support of plural for 'linkstoimage', 'redirectstofile' and 'duplicatesoffile'
Raimond Spekking [Wed, 11 Jun 2008 12:07:58 +0000 (12:07 +0000)]
Reapply support of plural for 'linkstoimage', 'redirectstofile' and 'duplicatesoffile'
Now w/o breaking customized messages.

16 years agoDocument UserLoadDefaults and UserSetCookies hooks
Alexandre Emsenhuber [Wed, 11 Jun 2008 11:07:34 +0000 (11:07 +0000)]
Document UserLoadDefaults and UserSetCookies hooks

16 years ago(bug 14479) MediaWiki:upload-maxfilesize should have a div id wrapper on SpecialUploa...
Bryan Tong Minh [Wed, 11 Jun 2008 11:02:52 +0000 (11:02 +0000)]
(bug 14479) MediaWiki:upload-maxfilesize should have a div id wrapper on SpecialUpload.php

16 years agoRevert r36093 (bug 14404).
Brion Vibber [Wed, 11 Jun 2008 02:51:30 +0000 (02:51 +0000)]
Revert r36093 (bug 14404).

Regressions caused by this:
"Use an anonymous user to get the parser options and the parser cache key, thus wikitext rendering is not depending of some sepcific user options such as lang, ..."

User-specific options such as stub threshold were still applying in the parser, but not taken into account in the parser hash key. As a result, the caches were corrupt, saving different options into the anonymous-default options cache.

16 years agoReverting r36139 -- broke wikitext in linkstoimage AGAIN.
Brion Vibber [Wed, 11 Jun 2008 01:51:12 +0000 (01:51 +0000)]
Reverting r36139 -- broke wikitext in linkstoimage AGAIN.

16 years agoImplement Database::lock() and Database::unlock() based on the same methods in Filest...
Chad Horohoe [Wed, 11 Jun 2008 00:17:42 +0000 (00:17 +0000)]
Implement Database::lock() and Database::unlock() based on the same methods in Filestore. Not implemented in Filestore just yet though.

16 years agoDocument Xml::hidden().
Chad Horohoe [Tue, 10 Jun 2008 23:18:15 +0000 (23:18 +0000)]
Document Xml::hidden().

16 years agoupload dirs will be created on demand; no longer a need to pre-create them
Brion Vibber [Tue, 10 Jun 2008 21:32:20 +0000 (21:32 +0000)]
upload dirs will be created on demand; no longer a need to pre-create them

16 years agoRevert r36161 -- these are pretty weird-looking hooks, which seem a bit arbitrary...
Brion Vibber [Tue, 10 Jun 2008 21:14:14 +0000 (21:14 +0000)]
Revert r36161 -- these are pretty weird-looking hooks, which seem a bit arbitrary and have terrible names.

16 years agoAvoid some of the strict JS warnings in Firefox.
Rotem Liss [Tue, 10 Jun 2008 18:55:32 +0000 (18:55 +0000)]
Avoid some of the strict JS warnings in Firefox.

16 years agoFix the default preprocessor here as well.
Tim Starling [Tue, 10 Jun 2008 17:14:36 +0000 (17:14 +0000)]
Fix the default preprocessor here as well.

16 years agoUpdate.
Rotem Liss [Tue, 10 Jun 2008 17:07:31 +0000 (17:07 +0000)]
Update.

16 years agoLocalisation updates German
Raimond Spekking [Tue, 10 Jun 2008 16:58:54 +0000 (16:58 +0000)]
Localisation updates German

16 years ago* We no longer just give up on a missing upload base directory; it's now
Brion Vibber [Tue, 10 Jun 2008 16:49:21 +0000 (16:49 +0000)]
* We no longer just give up on a missing upload base directory; it's now
  created automatically if we have sufficient permissions!

(Note that upload_directory_missing and upload_directory_read_only still have crappy output as they show a non-obvious internal path in the output.)

16 years agoTwo new hooks to EditPage.php, EditPage::AfterEdit:Form and EditPage:BeforeDisplaying...
Jack Phoenix [Tue, 10 Jun 2008 16:33:41 +0000 (16:33 +0000)]
Two new hooks to EditPage.php, EditPage::AfterEdit:Form and EditPage:BeforeDisplayingTextbox

16 years ago(bug 14496) Fix regression with parseinline on Special:Upload
Chad Horohoe [Tue, 10 Jun 2008 15:56:12 +0000 (15:56 +0000)]
(bug 14496) Fix regression with parseinline on Special:Upload

16 years agoForgot this, needed with r36153
Tim Starling [Tue, 10 Jun 2008 15:38:13 +0000 (15:38 +0000)]
Forgot this, needed with r36153

16 years agoLike the comment says... dieDebug() instead of wfHttpError
Tim Starling [Tue, 10 Jun 2008 15:20:22 +0000 (15:20 +0000)]
Like the comment says... dieDebug() instead of wfHttpError

16 years ago(bug 12145) Kazakh localisation updates, patch 4971 by AlefZet
Leon Weber [Tue, 10 Jun 2008 15:06:29 +0000 (15:06 +0000)]
(bug 12145) Kazakh localisation updates, patch 4971 by AlefZet

16 years ago(bug 14132) Allow user to disable bot edits from being output to UDP.
Chad Horohoe [Tue, 10 Jun 2008 13:56:35 +0000 (13:56 +0000)]
(bug 14132) Allow user to disable bot edits from being output to UDP.

16 years agoLocalisation updates: Adding/updating Persian translations
Huji [Tue, 10 Jun 2008 13:16:21 +0000 (13:16 +0000)]
Localisation updates: Adding/updating Persian translations

16 years agoUpdate.
Rotem Liss [Tue, 10 Jun 2008 12:44:32 +0000 (12:44 +0000)]
Update.

16 years agofix typo from r36141
Raimond Spekking [Tue, 10 Jun 2008 12:22:31 +0000 (12:22 +0000)]
fix typo from r36141

16 years agoTweak two messages: add warnings "for experts only".
Raimond Spekking [Tue, 10 Jun 2008 12:08:45 +0000 (12:08 +0000)]
Tweak two messages: add warnings "for experts only".
I got sick from the daily cries for help on the village pumps and OTRS :-(

16 years agoSupport plural for 'linkstoimage', 'redirectstofile' and 'duplicatesoffile'
Raimond Spekking [Tue, 10 Jun 2008 11:19:34 +0000 (11:19 +0000)]
Support plural for 'linkstoimage', 'redirectstofile' and 'duplicatesoffile'

16 years agoUpdate.
Rotem Liss [Tue, 10 Jun 2008 10:57:10 +0000 (10:57 +0000)]
Update.

16 years agoSupport plural for 'throttled-mailpassword'
Raimond Spekking [Tue, 10 Jun 2008 10:44:13 +0000 (10:44 +0000)]
Support plural for 'throttled-mailpassword'

16 years agoSupport plural for 'passwordtooshort'
Raimond Spekking [Tue, 10 Jun 2008 10:32:05 +0000 (10:32 +0000)]
Support plural for 'passwordtooshort'

16 years agoLocalisation updates for core messages from Betawiki (2008-06-10 11:20 CEST)
Siebrand Mazeland [Tue, 10 Jun 2008 09:50:22 +0000 (09:50 +0000)]
Localisation updates for core messages from Betawiki (2008-06-10 11:20 CEST)

16 years agoRebuilt all language files
Siebrand Mazeland [Tue, 10 Jun 2008 09:23:48 +0000 (09:23 +0000)]
Rebuilt all language files

16 years ago* Support multiple extension names in checkExtensions.php (separated by commas).
Rotem Liss [Tue, 10 Jun 2008 08:25:44 +0000 (08:25 +0000)]
* Support multiple extension names in checkExtensions.php (separated by commas).
* Avoid warnings when no localized messages exist for the specified language in an extension.

16 years agoUpdate.
Rotem Liss [Tue, 10 Jun 2008 08:17:51 +0000 (08:17 +0000)]
Update.

16 years agoUse nice wfArrayMerge(), rather than piece of shit PHP function that fucks up the...
Aaron Schulz [Tue, 10 Jun 2008 01:25:41 +0000 (01:25 +0000)]
Use nice wfArrayMerge(), rather than piece of shit PHP function that fucks up the result. I was wondering wtf was going on...

16 years agoLocalisation updates Cantonese, Chinese and Old/Late Time Chinese
Shinjiman [Tue, 10 Jun 2008 01:04:36 +0000 (01:04 +0000)]
Localisation updates Cantonese, Chinese and Old/Late Time Chinese

16 years ago* Don't log patrol marking when not relevant
Aaron Schulz [Tue, 10 Jun 2008 00:51:40 +0000 (00:51 +0000)]
* Don't log patrol marking when not relevant
* Use array_merge() for template ID array merge
* Some random refactoring

16 years agoTweak 'revertpage'. Proposed by: O.
Siebrand Mazeland [Tue, 10 Jun 2008 00:29:09 +0000 (00:29 +0000)]
Tweak 'revertpage'. Proposed by: O.

16 years agoUpdate local name for 'bcc'
Siebrand Mazeland [Tue, 10 Jun 2008 00:10:47 +0000 (00:10 +0000)]
Update local name for 'bcc'

16 years ago* (bug 12311) Fix regression with lists at start of undeletion preview
Brion Vibber [Mon, 9 Jun 2008 23:54:17 +0000 (23:54 +0000)]
* (bug 12311) Fix regression with lists at start of undeletion preview
From patch by RockMFR - https://bugzilla.wikimedia.org/attachment.cgi?id=4969

16 years agoRevert r36076, r36109, r36110 -- just doesn't work right. Sometimes removes blocks...
Brion Vibber [Mon, 9 Jun 2008 23:16:34 +0000 (23:16 +0000)]
Revert r36076, r36109, r36110 -- just doesn't work right. Sometimes removes blocks, sometimes fails to remove blocks, sometimes fails to modify blocks.

16 years agoClean up rr35065 -- normalize initial caps and _ input on Special:Categories form...
Brion Vibber [Mon, 9 Jun 2008 23:04:06 +0000 (23:04 +0000)]
Clean up rr35065 -- normalize initial caps and _ input on Special:Categories form and accept /suffix on page name

16 years agoMinor logic error on removing blocks on range when tweaking an IP.
Chad Horohoe [Mon, 9 Jun 2008 22:35:17 +0000 (22:35 +0000)]
Minor logic error on removing blocks on range when tweaking an IP.

16 years agoAlrighty, now we properly remove old blocks before inserting the new one. (Bug 10080...
Chad Horohoe [Mon, 9 Jun 2008 22:03:29 +0000 (22:03 +0000)]
Alrighty, now we properly remove old blocks before inserting the new one. (Bug 10080 works finally!)

16 years ago* (bug 11084) $wgDBprefix replacement for updater SQL will now work for
Brion Vibber [Mon, 9 Jun 2008 21:45:20 +0000 (21:45 +0000)]
* (bug 11084) $wgDBprefix replacement for updater SQL will now work for
  extension tables using uppercase letters or digits in their names.

16 years ago* (bug 14392) Fix regression breaking table prefix in installer
Brion Vibber [Mon, 9 Jun 2008 21:42:54 +0000 (21:42 +0000)]
* (bug 14392) Fix regression breaking table prefix in installer

Problem was a second DBprefix field in the installer, for the MS SQL-specific options.
This second field would be blank, overwriting the first submission from the MySQL-specific section.
Have renamed that field to DBprefix2, so it won't conflict.
Haven't tested on MSSQL of course. . . ;)

16 years agoFix typo in 'tooltip-recreate'. Thanks to Lloffiwr for spotting it.
Siebrand Mazeland [Mon, 9 Jun 2008 19:28:26 +0000 (19:28 +0000)]
Fix typo in 'tooltip-recreate'. Thanks to Lloffiwr for spotting it.

16 years ago(bug 12145) Kazakh message updates
Alexandre Emsenhuber [Mon, 9 Jun 2008 19:12:36 +0000 (19:12 +0000)]
(bug 12145) Kazakh message updates

16 years agoLocalisation updates German
Raimond Spekking [Mon, 9 Jun 2008 19:10:14 +0000 (19:10 +0000)]
Localisation updates German

16 years agoSome tweaks to the {{int:...}} parser function:
Alexandre Emsenhuber [Mon, 9 Jun 2008 17:57:18 +0000 (17:57 +0000)]
Some tweaks to the {{int:...}} parser function:
* Respect the language given with parser options
* Replace parameters before expanding its own templates/functions, like $wgOut->addWikiMsg() does
* (bug 14404) Force content language when parsing the text to pass to LinksUpdate

And some tweaks at save time:
* Use an anonymous user to get the parser options and the parser cache key, thus wikitext rendering is not depending of some sepcific user options such as lang, ...
* Same for the refresh link job

16 years agoupdate comment w/ new location of js funcs
Brion Vibber [Mon, 9 Jun 2008 17:53:04 +0000 (17:53 +0000)]
update comment w/ new location of js funcs

16 years agoRevert r36033 -- this is for the stub mode output, which does indeed use that. And...
Brion Vibber [Mon, 9 Jun 2008 17:20:16 +0000 (17:20 +0000)]
Revert r36033 -- this is for the stub mode output, which does indeed use that. And yes, I'm aware it doesn't match the schema, which is really meant for the final output, not the stub output.

16 years agoLocalisation updates Cantonese and Chinese for extension messages
Shinjiman [Mon, 9 Jun 2008 17:18:13 +0000 (17:18 +0000)]
Localisation updates Cantonese and Chinese for extension messages

16 years ago* Small improvements found in Betawiki
Niklas Laxström [Mon, 9 Jun 2008 16:39:24 +0000 (16:39 +0000)]
* Small improvements found in Betawiki

16 years agoLocalisation updates: Adding/updating Persian translations
Huji [Mon, 9 Jun 2008 15:06:27 +0000 (15:06 +0000)]
Localisation updates: Adding/updating Persian translations

16 years ago(bug 11951) EditPage::getEditToolbar() is now static. Should make life easier for...
Chad Horohoe [Mon, 9 Jun 2008 14:17:16 +0000 (14:17 +0000)]
(bug 11951) EditPage::getEditToolbar() is now static. Should make life easier for extensions.

16 years agoUpdate.
Rotem Liss [Mon, 9 Jun 2008 14:08:34 +0000 (14:08 +0000)]
Update.

16 years agoLocalisation updates German
Raimond Spekking [Mon, 9 Jun 2008 13:09:38 +0000 (13:09 +0000)]
Localisation updates German

16 years agoBug 10080 - Finally fixed. No longer mis-detects an individual IP as blocked when...
Chad Horohoe [Mon, 9 Jun 2008 13:03:58 +0000 (13:03 +0000)]
Bug 10080 - Finally fixed. No longer mis-detects an individual IP as blocked when the range is. Also, introduced new msg called ipb_tweak_block (per request of Siebrand) as opposed to repurposing ipb_already_blocked.

16 years agoHidden blocks should be permanent only
Aaron Schulz [Mon, 9 Jun 2008 01:15:14 +0000 (01:15 +0000)]
Hidden blocks should be permanent only

16 years agoLocalisation updates Cantonese and Chinese for extension messages
Shinjiman [Mon, 9 Jun 2008 00:36:35 +0000 (00:36 +0000)]
Localisation updates Cantonese and Chinese for extension messages

16 years ago* add hook desc to hooks.txt and fix typo in LinkerMakeExternalLink hook
Ryan Schmidt [Sun, 8 Jun 2008 21:58:29 +0000 (21:58 +0000)]
* add hook desc to hooks.txt and fix typo in LinkerMakeExternalLink hook

16 years ago* Add a new hook LinkerMakeExternalLink to allow extensions to modify the output...
Ryan Schmidt [Sun, 8 Jun 2008 21:45:05 +0000 (21:45 +0000)]
* Add a new hook LinkerMakeExternalLink to allow extensions to modify the output of external links.

16 years agoLocalisation updates for core messages from Betawiki
Siebrand Mazeland [Sun, 8 Jun 2008 21:44:38 +0000 (21:44 +0000)]
Localisation updates for core messages from Betawiki
* update 'no' skin names and special page names

16 years agoLocalisation updates for core messages from Betawiki
Siebrand Mazeland [Sun, 8 Jun 2008 21:41:05 +0000 (21:41 +0000)]
Localisation updates for core messages from Betawiki
* update 'cu' Template_talk namespace name

16 years agoLocalisation updates for core messages from Betawiki
Siebrand Mazeland [Sun, 8 Jun 2008 21:39:30 +0000 (21:39 +0000)]
Localisation updates for core messages from Betawiki
* add bcc/Southern Balochi

16 years agoLocalisation updates for core messages from Betawiki (2008-06-08 21:13 CEST)
Siebrand Mazeland [Sun, 8 Jun 2008 20:25:38 +0000 (20:25 +0000)]
Localisation updates for core messages from Betawiki (2008-06-08 21:13 CEST)
* additionally rebuilt all language files

16 years ago* Improvements to FormOptions
Niklas Laxström [Sun, 8 Jun 2008 19:23:54 +0000 (19:23 +0000)]
* Improvements to FormOptions

16 years agoNew $wgGroupPermissions option 'move-subpages' added to control bulk-moving subpages...
Aryeh Gregor [Sun, 8 Jun 2008 18:27:56 +0000 (18:27 +0000)]
New $wgGroupPermissions option 'move-subpages' added to control bulk-moving subpages along with pages.  Assigned to 'user' and 'sysop' by default.  Probably a good idea to remove from user on wikis like enwiki.

16 years ago* Add OldLocalFile::selectRows()
Aaron Schulz [Sun, 8 Jun 2008 17:39:24 +0000 (17:39 +0000)]
* Add OldLocalFile::selectRows()
* Add LocalFile::getHistory hook
* Do file history quality query all at once rather than per file

16 years agoCurrent MediaWiki does not appear to use the id attribute of <text /> anymore. Also...
Bryan Tong Minh [Sun, 8 Jun 2008 17:27:47 +0000 (17:27 +0000)]
Current MediaWiki does not appear to use the id attribute of <text /> anymore. Also not allowed by the XML schema.

16 years agoLoad all extension messages in the specified language code, not only messages defined...
Rotem Liss [Sun, 8 Jun 2008 13:16:19 +0000 (13:16 +0000)]
Load all extension messages in the specified language code, not only messages defined in English, to avoid breaking the 'obsolete' check in extensions.

16 years agoLocalisation updates: Adding/updating Persian translations
Huji [Sun, 8 Jun 2008 10:43:20 +0000 (10:43 +0000)]
Localisation updates: Adding/updating Persian translations

16 years ago* Cache debug messages until $wgOut is initialised
Niklas Laxström [Sat, 7 Jun 2008 12:57:59 +0000 (12:57 +0000)]
* Cache debug messages until $wgOut is initialised

16 years agoStandardization of permission errors and other errors in Special:Movepage, to show...
Rotem Liss [Sat, 7 Jun 2008 12:39:44 +0000 (12:39 +0000)]
Standardization of permission errors and other errors in Special:Movepage, to show them earlier, when the user asks to move an article.

16 years agoUse new calling convention for ImageGallery::add() and ImageGallery::insert()
Tim Starling [Sat, 7 Jun 2008 09:02:36 +0000 (09:02 +0000)]
Use new calling convention for ImageGallery::add() and ImageGallery::insert()

16 years agoAnother note.
Rotem Liss [Sat, 7 Jun 2008 08:51:37 +0000 (08:51 +0000)]
Another note.

16 years agoUpdate to match the recent changes in the Translate extension.
Rotem Liss [Sat, 7 Jun 2008 08:43:44 +0000 (08:43 +0000)]
Update to match the recent changes in the Translate extension.

16 years agoAdd a ! operator to autopromote conditions
Andrew Garrett [Sat, 7 Jun 2008 05:13:25 +0000 (05:13 +0000)]
Add a ! operator to autopromote conditions

16 years ago* Pass in $parser more cleanly
Aaron Schulz [Fri, 6 Jun 2008 20:28:34 +0000 (20:28 +0000)]
* Pass in $parser more cleanly
* Show namespace in include error list
* Use getRevisionId() accessor
* Handle bogus article Ids
* Remove unused var

16 years agoAdd 'ogv' as recognized alias to 'ogg', allowing uploads of .ogv files to proceed...
Brion Vibber [Fri, 6 Jun 2008 19:58:06 +0000 (19:58 +0000)]
Add 'ogv' as recognized alias to 'ogg', allowing uploads of .ogv files to proceed if allowed

16 years agoBreaks rangeblocks. Keeping out of trunk until we can figure out why.
Chad Horohoe [Fri, 6 Jun 2008 18:33:54 +0000 (18:33 +0000)]
Breaks rangeblocks. Keeping out of trunk until we can figure out why.

16 years agoI think we've fixed the UI issues with the new modify block features. Shows up fine...
Chad Horohoe [Fri, 6 Jun 2008 18:11:05 +0000 (18:11 +0000)]
I think we've fixed the UI issues with the new modify block features. Shows up fine in FF2 and IE7/8. Need additional testing if someone would be so kind :-)

16 years agoparser test fix from https://bugzilla.wikimedia.org/show_bug.cgi?id=14435
Brion Vibber [Fri, 6 Jun 2008 17:16:11 +0000 (17:16 +0000)]
parser test fix from https://bugzilla.wikimedia.org/show_bug.cgi?id=14435

16 years ago* (bug 14432) Fix notice regression in Special:Newpages feed mode
Brion Vibber [Fri, 6 Jun 2008 16:42:23 +0000 (16:42 +0000)]
* (bug 14432) Fix notice regression in Special:Newpages feed mode

16 years ago* (bug 14424) Fix regression in $wgRateLimitsExcludedGroups support
Brion Vibber [Fri, 6 Jun 2008 15:53:49 +0000 (15:53 +0000)]
* (bug 14424) Fix regression in $wgRateLimitsExcludedGroups support

Fixes logic error introduced in r35908.

16 years agoUpdate.
Rotem Liss [Fri, 6 Jun 2008 15:07:17 +0000 (15:07 +0000)]
Update.

16 years agoLocalisation updates Cantonese, Chinese and Old/Late Time Chinese
Shinjiman [Fri, 6 Jun 2008 04:39:24 +0000 (04:39 +0000)]
Localisation updates Cantonese, Chinese and Old/Late Time Chinese

16 years ago* (bug 14401) Fix Safari access key tooltips for Windows and >3.1 Mac versions
Brion Vibber [Fri, 6 Jun 2008 01:48:47 +0000 (01:48 +0000)]
* (bug 14401) Fix Safari access key tooltips for Windows and >3.1 Mac versions

Now shows 'alt' for Safari on Windows, 'ctrl+alt' for Webkit >= 526 on Mac, and 'ctrl' for older WebKit/Safari on Mac (confirmed w/ 3.1 and WebKit nightlies)

16 years agoRevert r35901 -- UI regressions (ipb_already_blocked appears to have changed format...
Brion Vibber [Fri, 6 Jun 2008 00:46:56 +0000 (00:46 +0000)]
Revert r35901 -- UI regressions (ipb_already_blocked appears to have changed format, spewing giant red HTML all over everything)

16 years agoRe-encode in utf-8 and removed trailing whitespaces
Alexandre Emsenhuber [Thu, 5 Jun 2008 20:28:24 +0000 (20:28 +0000)]
Re-encode in utf-8 and removed trailing whitespaces