mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-11 03:38:51 +01:00
* 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
19 lines
No EOL
681 B
Ruby
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 |