lhc/web/wiklou.git
15 years agoFix for bug 13770, second attempt. Tested with a conflicting install of both dom...
Tim Starling [Thu, 4 Sep 2008 06:19:27 +0000 (06:19 +0000)]
Fix for bug 13770, second attempt. Tested with a conflicting install of both dom and domxml, as per the report.

15 years agoNo more icky mkdir() calls. Grepping for mkdir() now returns nothing :)
Chad Horohoe [Thu, 4 Sep 2008 04:15:27 +0000 (04:15 +0000)]
No more icky mkdir() calls. Grepping for mkdir() now returns nothing :)

15 years agoWork around database corruption reported on WP:VPT -- unlinked title instead of PHP...
Tim Starling [Thu, 4 Sep 2008 03:23:42 +0000 (03:23 +0000)]
Work around database corruption reported on WP:VPT -- unlinked title instead of PHP error. Break long lines.

15 years agoDocumentation
Tim Starling [Thu, 4 Sep 2008 03:22:26 +0000 (03:22 +0000)]
Documentation

15 years ago* (bug 2889) MediaWiki:Print.css applies to the printable version
Brion Vibber [Thu, 4 Sep 2008 03:13:55 +0000 (03:13 +0000)]
* (bug 2889) MediaWiki:Print.css applies to the printable version

MediaWiki:Handheld.css and MediaWiki:Print.css now available (handheld only if $wgHandheldStyle is configured).

15 years agoNo need to wrap it in a ResultWrapper object as Database::query() already returns...
Alexandre Emsenhuber [Thu, 4 Sep 2008 01:29:24 +0000 (01:29 +0000)]
No need to wrap it in a ResultWrapper object as Database::query() already returns a ResultWrapper object

15 years agoMade ChangesList::insertUserRelatedLinks public for use by hooks.
David McCabe [Wed, 3 Sep 2008 22:57:26 +0000 (22:57 +0000)]
Made ChangesList::insertUserRelatedLinks public for use by hooks.

15 years agofix XHTML error
Alexandre Emsenhuber [Wed, 3 Sep 2008 22:47:34 +0000 (22:47 +0000)]
fix XHTML error

15 years agoAdded OldChangesListRecentChangesLine hook for customizing RC messages in OldChangesL...
David McCabe [Wed, 3 Sep 2008 22:13:03 +0000 (22:13 +0000)]
Added OldChangesListRecentChangesLine hook for customizing RC messages in OldChangesList mode. TODO: Customize other ChangesList implementations.

15 years agoLocalisation updates for core messages from Betawiki (2008-09-03 23:15 CEST)
Siebrand Mazeland [Wed, 3 Sep 2008 21:28:24 +0000 (21:28 +0000)]
Localisation updates for core messages from Betawiki (2008-09-03 23:15 CEST)

15 years agoParser test for bug 15453
Chad Horohoe [Wed, 3 Sep 2008 18:01:51 +0000 (18:01 +0000)]
Parser test for bug 15453

15 years agoAdd @ingroup definitions to these. Created new group HTTP for web-related things...
Chad Horohoe [Wed, 3 Sep 2008 17:30:20 +0000 (17:30 +0000)]
Add @ingroup definitions to these. Created new group HTTP for web-related things (cookies, headers, HTTP requests, etc).

15 years agoImplement 'thumbDir' configuration parameter for local and foreign repos. Replaces...
Chad Horohoe [Wed, 3 Sep 2008 15:47:42 +0000 (15:47 +0000)]
Implement 'thumbDir' configuration parameter for local and foreign repos. Replaces apiThumbCacheDir as it's redundant. Also allows for customization of the default '/thumb/' path on local repos.

15 years ago(bug 15448) YAML output returns empty strings instead of 0. Surprisingly, this was...
Roan Kattouw [Wed, 3 Sep 2008 14:47:49 +0000 (14:47 +0000)]
(bug 15448) YAML output returns empty strings instead of 0. Surprisingly, this was not caused by PHP's "helpful" 0=='' ; research shows this was a regression from r32485 that no one ever noticed

