diff options
author | TingPing <tingping@tingping.se> | 2014-01-20 01:14:10 -0500 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-01-20 01:14:10 -0500 |
commit | 681e14b3b823c3e700812b19c1f561e6370df0c4 (patch) | |
tree | 03034d829ad0b945bb2203de7383cba0cfa0ff8a /plugins/perl/generate_html | |
parent | 38cbabea026fe47d84da156772f5a9a97bd401f5 (diff) |
Remove unused perl files
- old example scripts - outdated docs - mingw build script
Diffstat (limited to 'plugins/perl/generate_html')
-rw-r--r-- | plugins/perl/generate_html | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/plugins/perl/generate_html b/plugins/perl/generate_html deleted file mode 100644 index c144ce7e..00000000 --- a/plugins/perl/generate_html +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env perl -use strict; -use warnings; -use File::Basename qw(dirname); - -sub __DIR__ { - return dirname +(caller 0)[1]; -} - -# this must go before use Pod::Html to use our private copy -use lib __DIR__ . '/lib'; -use Pod::Html; - -chdir( __DIR__ ) or die $!; -pod2html( -# "pod2html", - "--header", - "--infile=lib/Xchat.pod", - "--outfile=xchat2-perl.html", -); - -#system( qw(tidy -m -i -xml -utf8 -quiet xchat2-perl.html) ); -unlink( "pod2htmd.tmp" ); -unlink( "pod2htmi.tmp" ); - -exec( "./syntax_highlight", "xchat2-perl.html" ) - or die $!; |