From 967666103249efbf2e29c50ed40ead9d8bde8ded Mon Sep 17 00:00:00 2001 From: Adam Dill Date: Sat, 23 Aug 2008 20:27:23 -0400 Subject: [PATCH] removed as much of the contact us and calendar modules as i could find --- app/controllers/calendar_events_controller.rb | 82 ------------------- app/controllers/calendar_tags_controller.rb | 54 ------------ app/controllers/contact_us_controller.rb | 26 ------ app/helpers/calendar_events_helper.rb | 2 - app/helpers/calendar_tags_helper.rb | 2 - app/helpers/contact_us_helper.rb | 2 - app/helpers/news_helper.rb | 2 - app/models/calendar_event.rb | 13 --- app/models/calendar_tag.rb | 3 - app/models/calendar_time.rb | 4 - app/models/message.rb | 36 -------- app/views/calendar_events/_error.rhtml | 3 - app/views/calendar_events/_form.rhtml | 20 ----- app/views/calendar_events/_tagSelector.rhtml | 13 --- .../calendar_events/_timeEndSelector.rhtml | 14 ---- .../calendar_events/_timeNewSelector.rhtml | 2 - .../calendar_events/_timeStartSelector.rhtml | 14 ---- app/views/calendar_events/edit.rhtml | 10 --- app/views/calendar_events/list.rhtml | 33 -------- app/views/calendar_events/new.rhtml | 8 -- app/views/calendar_events/show.rhtml | 9 -- app/views/calendar_tags/_form.rhtml | 10 --- app/views/calendar_tags/edit.rhtml | 9 -- app/views/calendar_tags/list.rhtml | 27 ------ app/views/calendar_tags/new.rhtml | 8 -- app/views/calendar_tags/show.rhtml | 8 -- app/views/contact_us/_contact_form.rhtml | 61 -------------- app/views/contact_us/index.rhtml | 3 - app/views/contact_us/resend.rhtml | 2 - app/views/contact_us/submit.rhtml | 2 - app/views/menu/_calendar.rhtml | 6 -- 31 files changed, 488 deletions(-) delete mode 100644 app/controllers/calendar_events_controller.rb delete mode 100644 app/controllers/calendar_tags_controller.rb delete mode 100644 app/controllers/contact_us_controller.rb delete mode 100644 app/helpers/calendar_events_helper.rb delete mode 100644 app/helpers/calendar_tags_helper.rb delete mode 100644 app/helpers/contact_us_helper.rb delete mode 100644 app/helpers/news_helper.rb delete mode 100644 app/models/calendar_event.rb delete mode 100644 app/models/calendar_tag.rb delete mode 100644 app/models/calendar_time.rb delete mode 100644 app/models/message.rb delete mode 100644 app/views/calendar_events/_error.rhtml delete mode 100755 app/views/calendar_events/_form.rhtml delete mode 100644 app/views/calendar_events/_tagSelector.rhtml delete mode 100644 app/views/calendar_events/_timeEndSelector.rhtml delete mode 100644 app/views/calendar_events/_timeNewSelector.rhtml delete mode 100644 app/views/calendar_events/_timeStartSelector.rhtml delete mode 100644 app/views/calendar_events/edit.rhtml delete mode 100644 app/views/calendar_events/list.rhtml delete mode 100644 app/views/calendar_events/new.rhtml delete mode 100644 app/views/calendar_events/show.rhtml delete mode 100644 app/views/calendar_tags/_form.rhtml delete mode 100644 app/views/calendar_tags/edit.rhtml delete mode 100644 app/views/calendar_tags/list.rhtml delete mode 100644 app/views/calendar_tags/new.rhtml delete mode 100644 app/views/calendar_tags/show.rhtml delete mode 100644 app/views/contact_us/_contact_form.rhtml delete mode 100644 app/views/contact_us/index.rhtml delete mode 100644 app/views/contact_us/resend.rhtml delete mode 100644 app/views/contact_us/submit.rhtml delete mode 100644 app/views/menu/_calendar.rhtml diff --git a/app/controllers/calendar_events_controller.rb b/app/controllers/calendar_events_controller.rb deleted file mode 100644 index 34c6204..0000000 --- a/app/controllers/calendar_events_controller.rb +++ /dev/null @@ -1,82 +0,0 @@ -class CalendarEventsController < ApplicationController - before_filter :login_required - before_filter :load_calendar_event, :only => [:show, :edit, :update, :destroy] - - protected - def load_calendar_event - @calendar_event = CalendarEvent.find(params[:id]) - end - - public - - def index - list - render :action => 'list' - end - - def list - @calendar_event_page, @calendar_event = paginate :calendar_event, :order => 'date DESC', :per_page => 50 - end - - def list_by_tag - @tag_filter = params[:calendar_tag] - @calendar_event_page, @calendar_event = paginate :calendar_event, :order => 'date DESC', :per_page => 50, - :conditions => [ 'calendar_tag_id = ?', @tag_filter ] - render :action => 'list' - end - - def show - end - - def new - @calendar_tags = CalendarTag.find_all - @calendar_event = CalendarEvent.new - end - - def new_copy - @calendar_tags = CalendarTag.find_all - @calendar_event = CalendarEvent.new_copy(CalendarEvent.find(params[:id])) - render :action => 'new' - end - - def selectNewTag - @new_tag = CalendarTag.new( :name => params[:tag_name] ) - if @new_tag.save - #@calendar_event = CalendarEvent.find(params[:id]) - #@calendar_event.calendar_tag_id = new_tag.id - - @calendar_tags = CalendarTag.find_all - render :partial => 'tagSelector' - else - render :text => "500 - Internal Server Error: unable to save new calendar tag", :status => 500 - end - end - - def create - @calendar_event = CalendarEvent.new(params[:calendar_event]) - if @calendar_event.save - flash[:notice] = 'Calendar event was successfully created.' - redirect_to :action => 'list' - else - render :action => 'new' - end - end - - def edit - @calendar_tags = CalendarTag.find_all - end - - def update - if @calendar_event.update_attributes(params[:calendar_event]) - flash[:notice] = 'CalendarEvent was successfully updated.' - redirect_to :action => 'show', :id => @calendar_event - else - render :action => 'edit' - end - end - - def destroy - @calendar_event.destroy - redirect_to :action => 'list' - end -end diff --git a/app/controllers/calendar_tags_controller.rb b/app/controllers/calendar_tags_controller.rb deleted file mode 100644 index 587659c..0000000 --- a/app/controllers/calendar_tags_controller.rb +++ /dev/null @@ -1,54 +0,0 @@ -class CalendarTagsController < ApplicationController - before_filter :login_required - before_filter :load_calendar_tag, :only => [:show, :edit, :update, :destroy] - - protected - def load_calendar_tag - @calendar_tag = CalendarTag.find(params[:id]) - end - - public - - def index - list - render :action => 'list' - end - - def list - @calendar_tag_pages, @calendar_tags = paginate :calendar_tags, :per_page => 10 - end - - def show - end - - def new - @calendar_tag = CalendarTag.new - end - - def create - @calendar_tag = CalendarTag.new(params[:calendar_tag]) - if @calendar_tag.save - flash[:notice] = 'CalendarTag was successfully created.' - redirect_to :action => 'list' - else - render :action => 'new' - end - end - - def edit - end - - def update - if @calendar_tag.update_attributes(params[:calendar_tag]) - flash[:notice] = 'CalendarTag was successfully updated.' - redirect_to :action => 'show', :id => @calendar_tag - else - render :action => 'edit' - end - end - - def destroy - @calendar_tag.destroy - redirect_to :action => 'list' - end -end diff --git a/app/controllers/contact_us_controller.rb b/app/controllers/contact_us_controller.rb deleted file mode 100644 index 7000542..0000000 --- a/app/controllers/contact_us_controller.rb +++ /dev/null @@ -1,26 +0,0 @@ -class ContactUsController < ApplicationController - layout 'page' - model :message - - def index - @contact_message ||= Message.new - @contact_whom = Message.contact_whom - @page = Page.find_by_name 'contact' - - set_layout_variables - end - - def submit - @contact_message = Message.new(params[:contact_message]) - if @contact_message.save - flash[:notice] = 'Your message has been sent' - redirect_to :action => 'index' - else - @contact_whom = Message.contact_whom - render :action => 'index' - end - end - - def resend - end -end diff --git a/app/helpers/calendar_events_helper.rb b/app/helpers/calendar_events_helper.rb deleted file mode 100644 index d1dcd62..0000000 --- a/app/helpers/calendar_events_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module CalendarEventsHelper -end diff --git a/app/helpers/calendar_tags_helper.rb b/app/helpers/calendar_tags_helper.rb deleted file mode 100644 index 7aabdf9..0000000 --- a/app/helpers/calendar_tags_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module CalendarTagsHelper -end diff --git a/app/helpers/contact_us_helper.rb b/app/helpers/contact_us_helper.rb deleted file mode 100644 index e17223a..0000000 --- a/app/helpers/contact_us_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module ContactUsHelper -end diff --git a/app/helpers/news_helper.rb b/app/helpers/news_helper.rb deleted file mode 100644 index 9877c33..0000000 --- a/app/helpers/news_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module NewsHelper -end diff --git a/app/models/calendar_event.rb b/app/models/calendar_event.rb deleted file mode 100644 index 62c93cf..0000000 --- a/app/models/calendar_event.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CalendarEvent < ActiveRecord::Base - belongs_to :calendar_tag -# belongs_to :start_time, :class_name => "CalendarTime", :foreign_key => 'start_time_id' -# belongs_to :end_time, :class_name => "CalendarTime", :foreign_key => 'end_time_id' - - def self.new_copy(old_event) - if (old_event) - new_event = CalendarEvent.new - new_event.attributes = old_event.attributes - new_event - end - end -end diff --git a/app/models/calendar_tag.rb b/app/models/calendar_tag.rb deleted file mode 100644 index b15f638..0000000 --- a/app/models/calendar_tag.rb +++ /dev/null @@ -1,3 +0,0 @@ -class CalendarTag < ActiveRecord::Base - has_many :calendar_events -end diff --git a/app/models/calendar_time.rb b/app/models/calendar_time.rb deleted file mode 100644 index d8277da..0000000 --- a/app/models/calendar_time.rb +++ /dev/null @@ -1,4 +0,0 @@ -class CalendarTime < ActiveRecord::Base - has_many :events_starting, :class_name => "CalendarEvent", :foreign_key => "start_time_id" - has_many :events_ending, :class_name => "CalendarEvent", :foreign_key => "end_time_id" -end diff --git a/app/models/message.rb b/app/models/message.rb deleted file mode 100644 index 62446d7..0000000 --- a/app/models/message.rb +++ /dev/null @@ -1,36 +0,0 @@ -class Message < ActiveRecord::Base - # This will eventually be moved into config/contact_groups.yml - # To configure these groups, make sure to add data in both variables - CONTACT_GROUP = YAML::load_file("#{RAILS_ROOT}/config/contact_groups.yml").freeze - - CONTACT_GROUP_OPTIONS = Hash.new - CONTACT_GROUP.each { |k,v| CONTACT_GROUP_OPTIONS[k] = v['name'] } - CONTACT_GROUP_OPTIONS.freeze - - # TODO: Refactor below to be pulled from CONTACT_GROUP - #CONTACT_GROUP_EMAILS = { - # 'executive' => %w{ test1@test.org test2@test.org }, - #}.freeze - -# Do not edit below this line - validates_presence_of :name, :contact_whom, :message - validates_length_of :name, :maximum => 255 - validates_length_of :email, :maximum => 255 - validates_length_of :phone, :maximum => 255 - validates_length_of :message, :maximum => 65000 # DB limit might be different - - # Gets list of emails to send out based on the contact group - def contact_emails - CONTACT_GROUP[read_attribute('contact_whom')]['emails'] - end - - # Gets the full name of the contact group - def contact_group_name - CONTACT_GROUP[read_attribute('contact_whom')]['name'] - end - - def self.contact_whom - CONTACT_GROUP_OPTIONS.invert.sort - end - -end diff --git a/app/views/calendar_events/_error.rhtml b/app/views/calendar_events/_error.rhtml deleted file mode 100644 index b1ab881..0000000 --- a/app/views/calendar_events/_error.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -<% unless @calendar_event.nil? %> -<%= error_messages_for 'calendar_event' %> -<% end -%> diff --git a/app/views/calendar_events/_form.rhtml b/app/views/calendar_events/_form.rhtml deleted file mode 100755 index 29fbb1f..0000000 --- a/app/views/calendar_events/_form.rhtml +++ /dev/null @@ -1,20 +0,0 @@ -<%= error_messages_for 'calendar_event' %> - -

