tazpanel view help.cgi @ rev 486

libtazpanel: show carrier
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 12 13:24:28 2015 +0200 (2015-05-12)
parents 299f204b8f1f
children 3117717c007d
line source
1 #!/bin/sh
2 #
3 # help.cgi - Display TazPanel doc and README.
4 #
5 # Copyright (C) 2011-2015 SliTaz GNU/Linux - BSD License
6 #
8 # Common functions from libtazpanel
9 . lib/libtazpanel
10 get_config
11 header
14 # ENTER will search but user may search for a button, so put one.
16 search_form() {
17 cat <<EOT
18 <form class="search"><!--
19 --><input type="search" name="manual" results="5" autosave="pkgsearch" autocomplete="on"><!--
20 --><button type="submit">$(_ 'Manual')</button><!--
21 --></form>
22 EOT
23 }
26 # Cat translated help content
28 TITLE=$(_ 'TazPanel - Help &amp; Doc')
30 xhtml_header
31 search_form
33 if [ -n "$(GET manual)" ]; then
34 echo "<pre>"
35 man $(GET manual)
36 echo "</pre>"
37 else
38 cat doc/tazpanel.html
39 cat $PANEL/README.html
40 fi
42 xhtml_footer
43 exit 0