Skip to content

Commit c576df9

Browse files
committed
Many changes to the website, mostly involving changing links from Dancer
to Dancer2. Since the Twitter JSON API is gone, removed the last tweet from the bottom of the page. Instead, I put a link to Dancer's Twitter account in the footer. Seeing "Unavailable" in the footer didn't look so hot. Since other links use MetaCPAN instead of search.cpan.org, I changed the cpanm link to use MetaCPAN too. Please note: the D2 deployment link will not work until a new release of D2 happens - Dancer::Deployment gets renamed to Dancer2::Manual::Deployment. So this change shouldn't get deployed until that happens :)
1 parent 829d875 commit c576df9

File tree

6 files changed

+14
-38
lines changed

6 files changed

+14
-38
lines changed

lib/PerlDancer.pm

+1-25
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ get '/dancefloor' => sub {
3535
};
3636
};
3737

38-
# Add last tweet to template params
38+
# Add this year to template params
3939
hook before_template_render => sub {
4040
my $t = shift;
41-
$t->{last_tweet} = latest_tweet();
4241
$t->{this_year} = 1900 + (localtime)[5];
4342
};
4443

@@ -101,27 +100,4 @@ sub _get_dancefloor_sites {
101100
return [ sort { rand } @dancefloor_sites ];
102101
}
103102

104-
# TODO: I should probably use Net::Twitter / Net::Twitter::Lite or something
105-
# here, but this is quick and easy and gets the job done.
106-
{
107-
my $last_tweet;
108-
my $last_tweet_checked;
109-
110-
sub latest_tweet {
111-
return $last_tweet if $last_tweet and time - $last_tweet_checked < 300;
112-
113-
my $url = "http://api.twitter.com/1/statuses/user_timeline.json"
114-
. "?screen_name=PerlDancer&include_rts=1&count=1";
115-
my $json = LWP::Simple::get($url) or return "Unavailable";
116-
my $tweets;
117-
eval { $tweets = from_json($json); };
118-
if (!ref $tweets || (ref $tweets eq 'HASH' && exists $tweets->{errors}))
119-
{
120-
return "Unavailable";
121-
}
122-
$last_tweet_checked = time;
123-
return $last_tweet = $tweets->[0]->{text};
124-
}
125-
}
126-
127103
true;

views/contribute.tt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ If you like Dancer, tell the world about it:
2121
<ul>
2222
<li>blog about it!</li>
2323
<li>tweet about it!</li>
24-
<li><a href="http://cpanratings.perl.org/dist/Dancer">Rate Dancer on CPAN
24+
<li><a href="http://cpanratings.perl.org/dist/Dancer2">Rate Dancer on CPAN
2525
Ratings</a></li>
26-
<li><a href="http://metacpan.org/release/Dancer">Click +1 on MetaCPAN</a></li>
26+
<li><a href="http://metacpan.org/release/Dancer2">Click +1 on MetaCPAN</a></li>
2727
<li><a href="https://github.com/PerlDancer/Dancer2">&quot;Watch&quot; the project on
2828
GitHub</a></li>
2929
<li>Dancer-related presentations at conferences etc (see the <a

views/documentation.tt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The DSL's reference API is documented in
3737
Dancer is PSGI-compatible, that means you can virtually deploy your app
3838
anywhere. We wanted to help our users as much as possible, so we've gathered as
3939
many details as possible in a
40-
<a href="https://metacpan.org/pod/Dancer::Deployment">Deployment Guide</a>,
40+
<a href="https://metacpan.org/pod/Dancer2::Manual::Deployment">Deployment Guide</a>,
4141
in order to provide working configuration examples.
4242
</p>
4343

views/includes/doc-list.tt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ul>
22
<li><a href="/cheatsheet">A cheatsheet</a> (PDF or ODS) by Vladimir Lettiev
33
(thecrux)</li>
4-
<li><a href="http://p3rl.org/Dancer::Introduction">Dancer::Introduction</a>
4+
<li><a href="http://p3rl.org/Dancer2::Manual">Dancer2::Manual</a>
55
- a gentle introduction to Dancer</li>
66
<li><a href="http://p3rl.org/Dancer2::Tutorial">Dancer2::Tutorial</a> - a
77
walkthrough creating an example application</a></li>
@@ -11,9 +11,9 @@
1111
listing all the Dancer DSL keywords</li>
1212
<li><a href="http://p3rl.org/Dancer2::Plugins">Dancer2::Plugins</a> - a list
1313
of some recommended plugins to extend Dancer with useful features</li>
14-
<li><a href="http://p3rl.org/Dancer::Deployment">Dancer::Deployment</a> -
14+
<li><a href="http://p3rl.org/Dancer2::Manual::Deployment">Dancer2::Manual::Deployment</a> -
1515
how to deploy your app</li>
16-
<li><a href="http://p3rl.org/Task::Dancer">Task::Dancer</a> - comprehensive
17-
list of Dancer plugins, template/session/logger engines etc on the CPAN</li>
16+
<li><a href="http://p3rl.org/Task::Dancer2">Task::Dancer2</a> - comprehensive
17+
list of Dancer2 plugins, template/session/logger engines, etc. on the CPAN </li>
1818
</ul>
1919

views/layouts/main.tt

+5-5
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@
8282

8383
<div id="contain-bottom"></div>
8484

85-
<div class="twitter" id="jstweets">
86-
<a href="http://twitter.com/PerlDancer/">On Twitter</a>: <% last_tweet %>
87-
</div>
88-
89-
<div id="copyright">Dancer Perl web framework is copyright © 2009-<% this_year %> <a href="http://sukria.net/" rel="external">Alexis Sukrieh</a> - <a href="http://github.com/PerlDancer/Dancer2/" rel="external">Fork on GitHub</a> - This website is <a href="http://github.com/PerlDancer/perldancer-website/" rel="external">free software</a>.</div>
85+
<div id="copyright">Dancer Perl web framework is copyright © 2009-<% this_year %> <a href="http://sukria.net/" rel="external">Alexis Sukrieh</a> -
86+
<a href="http://twitter.com/PerlDancer/">Twitter</a> -
87+
<a href="http://github.com/PerlDancer/Dancer2/" rel="external">Fork on GitHub</a> -
88+
This website is <a href="http://github.com/PerlDancer/perldancer-website/" rel="external">free software</a>.
89+
</div>
9090

9191
</div>
9292

views/quickstart.tt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ possible.
1111

1212
<p>
1313
For easy and automatic installation of Dancer, we recommend using
14-
<a href="http://search.cpan.org/perldoc?cpanm">cpanminus</a>:
14+
<a href="https://metacpan.org/pod/distribution/Menlo/script/cpanm-menlo">cpanminus</a>:
1515
</p>
1616

1717
<pre class="console">

0 commit comments

Comments
 (0)