lhc/web/wiklou.git
15 years agoLocalisation updates from translatewiki.net
Siebrand Mazeland [Sun, 17 May 2009 10:33:28 +0000 (10:33 +0000)]
Localisation updates from translatewiki.net
* new localisation Lower Silesian (Schläsch) (sli)
* new localisation Uyghur (Arabic script) (ug-arab)

15 years agoLocalisation updates from translatewiki.net
Siebrand Mazeland [Sun, 17 May 2009 10:23:04 +0000 (10:23 +0000)]
Localisation updates from translatewiki.net
* special pages aliases, magic words, namespace names and namespace aliases

15 years agoLocalisation updates for core messages from translatewiki.net (2009-05-17 09:04 UTC)
Siebrand Mazeland [Sun, 17 May 2009 09:16:22 +0000 (09:16 +0000)]
Localisation updates for core messages from translatewiki.net (2009-05-17 09:04 UTC)

15 years agoRm unused $wgLang and some trailing whitespace.
Chad Horohoe [Sun, 17 May 2009 00:09:30 +0000 (00:09 +0000)]
Rm unused $wgLang and some trailing whitespace.

15 years ago* fix MessageCache::get()'s $isFullKey param: full key is "msg/lang" as in MediaWiki...
Alexandre Emsenhuber [Sat, 16 May 2009 20:12:29 +0000 (20:12 +0000)]
* fix MessageCache::get()'s $isFullKey param: full key is "msg/lang" as in MediaWiki namespace, not "lang/msg"
* whitespaces tweaks

15 years agofix for r50667: consistency with other hooks: removed "* " before params
Alexandre Emsenhuber [Sat, 16 May 2009 19:35:03 +0000 (19:35 +0000)]
fix for r50667: consistency with other hooks: removed "* " before params

15 years agoDocument "MessageNotInMwNs" hook
Alexandre Emsenhuber [Sat, 16 May 2009 19:32:12 +0000 (19:32 +0000)]
Document "MessageNotInMwNs" hook

15 years agoFix for r50642: forgot to rebuild "qqq"
Alexandre Emsenhuber [Fri, 15 May 2009 20:57:37 +0000 (20:57 +0000)]
Fix for r50642: forgot to rebuild "qqq"

15 years agoLocalisation updates for core messages from translatewiki.net (2009-05-15 20:05 UTC)
Alexandre Emsenhuber [Fri, 15 May 2009 20:09:30 +0000 (20:09 +0000)]
Localisation updates for core messages from translatewiki.net (2009-05-15 20:05 UTC)

15 years ago(bug 16912) Tooltips on images with link= disappear
Aryeh Gregor [Fri, 15 May 2009 19:43:09 +0000 (19:43 +0000)]
(bug 16912) Tooltips on images with link= disappear

Patch based on one by Derk-Jan Hartman, which he wasn't able to commit
because he didn't have a MediaWiki installation to test on.  One fix
made, and parser tests added.

15 years agoAdd --setversion option to parserTests
Aryeh Gregor [Fri, 15 May 2009 19:23:00 +0000 (19:23 +0000)]
Add --setversion option to parserTests

This overrides the version string stored in the database with --record.
When using git-svn, you can do

    php maintenance/parserTests.php --quick --quiet --record \
--setversion=`git rev-parse HEAD`

to have comprehensible version info stored for the purposes of later
bisection.  Previously just "1.16alpha" would be stored, which is
useless for tracking down the old revision -- you'd have to try guessing
based on date.

It might be useful for SpecialVersion::getVersion() to support git-svn,
but that's a more complicated and intrusive change for an admittedly
small minority, so I avoided it for now.

15 years agoFix parsertests with $wgSectionContainers=true
Aryeh Gregor [Fri, 15 May 2009 19:01:06 +0000 (19:01 +0000)]
Fix parsertests with $wgSectionContainers=true

15 years agoUse getTitle() instead of getTitleFor()
Chad Horohoe [Fri, 15 May 2009 17:21:31 +0000 (17:21 +0000)]
Use getTitle() instead of getTitleFor()

