[pypy-commit] pypy.org extradoc: Fixes bitbucket links in source and javascript.

charstring noreply at buildbot.pypy.org
Tue Aug 30 21:51:31 CEST 2011


Author: Chris Wesseling <chris.wesseling at cwi.nl>
Branch: extradoc
Changeset: r247:a043b6cfca9c
Date: 2011-08-30 20:15 +0200
http://bitbucket.org/pypy/pypy.org/changeset/a043b6cfca9c/

Log:	Fixes bitbucket links in source and javascript.

diff --git a/js/detect.js b/js/detect.js
--- a/js/detect.js
+++ b/js/detect.js
@@ -1,7 +1,7 @@
 
 $(document).ready(function() {
     var download_url, download_text;
-    var base = 'http://bitbucket.org/pypy/pypy/downloads/';
+    var base = 'https://bitbucket.org/pypy/pypy/downloads/';
     if (navigator.platform.indexOf('Linux') != -1) {
         if (navigator.platform.indexOf('64') != -1) {
             download_url = base + 'pypy-1.6-linux64.tar.bz2';
diff --git a/source/_layouts/site.genshi b/source/_layouts/site.genshi
--- a/source/_layouts/site.genshi
+++ b/source/_layouts/site.genshi
@@ -62,7 +62,7 @@
 <div id="header">
 	<div id="menu-follow">
 		<div><a href="http://search.twitter.com/search?q=%23pypy" title="Follow the conversation on Twitter"><img src="http://static.ampify.it/icon.twitter.gif" alt="Follow the conversation on Twitter" width="14px" height="14px" /></a></div>
-    <div><a href="http://bitbucket.org/pypy/pypy"><img src="http://www.selenic.com/hg-logo/logo-droplets-25.png" width="14px" height="14px"/></a></div>
+    <div><a href="https://bitbucket.org/pypy/pypy"><img src="http://www.selenic.com/hg-logo/logo-droplets-25.png" width="14px" height="14px"/></a></div>
 		<div><a href="http://feeds.feedburner.com/PyPyStatusBlog" title="Subscribe to the RSS Feed"><img src="http://static.ampify.it/icon.rss.png" alt="Subscribe to the RSS Feed" width="14px" height="14px" /></a></div>
 	</div>
 	<div id="logo"><a href="http://pypy.org"><img src="image/pypy-logo.png" alt="PyPy" height="110px" /></a></div>
diff --git a/source/download.txt b/source/download.txt
--- a/source/download.txt
+++ b/source/download.txt
@@ -109,7 +109,7 @@
    Or you can checkout the current trunk using Mercurial_ (the trunk
    usually works and is of course more up-to-date)::
 
-     hg clone http://bitbucket.org/pypy/pypy
+     hg clone https://bitbucket.org/pypy/pypy
 
 2. Make sure you installed the dependencies.  See the list here__.
 
diff --git a/source/features.txt b/source/features.txt
--- a/source/features.txt
+++ b/source/features.txt
@@ -102,11 +102,11 @@
   well as Smalltalk_, JavaScript_, Io_, Scheme_ and Gameboy_.
 
 
-.. _`the cli-jit branch`: http://bitbucket.org/pypy/pypy/src/cli-jit
+.. _`the cli-jit branch`: https://bitbucket.org/pypy/pypy/src/cli-jit
 .. _`contact us`: contact.html
-.. _Prolog: http://bitbucket.org/cfbolz/pyrolog/
-.. _Smalltalk: http://bitbucket.org/pypy/lang-smalltalk/
-.. _JavaScript: http://bitbucket.org/pypy/lang-js/
-.. _Io: http://bitbucket.org/pypy/lang-io/
-.. _Scheme: http://bitbucket.org/pypy/lang-scheme/
-.. _Gameboy: http://bitbucket.org/pypy/lang-gameboy/
+.. _Prolog: https://bitbucket.org/cfbolz/pyrolog/
+.. _Smalltalk: https://bitbucket.org/pypy/lang-smalltalk/
+.. _JavaScript: https://bitbucket.org/pypy/lang-js/
+.. _Io: https://bitbucket.org/pypy/lang-io/
+.. _Scheme: https://bitbucket.org/pypy/lang-scheme/
+.. _Gameboy: https://bitbucket.org/pypy/lang-gameboy/


More information about the pypy-commit mailing list