]> git.joonet.de Git - adminer.git/commitdiff
Use HTTP protocol if possible - adminer.org certificate is missing in Opera
authorJakub Vrana <jakub@vrana.cz>
Thu, 6 May 2010 15:24:02 +0000 (17:24 +0200)
committerJakub Vrana <jakub@vrana.cz>
Thu, 6 May 2010 15:24:02 +0000 (17:24 +0200)
adminer/include/design.inc.php
adminer/static/editing.js
adminer/static/functions.js
compile.php

index ea03384c9fbeebde3b583a6cbd36d90256abf7f5..5c89085c19a3dd73a52d065289e6cc2b7b23d814 100644 (file)
@@ -11,6 +11,7 @@ function page_header($title, $error = "", $breadcrumb = array(), $title2 = "") {
        header("Content-Type: text/html; charset=utf-8");
        header("X-Frame-Options: deny"); // ClickJacking protection in IE8, Safari 4, Chrome 2, Firefox NoScript plugin
        $title_all = $title . ($title2 != "" ? ": " . h($title2) : "");
+       $protocol = ($_SERVER["HTTPS"] && strcasecmp($_SERVER["HTTPS"], "off") ? "https" : "http");
        ?>
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
 <html lang="<?php echo $LANG; ?>">
@@ -24,7 +25,7 @@ function page_header($title, $error = "", $breadcrumb = array(), $title2 = "") {
 <link rel="stylesheet" type="text/css" href="adminer.css">
 <?php } ?>
 
-<body onload="bodyLoad('<?php echo (is_object($connection) ? substr($connection->server_info, 0, 3) : ""); ?>');<?php echo (isset($_COOKIE["adminer_version"]) ? "" : " verifyVersion();"); ?>">
+<body onload="bodyLoad('<?php echo (is_object($connection) ? substr($connection->server_info, 0, 3) : ""); ?>', '<?php echo $protocol; ?>');<?php echo (isset($_COOKIE["adminer_version"]) ? "" : " verifyVersion('$protocol');"); ?>">
 <script type="text/javascript" src="../adminer/static/functions.js"></script>
 <script type="text/javascript" src="static/editing.js"></script>
 
index 483f9f06e7f11887b2c85e6a5fc3da8cce5c014e..b3f2251eb568948c1dfb5c07c54f9e61c3735afa 100644 (file)
@@ -2,8 +2,9 @@
 
 /** Load syntax highlighting
 * @param string first three characters of database system version
+* @param string 'http' or 'https' - used after compilation
 */
-function bodyLoad(version) {
+function bodyLoad(version, protocol) {
        var jushRoot = '../externals/jush/';
        var script = document.createElement('script');
        script.src = jushRoot + 'jush.js';
index 5e38529539420786a481308426a7fa3bf83fcb03..497b6c52d2f37cf8e3f7b376862583664f11ca63 100644 (file)
@@ -23,11 +23,12 @@ function cookie(assign, days, params) {
 }
 
 /** Verify current Adminer version
+* @param string 'http' or 'https'
 */
-function verifyVersion() {
+function verifyVersion(protocol) {
        cookie('adminer_version=0', 1);
        var script = document.createElement('script');
-       script.src = 'https://www.adminer.org/version.php';
+       script.src = protocol + '://www.adminer.org/version.php';
        document.body.appendChild(script);
 }
 
index 6c4b46edfac1251a3c30245a094fbe7ff56dcea6..ff48cba159f50bd3dd430a0de137e9208cee58ba 100644 (file)
@@ -244,7 +244,7 @@ foreach (array("adminer", "editor") as $project) {
        $replace = 'h(preg_replace("~\\\\\\\\?.*~", "", $_SERVER["REQUEST_URI"])) . "?file=\\1&amp;version=' . $VERSION;
        $file = preg_replace('~\\.\\./adminer/static/(default\\.css|functions\\.js|favicon\\.ico)~', '<?php echo ' . $replace . '"; ?>', $file);
        $file = preg_replace('~\\.\\./adminer/static/([^\'"]*)~', '" . ' . $replace, $file);
-       $file = str_replace("../externals/jush/", "https://www.adminer.org/static/", $file);
+       $file = str_replace("'../externals/jush/'", "protocol + '://www.adminer.org/static/'", $file);
        $file = preg_replace("~<\\?php\\s*\\?>\n?|\\?>\n?<\\?php~", '', $file);
        $file = php_shrink($file);