-
- <%= calendar_date_select :calendar_event, :date %> -

- <% unless @calendar_tags.size > 0 -%> - <%= javascript_tag( "window.onload=newTag(-1);") %> - <% end %> -

<%= render :partial => 'tagSelector' %>

-

-
- <%= text_field 'calendar_event', 'name' %> -

-

-
- <%= text_area 'calendar_event', 'description', "rows" => 10, "cols" => 80 %> -

- - diff --git a/app/views/calendar_events/_tagSelector.rhtml b/app/views/calendar_events/_tagSelector.rhtml deleted file mode 100644 index 89f6bad..0000000 --- a/app/views/calendar_events/_tagSelector.rhtml +++ /dev/null @@ -1,13 +0,0 @@ -
- diff --git a/app/views/calendar_events/_timeEndSelector.rhtml b/app/views/calendar_events/_timeEndSelector.rhtml deleted file mode 100644 index 51bf224..0000000 --- a/app/views/calendar_events/_timeEndSelector.rhtml +++ /dev/null @@ -1,14 +0,0 @@ - - -<%= (@calendar_times.length == 0)? javascript_tag ( "window.onload=newTime(-1, 'end');") : "" %> diff --git a/app/views/calendar_events/_timeNewSelector.rhtml b/app/views/calendar_events/_timeNewSelector.rhtml deleted file mode 100644 index 43fb485..0000000 --- a/app/views/calendar_events/_timeNewSelector.rhtml +++ /dev/null @@ -1,2 +0,0 @@ -<%= select_hour Time.local(2000, 01, 01), :prefix => selected+"_time" %> : -<%= select_minute Time.local(2000, 01, 01), :prefix => selected+"_time" %> diff --git a/app/views/calendar_events/_timeStartSelector.rhtml b/app/views/calendar_events/_timeStartSelector.rhtml deleted file mode 100644 index 780c2be..0000000 --- a/app/views/calendar_events/_timeStartSelector.rhtml +++ /dev/null @@ -1,14 +0,0 @@ - - -<%= (@calendar_times.length == 0)? javascript_tag ( "window.onload=newTime(-1, 'start');") : "" %> diff --git a/app/views/calendar_events/edit.rhtml b/app/views/calendar_events/edit.rhtml deleted file mode 100644 index d3e3b1f..0000000 --- a/app/views/calendar_events/edit.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -

