Revision: 3037f7d5ab04
Branch: default
Author: felix.antoine.fortin
Date: Fri Aug 22 18:28:45 2014 UTC
Log: Fix
https://code.google.com/p/deap/source/detail?r=3037f7d5ab04&repo=www
Modified:
/index.html
/speed/example.html
/speed/index.html
/speed/results.html
=======================================
--- /index.html Wed Apr 4 16:35:01 2012 UTC
+++ /index.html Fri Aug 22 18:28:45 2014 UTC
@@ -1,6 +1,6 @@
<HTML>
<HEAD>
-<META HTTP-EQUIV="refresh" CONTENT="0;URL=
http://deap.googlecode.com/">
+<META HTTP-EQUIV="refresh" CONTENT="0;URL=
https://github.com/deap">
<script type="text/javascript">
var _gaq = _gaq || [];
=======================================
--- /speed/example.html Mon Jun 10 19:56:35 2013 UTC
+++ /speed/example.html Fri Aug 22 18:28:45 2014 UTC
@@ -121,14 +121,13 @@
}
d3.select("#content").selectAll("h1").text(example + " (" + branch +")")
-
d3.select("#content").select("#src").attr("href", "
http://code.google.com/p/deap/source/browse/examples/"+encodeURIComponent(example)+".py?name="+branch)
- d3.csv(branch+"/data/all/"+example+".csv", function(data){
+
d3.select("#content").select("#src").attr("href", "
https://github.com/DEAP/deap/blob/"+branch+"/examples/"+encodeURIComponent(example)+".py")
+ d3.csv(branch+"/all/"+example+".csv", function(data){
parsedCSV = data
parsedCSV.forEach(function(o){
o["Error?"] = parseInt(o["Error?"])
o["Execution Time"] = parseFloat(o["Execution Time"])
- // For changeset link :
http://code.google.com/p/deap/source/detail?r=
- o["Changeset"] = "<a
href='
http://code.google.com/p/deap/source/detail?r="+o["Changeset"]+"'>"+o["Changeset"]+"</a>"
+ o["Changeset"] = "<a
href='
https://github.com/DEAP/deap/commit/"+o["Changeset"]+"'>"+o["Changeset"]+"</a>"
o["Interpreter_name"] = interpreter[o["Interpreter"]]
o["Interpreter"] = "<a
href='./results.html?version="+o["Interpreter"]+"&branch="+branch+"'>"+interpreter[o["Interpreter"]]+"</a>"
});
=======================================
--- /speed/index.html Fri Jan 31 19:07:13 2014 UTC
+++ /speed/index.html Fri Aug 22 18:28:45 2014 UTC
@@ -85,7 +85,7 @@
var version = interpreter_keys[index];
var ni = document.getElementById(branch+'_row');
var newdiv = document.createElement('div');
- newdiv.setAttribute('class','span3');
+ newdiv.setAttribute('class','span2');
var newtitle = document.createElement('h4');
newtitle.innerHTML = interpreter[version];
newdiv.appendChild(newtitle);
@@ -101,13 +101,13 @@
}
}
</script>
- <h3>Stable branch</h3>
- <div class="row" id="default_row">
- <script type="text/javascript">result_buttons('default')</script>
+ <h3>Master branch</h3>
+ <div class="row" id="master_row">
+ <script type="text/javascript">result_buttons('master')</script>
</div>
- <h3>Development branch</h3>
- <div class="row" id="dev_row">
- <script type="text/javascript">result_buttons('dev')</script>
+ <h3>1.0.x branch</h3>
+ <div class="row" id="1.0.x_row">
+ <script type="text/javascript">result_buttons('1.0.x')</script>
</div>
<hr class="soften">
=======================================
--- /speed/results.html Fri Jan 31 19:07:51 2014 UTC
+++ /speed/results.html Fri Aug 22 18:28:45 2014 UTC
@@ -121,7 +121,7 @@
}
d3.select("#content").selectAll("h2").text(interpreter[version] + " ("
+ branch +")")
- d3.csv(branch+"/data/"+version+"/last_results.csv", function(data){
+ d3.csv(branch+"/"+version+"/last_results.csv", function(data){
parsedCSV = data
parsedCSV.forEach(function(o){
o["Execution Time"] = parseFloat(o["Execution Time"])
@@ -129,7 +129,7 @@
// For example link :
http://code.google.com/p/deap/source/browse/examples/%example%.py?name=%branch%
// o["Example"] = "<a
href='
http://code.google.com/p/deap/source/browse/examples/"+o["Example"]+".py?name="+branch+"&r="+o["Changeset"]+"'>"+o["Example"]+"</a>"
o["Example"] = "<a
href='./example.html?name="+o["Example"]+"&branch="+branch+"'>"+o["Example"]+"</a>"
- o["Changeset"] = "<a
href='
http://code.google.com/p/deap/source/detail?r="+o["Changeset"]+"'>"+o["Changeset"]+"</a>"
+ o["Changeset"] = "<a
href='
https://github.com/DEAP/deap/commit/"+o["Changeset"]+"'>"+o["Changeset"]+"</a>"
});
transform("Example")
});