r62633 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r62632‎ | r62633 | r62634 >
Date:00:49, 17 February 2010
Author:juliano
Status:deferred
Tags:
Comment:
Documentation and small fixes.
Modified paths:
  • /trunk/extensions/Wikilog/CREDITS (modified) (history)
  • /trunk/extensions/Wikilog/RELEASE-NOTES (modified) (history)
  • /trunk/extensions/Wikilog/WikilogItem.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Wikilog/CREDITS
@@ -15,3 +15,5 @@
1616 * Erkan Yilmaz [de]
1717 * Elias Bröms [sv]
1818
 19+Also many contributors from translatewiki.net. Check comments in
 20+Wikilog.i18n.php and WlFeed.i18n.php for a list.
Index: trunk/extensions/Wikilog/RELEASE-NOTES
@@ -2,31 +2,62 @@
33
44 == Current development version ==
55
 6+=== General notes ===
 7+
 8+Database schema changed since 1.0.x, a database update is required.
 9+You should backup your data and run maintenance/update.php to upgrade.
 10+
 11+MediaWiki requirement raised to 1.15.0 and later. MediaWiki 1.14 and earlier
 12+are no longer supported in this release, stick with Wikilog 1.0.x if this is
 13+your case.
 14+
615 === New configuration options ===
716
817 * $wgWikilogExtSummaries: use of categories and tags parameters in summary
918 entry header and footer messages.
 19+* $wgWikilogExpensiveLimit: configures how many items to show on pages that
 20+ includes other pages (expensive requests that may demand article parsing).
 21+ Replaces $wgWikilogSummaryLimit.
 22+* $wgWikilogNumComments: default number of comments to show at once on
 23+ discussion pages.
1024
1125 === New features ===
1226
1327 * Messages wikilog-item-brief-header/footer, wikilog-item-header/footer and
14 - others replaced by wikilog-summary-header/footer, wikilog-entry-header/footer
15 - and others, with better support for plural and gender inflection, separate
16 - date and time, and also support to category and tag lists.
 28+ others replaced by wikilog-summary-header/footer, wikilog-entry-header/
 29+ footer and others, with better support for plural and gender inflection,
 30+ separate date and time, and also support to category and tag lists.
1731 * (wl:issue 2) Improved article summary extraction. Now a "--more--" marker
1832 alone in a line breaks the summary (above) from the rest of the article
1933 (below). The <summary> tag has precedence over this new marker. If neither
2034 is found, the first section is used.
 35+* Improved customization of article comments pages. Now, comment headers and
 36+ footers are can be configured through messages wikilog-comment-header/
 37+ footer and others.
 38+* More user-friendly navigation bars. Currently, they only have first,
 39+ last, previous and next links. Support for other MediaWiki features, like
 40+ items-per-page will come later.
 41+* Discussion pages are now paged, i.e., only a maximum number of comments
 42+ (default 50) are shown at once, with paging links to visit other pages of
 43+ comments.
 44+* Comment syndication feeds are now available. Currently, there is one feed
 45+ per wikilog article, that lists comments made to that article. In the
 46+ future, feeds per thread, per wikilog and global may be provided.
2147
2248 === Bug fixes ===
2349
2450 * (mw:bug 21657) Message wikilog-item-brief-header/footer replaced by
2551 wikilog-summary-header/footer and others, with proper PLURAL support.
2652 * (wl:issue 1) Improve header/footer item messages.
27 -* Disabled minimum feed cache age check ($wgFeedCacheTimeout) in WikilogFeed,
28 - since this causes the wrong Last-modified header to be output. Waiting for a
29 - fix for the same problem found in ChangesFeed. Noted by Vitaliy Filippov.
 53+* (wl:issue 5) Usability improvement in wikilog actions tab.
 54+* Disabled minimum feed cache age check ($wgFeedCacheTimeout) in
 55+ WikilogFeed, since this causes the wrong Last-modified header to be
 56+ output. Waiting for a fix for the same problem found in ChangesFeed.
 57+ Noted by Vitaliy Filippov.
 58+* Don't croak in Wikilog::getWikilogInfo() if $title is NULL. Patch by
 59+ Vitaliy Filippov.
3060
 61+
3162 == Wikilog 1.0.1 ==
3263
3364 Nov 27, 2009
Index: trunk/extensions/Wikilog/WikilogItem.php
@@ -223,6 +223,7 @@
224224 * @deprecated Doesn't scale well, use query and pager objects instead.
225225 */
226226 public function getComments( $thread = null ) {
 227+ wfDeprecated( __METHOD__ );
227228 $dbr = wfGetDB( DB_SLAVE );
228229
229230 if ( $thread ) {

Status & tagging log