User:ReyBrujo/Dumps/20070411

From Wikisource
Jump to navigation Jump to search
Dumps

April 11, 2007[edit]

External link dumps[edit]

Dump table Hits
Articles with more than 50 external links 30
SELECT COUNT(el_from) AS total, el_from, page_title
FROM externallinks, page
WHERE externallinks.el_from = page_id AND page_is_redirect = 0 AND page_namespace = 0
GROUP BY el_from
ORDER BY total DESC;

External link ranking[edit]

Sites linked more than 50 times as of April 11, 2007. Only articles in the main space are considered.

Link count Site
426 http://www.geocities.com
212 http://www.preces-latinae.org
212 http://www.uni-mannheim.de
212 http://ktf.cuni.cz
212 http://zeus.nyf.hu
50 http://wikisource.org
SELECT COUNT(el_to) AS total, SUBSTRING_INDEX(el_to, '/', 3) AS search
FROM externallinks, page
WHERE page_id = el_from AND page_namespace = 0
GROUP BY search
ORDER BY total DESC;

Additional information[edit]

Some more information about this dump:

  • 4802 articles that are in the main space and not redirects
  • 5408 articles and redirects in the main space
  • 10786 pages in all namespaces
  • 873 redirects in all namespaces
  • 11077 external links in every namespace
  • 3208 external links in the main space

Very probable spambot pages[edit]

If index.php is found in a page title, it is very likely the article talk page has been created by a spambot. These pages should be deleted and protected if possible.

Article ID Article

Possible spambot pages[edit]

Possible pages created by spambots ending with /.

Article ID Article
56315 Main Page/
53043 Main Page:Français/
56314 Talk:Main Page/
53025 Talk:Main Page:Français/
4398 Wikipedia:Broken/
SELECT page_id, page_title, page_namespace
FROM page
WHERE page_title LIKE '%index.php%' OR page_title LIKE '%/wiki/%' OR page_title LIKE '%/w/%' OR page_title LIKE '%/';