2 # Copyright (C) 2014-2021 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
5 # Stupid script to make HTML from preformatted, utf-8 text versions,
6 # only generating links for http(s). Markdown does too much
7 # and requires indentation to output preformatted text.
10 use PublicInbox::Linkify;
11 use PublicInbox::Hval qw(ascii_html);
21 lei-forget-external(1)
42 public-inbox-config(5)
43 public-inbox-config(5)
44 public-inbox-convert(1)
45 public-inbox-daemon(8)
48 public-inbox-glossary(7)
56 public-inbox-overview(7)
58 public-inbox-v1-format(5)
59 public-inbox-v2-format(5)
63 my ($n) = (/([\w\-\.]+)/);
64 $xurls{$_} = "$n.html";
65 $xurls{$n} = "$n.html";
68 for (qw[copydatabase(1) xapian-compact(1)]) {
69 my ($n) = (/([\w\-\.]+)/);
70 $xurls{$_} = ".$n.1.html"
73 for (qw[make(1) flock(2) setrlimit(2) vfork(2) tmpfs(5)]) {
74 my ($n, $s) = (/([\w\-]+)\((\d)\)/);
75 $xurls{$_} = "http://www.man7.org/linux/man-pages/man$s/$n.$s.html";
94 gitrepository-layout(5)
96 my ($n) = (/([\w\-\.]+)/);
97 $xurls{$_} = "https://kernel.org/pub/software/scm/git/docs/$n.html"
106 my ($n) = (/([\w\-\.]+)/);
107 $xurls{$_} = "https://www.freedesktop.org/software/systemd/man/$n.html";
110 $xurls{'netrc(5)'} = 'https://manpages.debian.org/stable/ftp/netrc.5.en.html';
111 $xurls{'mbsync(1)'} =
112 'https://manpages.debian.org/stable/isync/mbsync.1.en.html';
113 $xurls{'offlineimap(1)'} =
114 'https://manpages.debian.org/stable/offlineimap/offlineimap.1.en.html';
116 'https://spamassassin.apache.org/full/3.4.x/doc/spamc.html';
117 $xurls{'grok-pull'} =
118 'https://git.kernel.org/pub/scm/utils/grokmirror/grokmirror.git' .
119 '/tree/man/grok-pull.1.rst';
120 $xurls{'git-filter-repo(1)'} = 'https://github.com/newren/git-filter-repo'.
121 '/blob/master/Documentation/git-filter-repo.txt';
122 $xurls{'ssoma(1)'} = 'https://ssoma.public-inbox.org/ssoma.txt';
123 $xurls{'cgitrc(5)'} = 'https://git.zx2c4.com/cgit/tree/cgitrc.5.txt';
124 $xurls{'prove(1)'} = 'https://perldoc.perl.org/prove.html';
125 $xurls{'mbox(5)'} = 'https://manpages.debian.org/stable/mutt/mbox.5.en.html';
126 $xurls{'mmdf(5)'} = 'https://manpages.debian.org/stable/mutt/mmdf.5.en.html';
128 my $str = do { local $/; <STDIN> };
129 my ($title) = ($str =~ /\A([^\n]+)/);
130 if ($str =~ /^NAME\n\s+([^\n]+)/sm) {
131 # don't link to ourselves
133 if ($title =~ /([\w\.\-]+)/) {
137 $title = ascii_html($title);
138 my $l = PublicInbox::Linkify->new;
139 $str = $l->linkify_1($str);
140 $str = ascii_html($str);
142 # longest matches, first
143 my @keys = sort { length($b) <=> length($a) } keys %xurls;
144 my $xkeys = join('|', map { quotemeta } @keys);
145 $str =~ s,(?<![>\w_])($xkeys)(?!(?:[\w<\-]|\.html)),
146 qq(<a\nhref=").$xurls{$1}.qq(">$1).($2//'').'</a>',sge;
148 $str = $l->linkify_2($str);
150 print '<html><head>',
151 qq(<meta\nhttp-equiv="Content-Type"\ncontent="text/html; charset=utf-8"\n/>),
152 "<title>$title</title>",
153 "</head><body><pre>", $str , '</pre></body></html>';
156 # keep mtime on website consistent so clients can cache
157 if (-f STDIN && -f STDOUT) {
158 my @st = stat(STDIN);
159 utime($st[8], $st[9], \*STDOUT);