tracks/tracks/app/controllers/application.rb
bsag 49b8fa1007 * Started to add some of the framework for iCal integration (not working yet)
* Added validation for next actions (on description and notes field)



git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@7 a4c988fc-2ded-0310-b66e-134b36920a42
2005-01-16 15:24:34 +00:00

19 lines
No EOL
681 B
Ruby

# The filters added to this controller will be run for all controllers in the application.
# Likewise will all the methods added be available for all controllers.
require_dependency "login_system"
require_dependency "redcloth"
require_dependency "iCal"
require 'date'
$delete_img = "<img src=\"/images/delete.png\" width=\"10\" height=\"10\" />"
$edit_img = "<img src=\"/images/edit.png\" width=\"10\" height=\"10\" />"
$notes_img = "<img src=\"/images/notes.png\" width=\"10\" height=\"10\" />"
$done_img = "<img src=\"/images/done.png\" width=\"16\" height=\"16\" />"
class ApplicationController < ActionController::Base
helper :application
include LoginSystem
end