lhc/web/wiklou.git
16 years agoActually, let's have that commit() call there anyway, the way it currently works...
Roan Kattouw [Fri, 4 Apr 2008 13:49:56 +0000 (13:49 +0000)]
Actually, let's have that commit() call there anyway, the way it currently works relies on the fact that internalAttemptSave() schedules deferred updates, which may change.

16 years ago* Add Fiji Hindi (hif) in two scripts. Standard in Latin script
Siebrand Mazeland [Fri, 4 Apr 2008 13:48:34 +0000 (13:48 +0000)]
* Add Fiji Hindi (hif) in two scripts. Standard in Latin script
* First translated messages in hif-latn

16 years agoUpdate.
Rotem Liss [Fri, 4 Apr 2008 13:35:56 +0000 (13:35 +0000)]
Update.

16 years ago* Update Chinese translations
Shinjiman [Fri, 4 Apr 2008 13:24:04 +0000 (13:24 +0000)]
* Update Chinese translations
* Update Cantonese translations
* Update Old Chinese / Late Time Chinese translations

16 years agoprivate -> protected (since CleanChanges extends this)
Aaron Schulz [Fri, 4 Apr 2008 13:16:58 +0000 (13:16 +0000)]
private -> protected (since CleanChanges extends this)

16 years agoMoved file deletion code to a more abstract FileDeleteForm::doDelete
Bryan Tong Minh [Fri, 4 Apr 2008 12:16:50 +0000 (12:16 +0000)]
Moved file deletion code to a more abstract FileDeleteForm::doDelete

16 years agoLocalisation updates for core messages from Betawiki (2008-04-04 13:43 CEST)
Siebrand Mazeland [Fri, 4 Apr 2008 12:13:24 +0000 (12:13 +0000)]
Localisation updates for core messages from Betawiki (2008-04-04 13:43 CEST)

16 years agoRevert ApiQueryExtLinksUsage.php back to r32772: Forgot to do svn revert . on working...
Bryan Tong Minh [Fri, 4 Apr 2008 11:51:55 +0000 (11:51 +0000)]
Revert ApiQueryExtLinksUsage.php back to r32772: Forgot to do svn revert . on working copy

16 years ago(bug 13606) Added archivename to iiprop
Bryan Tong Minh [Fri, 4 Apr 2008 11:49:20 +0000 (11:49 +0000)]
(bug 13606) Added archivename to iiprop

