Revision 250a086b
Von Moritz Bunkus vor mehr als 17 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
1379 | 1379 |
if ($form->{media} ne 'email'); |
1380 | 1380 |
|
1381 | 1381 |
push @FORMAT, grep $_, |
1382 |
($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin)) ? |
|
1382 |
($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin) |
|
1383 |
&& !$options->{no_opendocument}) ? |
|
1383 | 1384 |
opthash("opendocument_pdf", $form->{DF}{"opendocument_pdf"}, $locale->text("PDF (OpenDocument/OASIS)")) : undef, |
1384 |
($latex_templates) ? ( |
|
1385 |
opthash("pdf", $form->{DF}{pdf}, $locale->text('PDF')), |
|
1386 |
opthash("postscript", $form->{DF}{postscript}, $locale->text('Postscript')) |
|
1387 |
) : undef, |
|
1388 |
opthash("html", $form->{DF}{html}, "HTML"), |
|
1389 |
($opendocument_templates) ? |
|
1385 |
($latex_templates) ? |
|
1386 |
opthash("pdf", $form->{DF}{pdf}, $locale->text('PDF')) : undef, |
|
1387 |
($latex_templates && !$options->{no_postscript}) ? |
|
1388 |
opthash("postscript", $form->{DF}{postscript}, $locale->text('Postscript')) : undef, |
|
1389 |
(!$options->{no_html}) ? |
|
1390 |
opthash("html", $form->{DF}{html}, "HTML") : undef, |
|
1391 |
($opendocument_templates && !$options->{no_opendocument}) ? |
|
1390 | 1392 |
opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef; |
1391 | 1393 |
|
1392 | 1394 |
push @LANGUAGE_ID, |
Auch abrufbar als: Unified diff
Mehr Optionen für print_options(), um bestimmte Einträge zu deaktivieren.