Removed "; charset=iso-8859-2" as in .htaccess is "SourceCharset iso-8859-2"
[www.energie.vellum.cz.git] / common.php
index 4c6a1aa..c29986a 100644 (file)
@@ -324,6 +324,21 @@ function dirnameslashed($filename)
        return($r);
 }
 
+function usersize($size)
+{
+       $suffix_a=array("","k","M","G","T");
+       while ($size>=1000 && sizeof($suffix_a)>=2) {
+               $size/=1000;
+               array_shift($suffix_a);
+               }
+       return(round($size)." ".$suffix_a[0]."B");
+}
+
+function data_href($filename,$text)
+{
+       return("<a href=\"$filename\">$text (".usersize(filesize($filename)).")</a>");
+}
+
 function footer($delimit=true)
 {
        // deadlock prevention:
@@ -360,11 +375,11 @@ function no_cache()
        header("Pragma: no-cache");                                // HTTP/1.0
 }
 
-function heading()
+function heading($title=false)
 {
        global $msie_major,$mozilla_major,$title_tail,$head_css,$have_css,$head;
 
-       header("Content-type: text/html; charset=iso-8859-2");
+       header("Content-type: text/html");
        if (!isset($msie_major) || $msie_major>=4)
                print('<?xml version="1.0" encoding="iso-8859-2"?>'."\n");
 ?>
@@ -376,9 +391,11 @@ function heading()
        print("</title>\n");
        if ($have_css) {
 ?><style type="text/css"><!--
-.cvs-id  { font-family: monospace; }
-.error   { color: red;    background-color: transparent; }
-.quote   { font-family: monospace; }
+.cvs-id   { font-family: monospace; }
+.error    { color: red;   background-color: transparent; }
+.quote    { font-family: monospace; }
+.nowrap   { white-space: nowrap; }
+.centered { text-align: center; }
 body {
                background-color: black;
                color: white;
@@ -397,5 +414,9 @@ h1,h2    { color: yellow; background-color: transparent; }
        if (isset($mozilla_major) && $mozilla_major==4)
                print(" bgcolor=\"black\" text=\"white\" link=\"cyan\" vlink=\"teal\"");
        print(">\n");
+       if ($title)
+               print("<h1 class=\"centered\">"
+                               .img("img/eap-title.".(image_supported("image/png") ? "png" : "gif"),"Energie & Peníze")
+                               ."</h1>\n");
 }
 ?>