15 years ago(bug 18549) Make Special:Blockip (and api action=block) respect $wgEnableUserEmail...
Chad Horohoe [Fri, 15 May 2009 17:08:38 +0000 (17:08 +0000)]
(bug 18549) Make Special:Blockip (and api action=block) respect $wgEnableUserEmail and $wgSysopEmailBans

15 years agoDon't need to use $wgUser, isValidEmailAddr() is static.
Chad Horohoe [Fri, 15 May 2009 16:43:09 +0000 (16:43 +0000)]
Don't need to use $wgUser, isValidEmailAddr() is static.

15 years agoFollow-up r50567: also update PostgreSQL and SQLite schema
Alexandre Emsenhuber [Fri, 15 May 2009 11:34:18 +0000 (11:34 +0000)]
Follow-up r50567: also update PostgreSQL and SQLite schema

15 years agoFix up r50600, which had no effect
Roan Kattouw [Fri, 15 May 2009 10:42:25 +0000 (10:42 +0000)]
Fix up r50600, which had no effect

15 years ago* Fix comment
Alexandre Emsenhuber [Fri, 15 May 2009 10:16:13 +0000 (10:16 +0000)]
* Fix comment
* Removed "- 1" when incrementing $blockStart and $blockEnd so that LOG_SEARCH_BATCH_SIZE is respected

15 years agoTweak for r50609: use $wgDatabase rather than wfGetDB( DB_MASTER )
Alexandre Emsenhuber [Fri, 15 May 2009 09:37:11 +0000 (09:37 +0000)]
Tweak for r50609: use $wgDatabase rather than wfGetDB( DB_MASTER )

15 years agoAdd newline to echo call
Aaron Schulz [Fri, 15 May 2009 05:25:46 +0000 (05:25 +0000)]
Add newline to echo call

15 years agoFix breakage of SQLite ResultWrapper due to r45769. The "result" member in SQLite...
Tim Starling [Fri, 15 May 2009 02:49:06 +0000 (02:49 +0000)]
Fix breakage of SQLite ResultWrapper due to r45769. The "result" member in SQLite is actually an array and so passing by value to DatabaseSqlite::fetchObject() makes it fail to iterate. We can't really pass it by reference since that's an E_STRICT error due to a parameter type mismatch with Database. Pass the ResultWrapper instead.

This means that nothing at all should be passing bare result objects/arrays to Database*::fetchObject() anymore. The "instanceof ResultWrapper" logic can be removed in a subsequent commit. It can stay in this one for now for safer backport to 1.15.

15 years agoPopulate log_search during update.php run and store an update status row when we...
Brion Vibber [Thu, 14 May 2009 23:06:53 +0000 (23:06 +0000)]
Populate log_search during update.php run and store an update status row when we're done.

15 years agoCleanup for r50567:
Brion Vibber [Thu, 14 May 2009 22:43:57 +0000 (22:43 +0000)]
Cleanup for r50567:
* Include DB table options on log_search table creation
* Adjust tabs->spaces in table def... sounds silly, but the tabs sometimes confuse things when cut-and-pasting into mysql command line. :)

15 years agoWrap line.
Chad Horohoe [Thu, 14 May 2009 21:45:22 +0000 (21:45 +0000)]
Wrap line.

15 years agoUpdated RELEASE-NOTES for the changes made in r50605
Tom Maaswinkel [Thu, 14 May 2009 21:41:18 +0000 (21:41 +0000)]
Updated RELEASE-NOTES for the changes made in r50605

15 years agoAdded a new hook to handle messages that aren't found in the Mediawiki Namespace...
Tom Maaswinkel [Thu, 14 May 2009 21:38:45 +0000 (21:38 +0000)]
Added a new hook to handle messages that aren't found in the Mediawiki Namespace (before checking the message files)

15 years ago(bug 18656) Use proper directory separators in wfMkdirParents(). Normalized all ...
Chad Horohoe [Thu, 14 May 2009 20:45:14 +0000 (20:45 +0000)]
(bug 18656) Use proper directory separators in wfMkdirParents(). Normalized all \ or / to DIRECTORY_SEPARATOR.