Edit Event

- -<%= form_remote_tag :update => 'main', :url => { :action => 'update', :id => @calendar_event } %> - <%= render :partial => 'form' %> - <%= submit_tag 'Edit' %> -<%= end_form_tag %> - -<%= link_to_remote 'New Copy', :update => 'main', :url => { :action => 'new_copy', :id => @calendar_event } %> | -<%= link_to_remote 'Show', :update => 'main', :url => { :action => 'show', :id => @calendar_event } %> | -<%= link_to_remote 'Back', :update => 'main', :url => { :action => 'list' } %> diff --git a/app/views/calendar_events/list.rhtml b/app/views/calendar_events/list.rhtml deleted file mode 100644 index 4033544..0000000 --- a/app/views/calendar_events/list.rhtml +++ /dev/null @@ -1,33 +0,0 @@ -

Listing Events

- -<%= link_to_remote '<< Previous page |', :update => 'main', :url => { :page => @calendar_event_page.current.previous } if @calendar_event_page.current.previous %> -<%= link_to_remote 'Next page >>', :update => 'main', :url => { :page => @calendar_event_page.current.next } if @calendar_event_page.current.next %> -<%= link_to_remote 'New event', :update => 'main', :url => { :action => 'new' } %> - - - - - - - - - - -<% for event in @calendar_event %> - - - - - - - -<% end %> -
Start TimeNameDescriptionTag
<%=h event.date.strftime("%Y-%m-%d %H:%M") %><%=link_to_remote event.name, :update => 'main', :url => { :action => 'edit', :id => event } %><%=h(truncate(event.description, 20)) %><% unless event.calendar_tag.nil? then %> - <%= link_to_remote event.calendar_tag.name, :update => 'main', :url => { :action => 'list_by_tag', :calendar_tag => event.calendar_tag } %> - <% end -%><%= link_to_remote '[x]', :update => 'main', :url => { :action => 'destroy', :id => event }, :confirm => 'Are you sure?' %>
- -<%= link_to_remote '<< Previous page', :update => 'main', :url => { :page => @calendar_event_page.current.previous } if @calendar_event_page.current.previous %> -<%= link_to_remote 'Next page >>', :update => 'main', :url => { :page => @calendar_event_page.current.next } if @calendar_event_page.current.next %> -<%= link_to_remote 'New Event', :update => 'main', :url => { :action => 'new' } %> - - diff --git a/app/views/calendar_events/new.rhtml b/app/views/calendar_events/new.rhtml deleted file mode 100644 index 1b5478f..0000000 --- a/app/views/calendar_events/new.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -

