Team:Goettingen/NoteBook

From 2013.igem.org

(Difference between revisions)
(Navigation)
Line 1: Line 1:
{{:Team:Goettingen/templates/headerGray}}
{{:Team:Goettingen/templates/headerGray}}
<html>
<html>
-
 
+
</div>
-
<style>
+
-
p{font-size:11pt;line-height:1.2em}
+
-
 
+
-
.timeline-cont {display:none}
+
-
 
+
-
.monat{    font-size: 20pt;
+
-
    background: #8f0000;
+
-
    color: #fff;
+
-
    width: 110px;
+
-
    padding-left: 40px;
+
-
    position: relative;
+
-
    display: block;
+
-
    z-index:1;}
+
-
 
+
-
.date{    vertical-align: top;
+
-
    line-height: 1.4em;
+
-
    font-size: 13pt;
+
-
    left: 0px;
+
-
    position: relative;
+
-
    z-index:1;
+
-
    color:#4a7ebb}
+
-
 
+
-
.cont{ vertical-align: top; 
+
-
    display: inline-block;
+
-
    position: relative;
+
-
    left: -5px;
+
-
    padding: 0px 20px 10px 20px;
+
-
    border: 1px #4a7ebb solid;
+
-
    -moz-box-shadow: 1px 1px 1px #aaa;
+
-
    -webkit-box-shadow: 1px 1px 1px #aaa;
+
-
    box-shadow: 1px 1px 1px #aaa;
+
-
    /* For IE 8 */
+
-
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=315, Color='#aaa')";
+
-
    /* For IE 5.5 - 7 */
+
-
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=1, Direction=315, Color='#aaa');
+
-
    background:#fff;
+
-
    max-width:650px;}
+
-
 
+
-
.tlob{    display: block;
+
-
    position: relative;
+
-
    margin-top: 20px;
+
-
    vertical-align: top;
+
-
    }
+
-
 
+
-
.fbutton{display: inline-block;
+
-
    text-align: center;
+
-
    border: 1px #D3D8D0 solid;
+
-
    width: 100px;
+
-
    float: right;
+
-
    padding: 10px 0 10px 0;
+
-
    font-family: Cambria;
+
-
    font-size: 12pt;
+
-
    color: #AFCE9E;
+
-
    position: relative;
+
-
    cursor: pointer;
+
-
}
+
-
 
