# -*- tcl -*- # rules/manpage-html # # (c) 2001 Andreas Kupries # # [expand] definitions to convert a tcl based manpage definition into # a manpage based upon HTML markup. Additional definition files allow # the conversion into nroff and XML. # # This conversion is for standalone manpages ... # ################################################################ proc here {} [list return [file dirname [info script]]] source [file join [here] manpage.api] ; # api, defines all required commands with errors. source [file join [here] formatting] ; # HTML basic formatting proc bgcolor {} {return ""} proc border {} {return 0} # Called before the first pass proc init_hook {} {setpasses 2} # Called before the first output. proc begin_hook {} { # Reset the syn flag global state set state(syn) 0 set state(req) 0 return } # Called after the last output. proc end_hook {} {} ################################################################ ## Backend for *roff markup proc manpage_begin {command section version module shortdesc description} { set hdr "" append hdr "$command - $shortdesc " append hdr "[ht_comment {}]\n" append hdr "[ht_comment {Copyright (c) 2000 Andreas Kupries}]\n" append hdr "[ht_comment {All right reserved}]\n" append hdr "[ht_comment {}]\n" append hdr "[ht_comment "CVS: \$Id\$ $command.$section"]\n" append hdr "[ht_comment {}]\n" append hdr "

[string trimleft $command :]($section) $version $module \"$shortdesc\"

\n" append hdr "[section NAME]\n" append hdr "[para] $command - $description" return $hdr } proc manpage_end {} {return } proc section {name} {return "

$name

"} proc para {} {return

} global state array set state {req 0 syn 0 call {}} proc require {pkg {version {}}} { global state set state(req) 1 set result "[x_synopsis]package require $pkg" if {$version != {}} { append result " $version" } append result "
" return $result } proc call {cmd args} { global state if {[exppass] == 1} { append state(call) "[trtop][td]$cmd [join $args " "]\n" } return "[lst_item "$cmd [join $args " "]"]\n" } proc description {} { global state set result "" if {$state(call) != {}} { append result [x_synopsis] if {$state(req)} {append result
} proc bgcolor {} {return lightyellow} append result [btable][tr][td][table]$state(call)\n proc bgcolor {} {return ""} } append result [section DESCRIPTION] return $result } proc x_synopsis {} { global state if {!$state(syn)} { set state(syn) 1 return [section SYNOPSIS]\n } else { return "" } } ################################################################ global list_state array set list_state {level -1} proc list_begin {what} { global list_state switch -exact -- $what { enum {set result

    } bullet {set result
} bullet {set result } definitions {set result } } return $result } proc lst_item {text} {return
$text
} proc bullet {} {return
  • } proc enum {} {return
  • } ################################################################ proc see_also {args} {return "[section {SEE ALSO}]\n[join $args ", "]"} proc keywords {args} {return "[section KEYWORDS]\n[join $args ", "]"} proc nl {} {return
    } proc arg {text} {return $text} proc cmd {text} {return $text} proc emph {text} {return $text} proc strong {text} {return $text} proc opt {text} {return ?$text?} ################################################################ # HTML specific commands proc ht_comment {text} {return ""} ################################################################ proc setx {v string} { upvar $v _ set _ $string return } proc appendx {v string} { upvar $v _ append _ $string return } ################################################################