[BioRuby-cvs] bioruby/lib/bio/shell/rails/app/views/layouts shell.rhtml, NONE, 1.1

Katayama Toshiaki k at pub.open-bio.org
Mon Feb 27 11:16:24 UTC 2006


Update of /home/repository/bioruby/bioruby/lib/bio/shell/rails/app/views/layouts
In directory pub.open-bio.org:/tmp/cvs-serv2240/app/views/layouts

Added Files:
	shell.rhtml 
Log Message:
* BioRuby shell on Rails kit
* main original files are - app/controllers/shell_controller.rb,
  app/models/shell_connection.rb, app/views/layouts/shell.rhtml,
  app/views/shell/show.rhtml, (app/views/shell/history.rhtml),
  (config/database.yml), public/images/icon.png, public/stylesheets/main.css,
  script/server


--- NEW FILE: shell.rhtml ---
<html>
<head>
  <title>BioRuby shell on Rails</title>
  <link href="/stylesheets/main.css" media="screen" rel="Stylesheet" type="text/css" />
</head>
<body>

<div id="side">
  <img src="/images/icon.png">
  <br>
<!--
  <h2>Status</h2>
  <ul><li><%= @connected ? "Not Connected" : "Connected" %></li></ul>
  <h2>History</h2>
  <ul>
    <li>
      <%= link_to "History", :action => "history" %>
    </li>
  </ul>
-->
  <h2>Local variables</h2>
  <ul>
  <% @local_vars.each do |idx, var| %>
  <li><%= link_to idx, {:action => "show", :id => idx}%></li>
  <% end %>
  </ul>

</div>

<div id="banner">
  BioRuby shell on Rails
</div>

<div id="main">
  <%= @content_for_layout %>
</div>
</body>




More information about the bioruby-cvs mailing list