Fixed all general-files references for $energie_base utilization
authorshort <>
Thu, 25 Apr 2002 19:59:31 +0000 (19:59 +0000)
committershort <>
Thu, 25 Apr 2002 19:59:31 +0000 (19:59 +0000)
common.php

index 048176a..0edc96f 100644 (file)
@@ -20,6 +20,8 @@
 
        if (!isset($head))
                $head="";
+       if (!isset($energie_base))
+               $energie_base="";
 
        unset($have_ent);
        if (isset($HTTP_GET_VARS[    "have_ent"]))
@@ -37,7 +39,7 @@
        $have_js=(isset($HTTP_GET_VARS["have_js"]) || isset($HTTP_POST_VARS["have_js"])
                        ? "?have_js=1" : "");
        if (isset($detect_js) && !$have_js)
-               $head.='<script type="text/javascript" src="'.(!isset($energie_base) ? "" : $energie_base).'have_js.js"></script>'."\n";
+               $head.='<script type="text/javascript" src="'.$energie_base.'have_js.js"></script>'."\n";
 
        $user_agent=(!isset($HTTP_SERVER_VARS["HTTP_USER_AGENT"]) ? "" : $HTTP_SERVER_VARS["HTTP_USER_AGENT"]);
        if (ereg("[[:<:]]MSIE ([0-9]+)\\.",$user_agent,$msie_major_a))
@@ -197,7 +199,9 @@ function img($file,$alt,$attrs="")
 
 function gsm_banking()
 {
-       return(img("img/sluzby_bankovni_pggsm.".(image_supported("video/x-mng") ? "mng" : "gif"),
+       global $energie_base;
+
+       return(img($energie_base."img/sluzby_bankovni_pggsm.".(image_supported("video/x-mng") ? "mng" : "gif"),
                        "Paegas GSM banking","class=\"img-align\""));
 }
 
@@ -380,6 +384,8 @@ function img_href($filename,$text)
 
 function print_pdf_layout($name,$base)
 {
+       global $energie_base;
+
        $imgfmt=(image_supported("image/png") ? "png" : "gif");
        ?>
 <p>Shodný <?php print($name); ?> je dostupný ve dvou rùzných formátech souboru. V&nbsp;pøípadì,
@@ -396,7 +402,7 @@ zvolte pros
 
 <li>
 <table border="0">
-<tr><td><?php print("<a href=\"$base.pdf\">".img("img/adobe-pdficon-alpha.".(image_supported("image/png") ? "png" : "gif"),
+<tr><td><?php print("<a href=\"$base.pdf\">".img($energie_base."img/adobe-pdficon-alpha.".(image_supported("image/png") ? "png" : "gif"),
                        "Adobe PDF")."</a>"); ?></td>
        <td><?php print(data_href("$base.pdf","Dokument PDF")); ?></td>
        </tr>
@@ -404,7 +410,7 @@ zvolte pros
 <blockquote>
 <table border="0">
 <tr><td><a href="http://www.adobe.com/products/acrobat/readstep.html"><?php
-       print(img("img/adobe-getacro.".(image_supported("image/png") ? "png" : "gif"),"Get Adobe Acrobat Reader"));
+       print(img($energie_base."img/adobe-getacro.".(image_supported("image/png") ? "png" : "gif"),"Get Adobe Acrobat Reader"));
        ?></a></td>
        <td class="smaller">Soubor je ve formátu <span class="italic">Adobe Acrobat</span>,
        pro jeho pøeètení si prosím nainstalujte
@@ -629,7 +635,7 @@ function footer_img($url,$text,$size)
 
 function a_href($url,$contents)
 {
-       global $have_ent;
+       global $have_ent,$energie_base;
 
        $r="<a href=\"";
        $urlent=htmlspecialchars($url);
@@ -642,7 +648,7 @@ function a_href($url,$contents)
        else if ($have_ent) // ent client
                $r.=$urlent;
        else // unknown client, htmlspecialchars() should not be needed here
-               $r.=htmlspecialchars("redirect.php?location=".urlencode($url));
+               $r.=htmlspecialchars($energie_base."redirect.php?location=".urlencode($url));
        $r.="\">$contents</a>";
        return($r);
 }
@@ -655,7 +661,7 @@ function footer($delimit=true)
                exit();
        $footer_passed=true;
 
-       global $cvs_id_html,$viewcvs,$viewcvs,$HTTP_SERVER_VARS;
+       global $cvs_id_html,$viewcvs,$viewcvs,$HTTP_SERVER_VARS,$energie_base;
        if ($delimit)
                print("<p>&nbsp;</p>\n");
        $uri="uri=".urlencode("http://".$HTTP_SERVER_VARS["HTTP_HOST"].$HTTP_SERVER_VARS["REQUEST_URI"]);
@@ -665,9 +671,9 @@ function footer($delimit=true)
 <tr><td align="left"><span class="cvs-id"><?php print($cvs_id_html); ?></span></td><td align="right"><?php
                        print(""
                                        .a_href("http://validator.w3.org/check?$uri",
-                                                       img("img/valid-xhtml11.".(image_supported("image/png") ? "png" : "gif"),"Valid XHTML 1.1!"))
+                                                       img($energie_base."img/valid-xhtml11.".(image_supported("image/png") ? "png" : "gif"),"Valid XHTML 1.1!"))
                                        .a_href("http://jigsaw.w3.org/css-validator/validator?warning=2&profile=css2&$uri",
-                                                       img("img/vcss."         .(image_supported("image/png") ? "png" : "gif"),"Valid CSS!"))
+                                                       img($energie_base."img/vcss."         .(image_supported("image/png") ? "png" : "gif"),"Valid CSS!"))
                                        );
                        ?></td></tr>
 </table>