Revision b391b42d
Von Moritz Bunkus vor fast 8 Jahren hinzugefügt
bin/mozilla/amtemplates.pl | ||
---|---|---|
95 | 95 |
|
96 | 96 |
$main::auth->assert('admin'); |
97 | 97 |
|
98 |
$form->isblank("formname", $locale->text("You're not editing a file.")) unless ($form->{type} eq "stylesheet");
|
|
98 |
$form->isblank("formname", $locale->text("You're not editing a file.")); |
|
99 | 99 |
|
100 | 100 |
my ($filename) = AM->prepare_template_filename(\%myconfig, $form); |
101 | 101 |
if (my $error = AM->save_template($filename, $form->{content})) { |
... | ... | |
126 | 126 |
|
127 | 127 |
my $format = $form->{"format"} eq "html" ? "html" : "tex"; |
128 | 128 |
|
129 |
$form->{"title"} = $form->{"type"} eq "stylesheet" ? $locale->text("Edit the stylesheet") : $locale->text("Edit templates");
|
|
129 |
$form->{"title"} = $locale->text("Edit templates"); |
|
130 | 130 |
if ($form->{"format"}) { |
131 | 131 |
$form->{"title"} = uc($form->{"format"}) . " - " . $form->{"title"}; |
132 | 132 |
} |
... | ... | |
135 | 135 |
|
136 | 136 |
my @hidden = qw(type format); |
137 | 137 |
|
138 |
if (($form->{"type"} ne "stylesheet") && !$form->{"edit"}) {
|
|
138 |
if (!$form->{"edit"}) { |
|
139 | 139 |
$options{"SHOW_EDIT_OPTIONS"} = 1; |
140 | 140 |
|
141 | 141 |
# |
... | ... | |
266 | 266 |
push(@hidden, qw(formname language printer)); |
267 | 267 |
} |
268 | 268 |
|
269 |
if ($form->{formname} || ($form->{type} eq "stylesheet")) {
|
|
269 |
if ($form->{formname}) { |
|
270 | 270 |
$options{"SHOW_CONTENT"} = 1; |
271 | 271 |
|
272 | 272 |
($options{"filename"}, $options{"display_filename"}) |
Auch abrufbar als: Unified diff
»System« → »Vorlagen« → »Stilvorlage« entfernt
Die Funktion funktioniert seit der Aufteilung der Stylesheets in
mehrere Unterdateien schlicht nicht mehr. Da sich bisher niemand
beschwert hat, wird die Funktion wohl auch nicht benötigt.