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)
37 public-inbox-compact(1)
38 public-inbox-config(5)
39 public-inbox-convert(1)
40 public-inbox-daemon(8)
42 public-inbox-glossary(7)
50 public-inbox-overview(7)
52 public-inbox-v1-format(5)
53 public-inbox-v2-format(5)
57 my ($n) = (/([\w\-\.]+)/);
58 $xurls{$_} = "$n.html";
59 $xurls{$n} = "$n.html";
62 for (qw[copydatabase(1) xapian-compact(1)]) {
63 my ($n) = (/([\w\-\.]+)/);
64 $xurls{$_} = ".$n.1.html"
67 for (qw[make(1) flock(2) setrlimit(2) vfork(2) tmpfs(5)]) {
68 my ($n, $s) = (/([\w\-]+)\((\d)\)/);
69 $xurls{$_} = "http://www.man7.org/linux/man-pages/man$s/$n.$s.html";
88 gitrepository-layout(5)
90 my ($n) = (/([\w\-\.]+)/);
91 $xurls{$_} = "https://kernel.org/pub/software/scm/git/docs/$n.html"
100 my ($n) = (/([\w\-\.]+)/);
101 $xurls{$_} = "https://www.freedesktop.org/software/systemd/man/$n.html";
104 $xurls{'netrc(5)'} = 'https://manpages.debian.org/stable/ftp/netrc.5.en.html';
105 $xurls{'mbsync(1)'} =
106 'https://manpages.debian.org/stable/isync/mbsync.1.en.html';
107 $xurls{'offlineimap(1)'} =
108 'https://manpages.debian.org/stable/offlineimap/offlineimap.1.en.html';
110 'https://spamassassin.apache.org/full/3.4.x/doc/spamc.html';
111 $xurls{'grok-pull'} =
112 'https://git.kernel.org/pub/scm/utils/grokmirror/grokmirror.git' .
113 '/tree/man/grok-pull.1.rst';
114 $xurls{'git-filter-repo(1)'} = 'https://github.com/newren/git-filter-repo'.
115 '/blob/master/Documentation/git-filter-repo.txt';
116 $xurls{'ssoma(1)'} = 'https://ssoma.public-inbox.org/ssoma.txt';
117 $xurls{'cgitrc(5)'} = 'https://git.zx2c4.com/cgit/tree/cgitrc.5.txt';
118 $xurls{'prove(1)'} = 'https://perldoc.perl.org/prove.html';
119 $xurls{'mbox(5)'} = 'https://manpages.debian.org/stable/mutt/mbox.5.en.html';
121 my $str = do { local $/; <STDIN> };
122 my ($title) = ($str =~ /\A([^\n]+)/);
123 if ($str =~ /^NAME\n\s+([^\n]+)/sm) {
124 # don't link to ourselves
126 if ($title =~ /([\w\.\-]+)/) {
130 $title = ascii_html($title);
131 my $l = PublicInbox::Linkify->new;
132 $str = $l->linkify_1($str);
133 $str = ascii_html($str);
135 # longest matches, first
136 my @keys = sort { length($b) <=> length($a) } keys %xurls;
137 my $xkeys = join('|', map { quotemeta } @keys);
138 $str =~ s,(?<![>\w_])($xkeys)(?!(?:[\w<\-]|\.html)),
139 qq(<a\nhref=").$xurls{$1}.qq(">$1).($2//'').'</a>',sge;
141 $str = $l->linkify_2($str);
143 print '<html><head>',
144 qq(<meta\nhttp-equiv="Content-Type"\ncontent="text/html; charset=utf-8"\n/>),
145 "<title>$title</title>",
146 "</head><body><pre>", $str , '</pre></body></html>';
149 # keep mtime on website consistent so clients can cache
150 if (-f STDIN && -f STDOUT) {
151 my @st = stat(STDIN);
152 utime($st[8], $st[9], \*STDOUT);