Major integration of Courtland's design into the QuickVotes.
[selectricity-live] / app / controllers / application.rb
index 537de40d7e3bdf68fa3816f217b9b9c997060db5..aeb2204f38ef75015b229032463114d7975330be 100644 (file)
@@ -1,4 +1,21 @@
 # Filters added to this controller will be run for all controllers in the application.
 # Likewise, all the methods added will be available for all controllers.
+
 class ApplicationController < ActionController::Base
-end
\ No newline at end of file
+  include AuthenticatedSystem
+  helper :user
+  require_dependency "user"
+  before_filter :add_stylesheets
+   
+  def initialize
+    @stylesheets = []
+  end
+            
+  def add_stylesheets
+    file = "#{Dir.pwd}/public/stylesheets/#{controller_name}.css"
+    if File.exists? file
+      @stylesheets << controller_name
+    end
+  end
+
+end

Benjamin Mako Hill || Want to submit a patch?