Revision 87dbaf3c
Von Moritz Bunkus vor fast 17 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
1023 | 1023 |
opthash("screen", $form->{OP}{screen}, $locale->text('Screen')), |
1024 | 1024 |
(scalar @{ $form->{printers} } && $latex_templates) ? |
1025 | 1025 |
opthash("printer", $form->{OP}{printer}, $locale->text('Printer')) : undef, |
1026 |
($latex_templates && !$options->{no_queue}) ?
|
|
1026 |
($latex_templates && !$options{no_queue}) ? |
|
1027 | 1027 |
opthash("queue", $form->{OP}{queue}, $locale->text('Queue')) : undef |
1028 | 1028 |
if ($form->{media} ne 'email'); |
1029 | 1029 |
|
1030 | 1030 |
push @FORMAT, grep $_, |
1031 | 1031 |
($opendocument_templates && $openofficeorg_writer_bin && $xvfb_bin && (-x $openofficeorg_writer_bin) && (-x $xvfb_bin) |
1032 |
&& !$options->{no_opendocument_pdf}) ?
|
|
1032 |
&& !$options{no_opendocument_pdf}) ? |
|
1033 | 1033 |
opthash("opendocument_pdf", $form->{DF}{"opendocument_pdf"}, $locale->text("PDF (OpenDocument/OASIS)")) : undef, |
1034 | 1034 |
($latex_templates) ? |
1035 | 1035 |
opthash("pdf", $form->{DF}{pdf}, $locale->text('PDF')) : undef, |
1036 |
($latex_templates && !$options->{no_postscript}) ?
|
|
1036 |
($latex_templates && !$options{no_postscript}) ? |
|
1037 | 1037 |
opthash("postscript", $form->{DF}{postscript}, $locale->text('Postscript')) : undef, |
1038 |
(!$options->{no_html}) ?
|
|
1038 |
(!$options{no_html}) ? |
|
1039 | 1039 |
opthash("html", $form->{DF}{html}, "HTML") : undef, |
1040 |
($opendocument_templates && !$options->{no_opendocument}) ?
|
|
1040 |
($opendocument_templates && !$options{no_opendocument}) ? |
|
1041 | 1041 |
opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef; |
1042 | 1042 |
|
1043 | 1043 |
push @LANGUAGE_ID, |
Auch abrufbar als: Unified diff
%options ist inzwischen ein Hash, also es auch so benutzen (siehe Revision 2842).