15 years agoFollowup to r50423: Check if the row is null, since older revs don't necessarily...
Chad Horohoe [Thu, 14 May 2009 20:29:54 +0000 (20:29 +0000)]
Followup to r50423: Check if the row is null, since older revs don't necessarily have rev_len populated.

15 years ago(bug 18716) Removed redundant class in Modern skin CSS for category links and tweaked...
Chad Horohoe [Thu, 14 May 2009 20:22:42 +0000 (20:22 +0000)]
(bug 18716) Removed redundant class in Modern skin CSS for category links and tweaked spacing. Patch by  Derk-Jan Hartman

15 years agoTweaks to r50567:
Aaron Schulz [Thu, 14 May 2009 19:49:33 +0000 (19:49 +0000)]
Tweaks to r50567:
* Improved exception handling
* Removed redundant ls_log_id cond
* Added log_type to getLogQueryCond()
* Don't show duplicate rows in log results
* populateLogSearch now handles an older log_param format

15 years agoUpdate the Chinese conversion tables.
Philip Tzou [Thu, 14 May 2009 17:39:18 +0000 (17:39 +0000)]
Update the Chinese conversion tables.

15 years agoUpdate the Chinese conversion tables.
Philip Tzou [Thu, 14 May 2009 16:59:42 +0000 (16:59 +0000)]
Update the Chinese conversion tables.

15 years ago(bug 11451) Fix error in 1.2 -> 1.3 upgrade script, causing failure of upgrades from...
Tim Starling [Thu, 14 May 2009 13:49:17 +0000 (13:49 +0000)]
(bug 11451) Fix error in 1.2 -> 1.3 upgrade script, causing failure of upgrades from 1.2 or before. Rediscovered during automated testing. For backport to 1.15.

