#!/usr/bin/perl -w# transkript all POD from a Perl modules folder in a folder of HTML manuals, an index.html is also generated# 2003-04-23 Felipe Wettstein# 2004-03-08 english comments, minor improvementsusestrict;my$pod_folder_root='/Library/Perl/5.8.1/Bio';# root location of PODs (modules folder), a global variablemy$pod_folder_relative='';# relative location of PODs, what comes after $pod_folder_rootmy$html_folder_apache='';# documents root (for apache), leave blank for relative pathmy$html_folder_fs_root='/Users/Felipe/Sites/Bio';# documents root for file system (absolut)# it looks as if the 'bioperl' PODs need a 'Bio' foldermy$html_folder_fs_relative='';# relative path, above $html_folder_fs_rootmy@shell_lines;# lots of command linesmy$shell;# single command line: pod2html ...my$title;# title of module (will become HTML title tag)my@index;# contains index of all HTML files, will become 'index.html'my$htmlroot='';# pod2html optionif($html_folder_apache) {$htmlroot=" --htmlroot=".$html_folder_apache;}# create dir, where files will be stored if it does not existif(!-e$html_folder_fs_root) {print"folder $html_folder_fs_root does not exist. will be made..\n";mkdir$html_folder_fs_rootorprint"cannot make folder $html_folder_fs_root. this program can only make one folder at a time.\n";}my$level=1;# directory level -> level of header foramtting (<h1>, <h2>, <h3...)print"\nindex ...\n";find_all($pod_folder_relative,$html_folder_fs_relative,$level);chdir$html_folder_fs_root;# pod2html writes a temp file -> change to writable directory# create 'index.html' in folder '$html_folder_fs_root'open(INDEX,">index.html") orprint"cannot write index.html: $!";printINDEX<<"INDEX_HTML";<!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>indexof$html_folder_apache/Bio</title>/><LINK REL="stylesheet"TYPE="text/css"HREF="../b/pod2html.css"></head>INDEX_HTML foreach (@index) {$_ =~ s/\/\//\//g;# remove double '/' (come up when $html_folder_fs_relative is empty)$_=~s/href\=\"\//href\=\"/g;# make links relative (remove leading '/' in link)$_=~s/(\d\>)\//$1/ig;# remove leading '/' in headerprintINDEX"$_\n";}printINDEX"\n