Hi,
How to list quickly all redirects, with from/to titles?
This seems to be impossible with the API and "Special:Listredirects" is limited to the first 1000 redirects.
Kelson
On 09/07/13 22:26, Emmanuel Engelhart wrote:
Hi,
How to list quickly all redirects, with from/to titles?
This seems to be impossible with the API and "Special:Listredirects" is limited to the first 1000 redirects.
You can query the "redirect" table in the database, e.g.
SELECT page_namespace,page_title,rd_namespace,rd_title FROM redirect,page WHERE page_id=rd_from;
-- Tim Starling
Le 11/07/2013 06:17, Tim Starling a écrit :
On 09/07/13 22:26, Emmanuel Engelhart wrote:
Hi,
How to list quickly all redirects, with from/to titles?
This seems to be impossible with the API and "Special:Listredirects" is limited to the first 1000 redirects.
You can query the "redirect" table in the database, e.g.
SELECT page_namespace,page_title,rd_namespace,rd_title FROM redirect,page WHERE page_id=rd_from;
I need this remotely.
I have open a feature request: https://bugzilla.wikimedia.org/show_bug.cgi?id=50981
Emmanuel
mediawiki-l@lists.wikimedia.org