Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 6 additions & 28 deletions dbreps2/src/enwiki.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
mod boteditcount;
mod brokenwikiprojtemps;
mod conflictedfiles;
mod editcount;
mod emptycats;
mod featuredbysize;
mod goodarticlesbysize;
mod linkedmiscapitalizations;
mod linkedmisspellings;
mod longstubs;
mod lotnonfree;
mod newprojects;
mod olddeletiondiscussions;
mod orphanedafds;
mod orphanedsubtalks;
mod overusednonfree;
mod polltemps;
mod potenshbdps1;
mod potenshbdps3;
mod potenshbdps4;
mod potenshblps1;
mod potenshblps2;
mod potenshblps3;
mod projectchanges;
mod shortestbios;
mod stickyprodblps;
mod templatedisambigs;
mod templatesnonfree;
mod unbelievablelifespans;
mod uncatunrefblps;
Expand All @@ -56,20 +42,12 @@ mod webhostpages;

pub use {
boteditcount::BotEditCount, brokenwikiprojtemps::BrokenWikiProjTemps,
conflictedfiles::ConflictedFiles, editcount::EditCount,
emptycats::EmptyCats, featuredbysize::FeaturedBySize,
goodarticlesbysize::GoodArticlesBySize,
linkedmiscapitalizations::LinkedMiscapitalizations,
linkedmisspellings::LinkedMisspellings, longstubs::LongStubs,
lotnonfree::LotNonFree, newprojects::NewProjects,
olddeletiondiscussions::OldDeletionDiscussions, orphanedafds::OrphanedAfds,
orphanedsubtalks::OrphanedSubTalks, overusednonfree::OverusedNonFree,
polltemps::PollTemps, potenshbdps1::Potenshbdps1,
potenshbdps3::Potenshbdps3, potenshbdps4::Potenshbdps4,
potenshblps1::Potenshblps1, potenshblps2::Potenshblps2,
potenshblps3::Potenshblps3, projectchanges::ProjectChanges,
shortestbios::ShortestBios, stickyprodblps::StickyProdBLPs,
templatedisambigs::TemplateDisambigs, templatesnonfree::TemplatesNonFree,
editcount::EditCount, emptycats::EmptyCats, featuredbysize::FeaturedBySize,
goodarticlesbysize::GoodArticlesBySize, newprojects::NewProjects,
orphanedafds::OrphanedAfds, orphanedsubtalks::OrphanedSubTalks,
potenshbdps4::Potenshbdps4, potenshblps2::Potenshblps2,
projectchanges::ProjectChanges, stickyprodblps::StickyProdBLPs,
templatesnonfree::TemplatesNonFree,
unbelievablelifespans::UnbelievableLifeSpans,
uncatunrefblps::UncatUnrefBLPs, unsourcedblps::UnsourcedBLPs,
untaggedblps::UntaggedBLPs, untaggedstubs::UntaggedStubs,
Expand Down
77 changes: 0 additions & 77 deletions dbreps2/src/enwiki/conflictedfiles.rs

This file was deleted.

12 changes: 7 additions & 5 deletions dbreps2/src/enwiki/featuredbysize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@ impl Report<Row> for FeaturedBySize {
r#"
/* featuredbysize.rs SLOW_OK */
SELECT
page_title
page_title
FROM
page
JOIN categorylinks ON cl_from = page_id
page
JOIN categorylinks ON cl_from = page_id
JOIN linktarget ON cl_target_id = lt_id
WHERE
cl_to = "Featured_articles"
AND page_namespace = 0
lt_namespace = 14
AND lt_title = 'Featured_articles'
AND page_namespace = 0
"#
}

Expand Down
12 changes: 7 additions & 5 deletions dbreps2/src/enwiki/goodarticlesbysize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,15 @@ impl Report<Row> for GoodArticlesBySize {
r#"
/* goodarticlesbysize.rs SLOW_OK */
SELECT
page_title
page_title
FROM
page
JOIN categorylinks ON cl_from = page_id
page
JOIN categorylinks ON cl_from = page_id
JOIN linktarget ON cl_target_id = lt_id
WHERE
cl_to = "Good_articles"
AND page_namespace = 0
lt_namespace = 14
AND lt_title = 'Good_articles'
AND page_namespace = 0
"#
}

Expand Down
91 changes: 0 additions & 91 deletions dbreps2/src/enwiki/linkedmiscapitalizations.rs

This file was deleted.

91 changes: 0 additions & 91 deletions dbreps2/src/enwiki/linkedmisspellings.rs

This file was deleted.

Loading