├── .github ├── dependabot.yml └── workflows │ └── rust-ci.yml ├── .gitignore ├── CREDITS ├── Cargo.lock ├── Cargo.toml ├── DEPLOY.sh ├── INSTALL ├── LICENSE ├── README.md ├── TODO ├── createconfiguration.py ├── cronietab.submit ├── crontab.tools ├── crontab.yarrow ├── data └── enwiki │ └── potenshblps4 │ └── skipped_pages.txt ├── dbreps ├── dbreps2 ├── Cargo.toml └── src │ ├── config.rs │ ├── enwiki.rs │ ├── enwiki │ ├── boteditcount.rs │ ├── brokenwikiprojtemps.rs │ ├── conflictedfiles.rs │ ├── editcount.rs │ ├── emptycats.rs │ ├── featuredbysize.rs │ ├── goodarticlesbysize.rs │ ├── linkedmiscapitalizations.rs │ ├── linkedmisspellings.rs │ ├── longstubs.rs │ ├── lotnonfree.rs │ ├── newprojects.rs │ ├── olddeletiondiscussions.rs │ ├── orphanedafds.rs │ ├── orphanedsubtalks.rs │ ├── overusednonfree.rs │ ├── polltemps.rs │ ├── potenshbdps1.rs │ ├── potenshbdps3.rs │ ├── potenshbdps4.rs │ ├── potenshblps1.rs │ ├── potenshblps2.rs │ ├── potenshblps3.rs │ ├── projectchanges.rs │ ├── shortestbios.rs │ ├── stickyprodblps.rs │ ├── templatedisambigs.rs │ ├── templatesnonfree.rs │ ├── unbelievablelifespans.rs │ ├── uncatunrefblps.rs │ ├── unsourcedblps.rs │ ├── untaggedblps.rs │ ├── untaggedstubs.rs │ ├── untaggedunrefblps.rs │ ├── unusednonfree.rs │ ├── unusedtemplates.rs │ ├── unusedtemplatesfiltered.rs │ ├── usercats.rs │ └── webhostpages.rs │ ├── general.rs │ ├── general │ ├── articlesmostredirects.rs │ ├── blankpages.rs │ ├── dupefilenames.rs │ ├── excessiveips.rs │ ├── excessiveusers.rs │ ├── indeffullredirects.rs │ ├── indefips.rs │ ├── linkedemailsinarticles.rs │ ├── linkedredlinkedcats.rs │ ├── oldeditors.rs │ ├── ownerlessuserpages.rs │ ├── pollcats.rs │ ├── selfcatcats.rs │ ├── uncatcats.rs │ ├── userarticlestreaks.rs │ ├── userlinksinarticles.rs │ └── userstreaks.rs │ ├── lib.rs │ └── main.rs ├── general ├── atypicaldeletions.py ├── imagelessarticles.py ├── inactiveuserrights.py ├── indeffullarticles.py ├── indefsemitalks.py ├── logactions.py ├── longpages.py ├── metarightschanges.py ├── mostredlinkedfilesinarticles.py ├── mostrevisions.py ├── mosttransclusions.py ├── mostwatched.py ├── mostwatchedperns.py ├── noactionusertalks.py ├── nscounts.py ├── redreds.py ├── templatelessfilepages.py ├── unused_file_redirects.py ├── userprefs.py └── wikilovestats.py ├── jobs.yaml ├── logrotate.conf ├── reports ├── __init__.py ├── enwiki │ ├── __init__.py │ ├── bullshitparams.py │ ├── directstubs.py │ ├── dubiousstubcats.py │ ├── mistaggedfiles.py │ ├── reviewercandidates.py │ ├── tickersinleads.py │ ├── unusedstubtemplates.py │ └── unusedtemplates.py ├── general │ ├── __init__.py │ ├── anononlyanons.py │ ├── blankanontalks.py │ ├── blockeduserrights.py │ ├── brokenredirects.py │ ├── catandtemplessfilepages.py │ ├── confirmedusers.py │ ├── crossredirects.py │ ├── deletedfilesinarticles.py │ ├── deletedredlinkedcats.py │ ├── deletedtrans.py │ ├── epontemps.py │ ├── excessivefullarticles.py │ ├── excessivesemiarticles.py │ ├── filelessfilepages.py │ ├── indeffulltalks.py │ ├── indefsemiarticles.py │ ├── indefsemiredirects.py │ ├── longredirects.py │ ├── mostrevisions.py │ ├── mostwatchedusers.py │ ├── noactionuserpages.py │ ├── oldiptalks.py │ ├── orphanedprojs.py │ ├── pagecountbynamespace.py │ ├── protlowtemps.py │ ├── rangeblocks.py │ ├── redlinkedcatsincats.py │ ├── redlinkedfilesinarticles.py │ ├── redlinkedfilesintemplates.py │ ├── shortpages.py │ ├── transusertemps.py │ ├── unprotectedtemps.py │ ├── usersbyupload.py │ └── usertempreds.py ├── plwiki │ ├── __init__.py │ └── project_changes.py └── tests │ ├── __init__.py │ ├── multiplepages.py │ └── onepage.py ├── rustfmt.toml ├── settings.sample └── setup.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/.github/workflows/rust-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.pyc 3 | .DS_Store 4 | /target 5 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/CREDITS -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/Cargo.toml -------------------------------------------------------------------------------- /DEPLOY.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/DEPLOY.sh -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/TODO -------------------------------------------------------------------------------- /createconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/createconfiguration.py -------------------------------------------------------------------------------- /cronietab.submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/cronietab.submit -------------------------------------------------------------------------------- /crontab.tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/crontab.tools -------------------------------------------------------------------------------- /crontab.yarrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/crontab.yarrow -------------------------------------------------------------------------------- /data/enwiki/potenshblps4/skipped_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/data/enwiki/potenshblps4/skipped_pages.txt -------------------------------------------------------------------------------- /dbreps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps -------------------------------------------------------------------------------- /dbreps2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/Cargo.toml -------------------------------------------------------------------------------- /dbreps2/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/config.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/boteditcount.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/boteditcount.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/brokenwikiprojtemps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/brokenwikiprojtemps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/conflictedfiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/conflictedfiles.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/editcount.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/editcount.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/emptycats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/emptycats.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/featuredbysize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/featuredbysize.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/goodarticlesbysize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/goodarticlesbysize.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/linkedmiscapitalizations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/linkedmiscapitalizations.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/linkedmisspellings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/linkedmisspellings.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/longstubs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/longstubs.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/lotnonfree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/lotnonfree.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/newprojects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/newprojects.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/olddeletiondiscussions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/olddeletiondiscussions.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/orphanedafds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/orphanedafds.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/orphanedsubtalks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/orphanedsubtalks.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/overusednonfree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/overusednonfree.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/polltemps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/polltemps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/potenshbdps1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/potenshbdps1.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/potenshbdps3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/potenshbdps3.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/potenshbdps4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/potenshbdps4.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/potenshblps1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/potenshblps1.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/potenshblps2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/potenshblps2.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/potenshblps3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/potenshblps3.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/projectchanges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/projectchanges.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/shortestbios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/shortestbios.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/stickyprodblps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/stickyprodblps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/templatedisambigs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/templatedisambigs.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/templatesnonfree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/templatesnonfree.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/unbelievablelifespans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/unbelievablelifespans.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/uncatunrefblps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/uncatunrefblps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/unsourcedblps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/unsourcedblps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/untaggedblps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/untaggedblps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/untaggedstubs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/untaggedstubs.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/untaggedunrefblps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/untaggedunrefblps.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/unusednonfree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/unusednonfree.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/unusedtemplates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/unusedtemplates.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/unusedtemplatesfiltered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/unusedtemplatesfiltered.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/usercats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/usercats.rs -------------------------------------------------------------------------------- /dbreps2/src/enwiki/webhostpages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/enwiki/webhostpages.rs -------------------------------------------------------------------------------- /dbreps2/src/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general.rs -------------------------------------------------------------------------------- /dbreps2/src/general/articlesmostredirects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/articlesmostredirects.rs -------------------------------------------------------------------------------- /dbreps2/src/general/blankpages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/blankpages.rs -------------------------------------------------------------------------------- /dbreps2/src/general/dupefilenames.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/dupefilenames.rs -------------------------------------------------------------------------------- /dbreps2/src/general/excessiveips.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/excessiveips.rs -------------------------------------------------------------------------------- /dbreps2/src/general/excessiveusers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/excessiveusers.rs -------------------------------------------------------------------------------- /dbreps2/src/general/indeffullredirects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/indeffullredirects.rs -------------------------------------------------------------------------------- /dbreps2/src/general/indefips.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/indefips.rs -------------------------------------------------------------------------------- /dbreps2/src/general/linkedemailsinarticles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/linkedemailsinarticles.rs -------------------------------------------------------------------------------- /dbreps2/src/general/linkedredlinkedcats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/linkedredlinkedcats.rs -------------------------------------------------------------------------------- /dbreps2/src/general/oldeditors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/oldeditors.rs -------------------------------------------------------------------------------- /dbreps2/src/general/ownerlessuserpages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/ownerlessuserpages.rs -------------------------------------------------------------------------------- /dbreps2/src/general/pollcats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/pollcats.rs -------------------------------------------------------------------------------- /dbreps2/src/general/selfcatcats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/selfcatcats.rs -------------------------------------------------------------------------------- /dbreps2/src/general/uncatcats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/uncatcats.rs -------------------------------------------------------------------------------- /dbreps2/src/general/userarticlestreaks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/userarticlestreaks.rs -------------------------------------------------------------------------------- /dbreps2/src/general/userlinksinarticles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/userlinksinarticles.rs -------------------------------------------------------------------------------- /dbreps2/src/general/userstreaks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/general/userstreaks.rs -------------------------------------------------------------------------------- /dbreps2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/lib.rs -------------------------------------------------------------------------------- /dbreps2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/dbreps2/src/main.rs -------------------------------------------------------------------------------- /general/atypicaldeletions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/atypicaldeletions.py -------------------------------------------------------------------------------- /general/imagelessarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/imagelessarticles.py -------------------------------------------------------------------------------- /general/inactiveuserrights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/inactiveuserrights.py -------------------------------------------------------------------------------- /general/indeffullarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/indeffullarticles.py -------------------------------------------------------------------------------- /general/indefsemitalks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/indefsemitalks.py -------------------------------------------------------------------------------- /general/logactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/logactions.py -------------------------------------------------------------------------------- /general/longpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/longpages.py -------------------------------------------------------------------------------- /general/metarightschanges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/metarightschanges.py -------------------------------------------------------------------------------- /general/mostredlinkedfilesinarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/mostredlinkedfilesinarticles.py -------------------------------------------------------------------------------- /general/mostrevisions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/mostrevisions.py -------------------------------------------------------------------------------- /general/mosttransclusions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/mosttransclusions.py -------------------------------------------------------------------------------- /general/mostwatched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/mostwatched.py -------------------------------------------------------------------------------- /general/mostwatchedperns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/mostwatchedperns.py -------------------------------------------------------------------------------- /general/noactionusertalks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/noactionusertalks.py -------------------------------------------------------------------------------- /general/nscounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/nscounts.py -------------------------------------------------------------------------------- /general/redreds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/redreds.py -------------------------------------------------------------------------------- /general/templatelessfilepages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/templatelessfilepages.py -------------------------------------------------------------------------------- /general/unused_file_redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/unused_file_redirects.py -------------------------------------------------------------------------------- /general/userprefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/userprefs.py -------------------------------------------------------------------------------- /general/wikilovestats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/general/wikilovestats.py -------------------------------------------------------------------------------- /jobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/jobs.yaml -------------------------------------------------------------------------------- /logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/logrotate.conf -------------------------------------------------------------------------------- /reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/__init__.py -------------------------------------------------------------------------------- /reports/enwiki/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/enwiki/bullshitparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/bullshitparams.py -------------------------------------------------------------------------------- /reports/enwiki/directstubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/directstubs.py -------------------------------------------------------------------------------- /reports/enwiki/dubiousstubcats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/dubiousstubcats.py -------------------------------------------------------------------------------- /reports/enwiki/mistaggedfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/mistaggedfiles.py -------------------------------------------------------------------------------- /reports/enwiki/reviewercandidates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/reviewercandidates.py -------------------------------------------------------------------------------- /reports/enwiki/tickersinleads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/tickersinleads.py -------------------------------------------------------------------------------- /reports/enwiki/unusedstubtemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/unusedstubtemplates.py -------------------------------------------------------------------------------- /reports/enwiki/unusedtemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/enwiki/unusedtemplates.py -------------------------------------------------------------------------------- /reports/general/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/general/anononlyanons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/anononlyanons.py -------------------------------------------------------------------------------- /reports/general/blankanontalks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/blankanontalks.py -------------------------------------------------------------------------------- /reports/general/blockeduserrights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/blockeduserrights.py -------------------------------------------------------------------------------- /reports/general/brokenredirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/brokenredirects.py -------------------------------------------------------------------------------- /reports/general/catandtemplessfilepages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/catandtemplessfilepages.py -------------------------------------------------------------------------------- /reports/general/confirmedusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/confirmedusers.py -------------------------------------------------------------------------------- /reports/general/crossredirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/crossredirects.py -------------------------------------------------------------------------------- /reports/general/deletedfilesinarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/deletedfilesinarticles.py -------------------------------------------------------------------------------- /reports/general/deletedredlinkedcats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/deletedredlinkedcats.py -------------------------------------------------------------------------------- /reports/general/deletedtrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/deletedtrans.py -------------------------------------------------------------------------------- /reports/general/epontemps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/epontemps.py -------------------------------------------------------------------------------- /reports/general/excessivefullarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/excessivefullarticles.py -------------------------------------------------------------------------------- /reports/general/excessivesemiarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/excessivesemiarticles.py -------------------------------------------------------------------------------- /reports/general/filelessfilepages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/filelessfilepages.py -------------------------------------------------------------------------------- /reports/general/indeffulltalks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/indeffulltalks.py -------------------------------------------------------------------------------- /reports/general/indefsemiarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/indefsemiarticles.py -------------------------------------------------------------------------------- /reports/general/indefsemiredirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/indefsemiredirects.py -------------------------------------------------------------------------------- /reports/general/longredirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/longredirects.py -------------------------------------------------------------------------------- /reports/general/mostrevisions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/mostrevisions.py -------------------------------------------------------------------------------- /reports/general/mostwatchedusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/mostwatchedusers.py -------------------------------------------------------------------------------- /reports/general/noactionuserpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/noactionuserpages.py -------------------------------------------------------------------------------- /reports/general/oldiptalks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/oldiptalks.py -------------------------------------------------------------------------------- /reports/general/orphanedprojs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/orphanedprojs.py -------------------------------------------------------------------------------- /reports/general/pagecountbynamespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/pagecountbynamespace.py -------------------------------------------------------------------------------- /reports/general/protlowtemps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/protlowtemps.py -------------------------------------------------------------------------------- /reports/general/rangeblocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/rangeblocks.py -------------------------------------------------------------------------------- /reports/general/redlinkedcatsincats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/redlinkedcatsincats.py -------------------------------------------------------------------------------- /reports/general/redlinkedfilesinarticles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/redlinkedfilesinarticles.py -------------------------------------------------------------------------------- /reports/general/redlinkedfilesintemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/redlinkedfilesintemplates.py -------------------------------------------------------------------------------- /reports/general/shortpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/shortpages.py -------------------------------------------------------------------------------- /reports/general/transusertemps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/transusertemps.py -------------------------------------------------------------------------------- /reports/general/unprotectedtemps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/unprotectedtemps.py -------------------------------------------------------------------------------- /reports/general/usersbyupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/usersbyupload.py -------------------------------------------------------------------------------- /reports/general/usertempreds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/general/usertempreds.py -------------------------------------------------------------------------------- /reports/plwiki/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/plwiki/project_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/plwiki/project_changes.py -------------------------------------------------------------------------------- /reports/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/tests/multiplepages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/tests/multiplepages.py -------------------------------------------------------------------------------- /reports/tests/onepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/reports/tests/onepage.py -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 80 2 | -------------------------------------------------------------------------------- /settings.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/settings.sample -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzmcbride/database-reports/HEAD/setup.py --------------------------------------------------------------------------------