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 _______________________________________________ MediaWiki-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
