Skip to content

Commit

Permalink
add feedback page
Browse files Browse the repository at this point in the history
  • Loading branch information
szabgab committed Oct 21, 2014
1 parent e865a6c commit 66f0732
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/MetaCPAN/SCO.pm
Expand Up @@ -29,6 +29,9 @@ sub run {
if ($request->path_info eq '/') {
return template('index', {front => 1});
}
if ($request->path_info eq '/feedback') {
return template('feedback');
}

my $reply = template('404');
return [ '404', [ 'Content-Type' => 'text/html' ], $reply->[2], ];
Expand Down
34 changes: 34 additions & 0 deletions tt/feedback.tt
@@ -0,0 +1,34 @@
<br><div class=t4> Feedback</div><br>

You arrived to the search.cpan.org clone project.
<p>

If you have any feedback about this site, its design or how it presents
the information, then please visit <a href="">GitHub</a> and report the issue there.
<p>
If you have a question about an issue with a particular module, or the content of its documentation, please contact the author of that module.
<p>
If the feedback you want to give is not specifically about this site, then
please try one of the following forums that best fits.

<dl>
<dt><a href="http://groups.google.com/groups/dir?q=comp.lang.perl">comp.lang.perl newgroups</a></dt>
<dd>
The usenet newsgroups are a great resource and your questions will reach
a wide audience of experienced perl users (and some not so experienced ones too)
</dd>

<dt><a href="mailto:modules@cpan.org">modules@cpan.org</a></dt>
<dd>
The modules list is a small group of people who will give advice on various
aspects of module naming and uploading to CPAN.
</dd>

<dt><a href="http://www.perlmonks.org/">Perl Monks</a></dt>
<dd>
Perl Monks is another great resource where you will find many experienced
perl users all willing to help you out.
</dd>

</dl>

0 comments on commit 66f0732

Please sign in to comment.