15 years agoGive failure message rather than assuming field 0 for trying to set field 8 (just...
Aaron Schulz [Wed, 13 May 2009 22:22:09 +0000 (22:22 +0000)]
Give failure message rather than assuming field 0 for trying to set field 8 (just suppressing a rev but not hiding anything)

15 years ago[schema change] Use new log_search table to replace ugly code from r48839. Maintenanc...
Aaron Schulz [Wed, 13 May 2009 22:03:32 +0000 (22:03 +0000)]
[schema change] Use new log_search table to replace ugly code from r48839. Maintenance script added to populate the table with revisiondelete log items.

15 years agoAdd AbuseFilter to the installer.
Tim Starling [Wed, 13 May 2009 04:03:36 +0000 (04:03 +0000)]
Add AbuseFilter to the installer.

15 years agounencode all slashes and colons in importScript(), not just the first one of each
Ilmari Karonen [Tue, 12 May 2009 23:56:28 +0000 (23:56 +0000)]
unencode all slashes and colons in importScript(), not just the first one of each

15 years ago* (bug 18776) Native name of Burmese language (my)
Raimond Spekking [Tue, 12 May 2009 20:40:44 +0000 (20:40 +0000)]
* (bug 18776) Native name of Burmese language (my)

15 years agoUpdate the Chinese conversion tables.
Philip Tzou [Tue, 12 May 2009 18:46:21 +0000 (18:46 +0000)]
Update the Chinese conversion tables.

15 years agoLocalisation updates for core messages from translatewiki.net (2009-05-12 18:10 UTC)
Raimond Spekking [Tue, 12 May 2009 18:20:27 +0000 (18:20 +0000)]
Localisation updates for core messages from translatewiki.net (2009-05-12 18:10 UTC)

15 years agoFix E_STRICT reported on Translatewiki.net
Roan Kattouw [Tue, 12 May 2009 14:15:08 +0000 (14:15 +0000)]
Fix E_STRICT reported on Translatewiki.net

15 years agoQuick hack to allow creation of blobs tables with names other than "blobs"
Tim Starling [Tue, 12 May 2009 13:43:51 +0000 (13:43 +0000)]
Quick hack to allow creation of blobs tables with names other than "blobs"

15 years ago* Add Estonian letters äöõšüž to linktrail (et)
Raimond Spekking [Tue, 12 May 2009 11:58:04 +0000 (11:58 +0000)]
* Add Estonian letters äöõšüž to linktrail (et)
Per discussion at http://de.wikipedia.org/w/index.php?title=Hilfe_Diskussion:Bugzilla&oldid=59892716#Fehlerhafte_Hyperlinks

15 years ago__FUNCTION__ -> __METHOD__ in SpecialRecentchanges::checkLastModified()
Alexandre Emsenhuber [Mon, 11 May 2009 15:32:51 +0000 (15:32 +0000)]
__FUNCTION__ -> __METHOD__ in SpecialRecentchanges::checkLastModified()

15 years agoPartial revert of r50478 "Preparations for Oracle database abstraction update."
Aryeh Gregor [Mon, 11 May 2009 14:05:21 +0000 (14:05 +0000)]
Partial revert of r50478 "Preparations for Oracle database abstraction update."

Syntax error in RecentChangesLinked with MySQL 5.0: "1248: Every derived
table must have its own alias (localhost)".  Also likely to fail in
MySQL 4.0 even with an alias added, since subqueries don't work.

15 years agoPreparations for Oracle database abstraction update.
Jure Kajzer [Mon, 11 May 2009 12:38:45 +0000 (12:38 +0000)]
Preparations for Oracle database abstraction update.
Replaced a few hardcoded LIMIT clauses with database function.
Wrapped UNION statement in SpecialRecentchangeslinked for Oracle compatibility.

15 years agoProposed fix for bug 16937: pg_version() missing server version due to PHP bug.
Tim Starling [Mon, 11 May 2009 11:35:52 +0000 (11:35 +0000)]
Proposed fix for bug 16937: pg_version() missing server version due to PHP bug.

15 years ago(bug 18726) Fixed double URL escaping in the links to Special:RevisionDelete in the...
Tim Starling [Mon, 11 May 2009 06:38:16 +0000 (06:38 +0000)]
(bug 18726) Fixed double URL escaping in the links to Special:RevisionDelete in the file and page history lists on Special:Undelete.

15 years agoLocalisation updates for core messages from translatewiki.net (2009-05-10 21:07 UTC)
Siebrand Mazeland [Sun, 10 May 2009 21:16:41 +0000 (21:16 +0000)]
Localisation updates for core messages from translatewiki.net (2009-05-10 21:07 UTC)

15 years agofix regression from r49677 by refusing to format old-style metadata even if a foreign...
Ilmari Karonen [Sun, 10 May 2009 20:33:55 +0000 (20:33 +0000)]
fix regression from r49677 by refusing to format old-style metadata even if a foreign repo hands us some

15 years agoTweak comment
Aaron Schulz [Sun, 10 May 2009 18:06:00 +0000 (18:06 +0000)]
Tweak comment

15 years agoremoved useless "$skin->link( $title );"
Alexandre Emsenhuber [Sun, 10 May 2009 16:17:23 +0000 (16:17 +0000)]
removed useless "$skin->link( $title );"

15 years agoAPI: (bug 18749) Add generator flag to action=paraminfo output. Also fixes an interna...
Roan Kattouw [Sun, 10 May 2009 09:52:31 +0000 (09:52 +0000)]
API: (bug 18749) Add generator flag to action=paraminfo output. Also fixes an internal error in r50367

15 years agoAPI: (bug 18743) Add ucprop=size (enabled by default) to list=usercontribs. Also...
Roan Kattouw [Sun, 10 May 2009 09:25:46 +0000 (09:25 +0000)]
API: (bug 18743) Add ucprop=size (enabled by default) to list=usercontribs. Also fix warning from r49732

15 years agoRevert r50180 ("Proper error message on action=protect"): causes bug 18728 ("Non...
Roan Kattouw [Sun, 10 May 2009 09:18:23 +0000 (09:18 +0000)]
Revert r50180 ("Proper error message on action=protect"): causes bug 18728 ("Non-admins can no longer see protection settings")

15 years agoMinor commit:
Meno25 [Sun, 10 May 2009 00:53:59 +0000 (00:53 +0000)]
Minor commit:

* Add the original authors of messagesar.php who are not registered on betawiki
* Remove non-native speakers

15 years agoLocalisation updates for core messages from translatewiki.net (2009-05-09 23:36 UTC)
Siebrand Mazeland [Sat, 9 May 2009 23:45:33 +0000 (23:45 +0000)]
Localisation updates for core messages from translatewiki.net (2009-05-09 23:36 UTC)

15 years agoFollow-up on r50351. Fix adding key/value pair.
Siebrand Mazeland [Sat, 9 May 2009 23:03:11 +0000 (23:03 +0000)]
Follow-up on r50351. Fix adding key/value pair.

15 years agoEfficiency fix: don't call Title::isRedirect() on titles known not to exist; eliminat...
Roan Kattouw [Sat, 9 May 2009 20:52:52 +0000 (20:52 +0000)]
Efficiency fix: don't call Title::isRedirect() on titles known not to exist; eliminates a lot of LinkCache::addLinkObj() queries for titles fed to Linker::makeBrokenLinkObj()

15 years agofloat -> double for the "Time (type)" test according to the PHP manual
Alexandre Emsenhuber [Sat, 9 May 2009 14:19:58 +0000 (14:19 +0000)]
float -> double for the "Time (type)" test according to the PHP manual

15 years agoAPI: (bug 18730) Add version information to action=paraminfo output
Roan Kattouw [Sat, 9 May 2009 13:00:59 +0000 (13:00 +0000)]
API: (bug 18730) Add version information to action=paraminfo output

15 years agoAPI: (bug 18731) Show correct SVN links for extension modules in api.php?version...
Roan Kattouw [Sat, 9 May 2009 12:52:38 +0000 (12:52 +0000)]
API: (bug 18731) Show correct SVN links for extension modules in api.php?version . Guesswork to get the path assumes extensions are in a directory called extensions/extensionname , which should be a valid assumption on sane installs.

15 years agoFollow-up on r50351. Fix syntax errors in CategoryPage.php
Siebrand Mazeland [Fri, 8 May 2009 23:27:42 +0000 (23:27 +0000)]
Follow-up on r50351. Fix syntax errors in CategoryPage.php

15 years agoUse link() instead of deprecated makeLinkObj() where possible.
Siebrand Mazeland [Fri, 8 May 2009 23:24:31 +0000 (23:24 +0000)]
Use link() instead of deprecated makeLinkObj() where possible.

15 years agoUpdate RELEASE-NOTES for r50336
Jan Luca Naumann [Fri, 8 May 2009 20:33:42 +0000 (20:33 +0000)]
Update RELEASE-NOTES for r50336

15 years agoAPI: (bug 18709) Missing descriptions for some parameters in action=paraminfo output
Roan Kattouw [Fri, 8 May 2009 17:24:49 +0000 (17:24 +0000)]
API: (bug 18709) Missing descriptions for some parameters in action=paraminfo output

15 years ago(bug 18718) A comma was after a }, so that IE has problems
Jan Luca Naumann [Fri, 8 May 2009 16:58:20 +0000 (16:58 +0000)]
(bug 18718) A comma was after a }, so that IE has problems

