tazpanel view help.cgi @ rev 419

Bunch of changes. Development in progress, please note it have few known bugs.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Mar 24 03:39:08 2015 +0200 (2015-03-24)
parents 106b85c1951c
children 169f1ccfb613
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">$(gettext 'Manual')</button><!--
21 --></form>
22 EOT
23 }
26 # Cat translated help content
28 TITLE=$(gettext '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