forked from Raku/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmlify.pl
188 lines (169 loc) · 5.8 KB
/
htmlify.pl
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
use v6;
use lib 'lib';
use Pod::To::Perl;
use Pod::To::HTML;
use Pod::Htmlify;
use Pod::Convenience;
use Perl6::Example;
my $head = slurp 'template/head.html';
my $footer = footer-html;
sub header-html(%categories) {
my $header = slurp 'template/header.html';
my $menu-items = [~]
q[<div class="menu-items dark-green">],
%categories.keys.map( -> $category {qq[
<a class="menu-item selected darker-green"
href="/$category.html">
{ $category.wordcase }
</a>
]}),
q[</div>];
my $menu-pos = ($header ~~ /MENU/).from;
$header.subst('MENU', :p($menu-pos), $menu-items);
}
my %categories =
"best-of-rosettacode" => "Best of Rosettacode",
"99-problems" => "99 problems",
"cookbook" => "Cookbook examples",
"euler" => "Answers for Project Euler",
"games" => "Games written in Perl 6",
"interpreters" => "Language or DSL interpreters",
"module-management" => "Module management",
"parsers" => "Example grammars",
"perlmonks" => "Answers to perlmonks.org questions",
"rosalind" => "Bioinformatics programming problems",
"shootout" => "The Computer Language Benchmark Game",
"tutorial" => "Tutorial examples",
"wsg" => "The Winter Scripting Games",
"other" => "Uncategorized examples",
;
my %examples = collect-example-metadata(%categories);
write-index;
write-index-files(%categories);
create-category-dirs(%categories);
write-example-files(%examples);
sub collect-example-metadata(%categories) {
my %examples;
for %categories.kv -> $category, $category-title {
my $subcategory = "";
my @files = files-in-category($category);
my @filenames = @files.map: {.basename};
for @files -> $file {
say "Collecting metadata from $file";
my $perl-pod = qqx{perl6-m -Ilib --doc=Perl $file};
my $pod = EVAL $perl-pod;
my $file-basename = $file.basename;
if !$pod {
my @contents = $file.lines.join("\n");
$pod = Array.new(pod-with-title($file-basename,
pod-code(@contents),
));
}
my $example-title = pod-title-contents($pod, $file-basename);
my $author = pod-author-contents($pod, $file-basename);
my $link = pod-link($file-basename, "categories/$category/$file-basename");
my $example = Example.new(
title => $example-title,
author => $author,
category => $category,
subcategory => $subcategory,
filename => $file,
pod-link => $link,
pod-contents => $pod,
);
%examples{$category}{$subcategory}{$file} = $example;
}
}
return %examples;
}
sub write-index {
say "Creating main index file";
spurt 'html/index.html', p2h EVAL slurp('lib/HomePage.pod') ~ "\n\$=pod";
}
sub write-index-files(%categories) {
say "Creating category index files";
my @headers = qw{File Title Author};
for %categories.kv -> $category, $title {
my @examples = %examples{$category}{""}.values;
my @rows = @examples.map: {[.pod-link, .title, .author]};
spurt "html/$category.html", p2h(
pod-with-title($title,
pod-table(@rows, headers => @headers),
),
);
}
}
sub files-in-category($category) {
dir("categories/$category", test => rx{ <?!after 'p5'> \.p[l||6]$ }).sort;
}
sub create-category-dirs(%categories) {
for %categories.keys -> $category {
my $dir-name = "html/categories/$category";
mkdir $dir-name unless $dir-name.IO.d;
}
}
sub write-example-files(%examples) {
my @categories = %examples.keys;
for @categories -> $category {
say "Creating example files for category: $category";
my @files = files-in-category($category);
my @filenames = @files.map: {.basename};
for @files -> $file {
next unless $file.IO.e;
my $pod = %examples{$category}{""}{$file}.pod-contents;
$pod.push: source-reference($file, $category);
my $html-file = $file.subst(/\.p(l|6)/, ".html");
spurt "html/$html-file", p2h($pod);
}
}
}
sub pod-title-contents($pod, $file) {
my $title-element = $pod[0].contents[0];
my $title;
if $title-element ~~ Pod::Block::Named && $title-element.name eq "TITLE" {
try {
$title = $title-element.contents[0].contents[0];
CATCH {
default { $title = "TITLE is empty" }
}
}
}
else {
say "$file lacks a TITLE";
}
return $title;
}
sub pod-author-contents($pod, $file) {
my $author-element = $pod[0].contents[1];
my $author;
if $author-element ~~ Pod::Block::Named && $author-element.name eq "AUTHOR" {
try {
$author = $author-element.contents[0].contents[0];
CATCH {
default { $author = "AUTHOR is empty" }
}
}
}
else {
say "$file lacks an AUTHOR";
}
return $author;
}
sub source-reference($file, $category) {
pod-block("Source code: ",
pod-link($file.basename,
"https://github.com/perl6/perl6-examples/blob/master/categories/$category/" ~ $file.basename),
);
}
sub p2h($pod) {
pod2html $pod,
:url(&url),
:$head,
:header(header-html %categories),
:$footer,
:default-title("Perl 6 Examples");
}
sub url($url) {
return $url;
}
# vim: expandtab shiftwidth=4 ft=perl6