First properly working version.
This commit is contained in:
@ -33,14 +33,14 @@ $title = $content->getElementsByTagName("h1")[0]->nodeValue;
|
||||
|
||||
// Generate PDF if need be.
|
||||
|
||||
if (filemtime(__DIR__ . "/tex/$lang/contentsFrontend.tex") < filemtime(__DIR__ . "/contents/$lang.htm")) {
|
||||
# if (filemtime(__DIR__ . "/tex/$lang/contentsFrontend.tex") -5000 < filemtime(__DIR__ . "/contents/$lang.htm")) {
|
||||
|
||||
foreach ($content->getElementsByTagName("section") as $c) {
|
||||
DOMtoTeX($c, "tex/$lang");
|
||||
}
|
||||
runPDF("tex/$lang", "brochure", "brochure.pdf", $title, $lang, true);
|
||||
|
||||
}
|
||||
# }
|
||||
|
||||
// Print HTML page.
|
||||
|
||||
@ -48,6 +48,6 @@ $content = file_get_contents(__DIR__ . "/contents/$lang.htm");
|
||||
|
||||
$content = str_replace("\\today", date("Y-m-d", filemtime("contents/$lang.htm")), $content);
|
||||
|
||||
echo printHTMLPage("about:" . $title, $content, $lang);
|
||||
echo printHTMLPage("about:" . $title, $content, $lang, $availableLangs);
|
||||
|
||||
?>
|
||||
|
Reference in New Issue
Block a user