Team:TU Delft/pages/blog

From 2010.igem.org

(Difference between revisions)
 
(34 intermediate revisions not shown)
Line 1: Line 1:
-
<noinclude>For some reason, there needs to be an empty line at the start otherwise the wiki markup is not working correctly on the main page</noinclude>
 
==Blog==
==Blog==
Follow our progress day by day via our blog. Also don't forget to become a fan of our [http://tiny.cc/igemtudelft Facebook page] or [http://twitter.com/igemtudelft2010 follow us on Twitter].
Follow our progress day by day via our blog. Also don't forget to become a fan of our [http://tiny.cc/igemtudelft Facebook page] or [http://twitter.com/igemtudelft2010 follow us on Twitter].
 +
==Calendar==
<html>
<html>
-
<h2><span class="mv-headline" id="blog_item_date">Today's post</span></h2>
+
<div id="calendar_container" style="width: 300px; float: right;"></html>
-
<div id="blog_item_container"></html>
+
{{:Team:TU_Delft/scroll_calendar}}
-
{{:Team:TU_Delft/{{CURRENTDAY}}_{{CURRENTMONTHNAME}}_{{CURRENTYEAR}}_content}}
+
<html></div>
<html></div>
 +
 +
<div style="width: 450px;">
 +
<h2><span class="mv-headline" id="blog_item_date">Today's post</span></h2>
 +
<div id="blog_item_container"></div>
<div style="display:none;" id="blog_item_next"></div>
<div style="display:none;" id="blog_item_next"></div>
<div style="clear:both;"></div>
<div style="clear:both;"></div>
 +
</div>
 +
<div id="fb-root"></div>
 +
<div id="blog_item_fbcomments"></div>
</html>
</html>
-
==Calendar==
+
<html>
-
<html><div id="calendar_container" style="width: auto;"></html>
+
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js"></script> -->
-
{{:Team:TU_Delft/basic_calendar}}
+
-
<html></div>
+
-
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
+
<script type="text/javascript">
-
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
+
-
<style>
+
var datePickerLoaded = false;
-
.ui-datepicker.ui-widget-content .ui-state-default { background: none; }
+
-
.ui-widget-content .day_with_blog a.ui-state-default { background-color: #ccc; }
+
-
.ui-widget-content .day_no_blog a.ui-state-default { background-color: #eee; }
+
-
</style>
+
-
<script type="text/javascript">
+
function dbgout(msg) {
-
$(function() {
+
   var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
-
   var datemap = {};
+
  if(is_chrome) console.log(msg);
 +
}
-
  // use the old calendar to find which days have a blog entry
+
function blog_loadDate(date) {
-
  $("#calendar_container .month").each(function() {  
+
  var datestr = jQuery.datepicker.formatDate("d_MM_yy", date);
-
    var month = $.trim( $(".heading", this).text() );
+
  var url = "/Team:TU_Delft/"+datestr+"_content?action=render";
 +
  setActiveMonth(date.getMonth() - 2);
 +
  dbgout('blog_loadDate: ' + date);
-
     $("a", this).each(function() {  
+
  $.get(url, function(response) {
-
       var day = $.trim( $(this).text() );
+
     $("#blog_item_container").fadeOut(200).queue(function(next) {
-
       if ($(".day-active", this).length > 0) {
+
       $(this).html(response);
-
        datemap["d"+day+month] = true;
+
      var refURL = "https://2010.igem.org/Team:TU_Delft#/blog?blog=" + datestr;
-
       }
+
      $("#blog_item_date").text(jQuery.datepicker.formatDate("d MM yy", date));
-
     });
+
       $("#blog_item_fbcomments").html('<fb:comments url="' + refURL + '" xid="igemblog' + datestr +'" numposts="10" width="450"></fb:comments>');
 +
       FB.XFBML.parse(document.getElementById('blog_item_fbcomments'));
 +
      next();
 +
     }).fadeIn(200);
   });
   });
 +
}
-
  $("#calendar_container").empty().datepicker( {
 
-
      onSelect: function(dateText, inst) {
 
-
        var date = $(this).datepicker("getDate");
 
-
        var datestr = jQuery.datepicker.formatDate("d_MM_yy", date);
 
-
        var url = "/Team:TU_Delft/"+datestr+"_content?action=render";
 
-
        $.get(url, function(response) {
+
function blog_hashchange_cb() {
-
          $("#blog_item_container").fadeOut(200).queue(function(next) {
+
  dbgout('blog_hashchange');
-
            $(this).html(response);
+
-
            $("#blog_item_date").text(jQuery.datepicker.formatDate("d MM yy", date));
+
-
            next();
+
-
          }).fadeIn(200);
+
-
        });
+
-
      },
+
-
      beforeShowDay: getDateInfo
+
-
    });
+
-
   function getDateInfo(date) {
+
   hash = location.hash.substring(1);
-
    var fmt = $.datepicker.formatDate("dMM", date);
+
  var kvmap = splitHash(hash);
-
    var hasBlogItem = datemap["d" + fmt];
+
 
-
     return [wgUserName ? true : hasBlogItem, hasBlogItem ? 'day_with_blog' : 'day_no_blog'];
+
  if (kvmap.blog)
 +
    blog_loadDate($.datepicker.parseDate('d_MM_yy', kvmap.blog));
 +
}
 +
 
 +
function blogInit() {
 +
  dbgout('blogInit');
 +
 
 +
  initScrollCalendar();
 +
 
 +
  setCalendarLinks (function(day, mo, hasEntry) {
 +
  // console.log('Day: ' + day + '; Mo: ' + mo + '; hasentry=' + hasEntry);
 +
    return makeHash('pages/blog', { blog: day + '_' + mo + '_2010'});
 +
  });
 +
  setHash('pages/blog', { blog: $.datepicker.formatDate("d_MM_yy", new Date()) } );
 +
 
 +
  dbgout('bind hashupdate');
 +
  $(window).bind('hashupdate', blog_hashchange_cb);
 +
}
 +
 
 +
$(function() { 
 +
  loadScript('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.js', function() {
 +
 
 +
  if (jQuery.support.boxModel) {
 +
// facebook initialization code
 +
  window.fbAsyncInit = function() {
 +
     FB.init({appId: '132572820109093', status: true, cookie: true, xfbml: true});
 +
    blogInit();
 +
  };
 +
 
 +
  var e = document.createElement('script'); e.async = true;
 +
  e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
 +
  document.getElementById('fb-root').appendChild(e);
 +
  } else {
 +
    $("#blog_item_fbcomments").text("Facebook comments unsupported on this browser.");
 +
    blogInit();
   }
   }
 +
  });
});
});
 +
var blogpage_close = function() {
 +
  dbgout('unbind hashupdate');
 +
  $(window).unbind('hashupdate', blog_hashchange_cb);
 +
};
 +
 +
$(window).bind('page_close', blogpage_close);
</script>
</script>
</html>
</html>

Latest revision as of 14:25, 16 September 2010

Blog

Follow our progress day by day via our blog. Also don't forget to become a fan of our Facebook page or follow us on Twitter.

Calendar

March
MTWTFSS
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
April
MTWTFSS
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
May
MTWTFSS
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
June
MTWTFSS
          1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
July
MTWTFSS
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
August
MTWTFSS
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
September
MTWTFSS
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
October
MTWTFSS
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
November
MTWTFSS
        1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30

Today's post