On Tue, Jan 26, 2010 at 5:49 PM, Thomas Gries <[email protected]> wrote: > Re: Recent Changes list - > improvement for certain mediawiki applications > > I am looking for an extension for a _modified output of > Special:RecentChanges_ which > - suppresses all older revisions of a page and _only shows the most > recent change_. > - the previous edits are irrelevant for my application as they can be > retrieved on page history panes if needed. > > Before you point me to that: > > - neither the well-known user option "Use enhanced recent changes > (requires JavaScript)" [1] is what I am looking for > - nor http://en.wikipedia.org/wiki/User:Tim_Laqua/monobook.js/doc . > > [1] only "merges" article changes on day per day. Article changes on > previous day(s) are still listed if any, but I am only interested in the > single appearance of the last change. > > Who can help by posting a solution? > > Tom > > > > _______________________________________________ > MediaWiki-l mailing list > [email protected] > https://lists.wikimedia.org/mailman/listinfo/mediawiki-l >
select * from recentchanges group by rc_namespace, rc_title order by rc_timestamp desc Or am I missing something here? -Chad _______________________________________________ MediaWiki-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
