tazpanel view help.cgi @ rev 505

Update fr.po
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 12 13:17:58 2015 +0200 (2015-07-12)
parents 169f1ccfb613
children e4207d6f46b0
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=$(_ '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