| Acme-ReturnValue documentation | Contained in the Acme-ReturnValue distribution. |
Acme::ReturnValue::MakeSite - generate some HTML pages
acme_returnvalue_makesite.pl --data path/to/dir
Generate a small site based on the findings of Acme::ReturnValue
run from the commandline (via acme_returnvalue_makesite.pl
Generate the list of cool dists.
Generate the list of cool return values.
Generate the list of bad dists.
Generate the start page
Please report any bugs or feature requests to
bug-acme-returnvalue@rt.cpan.org, or through the web interface at
http://rt.cpan.org. I will be notified, and then you'll automatically
be notified of progress on your bug as I make changes.
Copyright 2009 Thomas Klausner
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Acme-ReturnValue documentation | Contained in the Acme-ReturnValue distribution. |
#!/usr/bin/perl package Acme::ReturnValue::MakeSite; use 5.010; use strict; use warnings; use version; our $VERSION = qv '0.70.0'; use Path::Class qw(); use URI::Escape; use Encode qw(from_to); use Data::Dumper; use Acme::ReturnValue; use YAML::Any qw(LoadFile); use Moose; with qw(MooseX::Getopt); has 'now' => (is=>'ro',isa=>'Str',default => sub { scalar localtime}); has 'quiet' => (is=>'ro',isa=>'Bool',default=>0); has 'data' => (is=>'ro',isa=>'Str',default=>'returnvalues'); has 'out' => (is=>'ro',isa=>'Str',default=>'htdocs');
sub run { my $self = shift; my @interesting; my $datadir = $self->data; my $dir = Path::Class::Dir->new($datadir); my %cool_dists; my %bad_dists; my %cool_rvs; #my %authors; while (my $file=$dir->next) { next unless $file=~/^(?<dist>.*)\.(?<type>dump|bad)$/; my $dist=$+{dist}; my $type=$+{type}; $dist=~s/$datadir//; $dist=~s/^\///; my $data=LoadFile($file->stringify); foreach my $report (@$data) { if ($report->{value}) { $report->{value}=~s/\</</g; $report->{value}=~s/\>/>/g; from_to($report->{value},'latin1','utf8'); if(length($report->{value})>255) { $report->{value}=substr($report->{value},0,255).'...'; } } if ($report->{bad}) { $report->{bad}=~s/\</</g; $report->{bad}=~s/\>/>/g; from_to($report->{bad},'latin1','utf8'); if(length($report->{bad})>255) { $report->{bad}=substr($report->{bad},0,255).'...'; } } if (length($report->{package})>40) { my @p=split(/::/,$report->{package}); my @lines; my $line = shift(@p); foreach my $frag (@p) { $line.='::'.$frag; if (length($line)>40) { push(@lines,$line); $line=''; } } push (@lines,$line) if $line; $report->{package}=join("<br> ",@lines); } if ($report->{value}) { push(@{$cool_dists{$dist}},$report); push(@{$cool_rvs{$report->{value}}},$report); } else { push(@{$bad_dists{$report->{PPI}}{$dist}},$report); } } } my %by_letter; foreach my $dist (sort keys %cool_dists) { my $first = uc(substr($dist,0,1)); push(@{$by_letter{$first}},$dist); } my $letternav = "<ul class='menu'>"; foreach my $letter (sort keys %by_letter) { $letternav.="<li><a href='cool_$letter.html'>$letter</li>"; } $letternav.="</ul>"; foreach my $letter (sort keys %by_letter) { $self->gen_cool_dists(\%cool_dists,$by_letter{$letter},$letter,$letternav); } $self->gen_cool_values(\%cool_rvs); $self->gen_bad_dists(\%bad_dists); $self->gen_index; }
sub gen_cool_dists { my ($self, $cool,$dists,$letter,$letternav) = @_; my $out = Path::Class::Dir->new($self->out)->file('cool_'.$letter.'.html'); my $fh = $out->openw; my $count = keys %$cool; say $fh $self->_html_header; say $fh <<EOCOOLINTRO; <h3>$count Cool Distributions $letter</h3> <p class="content">A list of distributions with not-boring return values, sorted by name. </p> EOCOOLINTRO say $fh $letternav; say $fh "<table>"; foreach my $dist (sort @{$dists}) { say $fh $self->_html_cool_dist($dist,$cool->{$dist}); } say $fh "</table>"; say $fh $self->_html_footer; close $fh; }
sub gen_cool_values { my ($self, $dists) = @_; my $out = Path::Class::Dir->new($self->out)->file('values.html'); my $fh = $out->openw; say $fh $self->_html_header; say $fh <<EOBADINTRO; <h3>Cool Return Values</h3> <p class="content"> All cool values, sorted by number of occurence in the CPAN. </p> <table> <tr><td>Return value</td><td>#</td><td>Package</td></tr> EOBADINTRO foreach my $rv ( map { $_->[1] } sort { $b->[0] <=> $a->[0] } map { [scalar @{$dists->{$_}},$_] } keys %$dists) { say $fh $self->_html_cool_value($rv,$dists->{$rv}); } say $fh "<table>"; say $fh $self->_html_footer; close $fh; }
sub gen_bad_dists { my ($self, $dists) = @_; my $out = Path::Class::Dir->new($self->out)->file('bad.html'); my $fh = $out->openw; say $fh $self->_html_header; say $fh <<EOBADINTRO; <h3>Bad Return Values</h3> <p class="content">A list of distributions that don't return a valid return statement. You can consider this distributions buggy. This list is further broken down into the type of <a href="http://search.cpan.org/dist/PPI">PPI::Statement</a> class they return. To view the full bad return value, click on the 'show'-link.</p> EOBADINTRO my @bad = sort keys %$dists; say $fh "<ul>"; foreach my $type (@bad) { my $count = keys %{$dists->{$type}}; say $fh "<li><a href='#$type'>$type ($count dists)</li>"; } say $fh "</ul>"; foreach my $type (sort keys %$dists) { say $fh "<h3><a name='$type'>$type</a></h3>\n<table width='100%'>"; foreach my $dist (sort keys %{$dists->{$type}}) { say $fh $self->_html_bad_dist($dist,$dists->{$type}{$dist}); } say $fh "</table>"; } say $fh "</table>"; say $fh $self->_html_footer; close $fh; }
sub gen_index { my $self = shift; my $out = Path::Class::Dir->new($self->out)->file('index.html'); my $fh = $out->openw; my $version = Acme::ReturnValue->VERSION; say $fh $self->_html_header; say $fh <<EOINDEX; <p class="content">As you might know, all <a href="http://perl.org">Perl</a> packages are required to end with a true statement, usually '1'. But there are more interesting true values than plain old boring '1'. This site is dedicated to presenting to you those creative, funny, stupid or erroneous return values found on <a href="http://search.cpan.org">CPAN</a>.</p> <p class="content">This site is created using <a href="http://search.cpan.org/dist/Acme-ReturnValue">Acme::ReturnValue $version</a> by <a href="http://domm.plix.at">Thomas Klausner</a> on irregular intervals (but setting up a cron-job is on the TODO...). There are some <a href="http://domm.plix.at/talks/acme_returnvalue.html">slides of talks</a> available with a tiny bit more background.</p> <p class="content">At the moment, there are the following reports: <ul class="content"> <li><a href="values.html">Cool values</a> - all cool values, sorted by number of occurence in the CPAN</li> <li><a href="cool_A.html">Cool dists</a> - a list of distributions with not-boring return values. There still are some false positves hidden in here, which will hopefully be removed soon.</li> <li><a href="bad.html">Bad return values</a> - a list of distributions that don't return a valid return statement. You can consider this distributions buggy.</li> <li>By author - not implemented yet. <li>By return value - not implemented yet. </ul> </p> EOINDEX say $fh $self->_html_footer; close $fh; } sub _html_cool_dist { my ($self, $dist,$report) = @_; my $html; my $count = @$report; if ($count>1) { $html.="<tr><td colspan=2>".$self->_link_dist($dist)."</td></tr>"; } foreach my $ele (@$report) { my $val=$ele->{'value'}; if ($count>1) { $html.="<tr><td class='package'>".$ele->{package}."</td>"; } else { $html.="<tr><td colspan>".$self->_link_dist($dist)."</td>"; } $html.="<td>".$val."</td>"; $html.="</tr>\n"; } return $html; } sub _html_cool_value { my ($self, $value, $report) = @_; my $html; my $count = @$report; my $first=1;; foreach my $ele (@$report) { if ($first) { $html.="<tr><td>$value</td><td>$count</td>"; $first=0; } else { $html.="<tr><td></td><td></td>"; } $html.="<td>".$self->_link_search_package($ele->{package})."</td>"; $html.="</tr>\n"; } return $html; } sub _html_bad_dist { my ($self, $dist,$report) = @_; my $html; foreach my $ele (@$report) { my $val=$ele->{'bad'} || ''; my $id = $ele->{package}; $id=~s/::/_/g; $html.="<tr><td colspan width='30%'>".$self->_link_dist($dist)."</td>"; $html.="<td width='69%'>".$ele->{package}."</a></td>". q{<td width='1%'><a href="javascript:void(0)" onclick="$('#}.$id.q{').toggle()">}."show</td></tr> <tr id='$id' style='display:none' ><td></td><td colspan=2>".$val."</td></tr>"; } return $html; } sub _link_dist { my ($self, $dist) = @_; return "<a href='http://search.cpan.org/dist/$dist'>$dist</a>"; } sub _link_search_package { my ($self, $package) = @_; return "<a href='http://search.cpan.org/search?query=$package&mode=module'>$package</a>"; } sub _html_header { my $self = shift; return <<"EOHTMLHEAD"; <html> <head><title>Acme::ReturnValue findings</title> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <script src="jquery-1.3.2.min.js" type="text/javascript"></script> <link href="acme_returnvalue.css" rel="stylesheet" type="text/css"> </head> <body> <h1 id="top">Acme::ReturnValue</h1> <ul id="menubox" class="menu"> <li><a href="index.html">About</a></li> <li><a href="values.html">Cool return values</a></li> <li><a href="cool_a.html">Cool dists</a></li> <li><a href="bad.html">Bad return values</a></li> </ul> </div> EOHTMLHEAD } sub _html_footer { my $self = shift; my $now = $self->now; my $version = Acme::ReturnValue->VERSION; return <<"EOHTMLFOOT"; <div class="footer"> <p>Acme::ReturnValue: <a href="http://search.cpan.org/dist/Acme-ReturnValue">on CPAN</a> | <a href="http://domm.plix.at/talks/acme_returnvalue.html">talks about it</a><br> Contact: domm AT cpan.org<br> Generated: $now<br> Version: $version<br> </p> </div> </body></html> EOHTMLFOOT } "let's generate another stupid website"; __END__