15 years agomore fixes for r50316: changed StartProfiler.php to ProfilerStub.php so that it doesn...
Alexandre Emsenhuber [Fri, 8 May 2009 09:03:55 +0000 (09:03 +0000)]
more fixes for r50316: changed StartProfiler.php to ProfilerStub.php so that it doesn't break when StartProfiler.php doesn't exist

15 years ago* Fix for r50316 and r50324: require ProfilerStub.php if StartProfiler.php doesn...
Alexandre Emsenhuber [Fri, 8 May 2009 08:54:47 +0000 (08:54 +0000)]
* Fix for r50316 and r50324: require ProfilerStub.php if StartProfiler.php doesn't exist to aviod call to undefined function wfProfileIn()
* Removed already commented out "require_once( $IP.'/includes/ProfilerStub.php' );" now really obsolete

15 years ago(bug 17611) Provide a sensible error message on install when the SQLite data director...
Tim Starling [Fri, 8 May 2009 05:43:37 +0000 (05:43 +0000)]
(bug 17611) Provide a sensible error message on install when the SQLite data directory is wrong. For backport to 1.15. Achieved by layering another collection of ugly hacks on top of config/index.php, in the hopes that the combined weight of hackishness might convince Brion to allow me to finish the new installer.

15 years agoFollowup to r50316: Fix inclusion of profiler in maintenance scripts.
Chad Horohoe [Thu, 7 May 2009 20:30:55 +0000 (20:30 +0000)]
Followup to r50316: Fix inclusion of profiler in maintenance scripts.

