Changeset 1769 in MondoRescue for branches/stable/mondo-web


Ignore:
Timestamp:
Nov 6, 2007, 1:37:38 AM (16 years ago)
Author:
Bruno Cornec
Message:

Continue on configuration file items (compression)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo-web/mondo-web.pl

    r1671 r1769  
    7373);
    7474my @speed = sort {$a <=> $b} keys %speed;
     75my %suffix = (
     76        GZIP => 'gz',
     77        BZIP2 => 'bz2',
     78        LZO => 'lzo',
     79);
     80my @suffix = sort keys %suffix;
    7581my %comp = (
    7682        GZIP => 'gzip (average)',
     
    148154            -default=>$config->get("mondo_compression_level"),
    149155            -labels=>\%ratio);
     156    print "</TD><TD WIDTH=300>\n";
     157    print "Compression suffix: ",$cgi->popup_menu(-name=>'compsuffix',
     158            -values=>\@suffix,
     159            -default=>$config->get("mondo_compression_suffix"),
     160            -labels=>\%suffix);
    150161    print "</TD></TR></TABLE>\n";
    151162    print $cgi->hr;
Note: See TracChangeset for help on using the changeset viewer.