117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
sideboxUsed = 0;
}
/*
** append a reference to command line to a web page
** and generate the footer
*/
void style_footer_cmdref( const char * const zCmd, const char * const zSubCmd ){
@ <div class="cmdref">See also command line help:
@ <a href="help?cmd=%s(zCmd)">%s(zCmd)</a> %s(zSubCmd?zSubCmd:"")
@ </div>
style_footer();
}
/*
** Draw the footer at the bottom of the page.
*/
|
|
|
>
>
|
>
>
>
>
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
sideboxUsed = 0;
}
/*
** append a reference to command line to a web page
** and generate the footer
*/
void style_footer_cmdref( const char * const zCmd, const char * const zAddOn ){
@ <div class="cmdref">
if( zCmd ){
@ See also command line help:
@ <a href="help?cmd=%s(zCmd)">%s(zCmd)</a>
}
if( zAddOn ){
@ %s(zAddOn)
}
@ </div>
style_footer();
}
/*
** Draw the footer at the bottom of the page.
*/
|