File tree 6 files changed +14
-38
lines changed
6 files changed +14
-38
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,9 @@ get '/dancefloor' => sub {
35
35
};
36
36
};
37
37
38
- # Add last tweet to template params
38
+ # Add this year to template params
39
39
hook before_template_render => sub {
40
40
my $t = shift ;
41
- $t -> {last_tweet } = latest_tweet();
42
41
$t -> {this_year } = 1900 + (localtime )[5];
43
42
};
44
43
@@ -101,27 +100,4 @@ sub _get_dancefloor_sites {
101
100
return [ sort { rand } @dancefloor_sites ];
102
101
}
103
102
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
-
127
103
true;
Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ If you like Dancer, tell the world about it:
21
21
<ul>
22
22
<li>blog about it!</li>
23
23
<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
25
25
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>
27
27
<li><a href="https://github.com/PerlDancer/Dancer2">"Watch" the project on
28
28
GitHub</a></li>
29
29
<li>Dancer-related presentations at conferences etc (see the <a
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ The DSL's reference API is documented in
37
37
Dancer is PSGI-compatible, that means you can virtually deploy your app
38
38
anywhere. We wanted to help our users as much as possible, so we've gathered as
39
39
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>,
41
41
in order to provide working configuration examples.
42
42
</p>
43
43
Original file line number Diff line number Diff line change 1
1
<ul>
2
2
<li><a href="/cheatsheet">A cheatsheet</a> (PDF or ODS) by Vladimir Lettiev
3
3
(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>
5
5
- a gentle introduction to Dancer</li>
6
6
<li><a href="http://p3rl.org/Dancer2::Tutorial">Dancer2::Tutorial</a> - a
7
7
walkthrough creating an example application</a></li>
11
11
listing all the Dancer DSL keywords</li>
12
12
<li><a href="http://p3rl.org/Dancer2::Plugins">Dancer2::Plugins</a> - a list
13
13
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> -
15
15
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>
18
18
</ul>
19
19
Original file line number Diff line number Diff line change 82
82
83
83
<div id="contain-bottom"></div>
84
84
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>
90
90
91
91
</div>
92
92
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ possible.
11
11
12
12
<p>
13
13
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>:
15
15
</p>
16
16
17
17
<pre class="console">
You can’t perform that action at this time.
0 commit comments