forked from bentglasstube/blosxom-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathts_nearlinks-v0i01
361 lines (270 loc) · 9.67 KB
/
ts_nearlinks-v0i01
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
package ts_nearlinks;
use strict;
use warnings;
=head1 NAME
ts_nearlinks - Blosxom plugin to give "headline"-like info when using type_sniffer
=head1 VERSION
This describes version B<0.01> of ts_nearlinks.
=cut
our $VERSION = '0.01';
=head1 DESCRIPTION
This is similar to the B<headlines> plugin, but it is oriented towards
building a list of links in the current category (those that are "near").
It uses the information gathered by the B<type_sniffer> plugin rather than
getting it itself. This means that the list of files it is dealing with is
the full list, not a subset. However, the files can be restricted
by giving particular options.
This plugin provides the ability to present a list of headlines
for all the selected stories. Each headline in the list is a path-based
permalink to the story. The headlines shown are determined by a function
call using the B<interpolate_fancy> plugin. The arguments to this function
describe which headlines to show and how to show them. Therefore you can
implement multiple calls within your flavour files. Each call can present
a completely different set of headlines (e.g. different categories,
different sort methods, different layout, etc).
=head1 INSTALLATION
=head2 Installation
Drop the ts_nearlinks plug-in into your Blosxom plugins folder.
Make sure that it runs after the B<type_sniffer> plugin.
=head2 Configuration
The following configuration variables can be set by editing the
plugin file.
=over
=item B<@monthabbr>
If you are going to use the long date format, modify this array
to the month strings you would like to use.
=cut
my @monthabbr = qw{Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec};
=back
=cut
use CGI qw/:standard/;
use File::Spec;
sub start {
1;
} # start
=head1 FUNCTIONS
=head2 get
Function to be called from an B<interpolate_fancy> call.
The most basic call is as follows:
<@ts_nearlinks.get output="yes" />
This would return an unordered list of all the story headlines on your site.
There are a number of arguments you can pass to the B<get> function that are
used to modify the list returned. Here are the descriptions of each and their
default setting if not passed to the B<get> function:
=over
=item B<category>
the category to pull headlines from (default: all categories)
=item B<localdepth>
Prune the headlines to only those in the given local depth range.
A value of zero means don't prune at all.
(default: 0)
=item B<sort_method>
how to sort the headlines (default: B<by_date>)
The available sort methods are:
B<by_date> sorted by date (newest to oldest)
B<by_date_reverse> sorted by date (oldest to newest)
B<by_path_name> sorted alpha by the story's path
B<by_path_name_reverse> sorted reverse alpha by the story's path
B<by_title> sorted alpha by headline
B<by_title_reverse> sorted reverse alpha by headline
=item B<max_to_show>
the max number of headlines to show in the list (default: all)
=item B<show_dates>
show a date string before the headline, headlines occuring on
the same day fall under the same date headline (1 = yes, 0 = no) (default: 0)
=item B<showLongDates>
show Apr 8, 1973 instead of 4/8/1973 (1 = yes, 0 = no)
(default: 0)
=item B<indent>
indent string inserted before a headline, useful with B<show_dates>
for contrast between the date and headline strings (default: "")
=item B<css_class>
the CSS class identifier to use for the unordered list tag
(default: "")
=item B<css_date_class>
the CSS class identifier to use for the date string list
item (default: "")
=item B<css_item_class>
the CSS class identifier to use for the headline string list
item (default: "")
=back
=cut
sub get
{
my ($self, $attributes, $content) = @_;
my %args = (
category => '',
css_class => '',
css_date_class => '',
css_item_class => '',
css_link_class => '',
max_to_show => undef,
sort_method => 'by_date',
show_long_dates => 0,
indent => '',
localdepth => 0,
%{$attributes}
);
my $category = $args{"category"};
my $css_class = $args{"css_class"};
my $css_date_class = $args{"css_date_class"};
my $css_item_class = $args{"css_item_class"};
my $css_link_class = $args{"css_link_class"};
my $max_to_show = $args{"max_to_show"};
my $sort_method = $args{"sort_method"};
my $show_dates = $args{"show_dates"};
my $show_long_dates = $args{"show_long_dates"};
my $indent = $args{"indent"};
my $localdepth = $args{"localdepth"};
my $return_data = '';
my $count = 0;
my @sorted;
my $url;
my $hl;
my $lastmonth;
my $lastday;
my $lastyear;
my $month;
my $day;
my $year;
my $blogs = $type_sniffer::filetypes;
if ($sort_method eq 'by_path_name')
{
@sorted = sort keys %$blogs;
}
elsif ($sort_method eq 'by_path_name_reverse')
{
@sorted = reverse sort keys %$blogs;
}
elsif ($sort_method eq 'by_title')
{
@sorted = sort { $blogs->{$a}->{title} cmp $blogs->{$b}->{title} } keys %$blogs;
}
elsif ($sort_method eq 'by_title_reverse')
{
@sorted = reverse sort { $blogs->{$a}->{title} cmp $blogs->{$b}->{title} } keys %$blogs;
}
elsif ($sort_method eq 'by_date_reverse')
{
@sorted = reverse sort { $blogs->{$b}->{date} <=> $blogs->{$a}->{date} } keys %$blogs;
}
else # ($sort_method eq 'by_date')
{
@sorted = sort { $blogs->{$b}->{date} <=> $blogs->{$a}->{date} } keys %$blogs;
}
if (defined $css_class) {
$return_data .= qq{<ul class="$css_class">\n};
} else {
$return_data .= qq{<ul>\n};
}
my $lastMonth;
my $lastDay;
my $lastYear;
foreach (@sorted)
{
# skip this entry if not part of the specified category
next if !/^$blosxom::datadir$category(.*)$/;
my $rest_of_path = $1;
# skip this entry if it is too deep
if ($localdepth > 0) {
$rest_of_path =~ s!^/!!; # remove the leading slash
my @rest_of_dirs = File::Spec->splitdir($rest_of_path);
my $this_depth = @rest_of_dirs;
next if $localdepth < $this_depth;
}
$hl = $blogs->{$_}->{title};
my @date = localtime($blogs->{$_}->{date});
$month = $date[4] + 1;
$day = $date[3];
$year = $date[5] + 1900;
$url = $_;
$url =~ s/^$blosxom::datadir(.*)$blosxom::file_extension$/$blosxom::url$1$blosxom::flavour/;
if ($show_dates)
{
if (($month != $lastMonth) or ($day != $lastDay) or ($year != $lastYear))
{
if ($show_long_dates)
{
$return_data .= qq{<li class="$css_date_class">$monthabbr[$month-1] $day, $year</li>\n};
}
else
{
$return_data .= qq{<li class="$css_date_class">$month/$day/$year</li>\n};
}
$lastMonth = $month;
$lastDay = $day;
$lastYear = $year;
}
}
if (defined $css_item_class) {
$return_data .= qq{<li class="$css_item_class"><a href="$url">$indent$hl</a></li>\n};
} else {
$return_data .= qq{<li><a href="$url">$indent$hl</a></li>\n};
}
last if ($max_to_show and (++$count == $max_to_show));
}
$return_data .= qq{</ul>\n};
return $return_data;
} # get
=head1 EXAMPLES
The following will display all the headlines from the current
category, sorted by path.
<@ts_nearlinks.get category="$path"
sort_method="by_path_name"
output="yes" />
The following will display the last 10 headlines from the "/sports" category
with the writeback count for each headline and each count looking like "- N".
<@ts_nearlinks.get category="/sports"
show_wb_count="1"
wb_prefix="- "
max_to_show="10"
output="yes" />
The following will display all headlines sorted alphabetically by the title
string.
<@ts_nearlinks.get sort_method="by_title"
output="yes" />
The following will display the last 25 headlines (any category) with the
date headers. Also specified are some CSS class identifiers.
<@ts_nearlinks.get show_dates="1"
max_to_show="25"
css_class="headlines"
css_date_class="headlines_date"
css_item_class="headlines_item"
output="yes" />
The following will display the last 100 headlines from the
"/computers/software/blosxom" category sorted in reverse date order
(i.e. from oldest to newest). Long date strings will be inserted into
the headline list and each headline will be indented four spaces.
Also specified are some CSS class identifiers.
<@ts_nearlinks.get category="/computers/software/blosxom"
sort_method="by_date_reverse"
show_dates="1"
show_long_dates="1"
indent=" "
max_to_show="100"
css_class="blosxom_headlines"
css_date_class="blosxom_headlines_date"
css_item_class="blosxom_headlines_item"
output="yes" />
=head1 REQUIRES
Perl 5.6.0
CGI
File::Spec
type_sniffer plugin
interpolate_fancy plugin
=head1 SEE ALSO
type_sniffer
=head1 BUGS
Please report any bugs or feature requests to the author.
=head1 AUTHOR
Kathryn Andersen (RUBYKAT)
perlkat AT katspace dot com
http://www.katspace.com
=head1 COPYRIGHT AND LICENCE
Copyright (c) 2004 by Kathryn Andersen
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
# vim: ft=perl ts=8 sw=4 sts=4 ai cinkeys="0{,0},0),!,o,O,e"
1; # End of ts_nearlinks
__END__