Artifact daac12e0fd477668286d6e06ebbe628c173877da:
- Executable file build/build_web_manpages — part of check-in [8e0181d70f] at 2006-12-17 19:40:53 on branch trunk — libconfig 0.2.1 Updated typos in man pages, made "SEE ALSO" more consistent Added manpage formatting for new man pages, added lc_handle_type man page (user: rkeene, size: 508) [annotate] [blame] [check-ins using]
#! /bin/bash if [ ! -f libconfig.3 ]; then cd .. fi if [ ! -f libconfig.3 ]; then echo 'Could not find libconfig.3, aborting.' >&2 exit 1 fi for file in lc_cleanup lc_geterrno lc_geterrstr lc_seterrstr lc_process lc_process_file lc_register_callback lc_register_var libconfig lc_handle_type; do man2html -H "REPLACE" -M "/ME" < ${file}.3 | grep -iv '^Content-Type:' | sed 's@"http://REPLACE/ME?\([0-9]*\)+\([^"]*\)"@"\2.htm"@;s@http://REPLACE/ME@@g' > /web/rkeene/docs/oss/libconfig/${file}.htm done