-
Notifications
You must be signed in to change notification settings - Fork 1
/
monthview
170 lines (104 loc) · 2.73 KB
/
monthview
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# Blosxom Plugin: monthview
# Author(s): Kyo Nagashima <[email protected]>
# Version: 2012-01-16
# Documentation: See the bottom of this file or type: perldoc writeback
package monthview;
use strict;
use vars qw($enabled);
# --- Configurable variables -----------
# --- Plug-in package variables --------
$enabled = 0;
my $flavour = 'monthview';
# --------------------------------------
sub start {
if (!$blosxom::path_info_mo or $blosxom::path_info_da or ($blosxom::flavour ne $blosxom::default_flavour)) {
return 0;
}
$enabled = 1;
return 1;
}
sub head {
my($pkg, $path, $head_ref) = @_;
if (&is_flavour_exists($path, 'head', $flavour)) {
$$head_ref = &$blosxom::template($path, 'head', $flavour);
return 1;
}
return 0;
}
sub sort {
return sub {
my ($files_ref) = @_;
return sort {
$files_ref->{$a} <=> $files_ref->{$b}
} keys %$files_ref;
};
}
sub date {
my ($pkg, $path, $date_ref, $mtime, $dw, $mo, $mo_num, $da, $ti, $yr) = @_;
if (&is_flavour_exists($path, 'date', $flavour)) {
$$date_ref = &$blosxom::template($path, 'date', $flavour);
return 1;
}
return 0;
}
sub story {
my ($pkg, $path, $fn, $story_ref, $title_ref, $body_ref) = @_;
if (&is_flavour_exists($path, 'story', $flavour)) {
$$story_ref = &$blosxom::template($path, 'story', $flavour);
return 1;
}
return 0;
}
sub foot {
my ($pkg, $path, $foot_ref) = @_;
if (&is_flavour_exists($path, 'foot', $flavour)) {
$$foot_ref = &$blosxom::template($path, 'foot', $flavour);
return 1;
}
return 0;
}
sub is_flavour_exists {
my ($path, $chunk, $flavour) = @_;
do {
if (-e "$blosxom::datadir/$path/$chunk.$flavour") {
return 1;
}
} while ($path =~ s/(\/*[^\/]*)$// and $1);
return 0;
}
1;
__END__
=head1 NAME
Blosxom Plug-in: monthview
=head1 SYNOPSIS
Allows you to use alternate flavour for view by month.
=head1 VERSION
2012-01-16
=head1 AUTHOR
Kyo Nagashima E<lt>[email protected]<gt>, http://hail2u.net/
=head1 INSTALLATION
Drop monthview into your plugins directory. And create following flavours if you want:
=over
=item * head.monthview
=item * date.monthview
=item * story.monthview
=item * foot.monthview
=back
=head2 FLAVOUR FALLBACK
If blosxom can't find one of the above 'monthview' flavour, fallback to a flavour user requested. This means, if you have only 'story.monthview', blosxom renders 'http://example.com/blosxom.cgi/2012/01/index.html' with:
=over
=item * head.html
=item * date.html
=item * story.monthview
=item * foot.html
=back
=head1 BUGS
Address bug reports and comments to:
=over 1
=item GitHub issue
https://github.com/hail2u/blosxom-plugins/issues
=back
=head1 LICENSE
http://hail2u.mit-license.org/2012
=cut
# vim:ft=perl