removing temp files

This commit is contained in:
scott 2010-03-06 03:00:55 -05:00
parent 497f06e5bc
commit 1f6ba7297e
3 changed files with 0 additions and 97 deletions

View File

@ -1,11 +0,0 @@
# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.
class ApplicationController < ActionController::Base
before_filter :authenticate
include Clearance::Authentication
#helper :all # include all helpers, all the time
protect_from_forgery # See ActionController::RequestForgeryProtection for details
# Scrub sensitive parameters from your log
# filter_parameter_logging :password
end

View File

@ -1,25 +0,0 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<%= csrf_meta_tag %>
<%= javascript_include_tag "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js",
"http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js",
:defaults %>
<%= stylesheet_link_tag 'scaffold', 'style', 'formtastic', 'formtastic_changes', :cache => :all %>
<%= yield :head %>
</head>
<body>
<div id='header'>
Collab
</div>
<% flash.each_key do |flash_key| %>
<div id='flash_<%=h flash_key.to_s %>' class='flash'>
<%=h flash[flash_key] %>
</div>
<% end %>
<div id='wrapper'>
<div id='content'>
<%= yield %>
</div>
</div>
</body>
</html>

View File

@ -1,61 +0,0 @@
* {
margin:0;
padding:0;
}
h1 {
margin-top:10px
}
div.flash {
width:1000px;
margin-left:auto;
margin-right:auto;
padding:5px;
background-color:white;
margin-top:20px;
}
div#flash_error {
color:red;
border:red 5px solid;
}
div#flash_notice {
color:blue;
border:blue 5px solid;
}
div#flash_success {
color:green;
border:green 5px solid;
}
table.task_list tr.odd{
background-color:#ddd;
}
table.task_list tr.even{
}
body {
background-color:gray;
}
div#header {
width:1000px;
margin-left:auto;
margin-right:auto;
font-size:24;
font-weight:bold;
}
div#wrapper {
margin-left:auto;
margin-right:auto;
width:1000px;
margin-top:30px;
background-color:white;
}