15 years agoDon't use $this in hook description since it's a reserved word
Alexandre Emsenhuber [Thu, 7 May 2009 20:15:09 +0000 (20:15 +0000)]
Don't use $this in hook description since it's a reserved word

15 years ago(bug 18710) Fixed internal error with empty parameter in ApiParamInfo
Chad Horohoe [Thu, 7 May 2009 20:09:45 +0000 (20:09 +0000)]
(bug 18710) Fixed internal error with empty parameter in ApiParamInfo

15 years agoDon't explicitly check for false. Most modules without params return an empty array...
Chad Horohoe [Thu, 7 May 2009 20:02:20 +0000 (20:02 +0000)]
Don't explicitly check for false. Most modules without params return an empty array rather than false, in which case we still don't want to output this.

15 years agoAdd $this as a parameter to LoadAllMessages.
Chad Horohoe [Thu, 7 May 2009 18:49:57 +0000 (18:49 +0000)]
Add $this as a parameter to LoadAllMessages.

15 years agoRemoved StartProfiler.php from SVN control and added StartProfiler.sample file. The...
Aaron Schulz [Thu, 7 May 2009 18:30:26 +0000 (18:30 +0000)]
Removed StartProfiler.php from SVN control and added StartProfiler.sample file. The sample file can be moved to the former name to set profiling. MW will fall back to ProfilerStub.php as usual if there is no StartProfiler.php.

15 years agofix E_PARSE from r50310
Alexandre Emsenhuber [Thu, 7 May 2009 16:51:45 +0000 (16:51 +0000)]
fix E_PARSE from r50310

15 years agoSupress chmod() errors, they're annoying and very common. In all liklihood, the wiki...
Chad Horohoe [Thu, 7 May 2009 16:18:42 +0000 (16:18 +0000)]
Supress chmod() errors, they're annoying and very common. In all liklihood, the wiki can display the image with whatever permissions it was created to begin with. Also introduce the 'fileMode' parameter for  $wgLocalFileRepo/$wgForeignFileRepos. Fixes bug 18326

15 years ago(bug 16925) Diffs no longer silently fail when $wgExternalDiffEngine is set to 'wikid...
Chad Horohoe [Thu, 7 May 2009 16:00:29 +0000 (16:00 +0000)]
(bug 16925) Diffs no longer silently fail when $wgExternalDiffEngine is set to 'wikidiff' or 'wikidiff2' but extension is not installed. Should now gracefully fall back to the PHP diff.

15 years agoonly 1010 tests, not 1120
Alexandre Emsenhuber [Thu, 7 May 2009 09:30:36 +0000 (09:30 +0000)]
only 1010 tests, not 1120

15 years ago* Same hack for transstat.php as in r50125
Niklas Laxström [Thu, 7 May 2009 07:47:46 +0000 (07:47 +0000)]
* Same hack for transstat.php as in r50125

15 years agoRemove StartProfiler.php, removed with no explanation in r50299, causing fatals on...
Andrew Garrett [Thu, 7 May 2009 07:27:01 +0000 (07:27 +0000)]
Remove StartProfiler.php, removed with no explanation in r50299, causing fatals on all installations.

15 years agoignore startprofiler.php
Aaron Schulz [Thu, 7 May 2009 03:46:39 +0000 (03:46 +0000)]
ignore startprofiler.php

15 years agoFix a silly bug that isn't the mystery dump bug we were looking for, but could result...
Brion Vibber [Wed, 6 May 2009 23:47:31 +0000 (23:47 +0000)]
Fix a silly bug that isn't the mystery dump bug we were looking for, but could result in infinite loop during text pass if it fails just at the right time.

15 years agoFixed a minor problem with $wgSectionContainers that was causing some divs to not...
Arash Boostani [Wed, 6 May 2009 23:21:55 +0000 (23:21 +0000)]
Fixed a minor problem with $wgSectionContainers that was causing some divs to not be closed properly

