Merge branch 'master' of gitlab.odin.cse.buffalo.edu:odin-lab/Website

This commit is contained in:
Oliver Kennedy 2017-12-01 21:12:25 -05:00
commit c90df3c8c7
2 changed files with 13 additions and 4 deletions

View file

@ -111,9 +111,9 @@ After the taking the course, students should be able to:
* **Nov. 22 - Nov. 24** : **Fall Break**
* **Nov. 27** : Non-Traditional Query Optimization [ [paper](http://www.vldb.org/pvldb/vol10/p1310-feser.pdf) | [feedback](feedback/08-imputation.html) ]
* **Nov. 29 - Dec. 1** : Student Project Presentations
* **Checkpoint 3 report due by 11:59 PM Dec. 3**
* **Dec. 04 - Dec. 8** : Checkpoint 3 Reviews
* **Demo Day Time/Location To Be Announced**
* **Checkpoint 3 report due by 11:59 PM Dec. 15**
-----

View file

@ -1,6 +1,11 @@
<%
name = if defined? name then name else "A Mysterious Stranger" end
use_gnusocial = false
if defined? gnusocial
use_gnusocial = true
gnusocial = [:prefix, :account, :host].zip(gnusocial.split(/@/)).to_h
end
%>
<div class="person">
<% if defined? pic %>
@ -23,9 +28,7 @@ name = if defined? name then name else "A Mysterious Stranger" end
<div class="links">
<% if defined? github %><a href="http://github.com/<%=github%>">GitHub</a><% end %>
<% if defined? twitter %><a href="http://twitter.com/<%=twitter%>">Twitter</a><% end %>
<% if defined? gnusocial
prefix, account, host = gnusocial.split(/@/)
%><a href="https://<%=host%>/@<%=account%>">@<%=account%></a><% end %>
<% if use_gnusocial %><a href="https://<%=gnusocial[:host]%>/@<%=gnusocial[:account]%>">@<%=gnusocial[:account]%>@<%=gnusocial[:host]%></a><% end %>
<% if defined? scholar %><a href="http://scholar.google.com/citations?user=/<%=scholar%>">Google&nbsp;Scholar</a><% end %>
<% if defined? dblp %><a href="http://dblp.uni-trier.de/pers/<%=dblp%>">DBLP</a><% end %>
<% if defined? cv %><a href="<%=cv%>">CV</a><% end %>
@ -33,6 +36,12 @@ name = if defined? name then name else "A Mysterious Stranger" end
<%= body %>
<% if use_gnusocial and false %>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://<%=gnusocial[:host]%>/users/<%=gnusocial[:account]%>"></iframe>
</div>
<% end # if defined? gnusocial %>
<% pubs = LabMetadata::publications_for(name) %>
<% unless pubs.empty? %>
<h2>Publications</h2>