Index: trunk/extensions/Wikilog/CREDITS |
— | — | @@ -15,3 +15,5 @@ |
16 | 16 | * Erkan Yilmaz [de] |
17 | 17 | * Elias Bröms [sv] |
18 | 18 | |
| 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 @@ |
3 | 3 | |
4 | 4 | == Current development version == |
5 | 5 | |
| 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 | + |
6 | 15 | === New configuration options === |
7 | 16 | |
8 | 17 | * $wgWikilogExtSummaries: use of categories and tags parameters in summary |
9 | 18 | 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. |
10 | 24 | |
11 | 25 | === New features === |
12 | 26 | |
13 | 27 | * 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. |
17 | 31 | * (wl:issue 2) Improved article summary extraction. Now a "--more--" marker |
18 | 32 | alone in a line breaks the summary (above) from the rest of the article |
19 | 33 | (below). The <summary> tag has precedence over this new marker. If neither |
20 | 34 | 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. |
21 | 47 | |
22 | 48 | === Bug fixes === |
23 | 49 | |
24 | 50 | * (mw:bug 21657) Message wikilog-item-brief-header/footer replaced by |
25 | 51 | wikilog-summary-header/footer and others, with proper PLURAL support. |
26 | 52 | * (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. |
30 | 60 | |
| 61 | + |
31 | 62 | == Wikilog 1.0.1 == |
32 | 63 | |
33 | 64 | Nov 27, 2009 |
Index: trunk/extensions/Wikilog/WikilogItem.php |
— | — | @@ -223,6 +223,7 @@ |
224 | 224 | * @deprecated Doesn't scale well, use query and pager objects instead. |
225 | 225 | */ |
226 | 226 | public function getComments( $thread = null ) { |
| 227 | + wfDeprecated( __METHOD__ ); |
227 | 228 | $dbr = wfGetDB( DB_SLAVE ); |
228 | 229 | |
229 | 230 | if ( $thread ) { |