lhc/web/wiklou.git
17 years agoRevision table tree patch (No objections have been raised so i'm committing it to...
Roman Nosov [Fri, 9 Feb 2007 11:22:13 +0000 (11:22 +0000)]
Revision table tree patch (No objections have been raised so i'm committing it to trunk)

17 years ago* Message names changed for AlphabeticPager introduced
Raimond Spekking [Fri, 9 Feb 2007 10:32:04 +0000 (10:32 +0000)]
* Message names changed for AlphabeticPager introduced
  with r19758 for better localisations.

17 years agoReducing the number of stat calls is all very well, but please don't introduce any...
Tim Starling [Fri, 9 Feb 2007 09:28:35 +0000 (09:28 +0000)]
Reducing the number of stat calls is all very well, but please don't introduce any remote inclusion vulnerabilities while you're at it.

17 years agoResync trunk fuzz tester to be current.
Nick Jenkins [Fri, 9 Feb 2007 07:04:30 +0000 (07:04 +0000)]
Resync trunk fuzz tester to be current.

17 years ago* Add 'ParserTestTables' hook to expand the list of temporary tables copied
Brion Vibber [Fri, 9 Feb 2007 05:37:44 +0000 (05:37 +0000)]
* Add 'ParserTestTables' hook to expand the list of temporary tables copied
  by the parser test harness; use for extensions which require the presence
  of other tables while they work.

17 years agoPrevent some unnecessary lstat system calls, generated by include or require directives.
Nick Jenkins [Fri, 9 Feb 2007 05:36:56 +0000 (05:36 +0000)]
Prevent some unnecessary lstat system calls, generated by include or require directives.

This can be done either by:
* Using explicit full paths, using the $IP global for the installation directory full path, and then working down the tree from there.
* Using explicit full paths, using the "dirname(__FILE__)" directive to get a full directory path for the includer file.
* Occasionally removing the line altogether, and then for some files the inclusion is handled by the autoloader.

For example, if the "extensions/wikihiero/wh_main.php" file does an include or require on "wh_list.php", then PHP does the following:
* tries to open "wiki/wh_list.php", and fails.
* tries to open "wiki/includes/wh_list.php", and fails.
* tries to open "wiki/languages/wh_list.php", and fails.
* tries to open "wiki/extensions/wikihiero/wh_list.php", and succeeds.

So in this example, the first 3 calls can be prevented if PHP is told where the file is.

Testing Method: On a Linux box, run these commands to attach strace to all the apache2 processes, and log their system calls to a temporary file, then generate some activity, and then stop the strace:
-----------------------------------
rm /tmp/strace-log.txt
strace -tt -o /tmp/strace-log.txt -p `pidof apache2 | sed 's/ / -p /g'` &
php maintenance/fuzz-tester.php --keep-passed-tests --include-binary --max-runtime=3 > /tmp/strace-tests.txt
killall -9 strace
grep "No such file or directory"  /tmp/strace-log.txt | sort -u
-----------------------------------

Any failed file stats will be marked with: "-1 ENOENT (No such file or directory)".

Also:
* Strict Standards: Undefined offset:  230 in includes/normal/UtfNormal.php on line 637
* Strict Standards: iconv() [<a href='function.iconv'>function.iconv</a>]: Detected an illegal character in input string in languages/Language.php on line 776
  [Note: Partial only - despite adding "//IGNORE", it still seems to be possible with some
         messed- up binary input to cause PHP 5.1.2's iconv() function to squeal like a stuck pig].
* Update one $fname variable (method belongs to HistoryBlobStub class).

17 years ago*Add a space to balance show/hide link
Aaron Schulz [Fri, 9 Feb 2007 00:24:37 +0000 (00:24 +0000)]
*Add a space to balance show/hide link

17 years agoUpdate German localization
Raimond Spekking [Thu, 8 Feb 2007 21:38:21 +0000 (21:38 +0000)]
Update German localization

17 years agoAdding a Yiddish alias for REDIRECT, per request.
Rotem Liss [Thu, 8 Feb 2007 18:40:35 +0000 (18:40 +0000)]
Adding a Yiddish alias for REDIRECT, per request.

17 years ago* Fix for 8708
Niklas Laxström [Wed, 7 Feb 2007 21:31:28 +0000 (21:31 +0000)]
* Fix for 8708

17 years ago* (bug 8877) Update for Latin localization (la)
Niklas Laxström [Wed, 7 Feb 2007 21:20:43 +0000 (21:20 +0000)]
* (bug 8877) Update for Latin localization (la)

17 years agoMake user_ip in user_newtalk a TEXT, as it is not an IP field.
Greg Sabino Mullane [Wed, 7 Feb 2007 18:47:04 +0000 (18:47 +0000)]
Make user_ip in user_newtalk a TEXT, as it is not an IP field.

17 years ago* (bug 8915) Update to Czech localization (cs)
Niklas Laxström [Wed, 7 Feb 2007 18:30:37 +0000 (18:30 +0000)]
* (bug 8915) Update to Czech localization (cs)

17 years agoRules to allow deletion from archive[2]
Greg Sabino Mullane [Wed, 7 Feb 2007 18:13:00 +0000 (18:13 +0000)]
Rules to allow deletion from archive[2]

17 years ago* Don't transform mainpagedocfooter
Niklas Laxström [Wed, 7 Feb 2007 18:12:55 +0000 (18:12 +0000)]
* Don't transform mainpagedocfooter

17 years ago* Some updates
Niklas Laxström [Wed, 7 Feb 2007 17:50:18 +0000 (17:50 +0000)]
* Some updates

17 years ago* Missing items
Niklas Laxström [Wed, 7 Feb 2007 16:09:18 +0000 (16:09 +0000)]
* Missing items

17 years agoFix Postgres archive rule definition.
Greg Sabino Mullane [Wed, 7 Feb 2007 16:06:08 +0000 (16:06 +0000)]
Fix Postgres archive rule definition.

17 years agoWhitespace fixing, change to_date to to_timestamp for archive rule
Greg Sabino Mullane [Wed, 7 Feb 2007 16:02:21 +0000 (16:02 +0000)]
Whitespace fixing, change to_date to to_timestamp for archive rule

17 years ago* Whitespace
Niklas Laxström [Wed, 7 Feb 2007 16:01:57 +0000 (16:01 +0000)]
* Whitespace

17 years ago* Updates by Helix84
Niklas Laxström [Wed, 7 Feb 2007 15:59:27 +0000 (15:59 +0000)]
* Updates by Helix84

17 years agoEscape exclamation marks for now.
Greg Sabino Mullane [Wed, 7 Feb 2007 15:34:39 +0000 (15:34 +0000)]
Escape exclamation marks for now.

17 years agoUpdates for Indonesian (id) localisation; following some advice on the mailing list.
Ivan Lanin [Wed, 7 Feb 2007 06:23:32 +0000 (06:23 +0000)]
Updates for Indonesian (id) localisation; following some advice on the mailing list.

17 years ago* Fix regression from r19781 causing the little arrow next to section names in histor...
Aryeh Gregor [Wed, 7 Feb 2007 03:30:56 +0000 (03:30 +0000)]
* Fix regression from r19781 causing the little arrow next to section names in history comments to disappear: call to Skin::commentBlock short-circuits other stuff in Skin::revComment.  Thanks to cesarb for spotting the issue.

17 years ago* (bug 8903) typo
Raimond Spekking [Tue, 6 Feb 2007 16:59:02 +0000 (16:59 +0000)]
* (bug 8903) typo

17 years ago* (bug 8897) Fix whitespace removal for interlanguage links with link prefix
Brion Vibber [Tue, 6 Feb 2007 07:45:06 +0000 (07:45 +0000)]
* (bug 8897) Fix whitespace removal for interlanguage links with link prefix

17 years agoAdd a mechanism to parserTests when run in --compare or --record mode, to give inform...
Nick Jenkins [Tue, 6 Feb 2007 06:59:55 +0000 (06:59 +0000)]
Add a mechanism to parserTests when run in --compare or --record mode, to give information about
a test's history. This may help to differentiate tests that have never passed, versus new regressions.
Also for a regression the range of dates and SVN version numbers in which it first appeared will be
given, which may help isolate the cause of the regression; equally fixed tests will show a range
to indicate when the test was fixed.

Here is an example of the output (using a parserTests.txt modified specifically to cause all
the conditions to occur) :
---------------------------------------------------------------------------------------
root@bling:/var/www/hosts/mediawiki/wiki# php maintenance/parserTests.php --compare --quick --quiet --color=no
This is MediaWiki version 1.10alpha (r19799).

Reading tests from "maintenance/parserTests.txt"...
This is dvips(k) 5.95a Copyright 2005 Radical Eye Software (www.radicaleye.com)
' TeX output 2007.02.06:0630' ->
<tex.pro><texps.pro>. <cmr12.pfb>[1]
Reading tests from "../extensions/Cite/citeParserTests.txt"...
Reading tests from "../extensions/LabeledSectionTransclusion/lstParserTests.txt"...

   1 previously failing test(s) now PASSING! :)
      * URL-encoding in URL functions (single parameter)  [Fixed between 05-Feb-2007 23:58:17, 1.10alpha (r19799) and 06-Feb-2007 06:30:34, 1.10alpha (r19799)]

   1 previously PASSING test(s) removed o_O
      * Prevent conversion of text with -{}- tags (language variants)  [First recorded appearance: 02-Jan-2007 04:30:32, 1.9alpha (r18762)]

   1 new PASSING test(s) :)
      * Fake passing test  [Has never failed]

   1 previously passing test(s) now FAILING! :(
      * Plain link to URL  [Introduced between 05-Feb-2007 23:58:17, 1.10alpha (r19799) and 06-Feb-2007 06:30:34, 1.10alpha (r19799)]

   1 previously FAILING test(s) removed O_o
      * TODO: Link containing double-single-quotes '' (bug 4598)  [First recorded appearance: 15-Nov-2006 02:53:34, 1.9alpha (r17686)]

   1 new FAILING test(s) :(
      * Blah blah fake test  [Has never passed]

  18 still FAILING test(s) :(
      * URL-encoding in URL functions (multiple parameters)  [Has never passed]
      * TODO: Table security: embedded pipes (http://mail.wikipedia.org/pipermail/wikitech-l/2006-April/034637.html)  [Has never passed]
      * TODO: message transform: <noinclude> in transcluded template (bug 4926)  [Has never passed]
      * TODO: message transform: <onlyinclude> in transcluded template (bug 4926)  [Has never passed]
      * TODO: HTML bullet list, unclosed tags (bug 5497)  [Has never passed]
      * TODO: HTML ordered list, unclosed tags (bug 5497)  [Has never passed]
      * TODO: HTML nested bullet list, open tags (bug 5497)  [Has never passed]
      * TODO: HTML nested ordered list, open tags (bug 5497)  [Has never passed]
      * TODO: Inline HTML vs wiki block nesting  [Has never passed]
      * TODO: Mixing markup for italics and bold  [Has never passed]
      * TODO: 5 quotes, code coverage +1 line  [Has never passed]
      * TODO: dt/dd/dl test  [Has never passed]
      * TODO: Images with the "|" character in the comment  [Has never passed]
      * TODO: Parents of subpages, two levels up, without trailing slash or name.  [Has never passed]
      * TODO: Parents of subpages, two levels up, with lots of extra trailing slashes.  [Has never passed]
      * Blank ref followed by ref with content  [Introduced between 31-Jan-2007 23:52:43, 1.10alpha (r19702) and 05-Feb-2007 23:58:17, 1.10alpha (r19799)]
      * Regression: non-blank ref "0" followed by ref with content  [Introduced between 31-Jan-2007 23:52:43, 1.10alpha (r19702) and 05-Feb-2007 23:58:17, 1.10alpha (r19799)]
      * Regression sanity check: non-blank ref "1" followed by ref with content  [Introduced between 31-Jan-2007 23:52:43, 1.10alpha (r19702) and 05-Feb-2007 23:58:17, 1.10alpha (r19799)]

Passed 509 of 529 tests (96.22%)... 20 tests failed!
root@bling:/var/www/hosts/mediawiki/wiki#
---------------------------------------------------------------------------------------

Lastly please note that this is my first play with the MW database API, so if there are better
ways of doing any of the database query stuff than in this patch, then please don't be shy
about telling me how.

17 years agoSome new and updated localisations for Indonesian language (id)
Ivan Lanin [Tue, 6 Feb 2007 06:27:06 +0000 (06:27 +0000)]
Some new and updated localisations for Indonesian language (id)

17 years ago* Fix exception with "undo", use revText() for proper diffs
Aaron Schulz [Mon, 5 Feb 2007 23:28:17 +0000 (23:28 +0000)]
* Fix exception with "undo", use revText() for proper diffs

17 years ago* Add revText() to get non-public revision if user can, add rev_deleted constant...
Aaron Schulz [Mon, 5 Feb 2007 23:26:26 +0000 (23:26 +0000)]
* Add revText() to get non-public revision if user can, add rev_deleted constant for later use.

17 years agoAnother patch by Arnomane, some en fixes.
Leon Weber [Mon, 5 Feb 2007 21:44:37 +0000 (21:44 +0000)]
Another patch by Arnomane, some en fixes.

17 years ago* Clean up session checks to better handle the case where the session was
Brion Vibber [Mon, 5 Feb 2007 21:42:48 +0000 (21:42 +0000)]
* Clean up session checks to better handle the case where the session was
  opened during the current request. May help with some caching corner
  cases.

17 years ago* (bug 8846) see r19724
Leon Weber [Mon, 5 Feb 2007 21:08:27 +0000 (21:08 +0000)]
* (bug 8846) see r19724

17 years ago* (bug 8875) Show printable link in MonoBook sidebar for locally nonexistent
Brion Vibber [Mon, 5 Feb 2007 17:44:19 +0000 (17:44 +0000)]
* (bug 8875) Show printable link in MonoBook sidebar for locally nonexistent
  pages; perhaps useful for categories and shared images

17 years ago* (bug 8892) Lithuanian translation update
Raimond Spekking [Mon, 5 Feb 2007 16:44:10 +0000 (16:44 +0000)]
* (bug 8892) Lithuanian translation update
  Patch by Edgaras

17 years ago* Change of date format because there is no
Raimond Spekking [Mon, 5 Feb 2007 11:29:33 +0000 (11:29 +0000)]
* Change of date format because there is no
  abbreviation for the month "Mai" (may)
* One new message

17 years ago* (bug 8882) Russian translation update
Niklas Laxström [Mon, 5 Feb 2007 10:18:57 +0000 (10:18 +0000)]
* (bug 8882) Russian translation update

17 years agoIn case tables are created as MyISAM, use row hints for MySQL <5.0 to avoid 4GB limit
Domas Mituzas [Mon, 5 Feb 2007 09:13:36 +0000 (09:13 +0000)]
In case tables are created as MyISAM, use row hints for MySQL <5.0 to avoid 4GB limit

17 years ago*Enforce Hiderevision right better and some minor cleanup.
Aaron Schulz [Mon, 5 Feb 2007 06:12:31 +0000 (06:12 +0000)]
*Enforce Hiderevision right better and some minor cleanup.

17 years ago* Fix some syntax cruft & formatting
Domas Mituzas [Sun, 4 Feb 2007 23:36:21 +0000 (23:36 +0000)]
* Fix some syntax cruft & formatting

17 years agoCleanup from r19742:
Brion Vibber [Sun, 4 Feb 2007 18:42:07 +0000 (18:42 +0000)]
Cleanup from r19742:
* use diffchange class alone for backwards compatibility with old renderings and diff plugins
* set text-decoration: none in diffs in RSS/Atom feeds
* fix bad diff regex in UTF-8 RandomTest script

17 years agoUse CSS wrapped rev-deleted-user instead of untargeted user contribs link for hidden...
Aaron Schulz [Sun, 4 Feb 2007 18:26:39 +0000 (18:26 +0000)]
Use CSS wrapped rev-deleted-user instead of untargeted user contribs link for hidden user names.

17 years agoRestore minor visual updates for rev_deleted
Aaron Schulz [Sun, 4 Feb 2007 18:16:38 +0000 (18:16 +0000)]
Restore minor visual updates for rev_deleted

17 years agoHopefully fix parsertests for real now? (thanks Rob)
Aryeh Gregor [Sun, 4 Feb 2007 18:15:11 +0000 (18:15 +0000)]
Hopefully fix parsertests for real now?  (thanks Rob)

17 years ago* Reformatted
Niklas Laxström [Sun, 4 Feb 2007 15:49:39 +0000 (15:49 +0000)]
* Reformatted

17 years agoUpdate.
Rotem Liss [Sun, 4 Feb 2007 15:39:00 +0000 (15:39 +0000)]
Update.

17 years ago* Add AlphabeticPager abstract class
Domas Mituzas [Sun, 4 Feb 2007 15:35:52 +0000 (15:35 +0000)]
* Add AlphabeticPager abstract class
* Use AlphabeticPager for Special:Categories
* Introduce 'first' message

17 years agorevert; first commit should not be to trunk, even if its a small patch.
Aaron Schulz [Sun, 4 Feb 2007 05:19:58 +0000 (05:19 +0000)]
revert; first commit should not be to trunk, even if its a small patch.

17 years agoImprove diff behavoir for rev_deleted a tad; first commit, don't stab please :).
Aaron Schulz [Sun, 4 Feb 2007 05:07:46 +0000 (05:07 +0000)]
Improve diff behavoir for rev_deleted a tad; first commit, don't stab please :).

17 years agoHopefully fix main parsertests (thanks Rob)
Aryeh Gregor [Sun, 4 Feb 2007 03:14:36 +0000 (03:14 +0000)]
Hopefully fix main parsertests (thanks Rob)

17 years ago* Make CSS for galleries work for cached pages
Aryeh Gregor [Sun, 4 Feb 2007 00:34:44 +0000 (00:34 +0000)]
* Make CSS for galleries work for cached pages
* Fix CSS for non-Monobook/Monobook handheld

17 years agoFix #4347: use MailAddress object for reply-to
Antoine Musso [Sat, 3 Feb 2007 22:55:01 +0000 (22:55 +0000)]
Fix #4347: use MailAddress object for reply-to

17 years agoKill all whitespaces
Antoine Musso [Sat, 3 Feb 2007 22:31:08 +0000 (22:31 +0000)]
Kill all whitespaces

17 years agoFix #6684: Improper javascript array iteration causes problems
Antoine Musso [Sat, 3 Feb 2007 21:58:37 +0000 (21:58 +0000)]
Fix #6684: Improper javascript array iteration causes problems
Patch by Dan Li <dto@dev.java.net>

17 years agoKill whitespaces in some javascript files.
Antoine Musso [Sat, 3 Feb 2007 21:53:56 +0000 (21:53 +0000)]
Kill whitespaces in some javascript files.

17 years agoFix #6844: Semantically correct tags for diffchanges (<ins> && <del>)
Antoine Musso [Sat, 3 Feb 2007 21:47:53 +0000 (21:47 +0000)]
Fix #6844: Semantically correct tags for diffchanges (<ins> && <del>)
Bumps wgStyleVersion to 55.
Patch by Messi <messias+spam@gmail.com>

17 years agoFix #8789: AJAX search - Enter button does not work in IE
Antoine Musso [Sat, 3 Feb 2007 21:34:44 +0000 (21:34 +0000)]
Fix #8789: AJAX search - Enter button does not work in IE
Patch by Andy <andrew.cook@chw.edu>, reviewed by NotACat on IRC

17 years agoUpdates for Indonesian (id) localization, "Bicara" -> "Pembicaraan", consistency.
Ivan Lanin [Sat, 3 Feb 2007 15:08:55 +0000 (15:08 +0000)]
Updates for Indonesian (id) localization, "Bicara" -> "Pembicaraan", consistency.

17 years agoUpdates for Indonesian (id) localization, mostly correction.
Ivan Lanin [Sat, 3 Feb 2007 15:01:21 +0000 (15:01 +0000)]
Updates for Indonesian (id) localization, mostly correction.

17 years agoKill whitespaces
Antoine Musso [Sat, 3 Feb 2007 13:46:55 +0000 (13:46 +0000)]
Kill whitespaces

17 years agoRemoved optional '?>' from end of generated config file
Gregory Szorc [Sat, 3 Feb 2007 06:52:37 +0000 (06:52 +0000)]
Removed optional '?>' from end of generated config file
This will prevent people with poor editors (Windows) from accidentally introducing blank lines after the '?>', which we all know breaks XML output

17 years agoUpdates for Indonesian language as agreed on [[:id:Wikipedia:Warung Kopi]] (village...
Ivan Lanin [Sat, 3 Feb 2007 05:18:51 +0000 (05:18 +0000)]
Updates for Indonesian language as agreed on [[:id:Wikipedia:Warung Kopi]] (village pump).

17 years ago/*$wgDBprefix*/ was missing.
Markus Krötzsch [Fri, 2 Feb 2007 20:38:53 +0000 (20:38 +0000)]
/*$wgDBprefix*/ was missing.

17 years ago* Fix for paths in 1.4->1.5 special-case updater script
Brion Vibber [Fri, 2 Feb 2007 18:25:01 +0000 (18:25 +0000)]
* Fix for paths in 1.4->1.5 special-case updater script

17 years ago* (bug 4268) Fixed data-loss bug in compressOld batch text compression
Brion Vibber [Fri, 2 Feb 2007 18:11:05 +0000 (18:11 +0000)]
* (bug 4268) Fixed data-loss bug in compressOld batch text compression
  affecting pages which had null edits (move, protect, etc) as second
  edit in a batch group. Isolated and patched by Travis Derouin.

17 years agoFix #8858 : handle $wgImageLimits changes correctly
Antoine Musso [Fri, 2 Feb 2007 16:22:22 +0000 (16:22 +0000)]
Fix #8858 : handle $wgImageLimits changes correctly

17 years ago* (bug 8846) Fixing hardcoded links in interface messages. Patch by Arnomane (id...
Leon Weber [Fri, 2 Feb 2007 16:04:05 +0000 (16:04 +0000)]
* (bug 8846) Fixing hardcoded links in interface messages. Patch by Arnomane (id=3171).
  He promised to send patches for all the other files when there are no serious issues,
  or anything else which should be changed, to avoid editing 150 for nothing.

17 years agoMy first commit:
Raimond Spekking [Fri, 2 Feb 2007 08:33:00 +0000 (08:33 +0000)]
My first commit:
* typos only

17 years ago* (bug 6987) Allow perrow, widths, and heights attributes for <gallery> (I deliberate...
Aryeh Gregor [Fri, 2 Feb 2007 03:32:03 +0000 (03:32 +0000)]
* (bug 6987) Allow perrow, widths, and heights attributes for <gallery> (I deliberately called them "widths"/"heights" and not "width"/"height" because the latter two would most obviously mean width and height of the gallery itself)
* Convert <gallery> caption to, well, a <caption>

17 years ago* (bug 8535) Allow CSS vertical alignment keywords to be used for images.
Aryeh Gregor [Fri, 2 Feb 2007 00:44:42 +0000 (00:44 +0000)]
* (bug 8535) Allow CSS vertical alignment keywords to be used for images.

17 years ago* (bug 8711) Stop floats in previews from spilling into edit area with toolbar disabl...
Aryeh Gregor [Fri, 2 Feb 2007 00:29:35 +0000 (00:29 +0000)]
* (bug 8711) Stop floats in previews from spilling into edit area with toolbar disabled.  Doesn't seem to happen on most browsers anyway, but no harm in adding an extra clear for any it might work that way on.

17 years ago* Nur ein kleiner German patch. By raymond.
Leon Weber [Thu, 1 Feb 2007 18:30:49 +0000 (18:30 +0000)]
* Nur ein kleiner German patch. By raymond.

17 years agoFix last commit - patches were using SERIAL instead of int unsigned not null auto_inc...
Andrew Garrett [Thu, 1 Feb 2007 09:01:30 +0000 (09:01 +0000)]
Fix last commit - patches were using SERIAL instead of int unsigned not null auto_increment

17 years ago* Schema changes - add id fields to page_restrictions and logging tables for future...
Andrew Garrett [Thu, 1 Feb 2007 08:58:21 +0000 (08:58 +0000)]
* Schema changes - add id fields to page_restrictions and logging tables for future functionality (log entry deletion, rewrite of Special:Protectedpages)
[RELEASE-NOTES update to come from another computer, something funky's going on with another line in RELEASE-NOTES]

17 years agoMerge sorttable.js code into wikibits.js, get rid of JS hack for on-demand loading...
Ilmari Karonen [Wed, 31 Jan 2007 12:51:18 +0000 (12:51 +0000)]
Merge sorttable.js code into wikibits.js, get rid of JS hack for on-demand loading the former, re-do some cleanup lost in r18775.

17 years agoIssue described at http://en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboa...
Andrew Garrett [Wed, 31 Jan 2007 08:44:40 +0000 (08:44 +0000)]
Issue described at en.wikipedia.org/wiki/Wikipedia:Administrators%27_noticeboard#Developers
(inconsistency between "Autoblocker enabled" and "Autoblocker disabled" between Special:Ipblocklist and Special:Log/block.

17 years agoAdd $wgStyleVersion string to URL for two Ajax JavaScript source files, so that refre...
Nick Jenkins [Wed, 31 Jan 2007 03:31:10 +0000 (03:31 +0000)]
Add $wgStyleVersion string to URL for two Ajax JavaScript source files, so that refresh of them can be forced if/when they are updated.

17 years ago* German localisation patches by raymond.
Leon Weber [Tue, 30 Jan 2007 20:48:48 +0000 (20:48 +0000)]
* German localisation patches by raymond.
* Made the Duplicator extension user {{PLURAL}} for the languages I know.

17 years agoIndonesian (id) $specialPageAliases and imgmultiparseerror translation
Ivan Lanin [Tue, 30 Jan 2007 17:55:19 +0000 (17:55 +0000)]
Indonesian (id) $specialPageAliases and imgmultiparseerror translation

17 years agofix loss of HTML formatting in table header cells
Ilmari Karonen [Tue, 30 Jan 2007 16:31:55 +0000 (16:31 +0000)]
fix loss of HTML formatting in table header cells

17 years agoadd to comment that < > shouldn't be used in $wgLegalTitleChars
River Tarnell [Mon, 29 Jan 2007 21:37:57 +0000 (21:37 +0000)]
add to comment that < > shouldn't be used in $wgLegalTitleChars

17 years agoFix #8819: full patch disclosure with skin dependencies.
Antoine Musso [Mon, 29 Jan 2007 21:15:34 +0000 (21:15 +0000)]
Fix #8819: full patch disclosure with skin dependencies.

17 years agoPrevent under E_STRICT - Strict Standards: opendir(/var/www/hosts/mediawiki/wiki...
Nick Jenkins [Mon, 29 Jan 2007 07:52:45 +0000 (07:52 +0000)]
Prevent under E_STRICT - Strict Standards: opendir(/var/www/hosts/mediawiki/wiki/images/thumb/9/9e/file.jpg) [<a href='function.opendir'>function.opendir</a>]: failed to open dir: No such file or directory in /var/www/hosts/mediawiki/wiki/includes/Image.php on line 1321.

17 years agoReally update indentation of that line (maybe it had a tab before?)
Nick Jenkins [Mon, 29 Jan 2007 04:55:02 +0000 (04:55 +0000)]
Really update indentation of that line (maybe it had a tab before?)

17 years agoPrevent - Strict Standards: Non-static method ImportStreamSource::newFromFile() shoul...
Nick Jenkins [Mon, 29 Jan 2007 04:52:59 +0000 (04:52 +0000)]
Prevent - Strict Standards: Non-static method ImportStreamSource::newFromFile() should not be called statically in includes/SpecialImport.php on line 826 ; Also indentation of one line.

17 years agoTypo + bug number in comment.
Rotem Liss [Sun, 28 Jan 2007 15:01:09 +0000 (15:01 +0000)]
Typo + bug number in comment.

17 years agobacktick version broke on file names with shell metachars (like spaces); rewrite...
Ilmari Karonen [Sat, 27 Jan 2007 15:37:02 +0000 (15:37 +0000)]
backtick version broke on file names with shell metachars (like spaces); rewrite to use open3()

17 years ago* (bug 7540) Greek language (el): Dates should use the genitive case of months names
Niklas Laxström [Sat, 27 Jan 2007 14:06:42 +0000 (14:06 +0000)]
* (bug 7540) Greek language (el): Dates should use the genitive case of months names

17 years agowfGetDB() and wfGetDB(DB_SLAVE) would crash if no previous connections were opened.
Domas Mituzas [Fri, 26 Jan 2007 13:48:25 +0000 (13:48 +0000)]
wfGetDB() and wfGetDB(DB_SLAVE) would crash if no previous connections were opened.

17 years ago* Fix multipage selector drop-down for DjVu images to work when title
Brion Vibber [Fri, 26 Jan 2007 12:10:06 +0000 (12:10 +0000)]
* Fix multipage selector drop-down for DjVu images to work when title
  is passed as a query string parameter; we have to pass the title as
  a form parameter or it gets dropped from the form submission URL

17 years agoFix fix for 8652 (failures with bad XML metadata for DjVu files)
Brion Vibber [Fri, 26 Jan 2007 12:00:04 +0000 (12:00 +0000)]
Fix fix for 8652 (failures with bad XML metadata for DjVu files)
The mid-level functions in Image now fail gracefully on bogus data, as happens when the djvutoxml executable is missing.

Removed the bogus exception check in ImagePage high-level code (which actually just causes a fatal error by calling a nonexistent method :)

Also changed Image::initializeMultiPageXML to do clean lazy loading as Image::load does, and to return true/false as to success/failure for cleaner code using it.

17 years ago* (bug 8774) Fix path for GNU FDL rights icon on new installs
Brion Vibber [Fri, 26 Jan 2007 09:36:42 +0000 (09:36 +0000)]
* (bug 8774) Fix path for GNU FDL rights icon on new installs

17 years ago* (bug 8777) Suppress 'previous' link on Special:Allpages when at first page
Brion Vibber [Fri, 26 Jan 2007 09:24:28 +0000 (09:24 +0000)]
* (bug 8777) Suppress 'previous' link on Special:Allpages when at first page
There was a check for explicit 'from' the first title, but not for empty from. :P

17 years ago(bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but...
Aryeh Gregor [Thu, 25 Jan 2007 21:10:19 +0000 (21:10 +0000)]
(bug 8780) Clarify message for command-line scripts if LocalSettings.php exists but is not readable

17 years agoFix #8782 : some help about the Makefile
Antoine Musso [Thu, 25 Jan 2007 19:24:51 +0000 (19:24 +0000)]
Fix #8782 : some help about the Makefile

17 years ago* UÃpdate
Niklas Laxström [Thu, 25 Jan 2007 13:56:54 +0000 (13:56 +0000)]
* UÃpdate

17 years ago(bug 8652) Catch exceptions generated by malformed XML in multipage media. Note...
Aryeh Gregor [Thu, 25 Jan 2007 03:07:39 +0000 (03:07 +0000)]
(bug 8652) Catch exceptions generated by malformed XML in multipage media.  Note: not tested, since I don't have all that fancy image-using stuff set up (:P), but it's just a try/catch block, so at worst it just won't work.  Better than having the entire page crash due to an unhandled exception . . .

Incidentally, should we maybe use set_exception_handler()?

17 years agoGeneralize and rename cleanupSkin.php so it can changes any option.
Antoine Musso [Wed, 24 Jan 2007 22:13:12 +0000 (22:13 +0000)]
Generalize and rename cleanupSkin.php so it can changes any option.
FIXME: does not validate the new value

17 years ago* Updates
Niklas Laxström [Wed, 24 Jan 2007 19:42:57 +0000 (19:42 +0000)]
* Updates

17 years ago* Reformatted, rm English
Niklas Laxström [Wed, 24 Jan 2007 19:28:25 +0000 (19:28 +0000)]
* Reformatted, rm English