Revision 90815a31
Von Joachim Zach vor mehr als 14 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
1184 | 1184 |
(!$options{no_html}) ? |
1185 | 1185 |
opthash("html", $form->{DF}{html}, "HTML") : undef, |
1186 | 1186 |
($main::opendocument_templates && !$options{no_opendocument}) ? |
1187 |
opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef; |
|
1187 |
opthash("opendocument", $form->{DF}{opendocument}, $locale->text("OpenDocument/OASIS")) : undef, |
|
1188 |
($main::excel_templates && !$options{no_excel}) ? |
|
1189 |
opthash("excel", $form->{DF}{excel}, $locale->text("Excel")) : undef; |
|
1188 | 1190 |
|
1189 | 1191 |
push @LANGUAGE_ID, |
1190 | 1192 |
map { opthash($_->{id}, ($_->{id} eq $form->{language_id} ? 'selected' : ''), $_->{description}) } +{}, @{ $form->{languages} } |
... | ... | |
1592 | 1594 |
} elsif ($form->{"format"} =~ /opendocument/) { |
1593 | 1595 |
$form->{opendocument} = 1; |
1594 | 1596 |
$extension = 'odt'; |
1597 |
} elsif ($form->{"format"} =~ /excel/) { |
|
1598 |
$form->{excel} = 1; |
|
1599 |
$extension = 'xls'; |
|
1595 | 1600 |
} |
1596 | 1601 |
|
1597 | 1602 |
my $email_extension = '_email' if (($form->{media} eq 'email') && (-f "$myconfig{templates}/$form->{formname}_email$form->{language}${printer_code}.${extension}")); |
Auch abrufbar als: Unified diff
Optionale minimale Excel-Unterstützung für Druckvorlagen (Austausch von Platzhalter-Variablen in Excel-Dateien). Entsprechend noch für strict angepasst