Difference between revisions of "Team:Waterloo/Notebook"

m
Line 1: Line 1:
 
{{Waterloo}}
 
{{Waterloo}}
 
<html>
 
<html>
<script src="https://2015.igem.org/wiki/index.php?title=Template:Waterloo/JS/d3&action=raw&ctype=text/javascript"></script>
+
<script src="/wiki/index.php?title=Template:Waterloo/JS/d3&action=raw&ctype=text/javascript"></script>
<script src="https://2015.igem.org/wiki/index.php?title=Template:Waterloo/JS/cal-heatmap&action=raw&ctype=text/javascript"></script>
+
<script src="/wiki/index.php?title=Template:Waterloo/JS/cal-heatmap&action=raw&ctype=text/javascript"></script>
<script src="https://2015.igem.org/wiki/index.php?title=Template:Waterloo/JS/days&action=raw&ctype=text/javascript"></script>
+
<script src="/wiki/index.php?title=Template:Waterloo/JS/days&action=raw&ctype=text/javascript"></script>
<script src="https://2015.igem.org/wiki/index.php?title=Template:Waterloo/JS/notes&action=raw&ctype=text/javascript"></script>
+
<script src="/wiki/index.php?title=Template:Waterloo/JS/notes&action=raw&ctype=text/javascript"></script>
 
<script>
 
<script>
var month = new Array();
+
    var month = new Array();
month[0] = "Jan";
+
    month[0] = "Jan";
month[1] = "Feb";
+
    month[1] = "Feb";
month[2] = "Mar";
+
    month[2] = "Mar";
month[3] = "Apr";
+
    month[3] = "Apr";
month[4] = "May";
+
    month[4] = "May";
month[5] = "Jun";
+
    month[5] = "Jun";
month[6] = "Jul";
+
    month[6] = "Jul";
month[7] = "Aug";
+
    month[7] = "Aug";
month[8] = "Sep";
+
    month[8] = "Sep";
month[9] = "Oct";
+
    month[9] = "Oct";
month[10] = "Nov";
+
    month[10] = "Nov";
month[11] = "Dec";
+
    month[11] = "Dec";
 
</script>
 
</script>
<link rel="stylesheet" href="https://2015.igem.org/wiki/index.php?title=Template:Waterloo/CSS/cal-heatmap&action=raw&ctype=text/css"></link>
+
 
 +
<link rel="stylesheet" href="/wiki/index.php?title=Template:Waterloo/CSS/cal-heatmap&action=raw&ctype=text/css"></link>
  
 
<div class="container main-container">
 
<div class="container main-container">
 
+
    <h1>Notebook</h1>
  <h1>Notebook</h1>
+
    <p>
 +
        This page gives a sense of the chronology of our lab work from late May 2015 onwards, based on our Experimental Task List lab tracking system, which you can read about <a href="http://igem.uwaterloo.ca/2015/07/17/5-tools-to-keep-your-igem-team-organized/">here</a>. Click on a day to see the experimental tasks completed. A similar sense of modelling chronology can be found in our <a href="https://github.com/igem-waterloo/uwaterloo-igem-2015/graphs/contributors">GitHub</a> contributors page. The contributions of individual team members are documented on the <a href="https://2015.igem.org/Team:Waterloo/Team">Team page</a>.
 +
    </p>
  
 
     <div id="cal-heatmap"></div>
 
     <div id="cal-heatmap"></div>
  <p>This page gives a sense of the chronology of our lab work from late May 2015 onwards, based on our Experimental Task List lab tracking system, which you can read about <a href="http://igem.uwaterloo.ca/2015/07/17/5-tools-to-keep-your-igem-team-organized/">here</a>. Click on a day to see the experimental tasks completed. A similar sense of modelling chronology can be found in our <a href="https://github.com/igem-waterloo/uwaterloo-igem-2015/graphs/contributors">GitHub</a> contributors page. The contributions of individual team members are documented on the <a href="https://2015.igem.org/Team:Waterloo/Team">Team page</a>.</p>
+
    <p>Click on a day to view the work.</p>
<div>
+
    <div>
<h2 id="onClick-placeholder"></h2>
+
        <h2 id="onClick-placeholder"></h2>
<ul id="notes-table"></ul>
+
        <ul id="notes-table"></ul>
</div>
+
    </div>
<script type="text/javascript">
+
 
var cal = new CalHeatMap();
+
    <script type="text/javascript">
cal.init({
+
    var cal = new CalHeatMap();
start: new Date(2015, 4),
+
    cal.init({
    data:days,
+
    start: new Date(2015, 4),
    dataType: "json",
+
        data:days,
    domain : "month",
+
        dataType: "json",
    subDomain : "day",
+
        domain : "month",
    range : 5,
+
        subDomain : "day",
    cellSize: 24,
+
        range : 5,
subDomainTextFormat: "%d",
+
        cellSize: 24,
displayLegend: false,
+
    subDomainTextFormat: "%d",
onClick: function(date, nb) {
+
    displayLegend: false,
$("#onClick-placeholder").html(date.toDateString());
+
    onClick: function(date, nb) {
var message = ""
+
    $("#onClick-placeholder").html(date.toDateString());
var key = month[date.getMonth()]+(date.getDate())
+
    var message = ""
if (key in notes){
+
    var key = month[date.getMonth()]+(date.getDate())
$.each(notes[key], function( index, value ) {
+
    if (key in notes){
message += "<li>"+value+"</li>";
+
    $.each(notes[key], function( index, value ) {
});}
+
    message += "<li>"+value+"</li>";
$("#notes-table").html(message
+
    });}
);
+
    $("#notes-table").html(message
}
+
    );
});
+
    }
+
    });
</script>
+
    </script>
  
  

Revision as of 00:49, 3 October 2015

Notebook

This page gives a sense of the chronology of our lab work from late May 2015 onwards, based on our Experimental Task List lab tracking system, which you can read about here. Click on a day to see the experimental tasks completed. A similar sense of modelling chronology can be found in our GitHub contributors page. The contributions of individual team members are documented on the Team page.

Click on a day to view the work.

    Top