16 years agoAPI:
Roan Kattouw [Fri, 4 Apr 2008 11:22:58 +0000 (11:22 +0000)]
API:
* Cleaned up ApiPageSet::getRedirectTargets(), now uses the redirect table rather than the pagelinks table (this fixes bug 13965)
* Added possibility to obtain all external links through list=exturlusage (per MinuteElectron's request on the mediawiki-api list)

16 years agoLocalisation updates German
Raimond Spekking [Fri, 4 Apr 2008 10:51:12 +0000 (10:51 +0000)]
Localisation updates German

16 years agoUpdate per r32762.
Raimond Spekking [Fri, 4 Apr 2008 05:48:17 +0000 (05:48 +0000)]
Update per r32762.

16 years ago* Don't show hist link if hidden
Aaron Schulz [Fri, 4 Apr 2008 05:08:25 +0000 (05:08 +0000)]
* Don't show hist link if hidden
* Mark more functions

16 years ago* Update Chinese translations
Shinjiman [Fri, 4 Apr 2008 04:46:00 +0000 (04:46 +0000)]
* Update Chinese translations
* Update Cantonese translations
* Update Old Chinese / Late Time Chinese translations

16 years agoDocument and flag some functions
Aaron Schulz [Fri, 4 Apr 2008 04:44:22 +0000 (04:44 +0000)]
Document and flag some functions

16 years ago* Cyrillic to latin converter for tg
Niklas Laxström [Fri, 4 Apr 2008 04:25:58 +0000 (04:25 +0000)]
* Cyrillic to latin converter for tg

16 years agoMissed one; use timestamp to use index
Aaron Schulz [Fri, 4 Apr 2008 04:18:38 +0000 (04:18 +0000)]
Missed one; use timestamp to use index

16 years ago* Make revisiondelete queries not suck (many where index misses)
Aaron Schulz [Fri, 4 Apr 2008 04:15:21 +0000 (04:15 +0000)]
* Make revisiondelete queries not suck (many where index misses)
* Document var

16 years ago* Add missing /event log action
Aaron Schulz [Fri, 4 Apr 2008 03:56:48 +0000 (03:56 +0000)]
* Add missing /event log action
* Various UI cleanup

16 years agoRemove unused vars
Aaron Schulz [Fri, 4 Apr 2008 02:12:27 +0000 (02:12 +0000)]
Remove unused vars

16 years agoLocalisation updates for core messages from Betawiki
Siebrand Mazeland [Thu, 3 Apr 2008 21:02:51 +0000 (21:02 +0000)]
Localisation updates for core messages from Betawiki
* magic updates

16 years agoFixes.
Rotem Liss [Thu, 3 Apr 2008 18:30:52 +0000 (18:30 +0000)]
Fixes.

16 years agoFixed E_NOTICE when showing old items of delete/revision log, with those items, ...
Alexandre Emsenhuber [Thu, 3 Apr 2008 16:30:30 +0000 (16:30 +0000)]
Fixed E_NOTICE when showing old items of delete/revision log, with those items, $paramArray is empty, so don't provide links as we don't know the revision id

16 years ago* Use existent CSS classes for form labels und input fields
Raimond Spekking [Thu, 3 Apr 2008 15:43:37 +0000 (15:43 +0000)]
* Use existent CSS classes for form labels und input fields
* Fix tabindex sequence
* Use XML functions consistently

16 years agoSuboptimal solution for one of the issues behind bug 12049 (i.e. that
Robert Stojnić [Thu, 3 Apr 2008 15:09:56 +0000 (15:09 +0000)]
Suboptimal solution for one of the issues behind bug 12049 (i.e. that
don't get deleted from search index) :
* hooks ArticleDelete[Complete] are now called from FileDeleteForm as well,
  this seems to be the expected behavior by most extensions (OAI, TitleKey,
  Rsync, ...).
* delete via API however still misses these hooks

Other possible solutions:
* move hooks into backend - bad since we want a clean backend
* create FileDelete hook (per bug 11276) - seems to me as unnecessary
  duplication of code logic since article might or might not be
  deleted during file deletion
* make a new Article function and wrap calls - will pollute clean Article
  doDelete and doDeleteArticle calls

16 years ago(bug 13603) Added siprop=usergroups to meta=siteinfo. Patch by Mormegil
Roan Kattouw [Thu, 3 Apr 2008 14:33:36 +0000 (14:33 +0000)]
(bug 13603) Added siprop=usergroups to meta=siteinfo. Patch by Mormegil

16 years agoUpdate.
Rotem Liss [Thu, 3 Apr 2008 12:02:18 +0000 (12:02 +0000)]
Update.

16 years agoLocalisation updates for core messages from Betawiki (2008-04-03 12:03 CEST)
Siebrand Mazeland [Thu, 3 Apr 2008 10:17:13 +0000 (10:17 +0000)]
Localisation updates for core messages from Betawiki (2008-04-03 12:03 CEST)

16 years agoFix linkprefix
Siebrand Mazeland [Thu, 3 Apr 2008 09:59:14 +0000 (09:59 +0000)]
Fix linkprefix

16 years agoTweak message 'ipbhidename': not available for IPs
Raimond Spekking [Thu, 3 Apr 2008 09:30:22 +0000 (09:30 +0000)]
Tweak message 'ipbhidename': not available for IPs

16 years agoRemove leftover line
Aaron Schulz [Thu, 3 Apr 2008 01:15:20 +0000 (01:15 +0000)]
Remove leftover line

16 years agoAdd showLogExtract() and remove use of FauxRequest hacks
Aaron Schulz [Wed, 2 Apr 2008 20:20:47 +0000 (20:20 +0000)]
Add showLogExtract() and remove use of FauxRequest hacks

16 years agoThis is cleaner, thanks to ialex
Roan Kattouw [Wed, 2 Apr 2008 20:19:35 +0000 (20:19 +0000)]
This is cleaner, thanks to ialex

16 years ago* Adding/updating Persian translations
Huji [Wed, 2 Apr 2008 20:06:11 +0000 (20:06 +0000)]
* Adding/updating Persian translations

16 years agoUse isDeleted()
Aaron Schulz [Wed, 2 Apr 2008 19:01:41 +0000 (19:01 +0000)]
Use isDeleted()

16 years agoClean up cache
Aaron Schulz [Wed, 2 Apr 2008 18:46:32 +0000 (18:46 +0000)]
Clean up cache

16 years agoLocalisation updates German
Raimond Spekking [Wed, 2 Apr 2008 18:32:39 +0000 (18:32 +0000)]
Localisation updates German

16 years agoSlight UI cleanup
Aaron Schulz [Wed, 2 Apr 2008 18:09:02 +0000 (18:09 +0000)]
Slight UI cleanup

16 years agoLocalisation updates for core messages from Betawiki (2008-04-02 19:39 CEST)
Siebrand Mazeland [Wed, 2 Apr 2008 18:06:14 +0000 (18:06 +0000)]
Localisation updates for core messages from Betawiki (2008-04-02 19:39 CEST)

16 years ago(bug 13587) Execute deferred updates in api.php
Roan Kattouw [Wed, 2 Apr 2008 18:04:54 +0000 (18:04 +0000)]
(bug 13587) Execute deferred updates in api.php

16 years agosysops -> Sysops
Aaron Schulz [Wed, 2 Apr 2008 18:04:14 +0000 (18:04 +0000)]
sysops -> Sysops

16 years agoproper name
Aaron Schulz [Wed, 2 Apr 2008 17:43:57 +0000 (17:43 +0000)]
proper name

16 years agoDon't show nav links for extracts
Aaron Schulz [Wed, 2 Apr 2008 17:30:13 +0000 (17:30 +0000)]
Don't show nav links for extracts

16 years ago* hasRows() is still used
Aaron Schulz [Wed, 2 Apr 2008 17:28:26 +0000 (17:28 +0000)]
* hasRows() is still used

16 years agoTweak doc
Aaron Schulz [Wed, 2 Apr 2008 17:12:45 +0000 (17:12 +0000)]
Tweak doc

16 years agoMove isDeleted and userCan functions
Aaron Schulz [Wed, 2 Apr 2008 17:11:58 +0000 (17:11 +0000)]
Move isDeleted and userCan functions

16 years agotypo
Aaron Schulz [Wed, 2 Apr 2008 16:59:16 +0000 (16:59 +0000)]
typo

16 years agofix spelling
Alexandre Emsenhuber [Wed, 2 Apr 2008 16:33:37 +0000 (16:33 +0000)]
fix spelling

16 years agoStub down Viewer/Reader classes, move LogPager
Aaron Schulz [Wed, 2 Apr 2008 16:24:30 +0000 (16:24 +0000)]
Stub down Viewer/Reader classes, move LogPager

16 years agoUse existing CSS classes for label and input elements in table for proper aligning
Raimond Spekking [Wed, 2 Apr 2008 13:46:53 +0000 (13:46 +0000)]
Use existing CSS classes for label and input elements in table for proper aligning
Use more XML functions

16 years agoMake dead show/hide links
Aaron Schulz [Wed, 2 Apr 2008 13:17:50 +0000 (13:17 +0000)]
Make dead show/hide links

16 years agoFix a regression from r32685: Show a nice error message instead of a useless navigati...
Raimond Spekking [Wed, 2 Apr 2008 12:20:01 +0000 (12:20 +0000)]
Fix a regression from r32685: Show a nice error message instead of a useless navigation bar if no log lines available.

16 years agoShould've added $dbw->commit() here, hope this fixes bug 13587
Roan Kattouw [Wed, 2 Apr 2008 12:13:10 +0000 (12:13 +0000)]
Should've added $dbw->commit() here, hope this fixes bug 13587

16 years ago* (bug 13431) Show true message source in Special:Allmessages&ot=php / xml
Alexandre Emsenhuber [Wed, 2 Apr 2008 11:49:55 +0000 (11:49 +0000)]
* (bug 13431) Show true message source in Special:Allmessages&ot=php / xml
* Use Xml::* functions instead of wf* ones
* Call wfDeprecated() in MessageCache::disableTransform(), MessageCache::enableTransform(), MessageCache::setTransform() and MessageCache::getTransform()

16 years agoTweak 'allmessagesnotsupportedDB'
Siebrand Mazeland [Wed, 2 Apr 2008 11:00:26 +0000 (11:00 +0000)]
Tweak 'allmessagesnotsupportedDB'

16 years ago Localisation updates for extensions messages from Betawiki
Bertrand Grondin [Wed, 2 Apr 2008 10:54:25 +0000 (10:54 +0000)]
 Localisation updates for extensions messages from Betawiki

16 years ago(bug 13441) Allow Special:Recentchanges to show bots only
Alexandre Emsenhuber [Wed, 2 Apr 2008 10:47:50 +0000 (10:47 +0000)]
(bug 13441) Allow Special:Recentchanges to show bots only

16 years ago* Simpler wording for two messages
Niklas Laxström [Wed, 2 Apr 2008 10:32:55 +0000 (10:32 +0000)]
* Simpler wording for two messages

16 years ago* Show suppress log for that page if user is allowed to see it
Alexandre Emsenhuber [Wed, 2 Apr 2008 09:00:43 +0000 (09:00 +0000)]
* Show suppress log for that page if user is allowed to see it
* Force loading all messages to show log items

16 years agoMove reason field and submit button into fieldset to be consistent with other input...
Raimond Spekking [Wed, 2 Apr 2008 07:45:08 +0000 (07:45 +0000)]
Move reason field and submit button into fieldset to be consistent with other input forms
Use more nice XML functions

16 years agoLeave this as it was
Aaron Schulz [Wed, 2 Apr 2008 07:14:11 +0000 (07:14 +0000)]
Leave this as it was

16 years agoAdd getExcludeClause(), hide items from API too
Aaron Schulz [Wed, 2 Apr 2008 07:10:41 +0000 (07:10 +0000)]
Add getExcludeClause(), hide items from API too

16 years agoFake log_id if needed
Aaron Schulz [Wed, 2 Apr 2008 06:30:31 +0000 (06:30 +0000)]
Fake log_id if needed

16 years agoupdate per r32672/r32679
Raimond Spekking [Wed, 2 Apr 2008 06:13:36 +0000 (06:13 +0000)]
update per r32672/r32679

16 years agoNO_ACTION_LINK should be here
Aaron Schulz [Wed, 2 Apr 2008 06:03:00 +0000 (06:03 +0000)]
NO_ACTION_LINK should be here

16 years agoComment
Aaron Schulz [Wed, 2 Apr 2008 05:59:21 +0000 (05:59 +0000)]
Comment

16 years ago* User Pager for special:log
Aaron Schulz [Wed, 2 Apr 2008 05:48:16 +0000 (05:48 +0000)]
* User Pager for special:log
* Add LogEventList class. LogReader and Viewer added to the file for b/c for now.
* Add $wgLogRestrictions to restrict logs
* Show log items in watchlists

16 years agoUse new fields
Aaron Schulz [Wed, 2 Apr 2008 05:07:46 +0000 (05:07 +0000)]
Use new fields

16 years ago(bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to $wgUserNotifiedOn...
Aryeh Gregor [Wed, 2 Apr 2008 00:45:15 +0000 (00:45 +0000)]
(bug 13562) Misspelled option $wgUserNotifedOnAllChanges changed to $wgUserNotifiedOnAllChanges

16 years agoRemove 8-group limit for putting Userrights options in columns - so they will always...
Andrew Garrett [Wed, 2 Apr 2008 00:27:30 +0000 (00:27 +0000)]
Remove 8-group limit for putting Userrights options in columns - so they will always be in columns

16 years agoProcess omissions in r32672. And WTF are variables renumbered? This actually breaks...
Siebrand Mazeland [Tue, 1 Apr 2008 23:21:01 +0000 (23:21 +0000)]
Process omissions in r32672. And WTF are variables renumbered? This actually breaks the message in all localisations.

16 years ago$wgMiserMode
Aaron Schulz [Tue, 1 Apr 2008 23:14:59 +0000 (23:14 +0000)]
$wgMiserMode

16 years agoRebuilt all language files, removed obsolete messages.
Siebrand Mazeland [Tue, 1 Apr 2008 23:05:26 +0000 (23:05 +0000)]
Rebuilt all language files, removed obsolete messages.

16 years agoUse 'suppress' right rather than 'oversight'
Aaron Schulz [Tue, 1 Apr 2008 22:50:53 +0000 (22:50 +0000)]
Use 'suppress' right rather than 'oversight'

16 years ago* Add log events
Aaron Schulz [Tue, 1 Apr 2008 22:43:41 +0000 (22:43 +0000)]
* Add log events
* Play around with size stuff a little
* Use "__METHOD__"

16 years agoImprove log handling for Enhanced RC
Aaron Schulz [Tue, 1 Apr 2008 22:41:19 +0000 (22:41 +0000)]
Improve log handling for Enhanced RC

16 years agorev_deleted merge:
Aaron Schulz [Tue, 1 Apr 2008 21:58:29 +0000 (21:58 +0000)]
rev_deleted merge:
* Add some messages

16 years agoMigrating oversight-related messages from the MediaWiki message files to the extensio...
Huji [Tue, 1 Apr 2008 21:36:24 +0000 (21:36 +0000)]
Migrating oversight-related messages from the MediaWiki message files to the extension i18n file.

16 years ago Localisation updates for extensions messages from Betawiki
Bertrand Grondin [Tue, 1 Apr 2008 20:45:21 +0000 (20:45 +0000)]
 Localisation updates for extensions messages from Betawiki

16 years agoCheck for hidden images
Aaron Schulz [Tue, 1 Apr 2008 15:30:52 +0000 (15:30 +0000)]
Check for hidden images

16 years ago* Marked Revision::compressRevisionText() as static
Alexandre Emsenhuber [Tue, 1 Apr 2008 15:13:44 +0000 (15:13 +0000)]
* Marked Revision::compressRevisionText() as static
* $fname -> __METHOD__

16 years ago(bug 13576) maintenance/rebuildrecentchanges.php fails
Huji [Tue, 1 Apr 2008 13:44:36 +0000 (13:44 +0000)]
(bug 13576) maintenance/rebuildrecentchanges.php fails

16 years agoSet Spanish as fall back language
Siebrand Mazeland [Tue, 1 Apr 2008 11:10:42 +0000 (11:10 +0000)]
Set Spanish as fall back language

16 years agoLocalisation updates for core messages from Betawiki (2008-04-01 09:08 CEST)
Siebrand Mazeland [Tue, 1 Apr 2008 07:38:52 +0000 (07:38 +0000)]
Localisation updates for core messages from Betawiki (2008-04-01 09:08 CEST)

16 years ago* Adding/updating Persian translations
Huji [Mon, 31 Mar 2008 22:54:41 +0000 (22:54 +0000)]
* Adding/updating Persian translations

16 years ago* Adding/updating Persian translations
Huji [Mon, 31 Mar 2008 21:37:07 +0000 (21:37 +0000)]
* Adding/updating Persian translations

16 years ago* Adding/updating Persian translations
Huji [Mon, 31 Mar 2008 21:30:47 +0000 (21:30 +0000)]
* Adding/updating Persian translations
* RebuildLanguage on "fa" and "en"

16 years agoRemoved $wgLoadBalancer from doc
Alexandre Emsenhuber [Mon, 31 Mar 2008 20:48:24 +0000 (20:48 +0000)]
Removed $wgLoadBalancer from doc

16 years ago* move tg to tg-cyrl
Siebrand Mazeland [Mon, 31 Mar 2008 18:55:39 +0000 (18:55 +0000)]
* move tg to tg-cyrl
* tg falls back to tg-cyrl
* add tg-latn as UI language

16 years ago* Don't show "hide patrolled edits" link for people that can't see the patrol markings
Aaron Schulz [Mon, 31 Mar 2008 18:13:48 +0000 (18:13 +0000)]
* Don't show "hide patrolled edits" link for people that can't see the patrol markings
* Have this and ChangesList use the same usePatrol() check

16 years agoReturn '' to avoid vague cryptic error message when a user lacks permissions
Aaron Schulz [Mon, 31 Mar 2008 18:01:39 +0000 (18:01 +0000)]
Return '' to avoid vague cryptic error message when a user lacks permissions

16 years agoLocalisation updates German
Raimond Spekking [Mon, 31 Mar 2008 17:31:53 +0000 (17:31 +0000)]
Localisation updates German

16 years ago$wgStyleVersion
Aaron Schulz [Mon, 31 Mar 2008 16:47:04 +0000 (16:47 +0000)]
$wgStyleVersion

16 years ago* Add mw-userrights-disabled class to grey out unchangeable rights
Aaron Schulz [Mon, 31 Mar 2008 16:42:41 +0000 (16:42 +0000)]
* Add mw-userrights-disabled class to grey out unchangeable rights

16 years ago* Update Chinese translations
Shinjiman [Mon, 31 Mar 2008 14:50:55 +0000 (14:50 +0000)]
* Update Chinese translations
* Update Cantonese translations
* Update Old Chinese / Late Time Chinese translations

16 years agoNote removal of 'dum', and 'non'
Siebrand Mazeland [Mon, 31 Mar 2008 14:29:43 +0000 (14:29 +0000)]
Note removal of 'dum', and 'non'

16 years agoOld Norse/non (dead language since 1300) removed as UI language.
Siebrand Mazeland [Mon, 31 Mar 2008 14:27:11 +0000 (14:27 +0000)]
Old Norse/non (dead language since 1300) removed as UI language.

16 years agoBug pointed out by siebrand: should use the messages for the group, not for the group...
Aryeh Gregor [Mon, 31 Mar 2008 14:17:59 +0000 (14:17 +0000)]
Bug pointed out by siebrand: should use the messages for the group, not for the group member (e.g., "bureaucrats" not "bureaucrat", or conceivable "staff" not "staff member").

16 years agoThe message content has changed significantly, so renaming to userrights-groups-help...
Aryeh Gregor [Mon, 31 Mar 2008 14:08:55 +0000 (14:08 +0000)]
The message content has changed significantly, so renaming to userrights-groups-help to avoid now-bad translations/customizations of various kinds.

16 years ago* Add new messages to messages.inc
Siebrand Mazeland [Mon, 31 Mar 2008 13:45:19 +0000 (13:45 +0000)]
* Add new messages to messages.inc
* Rebuild MessagesEn.php