Author: marrs
Date: Tue Jan 7 15:31:29 2014
New Revision: 1556245
URL: http://svn.apache.org/r1556245
Log:
Removed protocol from absolute links to fix ACE-446.
Modified:
ace/site/trunk/templates/skeleton.html
Modified: ace/site/trunk/templates/skeleton.html
URL:
http://svn.apache.org/viewvc/ace/site/trunk/templates/skeleton.html?rev=1556245&r1=1556244&r2=1556245&view=diff
==============================================================================
--- ace/site/trunk/templates/skeleton.html (original)
+++ ace/site/trunk/templates/skeleton.html Tue Jan 7 15:31:29 2014
@@ -3,11 +3,11 @@
<head>
<title>{% block title %}{{ headers.title }}{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <meta property="og:image"
content="http://www.apache.org/images/asf_logo.gif" />
+ <meta property="og:image" content="//www.apache.org/images/asf_logo.gif" />
<link href="/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="/css/prettify.css" rel="stylesheet" media="screen">
<link href="/css/code.css" rel="stylesheet" media="screen">
- <script src="http://code.jquery.com/jquery.js"></script>
+ <script src="//code.jquery.com/jquery.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/prettify.js"></script>
{% if headers.atom %}<link rel="alternate" href="{{ headers.atom.url }}"
type="application/atom+xml" title="{{ headers.atom.title }}" />{% endif %}
@@ -34,7 +34,7 @@
{% block content %}<div id="content">{{ content|markdown }}</div>{%
endblock %}
<hr>
<footer>
- <p>Copyright © 2012-2013 <a href="http://www.apache.org/">The
Apache Software Foundation</a>, Licensed under the <a
href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version
2.0</a>.<br/>Apache ACE, the Apache ACE logo, Apache and the Apache feather
logo are trademarks of The Apache Software Foundation. All other marks
mentioned may be trademarks or registered trademarks of their respective
owners.</p>
+ <p>Copyright © 2012-2014 <a href="http://www.apache.org/">The
Apache Software Foundation</a>, Licensed under the <a
href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version
2.0</a>.<br/>Apache ACE, the Apache ACE logo, Apache and the Apache feather
logo are trademarks of The Apache Software Foundation. All other marks
mentioned may be trademarks or registered trademarks of their respective
owners.</p>
</footer>
</div>
</body>