├── .ackrc ├── .gitignore ├── TODO ├── analog.cfg ├── dbish ├── depended-on-by.pl ├── favicon.ico ├── getfiles.sh ├── index.pl ├── lib ├── CPANdeps.pm └── CPANdepsUtils.pm ├── mangledb.pl ├── populate-cache.pl ├── refill-cpanstatsdb.pl ├── robots.txt ├── root-crontabs ├── screenshots ├── deps.cpantesters.org__module=Number%3A%3APhone&perl=5.32.1&os=any+OS.png └── deps.cpantesters.org_depended-on-by.pl_module=Number%3A%3APhone.png ├── static ├── blue.png ├── bug.png ├── credits.html ├── depended.png ├── graph.png ├── green.png ├── grey.png ├── links.html ├── matrix.png ├── opensearch.xml ├── overall-chance.html ├── paypal_donate_button.png ├── placeholder.png ├── purity.html ├── red.png ├── search.png ├── style.css ├── tick.png └── yellow.png ├── tables.sql ├── templates ├── cpandeps-xml.tt2 ├── cpandeps.tt2 ├── depended-on-by-xml.tt2 ├── depended-on-by.tt2 ├── moduleresult.tt2 ├── reverseresult-xml.tt2 └── reverseresult.tt2 └── user-crontabs /.ackrc: -------------------------------------------------------------------------------- 1 | --ignore-dir=db 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | db/ 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/TODO -------------------------------------------------------------------------------- /analog.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/analog.cfg -------------------------------------------------------------------------------- /dbish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/dbish -------------------------------------------------------------------------------- /depended-on-by.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/depended-on-by.pl -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/favicon.ico -------------------------------------------------------------------------------- /getfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/getfiles.sh -------------------------------------------------------------------------------- /index.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/index.pl -------------------------------------------------------------------------------- /lib/CPANdeps.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/lib/CPANdeps.pm -------------------------------------------------------------------------------- /lib/CPANdepsUtils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/lib/CPANdepsUtils.pm -------------------------------------------------------------------------------- /mangledb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/mangledb.pl -------------------------------------------------------------------------------- /populate-cache.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/populate-cache.pl -------------------------------------------------------------------------------- /refill-cpanstatsdb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/refill-cpanstatsdb.pl -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/robots.txt -------------------------------------------------------------------------------- /root-crontabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/root-crontabs -------------------------------------------------------------------------------- /screenshots/deps.cpantesters.org__module=Number%3A%3APhone&perl=5.32.1&os=any+OS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/screenshots/deps.cpantesters.org__module=Number%3A%3APhone&perl=5.32.1&os=any+OS.png -------------------------------------------------------------------------------- /screenshots/deps.cpantesters.org_depended-on-by.pl_module=Number%3A%3APhone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/screenshots/deps.cpantesters.org_depended-on-by.pl_module=Number%3A%3APhone.png -------------------------------------------------------------------------------- /static/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/blue.png -------------------------------------------------------------------------------- /static/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/bug.png -------------------------------------------------------------------------------- /static/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/credits.html -------------------------------------------------------------------------------- /static/depended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/depended.png -------------------------------------------------------------------------------- /static/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/graph.png -------------------------------------------------------------------------------- /static/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/green.png -------------------------------------------------------------------------------- /static/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/grey.png -------------------------------------------------------------------------------- /static/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/links.html -------------------------------------------------------------------------------- /static/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/matrix.png -------------------------------------------------------------------------------- /static/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/opensearch.xml -------------------------------------------------------------------------------- /static/overall-chance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/overall-chance.html -------------------------------------------------------------------------------- /static/paypal_donate_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/paypal_donate_button.png -------------------------------------------------------------------------------- /static/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/placeholder.png -------------------------------------------------------------------------------- /static/purity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/purity.html -------------------------------------------------------------------------------- /static/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/red.png -------------------------------------------------------------------------------- /static/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/search.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/style.css -------------------------------------------------------------------------------- /static/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/tick.png -------------------------------------------------------------------------------- /static/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/static/yellow.png -------------------------------------------------------------------------------- /tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/tables.sql -------------------------------------------------------------------------------- /templates/cpandeps-xml.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/cpandeps-xml.tt2 -------------------------------------------------------------------------------- /templates/cpandeps.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/cpandeps.tt2 -------------------------------------------------------------------------------- /templates/depended-on-by-xml.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/depended-on-by-xml.tt2 -------------------------------------------------------------------------------- /templates/depended-on-by.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/depended-on-by.tt2 -------------------------------------------------------------------------------- /templates/moduleresult.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/moduleresult.tt2 -------------------------------------------------------------------------------- /templates/reverseresult-xml.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/reverseresult-xml.tt2 -------------------------------------------------------------------------------- /templates/reverseresult.tt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/templates/reverseresult.tt2 -------------------------------------------------------------------------------- /user-crontabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrHyde/CPANdeps/HEAD/user-crontabs --------------------------------------------------------------------------------