You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2014/08/30 01:28:07 UTC

[2/9] git commit: For external dependencies, href to "https://..."

For external dependencies, href to "https://..."

Was previously "//..." - handy for compatibility with both http and
https referring pages, but breaks file://... referring pages (e.g.
building a preview). Always use https, as all our Apache websites are
https based.


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn-site/commit/9fad3806
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn-site/tree/9fad3806
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn-site/diff/9fad3806

Branch: refs/heads/master
Commit: 9fad3806cf09f0253e1eb9ac9fdd436c91860106
Parents: df94aad
Author: Richard Downer <ri...@apache.org>
Authored: Wed Aug 20 12:15:34 2014 +0100
Committer: Richard Downer <ri...@apache.org>
Committed: Wed Aug 20 12:19:32 2014 +0100

----------------------------------------------------------------------
 _layouts/base.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn-site/blob/9fad3806/_layouts/base.html
----------------------------------------------------------------------
diff --git a/_layouts/base.html b/_layouts/base.html
index 6830c5e..996c1c2 100644
--- a/_layouts/base.html
+++ b/_layouts/base.html
@@ -5,7 +5,7 @@
 <title>{{ page.title }} - Apache Brooklyn (incubating)</title>
 <meta http-equiv="content-type" content="text/html; charset=utf-8">
 <meta name="viewport" content="width=device-width, initial-scale=1">
-<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
+<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
 <link href="{{site.url}}style/css/bootstrap-theme.css" rel="stylesheet">
 <link href="{{site.url}}style/css/theme.css" rel="stylesheet">
 </head>
@@ -42,8 +42,8 @@
 
 {{ content }}
 
-<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
-<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
+<script src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
 <script language="JavaScript" type="application/javascript">
     $(window).resize(function () { 
         $('body').css('padding-top', parseInt($('#header').css("height"))+10);