| 1 |
#!/bin/bash |
| 2 |
######################################## |
| 3 |
# $Id: .pod2htmlrc,v 1.2 2003/01/27 09:23:09 jonen Exp $ |
| 4 |
######################################## |
| 5 |
# |
| 6 |
# $Log: .pod2htmlrc,v $ |
| 7 |
# Revision 1.2 2003/01/27 09:23:09 jonen |
| 8 |
# + added new documents |
| 9 |
# + added optional arguments for pod2html |
| 10 |
# |
| 11 |
# Revision 1.1 2003/01/25 09:02:59 jonen |
| 12 |
# + create new |
| 13 |
# |
| 14 |
# |
| 15 |
# |
| 16 |
######################################## |
| 17 |
# |
| 18 |
# simple userdefined pod2html |
| 19 |
# |
| 20 |
# ToDo: |
| 21 |
# o more abstract !! ;-) |
| 22 |
# |
| 23 |
|
| 24 |
pod2html --title "Cyrus Imapd v1 + PAM + Kerberos V mini-HowTo" \ |
| 25 |
--infile mini-howto-cyrus_imapd_v1-pam-kerberosV.pod \ |
| 26 |
--outfile mini-howto-cyrus_imapd_v1-pam-kerberosV.html \ |
| 27 |
--header \ |
| 28 |
--css http://netfrag.org/horde/css.php?app=chora \ |
| 29 |
--backlink "back to top" |
| 30 |
|
| 31 |
pod2html --title "howto setup apache + mod_ssl" \ |
| 32 |
--infile howto-setup-apache_mod-ssl.pod \ |
| 33 |
--outfile howto-setup-apache_mod-ssl.html \ |
| 34 |
--header \ |
| 35 |
--css http://netfrag.org/horde/css.php?app=chora \ |
| 36 |
--backlink "back to top" |
| 37 |
|
| 38 |
pod2html --title "trashcan under GNU/Linux with 'libtrash' mini-HowTo" \ |
| 39 |
--infile mini-howto_trashcan-under-Linux_libtrash.pod \ |
| 40 |
--outfile mini-howto_trashcan-under-Linux_libtrash.html \ |
| 41 |
--header \ |
| 42 |
--css http://netfrag.org/horde/css.php?app=chora \ |
| 43 |
--backlink "back to top" |
| 44 |
|
| 45 |
pod2html --title "Sendmail + TLS + Cyrus IMAP/SASL + LDAP + Kerberos V HowTo" \ |
| 46 |
--infile howto-sendmail_tls-imap_sasl-ldap-kerberosV.pod \ |
| 47 |
--outfile howto-sendmail_tls-imap_sasl-ldap-kerberosV.html \ |
| 48 |
--header \ |
| 49 |
--css http://netfrag.org/horde/css.php?app=chora \ |
| 50 |
--backlink "back to top" |
| 51 |
|
| 52 |
pod2html --title "Install Cyrus SASL v1" \ |
| 53 |
--infile install_cyrus_sasl_v1.pod \ |
| 54 |
--outfile install_cyrus_sasl_v1.html \ |
| 55 |
--header \ |
| 56 |
--css http://netfrag.org/horde/css.php?app=chora \ |
| 57 |
--backlink "back to top" |
| 58 |
|
| 59 |
|
| 60 |
|