Thread HTML::Template & nichtexistente Dateien (10 answers)
Opened by pktm at 2007-10-03 01:52

kristian
 2007-10-03 14:41
#100230 #100230
User since
2005-04-14
684 Artikel
BenutzerIn
[Homepage] [default_avatar]
Hallo

Mir stellt sich die Frage, warum du keine Lust hast das Template auf Existenz zu prüfen.
Wenn du es nicht machst wird in HTML::Template gemacht.
Da sieht es dann so aus:
Code (perl): (dl )
1
2
3
4
5
  # try "path" option list..
  foreach my $path (@{$options->{path}}) {
    $filepath = File::Spec->catfile($path, $filename);
    return File::Spec->canonpath($filepath) if -e $filepath;
  }

Du sparst also nichts. (CPU etc.)

Gruss
Kristian

View full thread HTML::Template & nichtexistente Dateien