2013-01-11 23:49:59 +00:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# TODO: Where is this file located?
|
|
|
|
# TODO: What does this file do?
|
|
|
|
# TODO: Is this code old or in use?
|
|
|
|
# I think it shows all topics, and is deprecated. -Devin
|
|
|
|
#%>
|
2013-01-01 22:45:35 +00:00
|
|
|
<% unless @topic.nil? %>
|
2012-10-28 18:37:46 +00:00
|
|
|
<div class="home" id="container">
|
|
|
|
<div id="center-container">
|
|
|
|
<div id="infovis"></div>
|
|
|
|
</div>
|
|
|
|
<div id="showcard">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="clearfloat"></div>
|
|
|
|
<script>
|
|
|
|
json = <%= @alljson %>;
|
|
|
|
$(document).ready(function() {
|
2012-12-14 18:31:39 +00:00
|
|
|
initialize("chaotic");
|
2012-10-28 18:37:46 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<% end %>
|
2013-01-01 22:45:35 +00:00
|
|
|
<% if @topic.nil? %>
|
2012-10-28 18:37:46 +00:00
|
|
|
<p><br>Shucks, there is nothing in metamaps.<p>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% if authenticated? %>
|
2013-01-01 22:45:35 +00:00
|
|
|
<%= render :partial => 'topics/new' %>
|
2012-10-28 18:37:46 +00:00
|
|
|
<%= render :partial => 'synapses/new' %>
|
|
|
|
<% end %>
|
|
|
|
|