CPANTS on the web

gabor on 2004-09-06T18:44:45

Using Maypole I created a web front-end to the CPANTS database generated by Thomas Klausner

It is currently located at CPANTS on the web. Expect it to be slow to the level of being totally useless.

Update:
The source code of the back-end is now available.


Formatting glitch

schwern on 2004-09-06T21:48:36

The tables are displayed oddly in Firefox 0.9.3 and Camino 0.8.1 for OS X. Here's a screenshot from Firefox. iCab 2.9.8 displays it better with the search box on top.

and how do I score?

nicholas on 2004-09-06T22:22:04

Nice. And it's not that slow (currently)

However, I can't get it to do what I want it to do. I can get it to list my distributions (fine, but I know this), and tell me my average kwalitee (good). Now tell me something I don't know - specifically please list my distributions in a table with their quality metrics. But it won't. Or I'm missing how to persuaded it to do that. Can it do this?

Re:and how do I score?

domm on 2004-09-07T07:51:55

AFAIK Gabor basically took the cpants.db sqlite file and dumped it into a very basic Maypole setup. So I guess complex joins are not possible using the web interface right now.

But you can get this information from the db directly:

select kwalitee.* from kwalitee,cpan where cpan.dist=kwalitee.dist and cpan.cpanid='NWCLARK';
2