-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeed
100 lines (75 loc) · 2.42 KB
/
feed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Blosxom Plugin: feed
# Author(s): Kyo Nagashima <[email protected]>
# Version: 2011-04-06
# Blosxom Home/Docs/Licensing: http://www.blosxom.com/
package feed;
use strict;
use vars qw($name $url $email $rights $published $published_w3cdtf $updated $updated_w3cdtf $excerpt $encoded_body);
# --- Configurable variables -----------
$name = 'John Doe';
$url = 'http://www.example.com/';
$email = '[email protected]';
$rights = 'Copyright (c) 2011, John Doe';
my $tzd_rfc = "+0900";
my $tzd_w3cdtf = "+09:00";
# --- Plug-in package variables --------
my $updated_placeholder = '{{{feed::updated}}}';
my $updated_w3cdtf_placeholder = '{{{feed::updated_w3cdtf}}}';
my @mtimes;
# --------------------------------------
use File::stat;
sub start {
return 1;
}
sub story {
my($pkg, $path, $fn, $story_ref, $title_ref, $body_ref) = @_;
my $file = "$blosxom::datadir$path/$fn.$blosxom::file_extension";
$published = &format_time_rfc($blosxom::files{$file});
$published_w3cdtf = &format_time_w3cdtf($blosxom::files{$file});
my $mtime = stat($file)->mtime;
push @mtimes, $mtime;
$updated = format_time_rfc($mtime);
$updated_w3cdtf = format_time_w3cdtf($mtime);
$excerpt = $$body_ref;
$excerpt =~ tr!\x0D\x0A!!d;
$excerpt =~ s!^.*?<p>(.*?)</p>.*?$!$1!;
$excerpt =~ s!<.*?>!!g;
$encoded_body = $$body_ref;
return 1;
}
sub foot {
@mtimes = sort { $b <=> $a } @mtimes;
my $mtime = $mtimes[0];
$updated = format_time_rfc($mtime);
$updated_w3cdtf = format_time_w3cdtf($mtime);
$blosxom::output =~ s/$updated_placeholder/$updated/m;
$blosxom::output =~ s/$updated_w3cdtf_placeholder/$updated_w3cdtf/m;
}
sub format_time_rfc {
my $time = shift;
my($ss, $nn, $hh, $dd, $mm, $yy, $ww) = localtime($time);
$yy = $yy + 1900;
$dd = sprintf "%02d", $dd;
$hh = sprintf "%02d", $hh;
$nn = sprintf "%02d", $nn;
$ss = sprintf "%02d", $ss;
my @months = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
my @wdays = qw(Sun Mon Tue Wed Thu Fri Sat);
$time = "$wdays[$ww], $dd $months[$mm] $yy $hh:$nn:$ss $tzd_rfc";
return $time;
}
sub format_time_w3cdtf {
my $time = shift;
my($ss, $nn, $hh, $dd, $mm, $yy, $ww) = localtime($time);
$yy = $yy + 1900;
$mm = sprintf "%02d", ($mm + 1);
$dd = sprintf "%02d", $dd;
$hh = sprintf "%02d", $hh;
$nn = sprintf "%02d", $nn;
$ss = sprintf "%02d", $ss;
my $T = "T";
$time = "$yy-$mm-$dd$T$hh:$nn:$ss$tzd_w3cdtf";
return $time;
}
1;
# vim:ft=perl