New Event

- -<%= form_remote_tag :update => 'main', :url => { :action => 'create' } %> - <%= render :partial => 'form' %> - <%= submit_tag "Create" %> -<%= end_form_tag %> - -<%= link_to_remote 'Back', :update => 'main', :url => { :action => 'list' } %> diff --git a/app/views/calendar_events/show.rhtml b/app/views/calendar_events/show.rhtml deleted file mode 100644 index 1afb880..0000000 --- a/app/views/calendar_events/show.rhtml +++ /dev/null @@ -1,9 +0,0 @@ -

 

<% for column in CalendarEvent.content_columns %> -

- <%= column.human_name %>: <%=h @calendar_event.send(column.name) %> -

-<% end %> - -<%= link_to_remote 'New Copy', :update => 'main', :url => { :action => 'new_copy', :id => @calendar_event } %> | -<%= link_to_remote 'Edit', :update => 'main', :url => { :action => 'edit', :id => @calendar_event } %> | -<%= link_to_remote 'Back', :update => 'main', :url => { :action => 'list' } %> diff --git a/app/views/calendar_tags/_form.rhtml b/app/views/calendar_tags/_form.rhtml deleted file mode 100644 index d00dc2a..0000000 --- a/app/views/calendar_tags/_form.rhtml +++ /dev/null @@ -1,10 +0,0 @@ -<%= error_messages_for 'calendar_tag' %> - - -