+
-
.fbutton:hover{background: #EBF7E5;
+
-
color: #afce9e;}
+
-
 
+
-
#loadmore{ text-align: center;
+
-
    padding: 10px 0;
+
-
    color: #AFCE9E;
+
-
    font-size: 13pt;
+
-
    border-top: 2px #ebf7e5 solid;
+
-
    cursor:pointer;
+
-
    background:#fff;}
+
-
 
+
-
#loadmore:hover{background: #EBF7E5;}
+
-
 
+
-
.timeline-title{font-size:13pt;color:#888;cursor:pointer;font-family:Cambria}
+
-
 
+
-
#col-left{width:18%}
+
-
 
+
-
#col-right{width:82%}
+
-
</style>
+
-
 
+
-
 
+
<script>
<script>
-
 
-
//加载结束执行
 
$(document).ready(function(){
$(document).ready(function(){
$(".notebook").addClass('deact');
$(".notebook").addClass('deact');
-
updatePage();
 
-
tlc[0].style.display = 'block';
 
-
 
-
 
-
 
});
});
-
 
-
//变量定义,tlt:timeline-title,tlc:timeline-cont;fbutton:foldbutton
 
-
tlt = [];
 
-
tlc = [];
 
-
fbutton = [];
 
-
 
-
//与jq中的toggle函数相似,简化版本
 
-
function toggle(target){
 
-
  if(getComputedStyle(target,null).display == "none"){
 
-
            target.style.display = "block"
 
-
    } else {target.style.display = "none"}
 
-
}
 
-
 
-
//网页最下加载更多按钮
 
-
 
-
function loadmore(){
 
-
    if(woche == 2){document.getElementById("loadmore").style.display = 'none'}
 
-
   
 
-
            addresse = 'https://2013.igem.org/Team:Goettingen/NoteBook_w' + (woche -1) + '?action=raw&ctype=text';
 
-
            xmlhttp.open("GET",addresse,false);
 
-
            xmlhttp.send();
 
-
            document.getElementById("wrapper").innerHTML += xmlhttp.responseText;
 
-
            woche--;
 
-
            updatePage();
 
-
           
 
-
}
 
-
 
-
//更新页面,主要为1、重新抓取tlt,tlc,fbutton数组,定义onclick event;2、更新时间“线”长度
 
-
function updatePage(){
 
-
  if(woche == 1){document.getElementById("loadmore").style.display = 'none'} else {document.getElementById("loadmore").style.display = 'block';}
 
-
  tlob = document.getElementsByClassName("tlob");
 
-
  tlt = document.getElementsByClassName("timeline-title");
 
-
  tlc = document.getElementsByClassName("timeline-cont");
 
-
  fbutton = document.getElementsByClassName("fbutton");
 
-
 
-
    for(i=0;i<tlt.length;i++){
 
-
    tlt[i].onclick = function(){var tlsib = this.nextElementSibling||getNextElementSibling(this);
 
-
                                toggle(tlsib);}
 
-
    tlt[i].title = "Click to fold/extend";}
 
-
for(i=0;i<fbutton.length;i++){
 
-
    fbutton[i].onclick = function(){ this.parentNode.style.display = 'none';}
 
-
    }
 
-
    //tlc[0].style.display = 'block';
 
-
}
 
-
 
-
//ajax定义,多浏览器兼容
 
-
var xmlhttp;
 
-
if (window.XMLHttpRequest)
 
-
  {// code for IE7+, Firefox, Chrome, Opera, Safari
 
-
  xmlhttp=new XMLHttpRequest();
 
-
  }
 
-
else
 
-
  {// code for IE6, IE5
 
-
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
 
-
  }
 
-
 
-
//获得并返回今天的日期
 
-
 
-
function heute(){
 
-
  var heute = new Date();
 
-
  var tag = heute.getDate();
 
-
  var monat = heute.getMonth();
 
-
  switch(monat){
 
-
        case 0:monat='Jan.';break;
 
-
        case 1:monat='Feb.';break;
 
-
        case 2:monat='Mar.';break;
 
-
        case 3:monat='Apr.';break;
 
-
        case 4:monat='May';break;
 
-
        case 5:monat='Jun.';break;
 
-
        case 6:monat='Jul.';break;
 
-
        case 7:monat='Aug.';break;
 
-
        case 8:monat='Sept.';break;
 
-
        case 9:monat='Oct.';break;
 
-
        case 10:monat='Nov.';break;
 
-
        case 11:monat='Dec.';break;
 
-
}
 
-
return{date:tag, month:monat}
 
-
}
 
-
 
-
 
-
 
</script>
</script>
-
<img id="slide" src="https://static.igem.org/mediawiki/2013/8/8c/Header-goe-3.jpg"  />
 
-
 
-
 
-
</div><!--close header-->
 
-
<br />
 
-
 
-
<script>
 
-
function foldAll(){
 
-
  //updatePage();
 
-
  for(i=0;i<tlc.length;i++){
 
-
      tlc[i].style.display = 'none';
 
-
}}
 
-
</script>
 
-
 
-
<img src="https://static.igem.org/mediawiki/2013/8/8b/Goe-fold.png" style="position:fixed;z-index:199;bottom:11%;right:2.5%;_position: absolute;_top: expression(documentElement.scrollTop + documentElement.clientHeight-this.offsetHeight);cursor:pointer;opacity:0.5;-moz-opacity:0.5;-khtml-opacity:0.5;-filter:alpha(opacity = 50 )" onclick="foldAll()" />
 
-
 
-
 
-
 
<div id="body">
<div id="body">
-
<div class="f-box">
+
<div class="f-box" style="height:360px">
-
  <div id="col-left">
+
<div class="d-box br">
-
  <div id="nav">
+
-
</html>
+
<p></p>
-
===Navigation===
+
<h3><span class="editsection">[<a href="/wiki/index.php?title=Team:Goettingen/Team&amp;action=edit&amp;section=1" title="Edit section: Team Goettingen!">edit</a>]</span> <span class="mw-headline" id="Team_Goettingen.21">Team Goettingen!</span></h3>
-
<html>
+
<p>An international group of ambitious and enthusiastic master students of the master programs "Microbiology and Biochemistry", "Developmental, Neural, and Behavioral Biology" and "Molecular Biology" of the Georg-August-Universitaet Goettingen, has teamed up once again to participate in the iGEM competition 2013. </p>
-
<style>
+
<p> Our team is supported by <a href="/Team:Goettingen/Team/Instructors#stuelke" title="Team:Goettingen/Team/Instructors">Prof. Dr. Stuelke</a>, <a href="/Team:Goettingen/Team/Instructors#commichau" title="Team:Goettingen/Team/Instructors">Dr.Fabian Commichau</a> and <a href="/Team:Goettingen/Team/Instructors#gunka" title="Team:Goettingen/Team/Instructors">Dr. Katrin Gunka</a>(Department of General Microbiology). They act as advisors for our project and support us in planning and organizing.  </p>
-
a {cursor:pointer}
+
<p>The achievements of our iGEM team 2012 impressed us and attracted our attention to the iGEM competition. The possibility to do our own research project from planning and organizing up to designing of experiments, convinced us to continue Participating in 2013. </p>
-
li{cursor:pointer}
+
<h3><span class="editsection">[<a href="/wiki/index.php?title=Team:Goettingen/Team&amp;action=edit&amp;section=2" title="Edit section: ">edit</a>]</span> <span class="mw-headline" id=""> </span></h3>
-
</style>
+
<p>
-
<ul>
+
</p></div><!--close d-box -->
-
<li onclick="toggle(this.nextElementSibling || getnextElementSibling(this))">September</li>
+
-
<ul style="display:none">
+
-
    <li><a onclick="getWeeklyJournal(16,this)">Week 16</a></li>
+
-
    <li><a onclick="getWeeklyJournal(15,this)">Week 15</a></li>
+
-
    <li><a onclick="getWeeklyJournal(14,this)">Week 14</a></li>
+
-
</ul>  
+
-
<li onclick="toggle(this.nextElementSibling || getnextElementSibling(this))">August</li>
+
-
<ul style="display:none"
+
-
    <li><a onclick="getWeeklyJournal(13,this)">Week 13</a></li>
+
-
    <li><a onclick="getWeeklyJournal(12,this)">Week 12</a></li>
+
-
    <li><a onclick="getWeeklyJournal(11,this)">Week 11</a></li>
+
-
    <li><a onclick="getWeeklyJournal(10,this)">Week 10</a></li>
+
-
</ul> 
+
-
<li onclick="toggle(this.nextElementSibling || getnextElementSibling(this))">July</li>
+
-
<ul style="display:none">
+
-
    <li><a onclick="getWeeklyJournal(9,this)">Week 9</a></li>
+
-
    <li><a onclick="getWeeklyJournal(8,this)">Week 8</a></li>
+
-
    <li><a onclick="getWeeklyJournal(7,this)">Week 7</a></li>
+
-
    <li><a onclick="getWeeklyJournal(6,this)">Week 6</a></li>
+
-
    <li><a onclick="getWeeklyJournal(5,this)">Week 5</a></li>
+
-
</ul>
+
-
<li onclick="toggle(this.nextElementSibling || getnextElementSibling(this))">June</li>
+
-
<ul style="display:none">  
+
-
    <li><a onclick="getWeeklyJournal(4,this)">Week 4</a></li>
+
-
    <li><a onclick="getWeeklyJournal(3,this)">Week 3</a></li>
+
-
    <li><a onclick="getWeeklyJournal(2,this)">Week 2</a></li>
+
-
    <li><a onclick="getWeeklyJournal(1,this)">Week 1</a></li>
+
-
    </ul>
+
-
</li>
+
-
</ul>
+
-
<script>
+
<br>
-
function getWeeklyJournal(n,obj){
+
<div class="t-box" style="top:20px">
-
  //obj.style.marginLeft = '10px';
+
<a href="/Team:Goettingen/Team/Students" style="float:left;display:block;text-decoration:none;">
-
  woche = n;
+
<h2 style="text-align:center">Students</h2>
-
  addw = "https://2013.igem.org/Team:Goettingen/NoteBook_w" + n + "?action=raw&ctype=text";
+
<img src="https://static.igem.org/mediawiki/2013/6/63/Goe-someone.png">
-
  xmlhttp.open("GET",addw,false);
+
</a>
-
  xmlhttp.send();
+
-
  NoteBook_wn = xmlhttp.responseText;
+
-
  document.getElementById('wrapper').innerHTML = NoteBook_wn;
+
-
  updatePage();
+
-
tlc[0].style.display = 'block';
+
-
}
+
-
 
+
-
</script>
 
-
</html>
 
-
===&nbsp;===
+
<a href="/Team:Goettingen/Team/Instructors" style="float:right;display:block;text-decoration:none;">
-
<html>
+
<h2 style="text-align:center">Instructors</h2>
-
</div><!--close nav-->
+
<img src="https://static.igem.org/mediawiki/2013/9/98/Goe-sometie.png">
 +
</a>
 +
<br><br>
 +
<br><br>
 +
<br><br>
 +
<br><br>
-
</div><!--close col-left-->
+
-
  <div id="col-right" style="padding:0 0 0 0;background-image: url(&quot;https://static.igem.org/mediawiki/2013/7/72/Goe-timeline.png&quot;);background-repeat: repeat-y;">
+
<a href="/Team:Goettingen/Team/Gallery" style="float:left;display:block;text-decoration:none;">
-
        <div style="background:#fff;height:40px;width:100%"></div>
+
<h2 style="text-align:center">Gallery</h2>
-
        <div id="wrapper">
+
<img src="https://static.igem.org/mediawiki/2013/a/a1/Goe-gallery.png">
-
       
+
</a>
 +
<a href="/Team:Goettingen/Team/Sponsors" style="float:right;display:block;text-decoration:none;">
 +
<h2 style="text-align:center">Sponsors</h2>
 +
<img src="https://static.igem.org/mediawiki/2013/b/bd/Goe-sponsors.png">
 +
</a>
-
<script>
+
</div>
-
woche= 16;
+
</div>
-
addw = "https://2013.igem.org/Team:Goettingen/NoteBook_w" + woche + "?action=raw&ctype=text";
+
-
xmlhttp.open("GET",addw,false);
+
-
xmlhttp.send();
+
-
NoteBook_wn = xmlhttp.responseText;
+
-
document.write(NoteBook_wn);
+
-
 
+
-
</script>
+
-
</div><!--close wapper-->
+
-
<br />
+
-
<div id="loadmore" class="bt" onclick="loadmore()">Load More ▼</div>
+
-
</div><!--close col-right>
+
-
 
+
</html>
</html>

Revision as of 20:52, 26 September 2013





The beast and its Achilles heel:

 A novel target to fight multi-resistant pathogenic bacteria

[edit] Team Goettingen!

An international group of ambitious and enthusiastic master students of the master programs "Microbiology and Biochemistry", "Developmental, Neural, and Behavioral Biology" and "Molecular Biology" of the Georg-August-Universitaet Goettingen, has teamed up once again to participate in the iGEM competition 2013.

Our team is supported by Prof. Dr. Stuelke, Dr.Fabian Commichau and Dr. Katrin Gunka(Department of General Microbiology). They act as advisors for our project and support us in planning and organizing.

The achievements of our iGEM team 2012 impressed us and attracted our attention to the iGEM competition. The possibility to do our own research project from planning and organizing up to designing of experiments, convinced us to continue Participating in 2013.

[edit]