15 years ago(bug 15444) API: Throwing a regular 'unknownerror' rather than ('unknownerror', AS_EN...
Roan Kattouw [Wed, 3 Sep 2008 14:26:41 +0000 (14:26 +0000)]
(bug 15444) API: Throwing a regular 'unknownerror' rather than ('unknownerror', AS_END) when EditPage::AS_END is returned, for consistency with other write modules.

15 years agoFix for r40379, allow commas again
Aryeh Gregor [Wed, 3 Sep 2008 14:02:32 +0000 (14:02 +0000)]
Fix for r40379, allow commas again

15 years ago+docs
Chad Horohoe [Wed, 3 Sep 2008 13:50:37 +0000 (13:50 +0000)]
+docs

15 years agoUse ECMAScript standard, section 9.3, to decide what's a number
Aryeh Gregor [Wed, 3 Sep 2008 13:45:10 +0000 (13:45 +0000)]
Use ECMAScript standard, section 9.3, to decide what's a number

r40348 was kind of broken, in terms of considering strings like "e" to be numbers.  The version before that would also act incorrectly for strings like ".".

15 years agofix case
Aaron Schulz [Wed, 3 Sep 2008 04:43:17 +0000 (04:43 +0000)]
fix case

15 years agoMove doMassUserBlock() to core
Aaron Schulz [Wed, 3 Sep 2008 04:17:20 +0000 (04:17 +0000)]
Move doMassUserBlock() to core

15 years agoRemoved useless ss_row_id condition. Fixed "$activeUsers === -1", comparison fails...
Tim Starling [Wed, 3 Sep 2008 04:07:14 +0000 (04:07 +0000)]
Removed useless ss_row_id condition. Fixed "$activeUsers === -1", comparison fails because it's actually the string "-1", no doubt because it's a BIGINT which is too big for PHP to represent with an numeric type.

15 years agoMinus one is plural in English.
Tim Starling [Wed, 3 Sep 2008 03:54:38 +0000 (03:54 +0000)]
Minus one is plural in English.

15 years agoTemporarily reverted SpecialUpload.php to r37968, before Bryan's changes, pending...
Tim Starling [Wed, 3 Sep 2008 03:19:18 +0000 (03:19 +0000)]
Temporarily reverted SpecialUpload.php to r37968, before Bryan's changes, pending resolution of issues described by private email, specifically:
* No means for an extension to add extra upload sources
* initialize() method not generic
* stashSession() not generic enough for conceivable alternate UIs
* UploadFromUrl still uses $wgOut
* Not enough comments

15 years agoThis part of r40323 is useful.
Tim Starling [Wed, 3 Sep 2008 02:32:01 +0000 (02:32 +0000)]
This part of r40323 is useful.

15 years agoReverting r40323, as per comments on wikitech-l. Deprecated doesn't mean removed...
Tim Starling [Wed, 3 Sep 2008 02:28:41 +0000 (02:28 +0000)]
Reverting r40323, as per comments on wikitech-l. Deprecated doesn't mean removed. It doesn't even mean it'll be removed in the future. It just means you shouldn't use it.

15 years agoStyle: use local variable, use else if
Aryeh Gregor [Wed, 3 Sep 2008 00:18:11 +0000 (00:18 +0000)]
Style: use local variable, use else if

15 years ago(bug 15422) Sort more types of numbers in sortable tables
Aryeh Gregor [Wed, 3 Sep 2008 00:16:43 +0000 (00:16 +0000)]
(bug 15422) Sort more types of numbers in sortable tables

Patch based on one by Mike Horvath.

15 years ago(bug 15436) Support more currency types for sortable tables
Aryeh Gregor [Tue, 2 Sep 2008 22:59:58 +0000 (22:59 +0000)]
(bug 15436) Support more currency types for sortable tables

Patch by Mike Horvath.

15 years agoAdd ampersand to hook
Aaron Schulz [Tue, 2 Sep 2008 21:38:42 +0000 (21:38 +0000)]
Add ampersand to hook

15 years agoMake getLatestRevID faster
Aaron Schulz [Tue, 2 Sep 2008 21:29:22 +0000 (21:29 +0000)]
Make getLatestRevID faster

15 years agoFully deprecate $wgProxyKey. Has been marked as deprecated since 1.4, but never seems...
Chad Horohoe [Tue, 2 Sep 2008 15:15:54 +0000 (15:15 +0000)]
Fully deprecate $wgProxyKey. Has been marked as deprecated since 1.4, but never seems to have been done. Sites with $wgProxyKey set will continue to use the setting (added a fallback in Setup). Fixes bugs 9258 and 12089.

15 years agoRemove unused and uninitialized variable in wikibits.js
Aryeh Gregor [Tue, 2 Sep 2008 02:11:50 +0000 (02:11 +0000)]
Remove unused and uninitialized variable in wikibits.js

Pointed out by Mike Horvath on bug 15399.

15 years ago* fixing error causing a PHP E_NOTICE.
Ryan Schmidt [Mon, 1 Sep 2008 21:58:05 +0000 (21:58 +0000)]
* fixing error causing a PHP E_NOTICE.

15 years ago(bug 15405) Sort yen correctly in sortable tables
Aryeh Gregor [Mon, 1 Sep 2008 19:53:36 +0000 (19:53 +0000)]
(bug 15405) Sort yen correctly in sortable tables

Patch by Mike Horvath.

15 years agoLocalization update.
Rotem Liss [Mon, 1 Sep 2008 19:46:58 +0000 (19:46 +0000)]
Localization update.

15 years ago* Remove mysql var and move field init to updaters.inc
Aaron Schulz [Mon, 1 Sep 2008 19:22:28 +0000 (19:22 +0000)]
* Remove mysql var and move field init to updaters.inc

15 years ago(bug 15399) Disable odd/even classes for sortable tables
Aryeh Gregor [Mon, 1 Sep 2008 19:15:04 +0000 (19:15 +0000)]
(bug 15399) Disable odd/even classes for sortable tables

These might or might not be useful, but if they are useful they should be added in PHP, not JavaScript.  There have been reports of significant slowness for large tables due to the row numbering.  This also fixes a bug where setting ts_alternate_row_colors = false would only work until the user tried sorting the table.

Patch by Mike Horvath.

15 years ago* $wgAllowExternalImagesFrom may now be an array of multiple strings.
Ryan Schmidt [Mon, 1 Sep 2008 18:49:14 +0000 (18:49 +0000)]
* $wgAllowExternalImagesFrom may now be an array of multiple strings.
* Added an on-wiki external image whitelist. Items in this whitelist are
  treated as regular expression fragments to match for when possibly
  displaying an external image inline. Controlled by $wgEnableImageWhitelist
  (true by default)

15 years agoFix r40194, which was obviously incorrect. There's no reason $sectionTitle should...
Tim Starling [Mon, 1 Sep 2008 15:05:25 +0000 (15:05 +0000)]
Fix r40194, which was obviously incorrect. There's no reason $sectionTitle should be valid, so you should probably check to see if Title::newFromText() succeeded, rather than checking the validity of some unrelated variable. Also: use the new three-parameter Title::makeTitleSafe(), instead of cloning and setting mFragment directly.

15 years agoLocalization update.
Rotem Liss [Mon, 1 Sep 2008 12:02:49 +0000 (12:02 +0000)]
Localization update.

15 years agoRename UploadFromBase to UploadBase. It's best to use English rather than inventing...
Tim Starling [Mon, 1 Sep 2008 08:09:16 +0000 (08:09 +0000)]
Rename UploadFromBase to UploadBase. It's best to use English rather than inventing our own language.

15 years agoFix spelling MIN_LENGHT_PARTNAME
Tim Starling [Mon, 1 Sep 2008 06:39:22 +0000 (06:39 +0000)]
Fix spelling MIN_LENGHT_PARTNAME

15 years agoheader() replaces by default, there's no need to pass a second parameter
Tim Starling [Mon, 1 Sep 2008 04:32:36 +0000 (04:32 +0000)]
header() replaces by default, there's no need to pass a second parameter

15 years agoLocalisation updates for core messages from Betawiki (2008-08-31 23:26 CEST)
Siebrand Mazeland [Sun, 31 Aug 2008 21:40:53 +0000 (21:40 +0000)]
Localisation updates for core messages from Betawiki (2008-08-31 23:26 CEST)

15 years ago* Maintain active user count for Special:Statistics (bug 13585)
Aaron Schulz [Sun, 31 Aug 2008 19:29:37 +0000 (19:29 +0000)]
* Maintain active user count for Special:Statistics (bug 13585)
* Add a global to add update functions to updateSpecialPages.php

15 years ago* (bug 15392) ApiFormatBase::formatHTML now uses $wgUrlProtocols.
Bryan Tong Minh [Sun, 31 Aug 2008 17:11:22 +0000 (17:11 +0000)]
* (bug 15392) ApiFormatBase::formatHTML now uses $wgUrlProtocols.

15 years agoMake it a lot harder to unprotect the MediaWiki namespace. In response to cs.wikinews...
Tim Starling [Sun, 31 Aug 2008 13:03:30 +0000 (13:03 +0000)]
Make it a lot harder to unprotect the MediaWiki namespace. In response to cs.wikinews.org screwup.

15 years agoAdd css classes to the Pager just like our QueryPages
Antoine Musso [Sun, 31 Aug 2008 12:59:45 +0000 (12:59 +0000)]
Add css classes to the Pager just like our QueryPages

15 years agoWrap content in class="mw-spcontent"
Antoine Musso [Sun, 31 Aug 2008 12:58:14 +0000 (12:58 +0000)]
Wrap content in class="mw-spcontent"

15 years agoLocalisation updates. Import from az.wikipedia.org
Siebrand Mazeland [Sun, 31 Aug 2008 08:16:36 +0000 (08:16 +0000)]
Localisation updates. Import from az.wikipedia.org

15 years agoFix a few undeclared variables in upload warning code.
Bryan Tong Minh [Sat, 30 Aug 2008 22:07:59 +0000 (22:07 +0000)]
Fix a few undeclared variables in upload warning code.

15 years ago$this->mLocalFile; not $file
Bryan Tong Minh [Sat, 30 Aug 2008 21:55:50 +0000 (21:55 +0000)]
$this->mLocalFile; not $file

15 years agoUpdate RELEASE-NOTES with added languages
Siebrand Mazeland [Sat, 30 Aug 2008 18:03:59 +0000 (18:03 +0000)]
Update RELEASE-NOTES with added languages

15 years agoLocalisation updates for extension messages from Betawiki (2008-08-30 19:05 CEST)
Siebrand Mazeland [Sat, 30 Aug 2008 17:54:08 +0000 (17:54 +0000)]
Localisation updates for extension messages from Betawiki (2008-08-30 19:05 CEST)

15 years ago* Added support of piped wikilinks using double-width brackets
Shinjiman [Sat, 30 Aug 2008 13:33:05 +0000 (13:33 +0000)]
* Added support of piped wikilinks using double-width brackets
  patch by PhiLiP

15 years agoLocalisation updates for core messages from Betawiki (2008-08-30 12:18 CEST)
Siebrand Mazeland [Sat, 30 Aug 2008 10:29:35 +0000 (10:29 +0000)]
Localisation updates for core messages from Betawiki (2008-08-30 12:18 CEST)

15 years agoUpdate the Chinese conversion tables
Shinjiman [Sat, 30 Aug 2008 10:15:49 +0000 (10:15 +0000)]
Update the Chinese conversion tables

15 years agoLocalisation updates Cantonese, Chinese and Old/Late Time Chinese
Shinjiman [Sat, 30 Aug 2008 10:12:19 +0000 (10:12 +0000)]
Localisation updates Cantonese, Chinese and Old/Late Time Chinese

15 years ago* Small performance tweak by switching check order
Aaron Schulz [Sat, 30 Aug 2008 00:29:46 +0000 (00:29 +0000)]
* Small performance tweak by switching check order
* Tweak comments

15 years agoFix for my previous commit: Filter out null values
Bryan Tong Minh [Fri, 29 Aug 2008 21:49:36 +0000 (21:49 +0000)]
Fix for my previous commit: Filter out null values

15 years agoAdd a function to require one and only one parameter of a list.
Bryan Tong Minh [Fri, 29 Aug 2008 21:09:18 +0000 (21:09 +0000)]
Add a function to require one and only one parameter of a list.

15 years agoAs Raymond points out, there is a mw-submit class
Victor Vasiliev [Fri, 29 Aug 2008 20:27:25 +0000 (20:27 +0000)]
As Raymond points out, there is a mw-submit class

15 years ago* Add class='mw-input' to the input row
Victor Vasiliev [Fri, 29 Aug 2008 20:16:29 +0000 (20:16 +0000)]
* Add class='mw-input' to the input row
* Move submit button to the table

15 years agoRemoved 'log-search-legend' and 'log-search-submit'. Introduced in r20746 and reverte...
Siebrand Mazeland [Fri, 29 Aug 2008 19:19:13 +0000 (19:19 +0000)]
Removed 'log-search-legend' and 'log-search-submit'. Introduced in r20746 and reverted a few weeks later in r21380. Thanks to SPQRobin for spotting this.

15 years agoclean up addLinkObj()
Aaron Schulz [Fri, 29 Aug 2008 19:12:56 +0000 (19:12 +0000)]
clean up addLinkObj()

15 years agoLocalisation updates: Adding/updating Persian translations
Huji [Fri, 29 Aug 2008 18:40:53 +0000 (18:40 +0000)]
Localisation updates: Adding/updating Persian translations

15 years agoFix breakage of Live preview (patch by dantman himself)
Siebrand Mazeland [Fri, 29 Aug 2008 13:46:06 +0000 (13:46 +0000)]
Fix breakage of Live preview (patch by dantman himself)

15 years agoFixing HTML escaping.
Rotem Liss [Fri, 29 Aug 2008 13:40:47 +0000 (13:40 +0000)]
Fixing HTML escaping.

15 years ago* Fixing a wrong count of succeeding file undeletions when private files are undelete...
Rotem Liss [Fri, 29 Aug 2008 13:17:12 +0000 (13:17 +0000)]
* Fixing a wrong count of succeeding file undeletions when private files are undeleted: private files are not moved, and thus are not counted by storeBatch and should be added to the success count manually. This showed a bougs error when only private files were undeleted.
* Removing an outdated note in Special:Undelete: Restrictions on file revisions do not seem to be lost upon restoration.

15 years agoRespect file restrictions in the file history list. This is done by adding oi_deleted...
Rotem Liss [Fri, 29 Aug 2008 12:28:26 +0000 (12:28 +0000)]
Respect file restrictions in the file history list. This is done by adding oi_deleted to the list of selected fields in OldLocalFile.

15 years ago+1 credit.
Rotem Liss [Fri, 29 Aug 2008 12:15:17 +0000 (12:15 +0000)]
+1 credit.

15 years agoFixing comment.
Rotem Liss [Fri, 29 Aug 2008 12:11:45 +0000 (12:11 +0000)]
Fixing comment.

15 years agoAdding some recent contributors to core translation to the list of translators. This...
Rotem Liss [Fri, 29 Aug 2008 12:01:54 +0000 (12:01 +0000)]
Adding some recent contributors to core translation to the list of translators. This should be completed by a list of BetaWiki translators.

15 years agoFixing release notes item.
Rotem Liss [Fri, 29 Aug 2008 11:55:55 +0000 (11:55 +0000)]
Fixing release notes item.

15 years agoShow thumbnails in the file history list. The dimensions are the same as in the defau...
Rotem Liss [Fri, 29 Aug 2008 11:54:34 +0000 (11:54 +0000)]
Show thumbnails in the file history list. The dimensions are the same as in the default image gallery. Patch by User:Agbad, rewritten by me.

15 years agoUpdate file
Meno25 [Fri, 29 Aug 2008 11:52:37 +0000 (11:52 +0000)]
Update file

15 years agoFixing a fatal error on upload page:
Rotem Liss [Fri, 29 Aug 2008 10:25:24 +0000 (10:25 +0000)]
Fixing a fatal error on upload page:

Fatal error: Call to a member function isAllowed() on a non-object in /home/rotemliss/Server/wiki/source/trunk/phase3/includes/specials/SpecialUpload.php on line 125

The old code (introduced in r40190) used a $this->mUpload object, which does not exist on GET requests to Special:Upload. The new code uses direct User::isAllowed check in such cases.

15 years ago* Generalised OutputPage::checkLastModified() to allow it to easily handle more than...
Tim Starling [Fri, 29 Aug 2008 08:40:13 +0000 (08:40 +0000)]
* Generalised OutputPage::checkLastModified() to allow it to easily handle more than three types of modified timestamp. Added OutputPageCheckLastModified hook.
* Flattened out the structure of that function with early returns, to avoid ugly deep nesting.

15 years ago* Fixed intermittent deadlock errors involving objectcache table queries. Use a separ...
Tim Starling [Fri, 29 Aug 2008 08:35:00 +0000 (08:35 +0000)]
* Fixed intermittent deadlock errors involving objectcache table queries. Use a separate database connection for the objectcache table to avoid long-lasting locks on that table.

15 years agoMove information about watched pages and enotif into the fieldset too.
Raimond Spekking [Fri, 29 Aug 2008 07:43:12 +0000 (07:43 +0000)]
Move information about watched pages and enotif into the fieldset too.
It looks much smarter now, especially on wikis with enotif enabled.

15 years ago* Fix issue with "next" link going to the same place when date given (bug 15364)
Aaron Schulz [Fri, 29 Aug 2008 05:19:05 +0000 (05:19 +0000)]
* Fix issue with "next" link going to the same place when date given (bug 15364)
* Remove some cruft in ContribsPager

15 years agoLocalisation updates Cantonese, Chinese and Old/Late Time Chinese
Shinjiman [Fri, 29 Aug 2008 02:35:55 +0000 (02:35 +0000)]
Localisation updates Cantonese, Chinese and Old/Late Time Chinese

15 years ago(bug 15351) Fix fatal error for invalid section fragments in autocomments
Aryeh Gregor [Thu, 28 Aug 2008 23:12:57 +0000 (23:12 +0000)]
(bug 15351) Fix fatal error for invalid section fragments in autocomments

. . . probably.  Actually I can't reproduce the problem, so I can't be sure if this fixes it.  But it should.  I'm not at all sure if this is a real fix or more of a workaround.  One code path (!$local) normalizes the fragment and rejects it as invalid, while the other code path ($local) sets the fragment unquestioningly and doesn't validate it.  I don't know which behavior is correct.

15 years agoRemove second declaration of EditPage::showPreview().
Chad Horohoe [Thu, 28 Aug 2008 21:36:39 +0000 (21:36 +0000)]
Remove second declaration of EditPage::showPreview().

15 years agoProperly check permissions.
Bryan Tong Minh [Thu, 28 Aug 2008 21:34:43 +0000 (21:34 +0000)]
Properly check permissions.

15 years agoLocalisation updates for core messages from Betawiki (2008-08-28 23:03 CEST)
Siebrand Mazeland [Thu, 28 Aug 2008 21:25:24 +0000 (21:25 +0000)]
Localisation updates for core messages from Betawiki (2008-08-28 23:03 CEST)

15 years agoBump $wgStyleVersion for r40184
Chad Horohoe [Thu, 28 Aug 2008 21:24:10 +0000 (21:24 +0000)]
Bump $wgStyleVersion for r40184

15 years agoMake UploadFromBase::getTitle more logical by returning either a title or null
Bryan Tong Minh [Thu, 28 Aug 2008 21:20:08 +0000 (21:20 +0000)]
Make UploadFromBase::getTitle more logical by returning either a title or null

15 years agoReplace the <p><br /></p> inserted between the toolbar and the preview area with...
Daniel Friesen [Thu, 28 Aug 2008 21:16:46 +0000 (21:16 +0000)]
Replace the <p><br /></p> inserted between the toolbar and the preview area with a ontop class. In shared.css we give this a bottom margin of 1em to add the space between the toolbar and preview.
As a bonus, because display: none; is now used when the preview area is not used, ajax/live previews actually get the spacing instead of it not showing up.
preview.js has also been tweaked to remove the display: none; when previewing.

15 years agowfReadOnly now checked in ApiMain::requestWriteMode
Bryan Tong Minh [Thu, 28 Aug 2008 20:25:53 +0000 (20:25 +0000)]
wfReadOnly now checked in ApiMain::requestWriteMode

15 years ago(bug 15358) Article::doEdit() ignores $user when inserting a new revision
Roan Kattouw [Thu, 28 Aug 2008 20:20:52 +0000 (20:20 +0000)]
(bug 15358) Article::doEdit() ignores $user when inserting a new revision

15 years agoUse static methods to check whether upload is enabled
Bryan Tong Minh [Thu, 28 Aug 2008 20:15:32 +0000 (20:15 +0000)]
Use static methods to check whether upload is enabled

15 years agoLocalization update.
Rotem Liss [Thu, 28 Aug 2008 18:18:24 +0000 (18:18 +0000)]
Localization update.

15 years agoFull update for file
Meno25 [Thu, 28 Aug 2008 17:52:36 +0000 (17:52 +0000)]
Full update for file

15 years agofix typo, format section
Raimond Spekking [Thu, 28 Aug 2008 16:57:47 +0000 (16:57 +0000)]
fix typo, format section

15 years agoImplements #11884 : Now support Flash EXIF attribute
Antoine Musso [Thu, 28 Aug 2008 16:31:54 +0000 (16:31 +0000)]
Implements #11884 : Now support Flash EXIF attribute

15 years agoCredits for previous commit; patch was by Jeremy Baron
Roan Kattouw [Thu, 28 Aug 2008 16:27:18 +0000 (16:27 +0000)]
Credits for previous commit; patch was by Jeremy Baron

15 years ago(bug 15348) prop=categories returns timestamps that aren't in ISO 8601 format
Roan Kattouw [Thu, 28 Aug 2008 16:26:27 +0000 (16:26 +0000)]
(bug 15348) prop=categories returns timestamps that aren't in ISO 8601 format

15 years agowfDebugMem() to report memory usage
Antoine Musso [Thu, 28 Aug 2008 16:22:10 +0000 (16:22 +0000)]
wfDebugMem() to report memory usage

15 years agoImprove FakeTitle implementation:
Roan Kattouw [Thu, 28 Aug 2008 14:19:01 +0000 (14:19 +0000)]
Improve FakeTitle implementation:
* Make FakeTitle a subclass of Title so functions with a type hint like Parser::parse() accept FakeTitles too
* Remove two static functions from the FakeTitle class