#!/usr/local/bin/perl # edit_mkisofs.cgi # Global (less common) mkisofs options require './burner-lib.pl'; $access{'global'} || &error($text{'mkiofs_ecannot'}); &ui_print_header(undef, $text{'mkisofs_title'}, ""); print "
\n"; print "\n"; print "\n"; print "
$text{'mkisofs_header'}
\n"; print "\n"; printf "\n", $config{'novers'} ? 'checked' : '', $text{'no'}; print "\n"; printf "\n", $config{'notrans'} ? '' : 'checked', $text{'no'}; print "\n"; printf "\n", $config{'nobak'} ? '' : 'checked', $text{'no'}; print "\n"; printf "\n", $config{'fsyms'} ? '' : 'checked', $text{'no'}; print "
$text{'mkisofs_novers'} %s\n", $config{'novers'} ? '' : 'checked', $text{'yes'}; printf " %s$text{'mkisofs_notrans'} %s\n", $config{'notrans'} ? 'checked' : '', $text{'yes'}; printf " %s
$text{'mkisofs_nobak'} %s\n", $config{'nobak'} ? 'checked' : '', $text{'yes'}; printf " %s$text{'mkisofs_fsyms'} %s\n", $config{'fsyms'} ? 'checked' : '', $text{'yes'}; printf " %s
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});