├── GPL.txt ├── Gemfile ├── LICENSE.txt ├── README.rdoc ├── app ├── controllers │ └── schedules_controller.rb ├── helpers │ └── schedules_helper.rb ├── models │ ├── schedule_closed_entry.rb │ ├── schedule_default.rb │ ├── schedule_entry.rb │ └── schedule_mailer.rb └── views │ ├── my │ └── blocks │ │ ├── _my_schedule.html.erb │ │ └── _scheduled_vs_spent_time.html.erb │ ├── schedule_mailer │ └── future_changed.html.erb │ ├── schedules │ ├── _availability.html.erb │ ├── _calendar.html.erb │ ├── _project.html.erb │ ├── _schedule_entry.html.erb │ ├── _sidebar.html.erb │ ├── _user.html.erb │ ├── default.html.erb │ ├── edit.html.erb │ ├── fill.html.erb │ ├── index.html.erb │ └── report.html.erb │ └── versions │ └── show.html.erb ├── assets ├── javascripts │ └── schedules_edit.js └── stylesheets │ └── schedules.css ├── config ├── locales │ ├── cs.yml │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── he.yml │ ├── it.yml │ ├── nl.yml │ ├── pt-br.yml │ └── ru.yml └── routes.rb ├── db └── migrate │ ├── 001_create_schedule_entry.rb │ ├── 002_create_availability_entry.rb │ └── 003_create_schedule_default.rb ├── init.rb ├── lib └── schedule_compatibility.rb └── test ├── fixtures └── focus.yml ├── functional └── schedules_controller_test.rb ├── test_helper.rb └── unit └── focus_test.rb /GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/GPL.txt -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/README.rdoc -------------------------------------------------------------------------------- /app/controllers/schedules_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/controllers/schedules_controller.rb -------------------------------------------------------------------------------- /app/helpers/schedules_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/helpers/schedules_helper.rb -------------------------------------------------------------------------------- /app/models/schedule_closed_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/models/schedule_closed_entry.rb -------------------------------------------------------------------------------- /app/models/schedule_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/models/schedule_default.rb -------------------------------------------------------------------------------- /app/models/schedule_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/models/schedule_entry.rb -------------------------------------------------------------------------------- /app/models/schedule_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/models/schedule_mailer.rb -------------------------------------------------------------------------------- /app/views/my/blocks/_my_schedule.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/my/blocks/_my_schedule.html.erb -------------------------------------------------------------------------------- /app/views/my/blocks/_scheduled_vs_spent_time.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/my/blocks/_scheduled_vs_spent_time.html.erb -------------------------------------------------------------------------------- /app/views/schedule_mailer/future_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedule_mailer/future_changed.html.erb -------------------------------------------------------------------------------- /app/views/schedules/_availability.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/_availability.html.erb -------------------------------------------------------------------------------- /app/views/schedules/_calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/_calendar.html.erb -------------------------------------------------------------------------------- /app/views/schedules/_project.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/_project.html.erb -------------------------------------------------------------------------------- /app/views/schedules/_schedule_entry.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/_schedule_entry.html.erb -------------------------------------------------------------------------------- /app/views/schedules/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/schedules/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/_user.html.erb -------------------------------------------------------------------------------- /app/views/schedules/default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/default.html.erb -------------------------------------------------------------------------------- /app/views/schedules/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/edit.html.erb -------------------------------------------------------------------------------- /app/views/schedules/fill.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/fill.html.erb -------------------------------------------------------------------------------- /app/views/schedules/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/index.html.erb -------------------------------------------------------------------------------- /app/views/schedules/report.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/schedules/report.html.erb -------------------------------------------------------------------------------- /app/views/versions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/app/views/versions/show.html.erb -------------------------------------------------------------------------------- /assets/javascripts/schedules_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/assets/javascripts/schedules_edit.js -------------------------------------------------------------------------------- /assets/stylesheets/schedules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/assets/stylesheets/schedules.css -------------------------------------------------------------------------------- /config/locales/cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/cs.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/he.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/nl.yml -------------------------------------------------------------------------------- /config/locales/pt-br.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/pt-br.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/001_create_schedule_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/db/migrate/001_create_schedule_entry.rb -------------------------------------------------------------------------------- /db/migrate/002_create_availability_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/db/migrate/002_create_availability_entry.rb -------------------------------------------------------------------------------- /db/migrate/003_create_schedule_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/db/migrate/003_create_schedule_default.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/init.rb -------------------------------------------------------------------------------- /lib/schedule_compatibility.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/lib/schedule_compatibility.rb -------------------------------------------------------------------------------- /test/fixtures/focus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/test/fixtures/focus.yml -------------------------------------------------------------------------------- /test/functional/schedules_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/test/functional/schedules_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/focus_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradbeattie/redmine-schedules-plugin/HEAD/test/unit/focus_test.rb --------------------------------------------------------------------------------