#!/usr/local/bin/perl # edit_dev.cgi # Display burner device options require './burner-lib.pl'; $access{'global'} || &error($text{'dev_ecannot'}); &ui_print_header(undef, $text{'dev_title'}, ""); print "
\n"; print "\n"; print "\n"; print "
$text{'dev_header'}
\n"; print "\n"; print "\n"; print "\n", $found ? '' : $config{'speed'}; print "\n"; printf "\n", $config{'extra'}; print "
$text{'dev_device'}
$text{'dev_speed'} \n"; foreach $s (1, 2, 4, 8, 16, 32, 48, undef) { printf "   %s\n", $s, $s eq $config{'speed'} ? 'checked' : '', $s ? $s.'x' : $text{'dev_other'}; $found++ if ($s eq $config{'speed'}); } printf "
$text{'dev_extra'}
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});