15 years agoFollow-up for r50207: mysql won't estimate total number of hits, so don't show it...
Robert Stojnić [Wed, 6 May 2009 21:05:52 +0000 (21:05 +0000)]
Follow-up for r50207: mysql won't estimate total number of hits, so don't show it - copied from SpecialSearchOld more or less.

15 years agoIf passing a callback in an array in $wgExtensionFunctions, fix the profile name...
Alexandre Emsenhuber [Wed, 6 May 2009 20:02:01 +0000 (20:02 +0000)]
If passing a callback in an array in $wgExtensionFunctions, fix the profile name to not have 'Setup.php-extensions-Array'

15 years agoLocalisation updates for core messages from translatewiki.net (2009-05-06 19:00 UTC)
Raimond Spekking [Wed, 6 May 2009 19:27:12 +0000 (19:27 +0000)]
Localisation updates for core messages from translatewiki.net (2009-05-06 19:00 UTC)

15 years agoSet the default value for $wgSectionContainers and documented the functionality.
Arash Boostani [Wed, 6 May 2009 15:13:12 +0000 (15:13 +0000)]
Set the default value for $wgSectionContainers and documented the functionality.

15 years agoLocalization update.
Rotem Liss [Wed, 6 May 2009 08:38:37 +0000 (08:38 +0000)]
Localization update.

15 years agoUpdate the Chinese conversion tables.
Philip Tzou [Wed, 6 May 2009 05:44:55 +0000 (05:44 +0000)]
Update the Chinese conversion tables.

15 years agoFixed problem with call to closeSectionContainers that contained references. Only...
Arash Boostani [Wed, 6 May 2009 04:17:48 +0000 (04:17 +0000)]
Fixed problem with call to closeSectionContainers that contained references. Only the function definition needs to indicate that the input variable is a reference, not the function call.

15 years agoInadvertently committed an extension to the extension directory, so I am now removing...
Arash Boostani [Tue, 5 May 2009 23:16:58 +0000 (23:16 +0000)]
Inadvertently committed an extension to the extension directory, so I am now removing those files

15 years agoAdded an extension, called EditSectionHiliteLink, that highlights the appropriate...
Arash Boostani [Tue, 5 May 2009 22:49:45 +0000 (22:49 +0000)]
Added an extension, called EditSectionHiliteLink, that highlights the appropriate section when the user mouses over the section edit links. Also, modified the Parser to enclose each section in a div if $wgSectionContainers is set.

15 years agoFix up r50223: moving a wrongly-moved entry back from HISTORY to RELEASE-NOTES
Roan Kattouw [Tue, 5 May 2009 14:30:13 +0000 (14:30 +0000)]
Fix up r50223: moving a wrongly-moved entry back from HISTORY to RELEASE-NOTES

15 years agoMoved backported RELEASE-NOTES items to HISTORY.
Tim Starling [Tue, 5 May 2009 14:24:00 +0000 (14:24 +0000)]
Moved backported RELEASE-NOTES items to HISTORY.

15 years agoFollowup to r50132: rename API define constant to MW_API, per comment on CR
Roan Kattouw [Tue, 5 May 2009 13:22:50 +0000 (13:22 +0000)]
Followup to r50132: rename API define constant to MW_API, per comment on CR

15 years agoPer Simetrical's comment on r50192: update CREDITS file
Alexandre Emsenhuber [Tue, 5 May 2009 11:09:21 +0000 (11:09 +0000)]
Per Simetrical's comment on r50192: update CREDITS file

15 years agoFix up r47473: descend into subarrays in ForeignAPIFile::getMetadata()
Roan Kattouw [Tue, 5 May 2009 09:47:53 +0000 (09:47 +0000)]
Fix up r47473: descend into subarrays in ForeignAPIFile::getMetadata()

15 years agoLocalisation updates Cantonese, Chinese and Literary Chinese
Shinjiman [Tue, 5 May 2009 03:11:34 +0000 (03:11 +0000)]
Localisation updates Cantonese, Chinese and Literary Chinese