šablona/funkce/src/cz/frantovo/xmlWebGenerator/Funkce.java
author František Kučera <franta-hg@frantovo.cz>
Wed Jul 06 18:54:11 2011 +0200 (2011-07-06)
changeset 20 29361e026fa3
child 21 2f50f9e10a27
permissions -rw-r--r--
Dočasný hack: kompatibilita s Antem verze 1.8.1, Bug 49271
https://issues.apache.org/bugzilla/show_bug.cgi?id=49271

- U XSLT nefunguje „class path“
- collection() má root jinde než ve verzi 1.8.0
franta-hg@6
     1
package cz.frantovo.xmlWebGenerator;
franta-hg@6
     2
franta-hg@6
     3
import java.io.File;
franta-hg@6
     4
import java.util.Date;
franta-hg@6
     5
import java.net.URI;
franta-hg@6
     6
import java.net.URISyntaxException;
franta-hg@6
     7
franta-hg@6
     8
public class Funkce {
franta-hg@6
     9
        public static Date posledníZměna(String soubor) throws URISyntaxException {
franta-hg@6
    10
                return new Date(new File(new URI(soubor)).lastModified());
franta-hg@6
    11
        }
franta-hg@6
    12
}
franta-hg@6
    13