-<%= text_field 'calendar_tag', 'name' %>

- -


-<%= text_field 'calendar_tag', 'color' %>

- - diff --git a/app/views/calendar_tags/edit.rhtml b/app/views/calendar_tags/edit.rhtml deleted file mode 100644 index 7170c15..0000000 --- a/app/views/calendar_tags/edit.rhtml +++ /dev/null @@ -1,9 +0,0 @@ -

Editing event types

- -<%= form_remote_tag :update => 'main', :url => { :action => 'update', :id => @calendar_tag } %> - <%= render :partial => 'form' %> - <%= submit_tag 'Edit' %> -<%= end_form_tag %> - -<%= link_to_remote 'Show', :update => 'main', :url => { :action => 'show', :id => @calendar_tag } %> | -<%= link_to_remote 'Back', :update => 'main', :url => { :action => 'list' } %> diff --git a/app/views/calendar_tags/list.rhtml b/app/views/calendar_tags/list.rhtml deleted file mode 100644 index dca0a7e..0000000 --- a/app/views/calendar_tags/list.rhtml +++ /dev/null @@ -1,27 +0,0 @@ -

Listing Event Types

- - - - <% for column in CalendarTag.content_columns %> - - <% end %> - - -<% for calendar_tag in @calendar_tags %> - - - - - - - - -<% end %> -
<%= column.human_name %>
<%= link_to_remote calendar_tag.name, :update => 'main', :url => { :action => 'edit', :id => calendar_tag } %><%= calendar_tag.color %><%= link_to_remote 'Events', :update => 'main', :url => { :controller => 'calendar_events', :action => 'list_by_tag', :calendar_tag => calendar_tag } %><%= link_to_remote '[x]', :update => 'main', :url => { :action => 'destroy', :id => calendar_tag }, :confirm => 'Are you sure?' %>
- -<%= link_to_remote 'Previous page', :update => 'main', :url => { :page => @calendar_tag_pages.current.previous } if @calendar_tag_pages.current.previous %> -<%= link_to_remote 'Next page', :update => 'main', :url => { :page => @calendar_tag_pages.current.next } if @calendar_tag_pages.current.next %> - -
- -<%= link_to_remote 'New Event Type', :update => 'main', :url => { :action => 'new' } %> diff --git a/app/views/calendar_tags/new.rhtml b/app/views/calendar_tags/new.rhtml deleted file mode 100644 index 26feb5a..0000000 --- a/app/views/calendar_tags/new.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -

New event type

- -<%= form_remote_tag :update => 'main', :url => { :action => 'create' } %> - <%= render :partial => 'form' %> - <%= submit_tag "Create" %> -<%= end_form_tag %> - -<%= link_to_remote 'Back', :update => 'main', :url => { :action => 'list' } %> diff --git a/app/views/calendar_tags/show.rhtml b/app/views/calendar_tags/show.rhtml deleted file mode 100644 index 5a767c9..0000000 --- a/app/views/calendar_tags/show.rhtml +++ /dev/null @@ -1,8 +0,0 @@ -

 

<% for column in CalendarTag.content_columns %> -

- <%= column.human_name %>: <%=h @calendar_tag.send(column.name) %> -

-<% end %> - -<%= link_to_remote 'Edit', :update => 'main', :url => { :action => 'edit', :id => @calendar_tag } %> | -<%= link_to_remote 'Back', :update => 'main', :url => { :action => 'list' } %> diff --git a/app/views/contact_us/_contact_form.rhtml b/app/views/contact_us/_contact_form.rhtml deleted file mode 100644 index 243582c..0000000 --- a/app/views/contact_us/_contact_form.rhtml +++ /dev/null @@ -1,61 +0,0 @@ -
- <% form_for :contact_message, :url => { :action => :submit } do |form| %> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
You may also contact us by using this form:
 <%= error_messages_for 'contact_message' %>
<%= form.label 'contact_whom', :text => 'Contact: ' %><%= form.select :contact_whom, @contact_whom %>
<%= form.label 'name', :text => 'Name:' %><%= form.text_field :name, :size => 39 %>
<%= form.label 'email', :text => 'E-mail Address:' %><%= form.text_field :email, :size => 39 %>
<%= form.label 'phone', :text => 'Phone Number:' %><%= form.text_field :phone, :size => 39 %>
<%= form.label 'best_time', :text => 'Best time to Call:' %><%= form.text_field :best_time, :size => 39 %>
 
How would you prefer to be contacted? - <%= form.check_box :contact_by_phone %><%= form.label 'contact_by_phone', :text => 'Phone' %>
- <%= form.check_box :contact_by_email %><%= form.label 'contact_by_email', :text => 'Email' %>
-
 
 
<%= form.label 'message', :text => 'Message:' %><%= form.text_area :message, :rows => 10, :cols => 55 %>
Please ensure that all available information is provided before submitting!
<%= submit_tag %>
-<% end %> -
diff --git a/app/views/contact_us/index.rhtml b/app/views/contact_us/index.rhtml deleted file mode 100644 index 17575e2..0000000 --- a/app/views/contact_us/index.rhtml +++ /dev/null @@ -1,3 +0,0 @@ -

ContactUs#index

-<%= @page.body %> -<%= render :partial => 'contact_form' %> diff --git a/app/views/contact_us/resend.rhtml b/app/views/contact_us/resend.rhtml deleted file mode 100644 index f4cfb66..0000000 --- a/app/views/contact_us/resend.rhtml +++ /dev/null @@ -1,2 +0,0 @@ -

ContactUs#resend

-

Find me in app/views/contact_us/resend.rhtml

diff --git a/app/views/contact_us/submit.rhtml b/app/views/contact_us/submit.rhtml deleted file mode 100644 index 065a2d2..0000000 --- a/app/views/contact_us/submit.rhtml +++ /dev/null @@ -1,2 +0,0 @@ -

ContactUs#submit

-

Find me in app/views/contact_us/submit.rhtml

diff --git a/app/views/menu/_calendar.rhtml b/app/views/menu/_calendar.rhtml deleted file mode 100644 index 13f2e9a..0000000 --- a/app/views/menu/_calendar.rhtml +++ /dev/null @@ -1,6 +0,0 @@ -

Calendar Admin

- -[ <%= link_to_remote "< Back", :update => "sitetree", :url => { :action => "menu", :id => "main" } %> ]