# suse-driver.pl # Functions for APS print filters, as used by SUSE @paper_sizes = ( [ 'a4', 'A4' ], [ 'a4dj', 'A4 inkjet' ], [ 'a3', 'A3' ], [ 'letter', 'US Letter' ], [ 'letterdj', 'US Letter inkjet' ], [ 'note', 'Note' ], [ 'legal', 'Legal' ], [ 'ledger', 'Ledger' ], [ 'a0', 'A0' ], [ 'a1', 'A1' ], [ 'a2', 'A2' ], [ 'a5', 'A5' ], [ 'a6', 'A6' ], [ 'a7', 'A7' ], [ 'a8', 'A8' ], [ 'a9', 'A9' ], [ 'a10', 'A10' ], [ 'b0', 'B0' ], [ 'b1', 'B1' ], [ 'b2', 'B2' ], [ 'b3', 'B3' ], [ 'b4', 'B4' ], [ 'b5', 'B5' ], [ 'archE', 'archE' ], [ 'archD', 'archD' ], [ 'archC', 'archC' ], [ 'archB', 'archB' ], [ 'archA', 'archA' ], [ 'flsa', 'flsa' ], [ 'flse', 'flse' ], [ 'halfletter', 'Half Letter' ], [ '11x17', '11x17' ] ); $apsfilter_dir = "/var/lib/apsfilter/bin"; $apsfilter_prog = "/var/lib/apsfilter/apsfilter"; $apsfilter_config = "/var/lib/apsfilter/template/apsfilterrc.gs_device_name"; $apsfilter_base = "/etc/apsfilterrc"; $driver_dir = "/etc/gs.upp"; $webmin_windows_driver = 1; open(DRIVERS, "<$module_root_directory/drivers"); while(<DRIVERS>) { if (/^(\S+)\s+(.*)/) { $driver{$1} = $2 if (!$driver{$1}); } } close(DRIVERS); open(STP, "<stp"); while(<STP>) { if (/^(\S+)\s+(.*)/) { $stp{$1} = $2 if (!$stp{$1}); } } close(STP); foreach $u (&list_uniprint()) { $u->[1] =~ s/,.*$//; $driver{"$u->[0].upp"} = $u->[1]; } # is_windows_driver(path, %driver) # Returns a driver structure if some path is a windows driver sub is_windows_driver { return &is_webmin_windows_driver(@_); } # is_driver(path, &printer) # Returns a structure containing the details of a driver sub is_driver { if (!$_[0]) { return { 'mode' => 0, 'desc' => "$text{'suse_none'}" }; } elsif ($_[0] =~ /$apsfilter_dir\/([^-]+)-([^-]+)-([^-]+)-([^-]+)-([^-]+)$/) { # Looks like an APS driver from suse (old style) local $rv = { 'mode' => 1, 'device' => $1, 'paper' => $2, 'method' => $3, 'colour' => $4, 'res' => $5 }; local $desc = $driver{$rv->{'device'}} ? $driver{$rv->{'device'}} : $rv->{'device'} =~ /^PS_/ ? "Postscript" : $rv->{'device'}; $rv->{'desc'} = $rv->{'res'} ? "$desc ($rv->{'res'} DPI)" : $desc; return $rv; } #elsif ($_[0] =~ /$apsfilter_dir\/([^-]+)--([^-]+)-([^-]+)$/ && # -r "$driver_dir/$1") { # # Looks like a new-style APS suse driver # local $rv = { 'mode' => 3, # 'method' => $2 }; # open(GS, "$driver_dir/$1"); # while(<GS>) { # s/\r|\n//g; # if (/^-sDEVICE=(\S+)/) { $rv->{'device'} = $1; } # elsif (/^-sPAPERSIZE=(\S+)/) { $rv->{'paper'} = $1; } # elsif (/^-sCOLOR=(\S+)/) { $rv->{'colour'} = $1; } # elsif (/^-r(\S+)/) { $rv->{'res'} = $1; } # elsif (/^-supModel="(.*)"/) { $rv->{'desc'} = $1; } # elsif (/^-sModel="(.*)"/) { $rv->{'model'} = $1; } # elsif (/^\@(\S+\.upp)/) { $rv->{'device'} = $1; } # else { push(@{$rv->{'extra'}}, $_); } # } # close(GS); # return $rv; # } elsif ($_[0] =~ /$apsfilter_dir\/([^-]+)-([^-]+)-([^-]+)$/) { # Null APS driver? return { 'mode' => 0, 'desc' => 'None' }; } else { # Some other kind of driver return { 'mode' => 2, 'file' => $_[0], 'desc' => $_[0] }; } } # create_windows_driver(&printer, &driver) # Creates a new windows printer driver sub create_windows_driver { return &create_webmin_windows_driver(@_); } # create_driver(&printer, &driver) # Creates a new local printer driver and returns the path sub create_driver { local ($prn, $drv) = @_; if ($drv->{'mode'} == 0) { return undef; } elsif ($drv->{'mode'} == 2) { return $drv->{'file'}; } else { local $device; if ($drv->{'device'} eq 'ps') { $device = "PS_$drv->{'res'}dpi"; } else { $device = $drv->{'device'}; } local $aps = "$apsfilter_dir/$device-$drv->{'paper'}-". "$drv->{'method'}-$drv->{'colour'}-$drv->{'res'}"; &lock_file($aps); symlink($apsfilter_prog, $aps); &unlock_file($aps); if (!-r "$apsfilter_base.$device") { &lock_file("$apsfilter_base.$device"); local $conf = &read_file_contents($apsfilter_config); $conf =~ s/<gs_device_name>/$device/g; &open_tempfile(CONF, ">$apsfilter_base.$device"); &print_tempfile(CONF, $conf); &close_tempfile(CONF); &unlock_file("$apsfilter_base.$device"); } return $aps; } } # delete_driver(name) sub delete_driver { } # driver_input(&printer, &driver) sub driver_input { local ($prn, $drv) = @_; local ($found, $d); printf "<tr> <td><input type=radio name=mode value=0 %s> %s</td>\n", $drv->{'mode'} == 0 ? "checked" : "", $text{'suse_none'}; print "<td>($text{'suse_nonemsg'})</td> </tr>\n"; printf "<tr> <td><input type=radio name=mode value=2 %s> %s</td>\n", $drv->{'mode'} == 2 ? "checked" : "", $text{'suse_prog'}; printf "<td><input name=iface value=\"%s\" size=35></td> </tr>\n", $drv->{'mode'} == 2 ? $drv->{'file'} : ""; if ($drv->{'mode'} == 2 || 1) { # Show input for old-style suse printer printf "<tr> <td valign=top><input type=radio name=mode value=1 %s>\n", $drv->{'mode'} == 1 ? "checked" : ""; print "$text{'suse_driver'}</td> <td><table width=100%>"; print "<tr> <td valign=top><b>$text{'suse_printer'}</b></td>\n"; print "<td colspan=3><select size=10 name=device>\n"; printf "<option value=ps %s>Postscript</option>\n", $drv->{'device'} =~ /^PS_/ ? 'selected' : ''; $found++ if ($drv->{'device'} =~ /^PS_/); foreach $d (&list_uniprint()) { local $u = "$d->[0].upp"; printf "<option value=%s %s>%s</option>\n", $u, $drv->{'device'} eq $u ? 'selected' : '', $d->[1]; $found++ if ($drv->{'device'} eq $u); } local $out = &backquote_command("$config{'gs_path'} -help 2>&1", 1); $out =~ /Available devices:\n((\s+.*\n)+)/i; foreach $d (split(/\s+/, $1)) { if ($driver{$d}) { printf "<option value=%s %s>%s</option>\n", $d, $drv->{'device'} eq $d ? 'selected' : '', $driver{$d}; $found++ if ($drv->{'device'} eq $d); } } print "<option selected value=$drv->{'device'}>$drv->{'device'}</option>\n" if (!$found && $drv->{'device'}); print "</select></td> </tr>\n"; print "<tr> <td><b>$text{'suse_res'}</b></td>\n"; print "<td><input name=res size=8 value='$drv->{'res'}'></td>\n"; print "<td><b>$text{'suse_colour'}</b></td>\n"; printf "<td><input name=colour type=radio value=color %s> %s\n", $drv->{'colour'} eq 'mono' ? '' : 'checked', $text{'yes'}; printf "<input name=colour type=radio value=color %s> %s</td> </tr>\n", $drv->{'colour'} eq 'mono' ? 'checked' : '', $text{'no'}; print "<tr> <td><b>$text{'suse_paper'}</b></td>\n"; print "<td><select name=paper>\n"; foreach $p (@paper_sizes) { printf "<option value=%s %s>%s</option>\n", $p->[0], $drv->{'paper'} eq $p->[0] ? 'selected' : '', $p->[1]; } print "</select></td>\n"; print "<td><b>$text{'suse_method'}</b></td>\n"; printf "<td><input type=radio name=method value=auto %s> %s\n", $drv->{'method'} eq 'ascii' ? '' : 'checked', $text{'suse_auto'}; printf "<input type=radio name=method value=ascii %s> %s</td> </tr>\n", $drv->{'method'} eq 'ascii' ? 'checked' : '', $text{'suse_ascii'}; print "</table></td> </tr>\n"; } else { # Show input for new-style suse printer (NOT DONE YET!) printf "<tr> <td valign=top><input type=radio name=mode value=3 %s>\n", $drv->{'mode'} == 3 ? "checked" : ""; print "$text{'suse_yast2'}</td> <td><table width=100%>"; print "<tr> <td valign=top><b>$text{'suse_printer'}</b></td>\n"; print "<td colspan=3><select size=10 name=device>\n"; printf "<option value=ps %s>Postscript</option>\n", $drv->{'device'} eq 'PS' ? 'selected' : ''; $found++ if ($drv->{'device'} eq 'PS'); local $out = &backquote_command("$config{'gs_path'} -help 2>&1", 1); $out =~ /Available devices:\n((\s+.*\n)+)/i; foreach $d (split(/\s+/, $1)) { if ($d ne 'stp' && $driver{$d}) { printf "<option value=%s %s>%s</option>\n", $d, $drv->{'device'} eq $d ? 'selected' : '', $driver{$d}; $found++ if ($drv->{'device'} eq $d); } } foreach $d (&list_uniprint()) { local $u = "$d->[0].upp"; printf "<option value=%s %s>%s</option>\n", $u, $drv->{'device'} eq $u ? 'selected' : '', $d->[1]; $found++ if ($drv->{'device'} eq $u); } foreach $s (sort { $a cmp $b } keys %stp) { printf "<option value=%s.stp %s>%s</option>\n", $s, $drv->{'device'} eq 'stp' && $drv->{'model'} eq $s ? 'selected' : '', $stp{$s}; $found++ if ($drv->{'device'} eq 'stp' && $drv->{'model'} eq $s); } print "<option selected value=$drv->{'device'}>$drv->{'device'}</option>\n" if (!$found && $drv->{'device'}); print "</select></td> </tr>\n"; print "<tr> <td><b>$text{'suse_colour'}</b></td>\n"; printf "<td><input name=colour type=radio value=color %s> %s\n", $drv->{'colour'} eq 'mono' ? '' : 'checked', $text{'yes'}; printf "<input name=colour type=radio value=color %s> %s</td>\n", $drv->{'colour'} eq 'mono' ? 'checked' : '', $text{'no'}; print "<td><b>$text{'suse_paper'}</b></td>\n"; print "<td><select name=paper>\n"; foreach $p (@paper_sizes) { printf "<option value=%s %s>%s</option>\n", $p->[0], $drv->{'paper'} eq $p->[0] ? 'selected' : '', $p->[1]; } print "</select></td> </tr>\n"; print "<tr> <td><b>$text{'suse_res'}</b></td>\n"; printf "<td><input type=radio name=res_def value=1 %s> %s\n", $drv->{'res'} ? '' : 'checked', $text{'suse_auto'}; printf "<input type=radio name=res_def value=0 %s>\n", $drv->{'res'} ? 'checked' : ''; print "<input name=res size=8 value='$drv->{'res'}'></td>\n"; print "<td><b>$text{'suse_method'}</b></td>\n"; print "<td><select name=method>\n"; foreach $m ('auto', 'ascii', 'raw') { printf "<option value=%s %s>%s</option>\n", $m, $drv->{'method'} eq $m ? 'selected' : '', $text{"suse_$m"}; } print "</select></td> </tr>\n"; print "<tr> <td><b>$text{'suse_extra'}</b></td>\n"; print "<td colspan=3><input name=extra size=50 value='", join(" ", @{$drv->{'extra'}}),"'></td> </tr>\n"; print "</table></td> </tr>\n"; } } # parse_driver() # Parse driver selection from %in and return a driver structure sub parse_driver { if ($in{'mode'} == 0) { return { 'mode' => 0 }; } elsif ($in{'mode'} == 2) { (-x $in{'iface'}) || &error(&text('suse_eprog', $in{'iface'})); return { 'mode' => 2, 'file' => $in{'iface'} }; } elsif ($in{'mode'} == 3) { # New suse printer (NOT DONE YET!) # All the other odd files created by yast2 need to be supported $in{'device'} || &error($text{'suse_edriver'}); $in{'res_def'} || $in{'res'} =~ /^\d+$/ || $in{'res'} =~ /^\d+x\d+$/ || &error($text{'suse_eres'}); } elsif ($in{'mode'} == 1) { # Old-style suse printer $in{'device'} || &error($text{'suse_edriver'}); $in{'res'} =~ /^\d+$/ || &error(&text('suse_eres', $in{'res'})); return { 'mode' => 1, 'device' => $in{'device'}, 'paper' => $in{'paper'}, 'method' => $in{'method'}, 'colour' => $in{'colour'}, 'res' => $in{'res'} }; } } 1;
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 1.16 KB | 0644 |
|
acl_security.pl | File | 4.4 KB | 0755 |
|
aix-lib.pl | File | 9.45 KB | 0755 |
|
ascii.txt | File | 4.19 KB | 0644 |
|
base_coas_driver | File | 560 B | 0755 |
|
bw.fig | File | 2.75 KB | 0644 |
|
bw.ps | File | 6.46 KB | 0644 |
|
caldera-driver.pl | File | 12.31 KB | 0755 |
|
cancel_all.cgi | File | 535 B | 0755 |
|
catalog.devices | File | 12.34 KB | 0644 |
|
cgi_args.pl | File | 284 B | 0755 |
|
cluster.cgi | File | 2.06 KB | 0755 |
|
cluster_add.cgi | File | 2.13 KB | 0755 |
|
cluster_delete.cgi | File | 529 B | 0755 |
|
colour.fig | File | 2.91 KB | 0644 |
|
colour.ps | File | 6.63 KB | 0644 |
|
config-AlmaLinux-7.0-ALL | File | 323 B | 0644 |
|
config-Amazon-Linux-2-ALL | File | 323 B | 0644 |
|
config-CentOS-Linux-7.0-ALL | File | 323 B | 0644 |
|
config-CentOS-Stream-Linux-8.0-ALL | File | 323 B | 0644 |
|
config-CloudLinux-8.0-ALL | File | 323 B | 0644 |
|
config-Oracle-Linux-8.0-ALL | File | 323 B | 0644 |
|
config-Redhat-Enterprise-Linux-7.0-ALL | File | 323 B | 0644 |
|
config-Rocky-Linux-7.0-ALL | File | 323 B | 0644 |
|
config-Scientific-Linux-7.0-ALL | File | 323 B | 0644 |
|
config-aix | File | 281 B | 0644 |
|
config-coherent-linux | File | 323 B | 0644 |
|
config-corel-linux | File | 228 B | 0644 |
|
config-debian-linux | File | 228 B | 0644 |
|
config-debian-linux-3.1-3.9 | File | 327 B | 0644 |
|
config-debian-linux-4.0-ALL | File | 333 B | 0644 |
|
config-freebsd | File | 230 B | 0644 |
|
config-generic-linux | File | 228 B | 0644 |
|
config-gentoo-linux | File | 248 B | 0644 |
|
config-hpux | File | 323 B | 0644 |
|
config-irix | File | 213 B | 0644 |
|
config-macos | File | 230 B | 0644 |
|
config-mandrake-linux | File | 245 B | 0644 |
|
config-mandrake-linux-8.0-ALL | File | 276 B | 0644 |
|
config-msc-linux | File | 228 B | 0644 |
|
config-netbsd | File | 230 B | 0644 |
|
config-open-linux | File | 309 B | 0644 |
|
config-open-linux-3.1e | File | 239 B | 0644 |
|
config-openSUSE-Linux-15.0-ALL | File | 318 B | 0644 |
|
config-openbsd | File | 230 B | 0644 |
|
config-openmamba-linux | File | 229 B | 0644 |
|
config-pardus-linux | File | 228 B | 0644 |
|
config-redhat-linux | File | 228 B | 0644 |
|
config-redhat-linux-24.0-ALL | File | 339 B | 0644 |
|
config-redhat-linux-7.0 | File | 283 B | 0644 |
|
config-redhat-linux-7.1 | File | 286 B | 0644 |
|
config-redhat-linux-7.2-8.1 | File | 394 B | 0644 |
|
config-redhat-linux-9.0-23.0 | File | 337 B | 0644 |
|
config-slackware-linux | File | 228 B | 0644 |
|
config-slackware-linux-8.1-ALL | File | 246 B | 0644 |
|
config-solaris | File | 304 B | 0644 |
|
config-solaris-10-ALL | File | 330 B | 0644 |
|
config-solaris-9 | File | 296 B | 0644 |
|
config-suse-linux | File | 226 B | 0644 |
|
config-suse-linux-8.2-ALL | File | 322 B | 0644 |
|
config-trustix-linux | File | 313 B | 0644 |
|
config-turbo-linux | File | 228 B | 0644 |
|
config-united-linux | File | 322 B | 0644 |
|
config-unixware | File | 302 B | 0644 |
|
config.info | File | 1.31 KB | 0644 |
|
config.info.ca | File | 1.53 KB | 0644 |
|
config.info.cs | File | 1.25 KB | 0644 |
|
config.info.de | File | 1.43 KB | 0644 |
|
config.info.es | File | 1.17 KB | 0644 |
|
config.info.fr | File | 1.63 KB | 0644 |
|
config.info.hu | File | 707 B | 0644 |
|
config.info.ja | File | 823 B | 0644 |
|
config.info.nl | File | 1.41 KB | 0644 |
|
config.info.no | File | 1.37 KB | 0644 |
|
config.info.pl | File | 1.45 KB | 0644 |
|
config.info.pt_BR | File | 1.58 KB | 0644 |
|
config.info.ru | File | 1.74 KB | 0644 |
|
config.info.sv | File | 651 B | 0644 |
|
config.info.tr | File | 1.39 KB | 0644 |
|
config.info.uk | File | 1.81 KB | 0644 |
|
config.info.zh | File | 573 B | 0644 |
|
config.info.zh_TW | File | 539 B | 0644 |
|
cups-driver.pl | File | 6.37 KB | 0755 |
|
cups-lib.pl | File | 8.67 KB | 0755 |
|
defaultacl | File | 73 B | 0644 |
|
delete_printer.cgi | File | 690 B | 0755 |
|
delete_printers.cgi | File | 839 B | 0755 |
|
drivers | File | 18.34 KB | 0644 |
|
edit_printer.cgi | File | 10.08 KB | 0755 |
|
freebsd-lib.pl | File | 7.26 KB | 0755 |
|
hpux-driver.pl | File | 3.13 KB | 0755 |
|
hpux-lib.pl | File | 9.83 KB | 0755 |
|
index.cgi | File | 5.83 KB | 0755 |
|
irix-driver.pl | File | 3.13 KB | 0755 |
|
irix-lib.pl | File | 10.68 KB | 0755 |
|
linux-lib.pl | File | 8.97 KB | 0755 |
|
list_jobs.cgi | File | 2.25 KB | 0755 |
|
log_parser.pl | File | 1021 B | 0755 |
|
lpadmin-lib.pl | File | 19.89 KB | 0755 |
|
lprng-lib.pl | File | 10.26 KB | 0755 |
|
module.info | File | 494 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 159 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 223 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 290 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 306 B | 0644 |
|
module.info.ca | File | 167 B | 0644 |
|
module.info.ca.auto | File | 16 B | 0644 |
|
module.info.cs | File | 31 B | 0644 |
|
module.info.cs.auto | File | 155 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 168 B | 0644 |
|
module.info.de | File | 148 B | 0644 |
|
module.info.de.auto | File | 16 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 362 B | 0644 |
|
module.info.es | File | 38 B | 0644 |
|
module.info.es.auto | File | 157 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 217 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 246 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 168 B | 0644 |
|
module.info.fr | File | 39 B | 0644 |
|
module.info.fr.auto | File | 176 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 205 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 188 B | 0644 |
|
module.info.hu | File | 19 B | 0644 |
|
module.info.hu.auto | File | 173 B | 0644 |
|
module.info.it | File | 0 B | 0644 |
|
module.info.it.auto | File | 177 B | 0644 |
|
module.info.ja | File | 27 B | 0644 |
|
module.info.ja.auto | File | 213 B | 0644 |
|
module.info.ko | File | 25 B | 0644 |
|
module.info.ko.auto | File | 176 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 219 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 189 B | 0644 |
|
module.info.ms | File | 152 B | 0644 |
|
module.info.ms.auto | File | 16 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 196 B | 0644 |
|
module.info.nl | File | 33 B | 0644 |
|
module.info.nl.auto | File | 133 B | 0644 |
|
module.info.no | File | 31 B | 0644 |
|
module.info.no.auto | File | 137 B | 0644 |
|
module.info.pl | File | 160 B | 0644 |
|
module.info.pl.auto | File | 16 B | 0644 |
|
module.info.pt | File | 39 B | 0644 |
|
module.info.pt.auto | File | 149 B | 0644 |
|
module.info.pt_BR | File | 42 B | 0644 |
|
module.info.pt_BR.auto | File | 155 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 199 B | 0644 |
|
module.info.ru | File | 25 B | 0644 |
|
module.info.ru.auto | File | 245 B | 0644 |
|
module.info.sk | File | 0 B | 0644 |
|
module.info.sk.auto | File | 184 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 192 B | 0644 |
|
module.info.sv | File | 30 B | 0644 |
|
module.info.sv.auto | File | 141 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 393 B | 0644 |
|
module.info.tr | File | 27 B | 0644 |
|
module.info.tr.auto | File | 166 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 281 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 304 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 189 B | 0644 |
|
module.info.zh | File | 24 B | 0644 |
|
module.info.zh.auto | File | 136 B | 0644 |
|
module.info.zh_TW | File | 30 B | 0644 |
|
module.info.zh_TW.auto | File | 142 B | 0644 |
|
old-caldera-driver.pl | File | 9.74 KB | 0755 |
|
openbsd-lib.pl | File | 7.26 KB | 0755 |
|
prefs.info | File | 40 B | 0644 |
|
printconf-driver.pl | File | 9.52 KB | 0755 |
|
rbac-mapping | File | 248 B | 0644 |
|
redhat-driver.pl | File | 12.42 KB | 0755 |
|
restart.cgi | File | 301 B | 0755 |
|
save_printer.cgi | File | 5.85 KB | 0755 |
|
solaris-driver.pl | File | 4.03 KB | 0755 |
|
solaris-lib.pl | File | 12.17 KB | 0755 |
|
sortdrivers-by-drv.pl | File | 222 B | 0755 |
|
sortdrivers.pl | File | 242 B | 0755 |
|
start.cgi | File | 377 B | 0755 |
|
stop.cgi | File | 374 B | 0755 |
|
stp | File | 2.45 KB | 0644 |
|
suse-driver.pl | File | 10.62 KB | 0755 |
|
test_form.cgi | File | 887 B | 0755 |
|
test_print.cgi | File | 1.19 KB | 0755 |
|
unixware-lib.pl | File | 7.81 KB | 0755 |
|
view_job.cgi | File | 909 B | 0755 |
|
webmin-driver.pl | File | 1.04 KB | 0755 |
|