#!/bin/sh # $Id$ # Do not edit! This file is automaticly generated by rrd-cgi.xsl . /srv/www/include/cgi-helper # set_debug=yes # Security check_rights "hwsupp" "view" # get some internal variables . /var/run/hwsupp.conf show_html_header "Tyan S5112" if [ -e /srv/www/include/rrd-common.inc ] then . /srv/www/include/rrd-common.inc if [ -e /srv/www/include/rrd-tyan-s5112.inc ] then . /srv/www/include/rrd-tyan-s5112.inc fi fi if [ -e /srv/www/include/hwmon-tyan-s5112.inc ] then . /srv/www/include/hwmon-tyan-s5112.inc fi if [ -e /srv/www/include/extra-dmidecode.inc ] then . /srv/www/include/extra-dmidecode.inc fi : ${FORM_action:=tyan_s5112_temp} if [ -e /srv/www/include/rrd-common.inc ] then : ${FORM_rrd_graphtime_tyan_s5112_temp:=$rrd_default_graphtime} : ${FORM_rrd_graphtime_tyan_s5112_voltage:=$rrd_default_graphtime} : ${FORM_rrd_graphtime_tyan_s5112_fanspeed:=$rrd_default_graphtime} eval local rrd_source_time='$FORM_rrd_graphtime_'$rrd_source : ${rrd_source_time:=$rrd_default_graphtime} fi action_list="" if [ -e /srv/www/include/rrd-common.inc ] then action_list="$action_list temp voltage fanspeed" fi action_list="$action_list hwmon" action_list="$action_list bios" tab_list="" for i in ${action_list} do case $i in temp) label=$(translate_label "${_HWSUPP_TEMP}") ;; voltage) label=$(translate_label "${_HWSUPP_VOLTAGE}") ;; fanspeed) label=$(translate_label "${_HWSUPP_FANSPEED}") ;; hwmon) label=$(translate_label "${_HWSUPP_HWMON}") ;; bios) label=$(translate_label "${_HWSUPP_DMI}") ;; esac if [ "$FORM_action" = "tyan_s5112_$i" ] then tab_list=`echo "$tab_list $label no"` else tab_list=`echo "$tab_list $label $myname?action=tyan_s5112_$i"` fi done show_tab_header $tab_list case $FORM_action in tyan_s5112_hwmon) hwmon_tyan_s5112 ;; tyan_s5112_bios) extra_dmidecode ;; *) rrd_open_tab_list $FORM_action rrd_render_graph $FORM_action rrd_close_tab_list ;; esac show_tab_footer show_html_footer # _oOo_