Revision 232d7868
Von Bernd Bleßmann vor mehr als 9 Jahren hinzugefügt
SL/Template/HTML.pm | ||
---|---|---|
$psfile .= ".ps";
|
||
}
|
||
|
||
system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} > $psfile");
|
||
if (system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} > $psfile") == -1) {
|
||
die "system call to $::lx_office_conf{applications}->{html2ps} failed: $!";
|
||
}
|
||
if ($?) {
|
||
$self->{"error"} = $form->cleanup($::lx_office_conf{applications}->{html2ps});
|
||
return 0;
|
||
... | ... | |
$pdffile .= ".pdf";
|
||
}
|
||
|
||
system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} | ps2pdf - $pdffile");
|
||
if (system($::lx_office_conf{applications}->{html2ps} . " -f html2ps-config < $form->{tmpfile} | ps2pdf - $pdffile") == -1) {
|
||
die "system call to $::lx_office_conf{applications}->{html2ps} failed: $!";
|
||
}
|
||
if ($?) {
|
||
$self->{"error"} = $form->cleanup($::lx_office_conf{applications}->{html2ps});
|
||
return 0;
|
Auch abrufbar als: Unified diff
Rückgabewert von system-Aufrufen prüfen und ggf. Fehler ausgeben.