Revision 666f9ee4
Von Moritz Bunkus vor fast 19 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
418 | 418 |
|
419 | 419 |
if (-f "templates/webpages/${file}_" . $main::myconfig{"countrycode"} . |
420 | 420 |
".html") { |
421 |
if ((-f ".developper") && |
|
422 |
(-f "templates/webpages/${file}_master.html") && |
|
423 |
((stat("templates/webpages/${file}_master.html"))[9] > |
|
424 |
(stat("templates/webpages/${file}_" . $main::myconfig{"countrycode"} . |
|
425 |
".html"))[9])) { |
|
426 |
my $info = "Developper information: templates/webpages/${file}_master.html is newer than the localized version.\n" . |
|
427 |
"Please re-run 'locales.pl' in 'locale/" . $main::myconfig{"countrycode"} . "'."; |
|
428 |
print(qq|<pre>$info</pre>|); |
|
429 |
die($info); |
|
430 |
} |
|
431 |
|
|
421 | 432 |
$file = "templates/webpages/${file}_" . $main::myconfig{"countrycode"} . |
422 | 433 |
".html"; |
423 | 434 |
} elsif (-f "templates/webpages/${file}.html") { |
Auch abrufbar als: Unified diff
Wenn die Datei .developper im Lx-Office-Installationsverzeichnis exisitert, dann bei Ausgabe einer HTML-Vorlage ueberpruefen, ob die Master-Vorlage neuer ist und gegebenenfalls abbrechen. [r809 aus LINET prog-Repo]