think_feel_do_engine 3.10.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +54 -0
- data/Rakefile +49 -0
- data/app/assets/images/changing_actions.gif +0 -0
- data/app/assets/images/evaluating_thoughts.gif +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/think_feel_do_engine/athletic_man.png +0 -0
- data/app/assets/images/think_feel_do_engine/favicon.ico +0 -0
- data/app/assets/images/think_feel_do_engine/head_with_gears.jpg +0 -0
- data/app/assets/images/think_feel_do_engine/professional_woman.png +0 -0
- data/app/assets/images/think_feel_do_engine/woman_with_wrench.png +0 -0
- data/app/assets/javascripts/think_feel_do_engine.js +32 -0
- data/app/assets/javascripts/think_feel_do_engine/activities/activity_tracker.js +386 -0
- data/app/assets/javascripts/think_feel_do_engine/activities/dailyBreakdown.js +407 -0
- data/app/assets/javascripts/think_feel_do_engine/activities/forms.js +81 -0
- data/app/assets/javascripts/think_feel_do_engine/activities/your_activities.js +28 -0
- data/app/assets/javascripts/think_feel_do_engine/assessments.js +14 -0
- data/app/assets/javascripts/think_feel_do_engine/coach/messages/new.js +13 -0
- data/app/assets/javascripts/think_feel_do_engine/coach/patient_dashboards/index.js +16 -0
- data/app/assets/javascripts/think_feel_do_engine/dateWrapper.js +7 -0
- data/app/assets/javascripts/think_feel_do_engine/devise/passwords/edit.js.erb +24 -0
- data/app/assets/javascripts/think_feel_do_engine/event_capture/init.js +68 -0
- data/app/assets/javascripts/think_feel_do_engine/feel/emotion_mood_viz.js +31 -0
- data/app/assets/javascripts/think_feel_do_engine/feel/emotions.js +450 -0
- data/app/assets/javascripts/think_feel_do_engine/feel/timeago.js +214 -0
- data/app/assets/javascripts/think_feel_do_engine/forms/multi_page.js.erb +22 -0
- data/app/assets/javascripts/think_feel_do_engine/forms/multi_page_thought.js.erb +41 -0
- data/app/assets/javascripts/think_feel_do_engine/forms/suggested_prompt.js +22 -0
- data/app/assets/javascripts/think_feel_do_engine/markdown_editor.js +13 -0
- data/app/assets/javascripts/think_feel_do_engine/media_access_events.js +35 -0
- data/app/assets/javascripts/think_feel_do_engine/messages.js +8 -0
- data/app/assets/javascripts/think_feel_do_engine/participants.js +12 -0
- data/app/assets/javascripts/think_feel_do_engine/responsive-table.js +75 -0
- data/app/assets/javascripts/think_feel_do_engine/scrollindicator.js +92 -0
- data/app/assets/javascripts/think_feel_do_engine/shared/detect_timeout.js +42 -0
- data/app/assets/javascripts/think_feel_do_engine/slideshows.js +14 -0
- data/app/assets/javascripts/think_feel_do_engine/stepped_care.js +53 -0
- data/app/assets/javascripts/think_feel_do_engine/task_status.js +19 -0
- data/app/assets/javascripts/think_feel_do_engine/thought_patterns/index.js.erb +17 -0
- data/app/assets/javascripts/think_feel_do_engine/thoughts/edit_bulk.js +12 -0
- data/app/assets/javascripts/think_feel_do_engine/thoughts/scThoughtTrackerMenuViz.js +346 -0
- data/app/assets/javascripts/think_feel_do_engine/thoughts/thought_viz.js +53 -0
- data/app/assets/javascripts/think_feel_do_engine/users.js +10 -0
- data/app/assets/javascripts/think_feel_do_engine/validate_social_sharing.js +60 -0
- data/app/assets/stylesheets/think_feel_do_engine.css +12 -0
- data/app/assets/stylesheets/think_feel_do_engine/activities.css.scss +15 -0
- data/app/assets/stylesheets/think_feel_do_engine/base.css.scss +691 -0
- data/app/assets/stylesheets/think_feel_do_engine/dataTables-overrides.css.scss +27 -0
- data/app/assets/stylesheets/think_feel_do_engine/mobile.css.scss +3 -0
- data/app/assets/stylesheets/think_feel_do_engine/print.css.scss +1 -0
- data/app/controllers/think_feel_do_engine/application_controller.rb +77 -0
- data/app/controllers/think_feel_do_engine/bit_maker/content_modules_controller.rb +115 -0
- data/app/controllers/think_feel_do_engine/bit_maker/content_providers_controller.rb +117 -0
- data/app/controllers/think_feel_do_engine/bit_maker/slides_controller.rb +168 -0
- data/app/controllers/think_feel_do_engine/bit_maker/slideshow_anchors_controller.rb +61 -0
- data/app/controllers/think_feel_do_engine/bit_maker/slideshows_controller.rb +93 -0
- data/app/controllers/think_feel_do_engine/coach/group_dashboard_controller.rb +18 -0
- data/app/controllers/think_feel_do_engine/coach/memberships_controller.rb +38 -0
- data/app/controllers/think_feel_do_engine/coach/messages_controller.rb +91 -0
- data/app/controllers/think_feel_do_engine/coach/participant_activities_visualizations_controller.rb +24 -0
- data/app/controllers/think_feel_do_engine/coach/participant_thoughts_visualizations_controller.rb +15 -0
- data/app/controllers/think_feel_do_engine/coach/patient_dashboards_controller.rb +70 -0
- data/app/controllers/think_feel_do_engine/coach/phq_assessments_controller.rb +94 -0
- data/app/controllers/think_feel_do_engine/coach/received_messages_controller.rb +45 -0
- data/app/controllers/think_feel_do_engine/coach/sent_messages_controller.rb +26 -0
- data/app/controllers/think_feel_do_engine/coach/site_messages_controller.rb +49 -0
- data/app/controllers/think_feel_do_engine/coach_dashboard_controller.rb +11 -0
- data/app/controllers/think_feel_do_engine/concerns/browser_detective.rb +26 -0
- data/app/controllers/think_feel_do_engine/concerns/navigator_enabled.rb +17 -0
- data/app/controllers/think_feel_do_engine/keep_alive_controller.rb +27 -0
- data/app/controllers/think_feel_do_engine/lesson_slides_controller.rb +98 -0
- data/app/controllers/think_feel_do_engine/lessons_controller.rb +128 -0
- data/app/controllers/think_feel_do_engine/manage/groups_controller.rb +29 -0
- data/app/controllers/think_feel_do_engine/manage/tasks_controller.rb +68 -0
- data/app/controllers/think_feel_do_engine/memberships_controller.rb +55 -0
- data/app/controllers/think_feel_do_engine/navigator_controller.rb +109 -0
- data/app/controllers/think_feel_do_engine/participant_data_controller.rb +83 -0
- data/app/controllers/think_feel_do_engine/participants/activities_controller.rb +62 -0
- data/app/controllers/think_feel_do_engine/participants/assessments_controller.rb +84 -0
- data/app/controllers/think_feel_do_engine/participants/lessons_controller.rb +28 -0
- data/app/controllers/think_feel_do_engine/participants/media_access_events_controller.rb +42 -0
- data/app/controllers/think_feel_do_engine/participants/passwords_controller.rb +33 -0
- data/app/controllers/think_feel_do_engine/participants/public_slides_controller.rb +11 -0
- data/app/controllers/think_feel_do_engine/participants/sessions_controller.rb +16 -0
- data/app/controllers/think_feel_do_engine/participants/task_status_controller.rb +29 -0
- data/app/controllers/think_feel_do_engine/participants/thoughts_controller.rb +28 -0
- data/app/controllers/think_feel_do_engine/password_entropy_bits_controller.rb +12 -0
- data/app/controllers/think_feel_do_engine/privacy_policies_controller.rb +15 -0
- data/app/controllers/think_feel_do_engine/quick_sign_ins_controller.rb +18 -0
- data/app/controllers/think_feel_do_engine/users/passwords_controller.rb +16 -0
- data/app/controllers/think_feel_do_engine/users/registrations_controller.rb +16 -0
- data/app/controllers/think_feel_do_engine/users/sessions_controller.rb +36 -0
- data/app/helpers/think_feel_do_engine/activities_helper.rb +53 -0
- data/app/helpers/think_feel_do_engine/application_helper.rb +24 -0
- data/app/helpers/think_feel_do_engine/brand_helper.rb +36 -0
- data/app/helpers/think_feel_do_engine/coach/activity_color_code_helper.rb +52 -0
- data/app/helpers/think_feel_do_engine/coach/dashboard_and_phq_table_helper.rb +93 -0
- data/app/helpers/think_feel_do_engine/coach/group_dashboard_helper.rb +156 -0
- data/app/helpers/think_feel_do_engine/coach/messages_helper.rb +35 -0
- data/app/helpers/think_feel_do_engine/coach/moods_and_phq_viz_helper.rb +23 -0
- data/app/helpers/think_feel_do_engine/coach/patient_dashboard_helper.rb +58 -0
- data/app/helpers/think_feel_do_engine/emotions_helper.rb +15 -0
- data/app/helpers/think_feel_do_engine/phq_assessment_helper.rb +14 -0
- data/app/helpers/think_feel_do_engine/presenters_helper.rb +8 -0
- data/app/helpers/think_feel_do_engine/slides_helper.rb +43 -0
- data/app/helpers/think_feel_do_engine/tasks_helper.rb +110 -0
- data/app/mailers/think_feel_do_engine/lesson_notification_mailer.rb +15 -0
- data/app/mailers/think_feel_do_engine/message_notifications.rb +21 -0
- data/app/mailers/think_feel_do_engine/site_message_mailer.rb +11 -0
- data/app/models/ability.rb +91 -0
- data/app/models/activity.rb +362 -0
- data/app/models/activity_type.rb +8 -0
- data/app/models/arm.rb +47 -0
- data/app/models/arm_validator.rb +11 -0
- data/app/models/available_content_module.rb +95 -0
- data/app/models/awake_period.rb +40 -0
- data/app/models/bit_core/slide_observer.rb +9 -0
- data/app/models/coach_assignment.rb +9 -0
- data/app/models/content_modules.rb +27 -0
- data/app/models/content_modules/lesson_module.rb +88 -0
- data/app/models/content_provider_decorator.rb +115 -0
- data/app/models/content_provider_policy.rb +6 -0
- data/app/models/content_providers/accomplished_activity_index_provider.rb +21 -0
- data/app/models/content_providers/activity_index_provider.rb +25 -0
- data/app/models/content_providers/augmented_thoughts_table_provider.rb +18 -0
- data/app/models/content_providers/awake_period_form.rb +67 -0
- data/app/models/content_providers/create_activity.rb +42 -0
- data/app/models/content_providers/edit_past_feel_provider.rb +8 -0
- data/app/models/content_providers/evaluate_thoughts_provider.rb +15 -0
- data/app/models/content_providers/fun_activity_checklist.rb +43 -0
- data/app/models/content_providers/harmful_thoughts_edit_form_provider.rb +31 -0
- data/app/models/content_providers/helpful_thoughts_index_provider.rb +31 -0
- data/app/models/content_providers/important_activity_checklist.rb +44 -0
- data/app/models/content_providers/index_past_feel_provider.rb +24 -0
- data/app/models/content_providers/input_new_activity_form.rb +28 -0
- data/app/models/content_providers/learn_lessons_index_provider.rb +55 -0
- data/app/models/content_providers/messages_index_provider.rb +64 -0
- data/app/models/content_providers/module_index_provider.rb +41 -0
- data/app/models/content_providers/new_complete_thought_form_provider.rb +26 -0
- data/app/models/content_providers/new_current_emotion_provider.rb +30 -0
- data/app/models/content_providers/new_current_feel_provider.rb +26 -0
- data/app/models/content_providers/new_harmful_thought_form_provider.rb +27 -0
- data/app/models/content_providers/new_message_form_provider.rb +61 -0
- data/app/models/content_providers/new_past_feel_provider.rb +26 -0
- data/app/models/content_providers/new_thought_form_provider.rb +26 -0
- data/app/models/content_providers/new_thoughts_form_provider.rb +26 -0
- data/app/models/content_providers/past_activity_form.rb +55 -0
- data/app/models/content_providers/past_activity_review_form.rb +36 -0
- data/app/models/content_providers/past_due_activities_viz.rb +40 -0
- data/app/models/content_providers/pleasurable_activity_index_provider.rb +20 -0
- data/app/models/content_providers/previous_planned_activities_provider.rb +35 -0
- data/app/models/content_providers/random_slide_provider.rb +14 -0
- data/app/models/content_providers/show_message_provider.rb +78 -0
- data/app/models/content_providers/thought_patterns_index_provider.rb +21 -0
- data/app/models/content_providers/thoughts_distortion_viz_provider.rb +22 -0
- data/app/models/content_providers/thoughts_table_provider.rb +17 -0
- data/app/models/content_providers/unhelpful_thoughts_list_provider.rb +67 -0
- data/app/models/content_providers/unhelpful_thoughts_reflection_provider.rb +26 -0
- data/app/models/content_providers/unplanned_activity_form.rb +35 -0
- data/app/models/content_providers/your_activities_provider.rb +94 -0
- data/app/models/delivered_message.rb +59 -0
- data/app/models/emotion.rb +30 -0
- data/app/models/emotional_rating.rb +45 -0
- data/app/models/engagement.rb +7 -0
- data/app/models/group.rb +144 -0
- data/app/models/media_access_event.rb +24 -0
- data/app/models/membership.rb +199 -0
- data/app/models/message.rb +58 -0
- data/app/models/message_sms_notification.rb +45 -0
- data/app/models/mood.rb +31 -0
- data/app/models/participant.rb +355 -0
- data/app/models/participant_login_event.rb +6 -0
- data/app/models/participant_token.rb +32 -0
- data/app/models/phq_assessment.rb +55 -0
- data/app/models/phq_stepping.rb +325 -0
- data/app/models/phq_stepping_assessment.rb +96 -0
- data/app/models/planned_activity.rb +5 -0
- data/app/models/roles/clinician.rb +4 -0
- data/app/models/roles/content_author.rb +4 -0
- data/app/models/roles/researcher.rb +4 -0
- data/app/models/site_message.rb +6 -0
- data/app/models/slideshow_anchor.rb +16 -0
- data/app/models/task.rb +102 -0
- data/app/models/task_status.rb +94 -0
- data/app/models/think_feel_do_engine/addressable.rb +28 -0
- data/app/models/think_feel_do_engine/concerns/validate_password.rb +65 -0
- data/app/models/think_feel_do_engine/password_validator.rb +55 -0
- data/app/models/think_feel_do_engine/reports/emotional_rating.rb +23 -0
- data/app/models/think_feel_do_engine/reports/event.rb +26 -0
- data/app/models/think_feel_do_engine/reports/lesson_module.rb +47 -0
- data/app/models/think_feel_do_engine/reports/lesson_slide_view.rb +94 -0
- data/app/models/think_feel_do_engine/reports/lesson_viewing.rb +64 -0
- data/app/models/think_feel_do_engine/reports/login.rb +22 -0
- data/app/models/think_feel_do_engine/reports/messaging.rb +109 -0
- data/app/models/think_feel_do_engine/reports/module_page_view.rb +57 -0
- data/app/models/think_feel_do_engine/reports/module_session.rb +130 -0
- data/app/models/think_feel_do_engine/reports/patient_activity.rb +22 -0
- data/app/models/think_feel_do_engine/reports/patient_thought.rb +22 -0
- data/app/models/think_feel_do_engine/reports/phq_assessment.rb +32 -0
- data/app/models/think_feel_do_engine/reports/reporter.rb +45 -0
- data/app/models/think_feel_do_engine/reports/site_session.rb +63 -0
- data/app/models/think_feel_do_engine/reports/task_completion.rb +30 -0
- data/app/models/think_feel_do_engine/reports/tool_access.rb +51 -0
- data/app/models/think_feel_do_engine/reports/tool_module.rb +29 -0
- data/app/models/think_feel_do_engine/reports/user_agent.rb +33 -0
- data/app/models/think_feel_do_engine/reports/video_session.rb +65 -0
- data/app/models/think_feel_do_engine/reports/wai_assessment.rb +35 -0
- data/app/models/thought.rb +80 -0
- data/app/models/thought_pattern.rb +6 -0
- data/app/models/tool_nav_item.rb +65 -0
- data/app/models/tools/home.rb +5 -0
- data/app/models/tools/learn.rb +5 -0
- data/app/models/tools/messages.rb +5 -0
- data/app/models/tools/think.rb +5 -0
- data/app/models/unplanned_activities.rb +47 -0
- data/app/models/user.rb +55 -0
- data/app/models/user_role.rb +18 -0
- data/app/models/values/accomplishment.rb +23 -0
- data/app/models/values/emotional_rating.rb +23 -0
- data/app/models/values/mood.rb +22 -0
- data/app/models/values/pleasure.rb +23 -0
- data/app/models/wai_assessment.rb +30 -0
- data/app/presenters/think_feel_do_engine/harmful_thought_viz_presenter.rb +30 -0
- data/app/presenters/think_feel_do_engine/lesson_event/completion_data_presenter.rb +41 -0
- data/app/presenters/think_feel_do_engine/media_access_event_presenter.rb +54 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/passwords/edit.html.erb +35 -0
- data/app/views/devise/passwords/new.html.erb +17 -0
- data/app/views/devise/sessions/new.html.erb +50 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/layouts/phq_assessment_mailer.html.erb +87 -0
- data/app/views/slides/show.html.erb +2 -0
- data/app/views/think_feel_do_engine/activities/_activity.html.erb +18 -0
- data/app/views/think_feel_do_engine/activities/_activity_coach_view.html.erb +6 -0
- data/app/views/think_feel_do_engine/activities/_activity_coach_view_future.html.erb +13 -0
- data/app/views/think_feel_do_engine/activities/_activity_coach_view_past.html.erb +21 -0
- data/app/views/think_feel_do_engine/activities/_activity_form_fields.html.erb +21 -0
- data/app/views/think_feel_do_engine/activities/_build_activity.html.erb +107 -0
- data/app/views/think_feel_do_engine/activities/_daily_summary.html.erb +121 -0
- data/app/views/think_feel_do_engine/activities/_intensity_selector.html.erb +25 -0
- data/app/views/think_feel_do_engine/activities/_mutable_activity.html.erb +14 -0
- data/app/views/think_feel_do_engine/activities/_past_due_activities_index_viz.html.erb +25 -0
- data/app/views/think_feel_do_engine/activities/_past_due_rows.erb +7 -0
- data/app/views/think_feel_do_engine/activities/_past_due_table.erb +39 -0
- data/app/views/think_feel_do_engine/activities/_previously_planned.html.erb +9 -0
- data/app/views/think_feel_do_engine/activities/accomplished_index.html.erb +84 -0
- data/app/views/think_feel_do_engine/activities/create_activity.html.erb +5 -0
- data/app/views/think_feel_do_engine/activities/fun_activity_checklist.html.erb +5 -0
- data/app/views/think_feel_do_engine/activities/important_activity_checklist.html.erb +5 -0
- data/app/views/think_feel_do_engine/activities/index.html.erb +81 -0
- data/app/views/think_feel_do_engine/activities/input_new_activity_form.html.erb +64 -0
- data/app/views/think_feel_do_engine/activities/past_activity_form.html.erb +75 -0
- data/app/views/think_feel_do_engine/activities/past_activity_review.html.erb +104 -0
- data/app/views/think_feel_do_engine/activities/pleasurable_index.html.erb +84 -0
- data/app/views/think_feel_do_engine/activities/previously_planned_fullpage.html.erb +12 -0
- data/app/views/think_feel_do_engine/activities/unplanned_activity_form.html.erb +21 -0
- data/app/views/think_feel_do_engine/activities/visualization.html.erb +120 -0
- data/app/views/think_feel_do_engine/assigned_tasks/show.html.erb +1 -0
- data/app/views/think_feel_do_engine/awake_periods/incomplete.html.erb +13 -0
- data/app/views/think_feel_do_engine/awake_periods/new.html.erb +34 -0
- data/app/views/think_feel_do_engine/bit_maker/content_modules/_form.html.erb +24 -0
- data/app/views/think_feel_do_engine/bit_maker/content_modules/edit.html.erb +9 -0
- data/app/views/think_feel_do_engine/bit_maker/content_modules/index.html.erb +38 -0
- data/app/views/think_feel_do_engine/bit_maker/content_modules/new.html.erb +9 -0
- data/app/views/think_feel_do_engine/bit_maker/content_modules/show.html.erb +27 -0
- data/app/views/think_feel_do_engine/bit_maker/content_providers/_form.html.erb +48 -0
- data/app/views/think_feel_do_engine/bit_maker/content_providers/edit.html.erb +12 -0
- data/app/views/think_feel_do_engine/bit_maker/content_providers/index.html.erb +36 -0
- data/app/views/think_feel_do_engine/bit_maker/content_providers/new.html.erb +12 -0
- data/app/views/think_feel_do_engine/bit_maker/content_providers/show.html.erb +42 -0
- data/app/views/think_feel_do_engine/bit_maker/slides/_fields.html.erb +212 -0
- data/app/views/think_feel_do_engine/bit_maker/slides/_slide.html.erb +23 -0
- data/app/views/think_feel_do_engine/bit_maker/slides/edit.html.erb +9 -0
- data/app/views/think_feel_do_engine/bit_maker/slides/index.html.erb +6 -0
- data/app/views/think_feel_do_engine/bit_maker/slides/new.html.erb +6 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshow_anchors/create.js.erb +2 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshow_anchors/destroy.js.erb +2 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/_fields.html +4 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/_slide_panel.html.erb +12 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/_toc_panel.html.erb +5 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/edit.html.erb +7 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/index.html.erb +42 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/new.html.erb +6 -0
- data/app/views/think_feel_do_engine/bit_maker/slideshows/show.html.erb +31 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_activities_future.html.erb +69 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_activities_past.html.erb +75 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_comments.html.erb +63 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_goals.html.erb +71 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_learning_lesson_row.html.erb +5 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_lesson_completion_breakdown.html.erb +33 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_lessons.html.erb +21 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_likes.html.erb +63 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_logins.html.erb +24 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_on_my_mind_statements.html.erb +66 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_summary.html.erb +30 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_summary_social.html.erb +24 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/_thoughts.html.erb +67 -0
- data/app/views/think_feel_do_engine/coach/group_dashboard/index.html.erb +50 -0
- data/app/views/think_feel_do_engine/coach/messages/index.html.erb +50 -0
- data/app/views/think_feel_do_engine/coach/messages/new.html.erb +32 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_active_patient.html.erb +104 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_details.html.erb +54 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_header.html.erb +5 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_inactive_patient.html.erb +34 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_mood_emotion_viz.html.erb +6 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_not_stepped_table.html.erb +36 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_phq_summary.html.erb +61 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_stepped_table.html.erb +35 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_table_of_contents.html.erb +20 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_test_summary.html.erb +39 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/_vizs.html.erb +73 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/index.html.erb +20 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/show.html.erb +23 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_audio_access_table.html.erb +49 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_feelings_table.html.erb +48 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_future_activities_table.html.erb +66 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_lessons_table.html.erb +56 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_logins_table.html.erb +47 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_messages_table.html.erb +46 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_mood_table.html.erb +46 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_past_activities_table.html.erb +70 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_patient_info.html.erb +39 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_patient_login_stats.html.erb +51 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_phq9_data.html.erb +47 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_summary_totals.html.erb +49 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_tasks_table.html.erb +47 -0
- data/app/views/think_feel_do_engine/coach/patient_dashboards/tables/_thoughts_table.html.erb +49 -0
- data/app/views/think_feel_do_engine/coach/phq_assessments/_form.html.erb +42 -0
- data/app/views/think_feel_do_engine/coach/phq_assessments/edit.html.erb +3 -0
- data/app/views/think_feel_do_engine/coach/phq_assessments/index.html.erb +43 -0
- data/app/views/think_feel_do_engine/coach/phq_assessments/new.html.erb +3 -0
- data/app/views/think_feel_do_engine/coach/received_messages/_received_message.html.erb +5 -0
- data/app/views/think_feel_do_engine/coach/site_messages/_form.html.erb +38 -0
- data/app/views/think_feel_do_engine/coach/site_messages/index.html.erb +30 -0
- data/app/views/think_feel_do_engine/coach/site_messages/new.html.erb +3 -0
- data/app/views/think_feel_do_engine/coach/site_messages/show.html.erb +16 -0
- data/app/views/think_feel_do_engine/emotions/_emotion_coach_view.html.erb +8 -0
- data/app/views/think_feel_do_engine/emotions/_form.html.erb +28 -0
- data/app/views/think_feel_do_engine/emotions/index.html.erb +75 -0
- data/app/views/think_feel_do_engine/emotions/new_current.html.erb +30 -0
- data/app/views/think_feel_do_engine/learn/_completion_data.html.erb +28 -0
- data/app/views/think_feel_do_engine/learn/lessons_index.html.erb +72 -0
- data/app/views/think_feel_do_engine/lesson_notification_mailer/lesson_notification_email.html.erb +82 -0
- data/app/views/think_feel_do_engine/lesson_notification_mailer/lesson_notification_email.text.erb +10 -0
- data/app/views/think_feel_do_engine/lesson_slides/_audio.html.erb +1 -0
- data/app/views/think_feel_do_engine/lesson_slides/_video.html.erb +4 -0
- data/app/views/think_feel_do_engine/lesson_slides/edit.html.erb +7 -0
- data/app/views/think_feel_do_engine/lesson_slides/new.html.erb +6 -0
- data/app/views/think_feel_do_engine/lesson_slides/show.html.erb +21 -0
- data/app/views/think_feel_do_engine/lessons/_form.html.erb +8 -0
- data/app/views/think_feel_do_engine/lessons/_lesson.html.erb +6 -0
- data/app/views/think_feel_do_engine/lessons/all_content.html.erb +12 -0
- data/app/views/think_feel_do_engine/lessons/edit.html.erb +8 -0
- data/app/views/think_feel_do_engine/lessons/index.html.erb +36 -0
- data/app/views/think_feel_do_engine/lessons/new.html.erb +8 -0
- data/app/views/think_feel_do_engine/lessons/show.html.erb +30 -0
- data/app/views/think_feel_do_engine/login_events/_login_event.html.erb +6 -0
- data/app/views/think_feel_do_engine/manage/groups/_assigned_task_cell.html.erb +16 -0
- data/app/views/think_feel_do_engine/manage/groups/edit_tasks.html.erb +83 -0
- data/app/views/think_feel_do_engine/manage/groups/index.html.erb +19 -0
- data/app/views/think_feel_do_engine/manage/tasks/index.html.erb +24 -0
- data/app/views/think_feel_do_engine/media_access_events/_access_data.html.erb +24 -0
- data/app/views/think_feel_do_engine/memberships/update.js.erb +4 -0
- data/app/views/think_feel_do_engine/message_notifications/new_for_coach.html.erb +93 -0
- data/app/views/think_feel_do_engine/message_notifications/new_for_coach.text.erb +3 -0
- data/app/views/think_feel_do_engine/message_notifications/new_for_participant.html.erb +93 -0
- data/app/views/think_feel_do_engine/message_notifications/new_for_participant.text.erb +3 -0
- data/app/views/think_feel_do_engine/messages/_message.html.erb +7 -0
- data/app/views/think_feel_do_engine/messages/_message_info.html.erb +9 -0
- data/app/views/think_feel_do_engine/messages/index.html.erb +54 -0
- data/app/views/think_feel_do_engine/messages/new.html.erb +34 -0
- data/app/views/think_feel_do_engine/messages/not_found.html.erb +3 -0
- data/app/views/think_feel_do_engine/messages/show.html.erb +27 -0
- data/app/views/think_feel_do_engine/moods/_mood.html.erb +7 -0
- data/app/views/think_feel_do_engine/moods/new_current.html.erb +18 -0
- data/app/views/think_feel_do_engine/moods/new_past_mood.html.erb +28 -0
- data/app/views/think_feel_do_engine/navigator/_before_content.html.erb +5 -0
- data/app/views/think_feel_do_engine/navigator/show_content.html.erb +14 -0
- data/app/views/think_feel_do_engine/participant_data/create.js.erb +1 -0
- data/app/views/think_feel_do_engine/participant_data/update.js.erb +1 -0
- data/app/views/think_feel_do_engine/participants/activities/create.js.erb +5 -0
- data/app/views/think_feel_do_engine/participants/assessments/new_phq_assessment.html.erb +77 -0
- data/app/views/think_feel_do_engine/participants/assessments/new_wai_assessment.html.erb +51 -0
- data/app/views/think_feel_do_engine/participants/assessments/success.html +1 -0
- data/app/views/think_feel_do_engine/participants/content_modules/index.html.erb +36 -0
- data/app/views/think_feel_do_engine/participants/lessons/_printable.html.erb +15 -0
- data/app/views/think_feel_do_engine/participants/lessons/show.html.erb +1 -0
- data/app/views/think_feel_do_engine/participants/messages/_inbox_header.html.erb +1 -0
- data/app/views/think_feel_do_engine/participants/public_slides/show.html.erb +8 -0
- data/app/views/think_feel_do_engine/participants/received_messages/_received_message.html.erb +1 -0
- data/app/views/think_feel_do_engine/participants/thoughts/create.js.erb +24 -0
- data/app/views/think_feel_do_engine/phq_assessments/_phq_assessment.html.erb +15 -0
- data/app/views/think_feel_do_engine/privacy_policies/show.html.erb +17 -0
- data/app/views/think_feel_do_engine/shared/_alerts.html.erb +17 -0
- data/app/views/think_feel_do_engine/shared/_authentication.html.erb +5 -0
- data/app/views/think_feel_do_engine/shared/_email_head.html.erb +771 -0
- data/app/views/think_feel_do_engine/shared/_footer.html.erb +21 -0
- data/app/views/think_feel_do_engine/shared/_head.html.erb +14 -0
- data/app/views/think_feel_do_engine/shared/_home.html.erb +4 -0
- data/app/views/think_feel_do_engine/shared/_jplayer.html.erb +48 -0
- data/app/views/think_feel_do_engine/shared/_rating_selector.html.erb +16 -0
- data/app/views/think_feel_do_engine/shared/participant/_hamburger_nav_items.html.erb +19 -0
- data/app/views/think_feel_do_engine/shared/participant/_nav_items.html.erb +49 -0
- data/app/views/think_feel_do_engine/shared/participant/_navbar.html.erb +38 -0
- data/app/views/think_feel_do_engine/shared/user/_navbar.html.erb +25 -0
- data/app/views/think_feel_do_engine/site_message_mailer/general.html.erb +8 -0
- data/app/views/think_feel_do_engine/site_message_mailer/general.text.erb +3 -0
- data/app/views/think_feel_do_engine/slides/_audio.html.erb +4 -0
- data/app/views/think_feel_do_engine/slides/_slide.html.erb +18 -0
- data/app/views/think_feel_do_engine/slides/_table_of_contents.html.erb +24 -0
- data/app/views/think_feel_do_engine/slides/_video.html.erb +34 -0
- data/app/views/think_feel_do_engine/slides/homepage.html.erb +29 -0
- data/app/views/think_feel_do_engine/slides/show.html.erb +11 -0
- data/app/views/think_feel_do_engine/slides/sort.js.erb +1 -0
- data/app/views/think_feel_do_engine/slides/sort_with_reload.js.erb +1 -0
- data/app/views/think_feel_do_engine/task_statuses/_task_status.html.erb +8 -0
- data/app/views/think_feel_do_engine/thought_patterns/evaluating.html.erb +2 -0
- data/app/views/think_feel_do_engine/thought_patterns/index.html.erb +8 -0
- data/app/views/think_feel_do_engine/thoughts/_form.html.erb +11 -0
- data/app/views/think_feel_do_engine/thoughts/_harmful_thought.html.erb +4 -0
- data/app/views/think_feel_do_engine/thoughts/_mutable_thought.html.erb +23 -0
- data/app/views/think_feel_do_engine/thoughts/_thought.html.erb +10 -0
- data/app/views/think_feel_do_engine/thoughts/_thought_effects.html.erb +1 -0
- data/app/views/think_feel_do_engine/thoughts/_thought_patterns.html.erb +7 -0
- data/app/views/think_feel_do_engine/thoughts/distortion_viz.html.erb +28 -0
- data/app/views/think_feel_do_engine/thoughts/edit_bulk.html.erb +43 -0
- data/app/views/think_feel_do_engine/thoughts/index.html.erb +24 -0
- data/app/views/think_feel_do_engine/thoughts/new.html.erb +5 -0
- data/app/views/think_feel_do_engine/thoughts/new_bulk.html.erb +36 -0
- data/app/views/think_feel_do_engine/thoughts/new_complete.html.erb +28 -0
- data/app/views/think_feel_do_engine/thoughts/new_harmful.html.erb +14 -0
- data/app/views/think_feel_do_engine/thoughts/thoughts_table.html.erb +60 -0
- data/app/views/think_feel_do_engine/thoughts/unhelpful_thoughts_form.html.erb +103 -0
- data/config/brakeman.ignore +206 -0
- data/config/brakeman.yml +5 -0
- data/config/initializers/datetime_formats.rb +32 -0
- data/config/initializers/devise.rb +272 -0
- data/config/initializers/event_capture.rb +43 -0
- data/config/initializers/think_feel_do_engine.rb +4 -0
- data/config/locales/devise.en.yml +60 -0
- data/config/locales/en.yml +4 -0
- data/config/locales/rails_admin.en.yml +5 -0
- data/config/routes.rb +107 -0
- data/db/migrate/20140221174027_devise_create_users.rb +41 -0
- data/db/migrate/20140221182135_devise_create_participants.rb +28 -0
- data/db/migrate/20140221184614_create_groups.rb +29 -0
- data/db/migrate/20140221190256_create_memberships.rb +39 -0
- data/db/migrate/20140221201915_create_user_roles.rb +23 -0
- data/db/migrate/20140221204356_create_activity_types.rb +27 -0
- data/db/migrate/20140221211420_create_activities.rb +46 -0
- data/db/migrate/20140221214020_create_awake_periods.rb +29 -0
- data/db/migrate/20140223151355_create_slideshows.rb +12 -0
- data/db/migrate/20140223151505_create_slides.rb +33 -0
- data/db/migrate/20140224024338_create_content_modules.rb +12 -0
- data/db/migrate/20140224031252_create_content_providers.rb +34 -0
- data/db/migrate/20140224194936_require_titles_on_slides.rb +8 -0
- data/db/migrate/20140226174312_add_is_title_visible_to_slides.rb +8 -0
- data/db/migrate/20140226234059_drop_time_requirement_on_activities.rb +9 -0
- data/db/migrate/20140228042747_add_type_to_slides.rb +9 -0
- data/db/migrate/20140304020641_create_participant_statuses.rb +16 -0
- data/db/migrate/20140305134049_create_thoughts.rb +40 -0
- data/db/migrate/20140305204811_drop_extracted_bit_player_tables.rb +9 -0
- data/db/migrate/20140305220121_create_bit_player_content_modules.bit_player.rb +12 -0
- data/db/migrate/20140305220122_create_bit_player_content_providers.bit_player.rb +34 -0
- data/db/migrate/20140305233152_create_bit_player_participant_statuses.bit_player.rb +16 -0
- data/db/migrate/20140305235536_create_bit_player_slideshows.bit_player.rb +10 -0
- data/db/migrate/20140306000610_create_bit_player_slides.bit_player.rb +47 -0
- data/db/migrate/20140306161346_create_messages.rb +13 -0
- data/db/migrate/20140306161532_create_delivered_messages.rb +29 -0
- data/db/migrate/20140306175954_create_coach_assignments.rb +12 -0
- data/db/migrate/20140311172344_create_mood.rb +9 -0
- data/db/migrate/20140311182036_create_emotions.rb +10 -0
- data/db/migrate/20140311194313_add_column_activation_level_and_intensity_to_emotion.rb +9 -0
- data/db/migrate/20140313025147_create_thought_patterns.rb +10 -0
- data/db/migrate/20140313192408_add_pattern_id_to_thoughts.rb +22 -0
- data/db/migrate/20140313205806_add_name_to_emotions.rb +6 -0
- data/db/migrate/20140314203044_change_column_name_activation_level_to_valence.rb +8 -0
- data/db/migrate/20140318163703_create_group_slideshow_joins.rb +12 -0
- data/db/migrate/20140320183600_add_start_date_to_memberships.rb +5 -0
- data/db/migrate/20140326144359_create_phq_assessments.rb +39 -0
- data/db/migrate/20140326205140_create_participant_tokens.rb +32 -0
- data/db/migrate/20140331165739_add_end_date_to_memberships.rb +5 -0
- data/db/migrate/20140402151311_create_tasks.rb +11 -0
- data/db/migrate/20140402170153_add_creator_id_to_tasks.rb +5 -0
- data/db/migrate/20140407134214_create_task_statuses.rb +11 -0
- data/db/migrate/20140407150122_add_release_day_to_task_remove_is_completed_at_from_task.rb +6 -0
- data/db/migrate/20140407202026_create_bit_player_tools.bit_player.rb +14 -0
- data/db/migrate/20140407202027_change_module_context_to_tool.bit_player.rb +31 -0
- data/db/migrate/20140411184738_add_recurring_to_tasks.rb +5 -0
- data/db/migrate/20140411195557_add_question_and_explanation_to_thought_pattern.rb +6 -0
- data/db/migrate/20140411195804_add_challenging_thought_and_as_if_to_thought.rb +6 -0
- data/db/migrate/20140415165729_add_start_day_to_task_statuses.rb +5 -0
- data/db/migrate/20140418190852_remove_fk_groups_users_constraint.rb +21 -0
- data/db/migrate/20140421192355_change_start_date_on_membership_from_date_time_to_date.rb +9 -0
- data/db/migrate/20140501170217_add_is_admin_to_users.rb +5 -0
- data/db/migrate/20140501190812_add_participant_login_event.rb +9 -0
- data/db/migrate/20140502222145_add_is_admin_to_all_current_users.rb +15 -0
- data/db/migrate/20140505145843_add_study_id_to_participants.rb +5 -0
- data/db/migrate/20140523154605_delete_group_slideshow_join.rb +16 -0
- data/db/migrate/20140609181801_create_engagements.rb +10 -0
- data/db/migrate/20140620171824_create_bit_core_tools.bit_core.rb +29 -0
- data/db/migrate/20140620171825_create_bit_core_content_modules.bit_core.rb +41 -0
- data/db/migrate/20140620171826_create_bit_core_content_providers.bit_core.rb +43 -0
- data/db/migrate/20140620171827_create_bit_core_slideshows.bit_core.rb +10 -0
- data/db/migrate/20140620171828_create_bit_core_slides.bit_core.rb +44 -0
- data/db/migrate/20140620181933_add_options_to_slides.bit_core.rb +6 -0
- data/db/migrate/20140621023345_convert_slides_slideshows_to_bit_core.bit_player.rb +39 -0
- data/db/migrate/20140621024853_update_tasks_with_bit_core.rb +7 -0
- data/db/migrate/20140621024854_add_config_fields_to_providers.bit_core.rb +10 -0
- data/db/migrate/20140621031203_convert_tools_modules_presenters_to_bit_core.bit_player.rb +53 -0
- data/db/migrate/20140623182430_remove_valence_from_emotions.rb +5 -0
- data/db/migrate/20140624163655_rename_column_participant_id_on_emotions_to_creator_id.rb +5 -0
- data/db/migrate/20140624165438_create_emotional_ratings.rb +10 -0
- data/db/migrate/20140624165626_remove_rating_from_emotion_remove_intensity_from_emotion.rb +6 -0
- data/db/migrate/20140625133411_add_type_to_content_modules.bit_core.rb +6 -0
- data/db/migrate/20140625140629_convert_lesson_modules.rb +12 -0
- data/db/migrate/20140625140630_add_recommendations_to_thought_patterns.rb +5 -0
- data/db/migrate/20140702192100_create_content_provider_policies.rb +10 -0
- data/db/migrate/20140703203931_add_termination_day_to_tasks.rb +5 -0
- data/db/migrate/20140710122908_create_slideshow_anchors.rb +10 -0
- data/db/migrate/20140715170155_add_inactive_log_out_to_participant_login_event.rb +5 -0
- data/db/migrate/20140721190945_normalize_emotions.rb +18 -0
- data/db/migrate/20140722163946_add_thought_patterns.rb +83 -0
- data/db/migrate/20140722172101_add_missing_fk_constraints.rb +187 -0
- data/db/migrate/20140722195542_add_emotion_ids_to_orphaned_emotional_ratings.rb +12 -0
- data/db/migrate/20140725164219_add_is_monitored_to_activity.rb +5 -0
- data/db/migrate/20140725185012_add_participant_onload_log_out_to_login_event.rb +5 -0
- data/db/migrate/20140729151610_add_signed_out_at_to_participant_login_events.rb +5 -0
- data/db/migrate/20140729171907_remove_participant_on_load_log_out_from_login_event.rb +5 -0
- data/db/migrate/20140730202349_update_thought_patterns.rb +94 -0
- data/db/migrate/20140815190945_add_phq_edit_columns.rb +13 -0
- data/db/migrate/20140818202120_add_has_didactic_content_to_tasks.rb +5 -0
- data/db/migrate/20140821184357_add_is_scheduled_to_activities.rb +5 -0
- data/db/migrate/20140902204337_create_event_capture_events.event_capture.rb +14 -0
- data/db/migrate/20140903134021_add_participant_id_to_events.rb +23 -0
- data/db/migrate/20141027181511_add_phone_number_to_participant.rb +5 -0
- data/db/migrate/20141027181539_add_contact_status_to_participant.rb +5 -0
- data/db/migrate/20141110190545_create_site_messages.rb +29 -0
- data/db/migrate/20141121152018_create_arms.rb +8 -0
- data/db/migrate/20141121201238_add_arm_id_to_groups.rb +5 -0
- data/db/migrate/20141125194600_add_null_false_to_arms.rb +6 -0
- data/db/migrate/20141125202627_add_null_false_to_columns_and_associate_arm_group_join_arm_ids_to_groups.rb +5 -0
- data/db/migrate/20141201154255_add_arm_id_to_bit_core_tools.rb +9 -0
- data/db/migrate/20141201165610_change_column_bit_core_tools_arm_id_to_null.rb +5 -0
- data/db/migrate/20141202133320_remove_position_unique_constraint_from_tool.rb +21 -0
- data/db/migrate/20141202173321_add_arm_id_to_bit_core_slideshows.rb +5 -0
- data/db/migrate/20141202173458_change_column_bit_core_slideshows_to_null_false.rb +38 -0
- data/db/migrate/20141211140747_add_is_admin_.textClipping +0 -0
- data/db/migrate/20141211140747_add_is_admin_to_participants.rb +5 -0
- data/db/migrate/20141214203919_add_has_woz_to_arm.rb +5 -0
- data/db/migrate/20141222222717_change_default_contact_preference.rb +5 -0
- data/db/migrate/20150107183443_add_is_positive_to_emotion.rb +6 -0
- data/db/migrate/20150107192208_remove_is_positive_from_emotion.rb +5 -0
- data/db/migrate/20150107192402_add_is_positive_to_emotional_rating.rb +5 -0
- data/db/migrate/20150127204928_add_is_complete_to_membership.rb +5 -0
- data/db/migrate/20150127204950_add_is_stepped_to_membership.rb +5 -0
- data/db/migrate/20150128151059_change_is_stepped_membership_to_not_allow_null.rb +5 -0
- data/db/migrate/20150128151231_change_is_complete_membership_to_not_allow_null.rb +5 -0
- data/db/migrate/20150128151515_data_migration_add_values_for_is_stepped_and_is_complete.rb +11 -0
- data/db/migrate/20150128192928_destroy_invalid_task_statuses.rb +14 -0
- data/db/migrate/20150129160122_add_description_to_tools.rb +5 -0
- data/db/migrate/20150130160818_add_type_to_tools.bit_core.rb +6 -0
- data/db/migrate/20150130161629_convert_messages_tool_type.rb +7 -0
- data/db/migrate/20150130173324_convert_home_tool_type.rb +7 -0
- data/db/migrate/20150130185412_convert_learn_tool_type.rb +7 -0
- data/db/migrate/20150131200718_add_is_viz_to_content_modules.bit_core.rb +6 -0
- data/db/migrate/20150131201021_add_is_viz_flag_to_modules.rb +9 -0
- data/db/migrate/20150202203359_update_tool_type_columns.rb +23 -0
- data/db/migrate/20150202215540_fix_module_viz_columns.rb +9 -0
- data/db/migrate/20150202232642_prevent_null_membership_dates.rb +6 -0
- data/db/migrate/20150206221439_create_wai_assessments.rb +52 -0
- data/db/migrate/20150209195004_create_think_feel_do_engine_media_access_events.rb +12 -0
- data/db/migrate/20150209212556_add_stepped_on_column_to_memberships.rb +10 -0
- data/db/migrate/20150209213422_remove_is_stepped_column_from_memberships.rb +5 -0
- data/db/migrate/20150210142824_destroy_invalid_messages.rb +5 -0
- data/db/migrate/20150210153608_add_slide_reference_to_media_access_events.rb +8 -0
- data/db/migrate/20150210161100_add_missing_constraints.rb +43 -0
- data/db/migrate/20150210163220_add_fk_constraints_to_media_access_events.rb +21 -0
- data/db/migrate/20150210164226_add_slide_fk_contstraint_to_media_access_events.rb +21 -0
- data/db/migrate/20150210165021_add_tool_constraint.bit_core.rb +26 -0
- data/db/migrate/20150218184531_add_has_table_of_contents_to_slideshows.rb +9 -0
- data/db/migrate/20150225221700_add_is_reviewed_to_activities.rb +5 -0
- data/db/migrate/20150226210641_remove_is_monitored_from_activities.rb +5 -0
- data/db/migrate/20150227221640_remove_is_complete_from_activities.rb +5 -0
- data/db/migrate/20150302155709_remove_is_scheduled_from_activities.rb +5 -0
- data/db/migrate/20150307182155_create_available_content_modules_view.rb +46 -0
- data/db/migrate/20150310171015_update_available_content_modules_view.rb +48 -0
- data/db/migrate/20150410174157_add_can_message_after_membership_complete_to_arms.rb +5 -0
- data/db/migrate/20150410175659_populate_arm_message_flag.rb +7 -0
- data/db/migrate/20150810204045_nullify_empty_thoughts_columns.rb +15 -0
- data/db/migrate/20150903210028_add_relase_day_not_null_constraint_to_trask.rb +5 -0
- data/db/migrate/20151104152804_update_think_tool_type_to_tools_think.rb +9 -0
- data/lib/tasks/lesson_notifications.rake +66 -0
- data/lib/tasks/seed.rake +30 -0
- data/lib/tasks/think_feel_do_engine_tasks.rake +4 -0
- data/lib/think_feel_do_engine.rb +16 -0
- data/lib/think_feel_do_engine/engine.rb +16 -0
- data/lib/think_feel_do_engine/version.rb +4 -0
- data/vendor/assets/images/jplayer.blue.monday.jpg +0 -0
- data/vendor/assets/images/jplayer.blue.monday.seeking.gif +0 -0
- data/vendor/assets/images/jplayer.blue.monday.video.play.png +0 -0
- data/vendor/assets/javascripts/bootstrap-markdown.js +1347 -0
- data/vendor/assets/javascripts/bootstrap-timepicker.js +1097 -0
- data/vendor/assets/javascripts/d3.min.js +5 -0
- data/vendor/assets/javascripts/froogaloop.min.js +4 -0
- data/vendor/assets/javascripts/jplayer.2.9.2.min.js +1 -0
- data/vendor/assets/javascripts/moment.min.js +6 -0
- data/vendor/assets/javascripts/snap.js +568 -0
- data/vendor/assets/stylesheets/bootstrap-timepicker.min.css +10 -0
- data/vendor/assets/stylesheets/jplayer.blue.monday.css.scss +630 -0
- data/vendor/assets/stylesheets/snap.css.scss +80 -0
- metadata +949 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
<tr id="thought-<%= mutable_thought.id %>">
|
2
|
+
<td class="not-displayed">
|
3
|
+
<%= mutable_thought.created_at ? mutable_thought.created_at.to_i : 0 %>
|
4
|
+
</td>
|
5
|
+
<td>
|
6
|
+
<span class="immutable-thought-content"><%= mutable_thought.content %></span>
|
7
|
+
<%= text_field_tag "thoughts[#{ mutable_thought.id }][content]", mutable_thought.content, class: "not-displayed" %>
|
8
|
+
</td>
|
9
|
+
<td>
|
10
|
+
<span class="immutable-thought-content"><%= (!mutable_thought.pattern_title.blank? ? mutable_thought.pattern_title : "<span class=\"label label-warning\">Not Answered</span>".html_safe) %></span>
|
11
|
+
<%= select_tag "thoughts[#{ mutable_thought.id }][pattern_id]", options_from_collection_for_select(ThoughtPattern.all, "id", "title", mutable_thought.pattern_id), include_blank: true, class: "not-displayed" %>
|
12
|
+
</td>
|
13
|
+
<td>
|
14
|
+
<span class="immutable-thought-content"><%= (!mutable_thought.challenging_thought.blank? ? mutable_thought.challenging_thought : "<span class=\"label label-warning\">Not Answered</span>".html_safe) %></span>
|
15
|
+
<%= text_field_tag "thoughts[#{ mutable_thought.id }][challenging_thought]", mutable_thought.challenging_thought, class: "not-displayed" %>
|
16
|
+
</td>
|
17
|
+
<td>
|
18
|
+
<span class="immutable-thought-content"><%= (!mutable_thought.act_as_if.blank? ? mutable_thought.act_as_if : "<span class=\"label label-warning\">Not Answered</span>".html_safe) %></span>
|
19
|
+
<%= text_field_tag "thoughts[#{ mutable_thought.id }][act_as_if]", mutable_thought.act_as_if, class: "not-displayed" %>
|
20
|
+
</td>
|
21
|
+
<td class="ignore_cell"><%= mutable_thought.created_at.to_s(:standard) %></td>
|
22
|
+
<td class="formonly"><%= submit_tag "Save", name: "thoughts[commit_id][#{ mutable_thought.id }]", class: "btn btn-default not-displayed" %></td>
|
23
|
+
</tr>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<tr>
|
2
|
+
<td class="not-displayed">
|
3
|
+
<%= thought.created_at ? thought.created_at.to_i : 0 %>
|
4
|
+
</td>
|
5
|
+
<td><%= thought.content %></td>
|
6
|
+
<td><%= (thought.pattern_title && thought.pattern_title.length > 0) ? thought.pattern_title : "<span class='label label-warning'>Not Answered </span>".html_safe %></td>
|
7
|
+
<td><%= (thought.challenging_thought && thought.challenging_thought.length > 0) ? thought.challenging_thought : "<span class='label label-warning'>Not Answered </span>".html_safe %></td>
|
8
|
+
<td><%= (thought.act_as_if && thought.act_as_if.length > 0) ? thought.act_as_if : "<span class='label label-warning'>Not Answered </span>".html_safe %></td>
|
9
|
+
<td><%= thought.created_at.to_s(:standard) %></td>
|
10
|
+
</tr>
|
@@ -0,0 +1 @@
|
|
1
|
+
<%= f.hidden_field :effect, value: Thought::EFFECTS[:harmful] %>
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<div class="form-group">
|
2
|
+
<label for="thought_pattern_id">What thought pattern is this an example of?</label>
|
3
|
+
<span class="help-block">(don't worry if it matches more than one, just pick the closest fit)</span>
|
4
|
+
<%= f.select(:pattern_id, options_for_select(ThoughtPattern.all.map { |p| [p.title, p.id, { :"title" => p.description, :"data-description" => p.description}] }), { prompt: "Select one..." }, class: "form-control suggested") %>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<div class="alert alert-info not-displayed" id="thought-pattern-description"></div>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<h4>Harmful Thoughts</h4>
|
2
|
+
<% if ThinkFeelDoEngine::HarmfulThoughtVizPresenter.new(thoughts.harmful.map(&:pattern_id)).display_viz? %>
|
3
|
+
<div id="ThoughtVizContainer">
|
4
|
+
<div id="ThoughtVizTooltip"></div>
|
5
|
+
</div>
|
6
|
+
<% else %>
|
7
|
+
<p class="text-info">Not enough harmful thoughts yet exist for graphical display.</p>
|
8
|
+
<% end %>
|
9
|
+
|
10
|
+
<script type="text/javascript">
|
11
|
+
var TT = null, thoughtsWithPatterns;
|
12
|
+
|
13
|
+
thoughtsWithPatterns =
|
14
|
+
<%= raw(thoughts.to_json(:methods => "pattern", :only => [:content, :challenging_thought, :act_as_if])) %>
|
15
|
+
$(document).on('page:change', function(){
|
16
|
+
|
17
|
+
<% unless link_to_view.nil? %>
|
18
|
+
|
19
|
+
TT = new sc.thoughtTracker(true,<%= sanitize("\"home:" + link_to_view + "\"") %>);
|
20
|
+
|
21
|
+
<% else %>
|
22
|
+
|
23
|
+
if(TT == null) TT = new sc.thoughtTracker(true,"solo");
|
24
|
+
|
25
|
+
<% end %>
|
26
|
+
});
|
27
|
+
|
28
|
+
</script>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<p class="lead">
|
2
|
+
Let's start by figuring out which thought patterns the harmful thoughts you identified might match.
|
3
|
+
</p>
|
4
|
+
|
5
|
+
<% if thoughts.count > 0 %>
|
6
|
+
<% thoughts.each_with_index do |thought, i| %>
|
7
|
+
<%=
|
8
|
+
form_for(
|
9
|
+
thought,
|
10
|
+
url: update_path,
|
11
|
+
remote: true,
|
12
|
+
html: {
|
13
|
+
class: "multi-page#{ i == 0 ? "" : " not-displayed" }",
|
14
|
+
role: "form",
|
15
|
+
onsubmit: "validatePublic(event,'thought_shared_item_true')"
|
16
|
+
}
|
17
|
+
) do |f|
|
18
|
+
%>
|
19
|
+
<%= f.hidden_field :id %>
|
20
|
+
|
21
|
+
<div class="panel panel-default">
|
22
|
+
<div class="panel-heading">
|
23
|
+
<h3 class="panel-title adjusted-panel-title">One thought you had:</h3>
|
24
|
+
</div>
|
25
|
+
<div class="panel-body adjusted-list-group-item">
|
26
|
+
<%= thought.content %>
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<%= render 'think_feel_do_engine/thoughts/thought_patterns', f: f %>
|
31
|
+
|
32
|
+
<% if current_participant.active_group.arm.social? %>
|
33
|
+
<span class="new-shareable-form-after-form-groups" data-item-type="thought" data-action-type=""></span>
|
34
|
+
<% end %>
|
35
|
+
|
36
|
+
<%= content_tag(:button, t(:next), type: "submit", class: "btn btn-primary pull-right") %>
|
37
|
+
<% end %>
|
38
|
+
<% end %>
|
39
|
+
<% else %>
|
40
|
+
<p>You haven't listed any negative thoughts - if this inaccurate, please revisit THINK #1</p>
|
41
|
+
|
42
|
+
<%= content_tag(:a, t(:next), href: navigator_next_content_path, type: "submit", class: "btn btn-primary pull-right") %>
|
43
|
+
<% end %>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<h2><%= title %></h2>
|
2
|
+
|
3
|
+
<%= (introduction ||= "").html_safe %>
|
4
|
+
|
5
|
+
<% if thoughts.count > 0 %>
|
6
|
+
<div class="panel panel-default adjusted-panel-default">
|
7
|
+
<div class="panel-heading"><h3 class="panel-title adjusted-panel-title">In case you've forgotten...</h3></div>
|
8
|
+
<ul class="list-group">
|
9
|
+
<% thoughts.each do |thought| %>
|
10
|
+
<li class="list-group-item adjusted-list-group-item"><%= thought.content %></li>
|
11
|
+
<% end %>
|
12
|
+
</ul>
|
13
|
+
</div>
|
14
|
+
<% end %>
|
15
|
+
|
16
|
+
<p><%= (postscript ||= "").html_safe %></p>
|
17
|
+
|
18
|
+
<% show_nav_link ||= nil %>
|
19
|
+
<% if show_nav_link %>
|
20
|
+
<div class='btn-toolbar'>
|
21
|
+
<%= content_tag(:a, t(:back), href: navigator_previous_content_path, type: "submit", class: "btn btn-default pull-left") if @navigator.previous_content? %>
|
22
|
+
<%= content_tag(:a, t(:next), href: navigator_next_content_path, type: "submit", class: "btn btn-primary pull-right") %>
|
23
|
+
</div>
|
24
|
+
<% end %>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
<h2>Now list another harmful thought...</h2>
|
2
|
+
|
3
|
+
<%
|
4
|
+
placeholders = [
|
5
|
+
'an example thought: "She thinks that she\'s better than me"',
|
6
|
+
'another example: "I\'m a terrible friend"',
|
7
|
+
'yet another example: "They\'re never going to listen to me"'
|
8
|
+
]
|
9
|
+
%>
|
10
|
+
<% thoughts.each_with_index do |thought, i| %>
|
11
|
+
<%=
|
12
|
+
form_for(
|
13
|
+
thought,
|
14
|
+
url: create_path,
|
15
|
+
remote: true,
|
16
|
+
html: {
|
17
|
+
class: "multi-page#{ i == 0 ? "" : " not-displayed" }",
|
18
|
+
role: "form",
|
19
|
+
onsubmit: "validatePublic(event,'thought_shared_item_true')"
|
20
|
+
}
|
21
|
+
) do |f|
|
22
|
+
%>
|
23
|
+
<div class="form-group">
|
24
|
+
<%= f.text_area :content, placeholder: placeholders[i], class: "form-control", rows: 3, required: true %>
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<%= render 'think_feel_do_engine/thoughts/thought_effects', f: f, thought: thought %>
|
28
|
+
|
29
|
+
<% if current_participant.active_group.arm.social? %>
|
30
|
+
<span class="new-shareable-form-after-form-groups" data-item-type="thought" data-action-type=""></span>
|
31
|
+
<% end %>
|
32
|
+
|
33
|
+
<%= content_tag(:button, t(:next), type: "submit", class: "btn btn-primary pull-right") %>
|
34
|
+
<% end %>
|
35
|
+
<% end %>
|
36
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<h2>Add a New Harmful Thought</h2>
|
2
|
+
|
3
|
+
<%= form_for thought, url: create_path, method: "post", html: { role: "form", onsubmit: "validatePublic(event,'thought_shared_item_true')" } do |f| %>
|
4
|
+
<%= render 'think_feel_do_engine/thoughts/harmful_thought', f: f %>
|
5
|
+
|
6
|
+
<%= render 'think_feel_do_engine/thoughts/thought_effects', f: f, thought: thought %>
|
7
|
+
|
8
|
+
<%= render 'think_feel_do_engine/thoughts/thought_patterns', f: f %>
|
9
|
+
|
10
|
+
<div class="form-group">
|
11
|
+
<%= f.label :challenging_thought, "Challenging Thought" %>
|
12
|
+
<%= f.text_field :challenging_thought, placeholder: "example: The present doesn't always predict the future", class: "form-control suggested" %>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="form-group">
|
16
|
+
<%= f.label :act_as_if, "As If Action" %>
|
17
|
+
<%= f.text_field :act_as_if, placeholder: "example: Try my hardest anyway and see if I can improve", class: "form-control suggested" %>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<% if current_participant.active_group.arm.social? %>
|
21
|
+
<span class="new-shareable-form-after-form-groups" data-item-type="thought" data-action-type=""></span>
|
22
|
+
<% end %>
|
23
|
+
|
24
|
+
<div class="btn-group pull-right">
|
25
|
+
<%= link_to 'Cancel', "/navigator/contexts/THINK", class: 'btn btn-default' %>
|
26
|
+
<%= content_tag(:button, t(:next), type: "submit", class: "btn btn-primary") %>
|
27
|
+
</div>
|
28
|
+
<% end %>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<h2>Just one more harmful thought and you'll be done for now...</h2>
|
2
|
+
|
3
|
+
<%= form_for thought, url: create_path, method: "post", html: { role: "form", onsubmit: "validatePublic(event,'thought_shared_item_true')" } do |f| %>
|
4
|
+
<%= render 'think_feel_do_engine/thoughts/harmful_thought', f: f %>
|
5
|
+
|
6
|
+
<%= f.hidden_field(:effect) %>
|
7
|
+
|
8
|
+
<% if current_participant.active_group.arm.social? %>
|
9
|
+
<span class="new-shareable-form-after-form-groups" data-item-type="thought" data-action-type=""></span>
|
10
|
+
<% end %>
|
11
|
+
|
12
|
+
<%= content_tag(:button, t(:next), type: "submit", class: "btn btn-primary pull-right") %>
|
13
|
+
|
14
|
+
<% end %>
|
@@ -0,0 +1,60 @@
|
|
1
|
+
<h2>Harmful Thoughts</h2>
|
2
|
+
|
3
|
+
<div class="btn-toolbar">
|
4
|
+
<% hide_new_path = hide_new_path or false %>
|
5
|
+
<% unless hide_new_path %>
|
6
|
+
<%= link_to "<i class='fa fa-plus'></i> Add a New Thought".html_safe, navigator_next_content_path, class: "btn btn-default" %>
|
7
|
+
<% end %>
|
8
|
+
<%= link_to "Edit Thoughts", "#", class: "btn btn-default", onclick: "makeThoughtsEditable(); return false;", id: "edit-thoughts-button" %>
|
9
|
+
</div>
|
10
|
+
|
11
|
+
<%= form_tag participants_thoughts_path, remote: true do %>
|
12
|
+
<table class="table table-hover data-table responsive" id="thoughts">
|
13
|
+
<thead>
|
14
|
+
<th class="not-displayed"></th>
|
15
|
+
<th>Thought</th>
|
16
|
+
<th>Pattern</th>
|
17
|
+
<th>Challenging Thought</th>
|
18
|
+
<th>As If Action</th>
|
19
|
+
<th>Date</th>
|
20
|
+
<th></th>
|
21
|
+
</thead>
|
22
|
+
<tbody>
|
23
|
+
<%= render partial: "think_feel_do_engine/thoughts/mutable_thought", collection: thoughts.order(created_at: :desc) %>
|
24
|
+
</tbody>
|
25
|
+
</table>
|
26
|
+
<% end %>
|
27
|
+
|
28
|
+
<script>
|
29
|
+
function makeThoughtsEditable() {
|
30
|
+
$("table#thoughts .immutable-thought-content").hide();
|
31
|
+
$("table#thoughts input,select").show();
|
32
|
+
$("table#thoughts input[type='submit']").show();
|
33
|
+
$("table#thoughts tr").addClass("form-table");
|
34
|
+
}
|
35
|
+
$('table.responsive').ngResponsiveTables({
|
36
|
+
smallPaddingCharNo: 13,
|
37
|
+
mediumPaddingCharNo: 18,
|
38
|
+
largePaddingCharNo: 30,
|
39
|
+
shiftedIndex:0
|
40
|
+
});
|
41
|
+
$(function() {
|
42
|
+
$('#thoughts').dataTable({
|
43
|
+
order: [[5, 'desc']],
|
44
|
+
columnDefs: [
|
45
|
+
{
|
46
|
+
targets: [0],
|
47
|
+
visible: false
|
48
|
+
},
|
49
|
+
{
|
50
|
+
targets: [5],
|
51
|
+
orderData: [0]
|
52
|
+
},
|
53
|
+
{
|
54
|
+
targets: [6],
|
55
|
+
orderable: false
|
56
|
+
}
|
57
|
+
]
|
58
|
+
});
|
59
|
+
});
|
60
|
+
</script>
|
@@ -0,0 +1,103 @@
|
|
1
|
+
<% if thoughts.count >= 1 %>
|
2
|
+
<% thoughts.each_with_index do |thought, index| %>
|
3
|
+
|
4
|
+
<!-- "slide" 1 -->
|
5
|
+
<div class="multi-form<%= index == 0 ? "" : " not-displayed" %>">
|
6
|
+
<div class="panel panel-default">
|
7
|
+
<div class="panel-heading">
|
8
|
+
<h3 class="panel-title adjusted-panel-title">
|
9
|
+
You said that you thought...
|
10
|
+
</h3>
|
11
|
+
</div>
|
12
|
+
<div class="panel-body adjusted-list-group-item"><%= thought.content %></div>
|
13
|
+
</div>
|
14
|
+
<% if thought.pattern_title %>
|
15
|
+
<p>
|
16
|
+
...and that this relates to this harmful thought pattern:
|
17
|
+
<strong><%= thought.pattern_title %></strong>
|
18
|
+
</p>
|
19
|
+
<div class="alert alert-info">
|
20
|
+
<%= thought.pattern_description %>
|
21
|
+
</div>
|
22
|
+
<% else %>
|
23
|
+
<p>
|
24
|
+
...and did not choose a related thought pattern.
|
25
|
+
</p>
|
26
|
+
<% end %>
|
27
|
+
<%= content_tag(:button, t(:next), type: "button", class: "next-page btn btn-primary pull-right") %>
|
28
|
+
</div>
|
29
|
+
|
30
|
+
<!-- "slide" 2 -->
|
31
|
+
<%= form_for thought, url: update_path, html: { class: "multi-form not-displayed", id: index}, remote: true do |f| %>
|
32
|
+
<h2>Thought <%= index + 1 %> of <%= thoughts.count %></h2>
|
33
|
+
<div class="panel panel-default">
|
34
|
+
<div class="panel-heading">
|
35
|
+
<div class="panel-title">
|
36
|
+
Come up with a challenging thought for your thought...
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
<div class="panel-body adjusted-list-group-item"><%= thought.content %></div>
|
40
|
+
</div>
|
41
|
+
<% if thought.pattern_recommendations %>
|
42
|
+
<p>
|
43
|
+
For the harmful thought <strong><%= thought.pattern_title %></strong> the following might be useful:
|
44
|
+
</p>
|
45
|
+
<p>
|
46
|
+
<%= thought.pattern_recommendations.try(:html_safe) %>
|
47
|
+
</p>
|
48
|
+
<% end %>
|
49
|
+
<%= f.label :challenging_thought, "Now you try it. Write a challenging thought below:", for: "challenge#{index}" %>
|
50
|
+
<%= f.text_area :challenging_thought, id: "challenge#{index}", class: "form-control", required: true, rows: 3 %>
|
51
|
+
<%= f.hidden_field :id %>
|
52
|
+
<%= content_tag(:button, t(:next), type: "submit", class: "challenging btn btn-primary pull-right") %>
|
53
|
+
<% end %>
|
54
|
+
|
55
|
+
<!-- "slide" 3 -->
|
56
|
+
<div class="multi-form not-displayed">
|
57
|
+
<p>Because what you THINK, FEEL, Do are related, a challenging thought can change how you act.</p>
|
58
|
+
<%= image_tag("changing_actions.gif", width: "100%") %>
|
59
|
+
<p>After you come up with a challenging thought, you can also come up with an "As If" action which means what you would do based on the challenging thought you came up with.</p>
|
60
|
+
<%= content_tag(:button, t(:next), type: "button", class: "next-page btn btn-primary pull-right") %>
|
61
|
+
</div>
|
62
|
+
|
63
|
+
<!-- "slide 4" -->
|
64
|
+
<%= form_for thought,
|
65
|
+
url: update_path,
|
66
|
+
html: { class: "multi-form not-displayed" },
|
67
|
+
onsubmit: "validatePublic(event,'thought_shared_item_true')",
|
68
|
+
remote: true do |f| %>
|
69
|
+
<div class="panel panel-default">
|
70
|
+
<div class="panel-heading">
|
71
|
+
<h3 class="panel-title adjusted-panel-title">
|
72
|
+
You thought...
|
73
|
+
</h3>
|
74
|
+
</div>
|
75
|
+
<div class="panel-body adjusted-list-group-item"><%= thought.content %></div>
|
76
|
+
</div>
|
77
|
+
<br>
|
78
|
+
<div class="panel panel-default">
|
79
|
+
<div class="panel-heading">
|
80
|
+
<h3 class="panel-title adjusted-panel-title">
|
81
|
+
A challenging thought was...
|
82
|
+
</h3>
|
83
|
+
</div>
|
84
|
+
<div class="panel-body adjusted-list-group-item">
|
85
|
+
<p id="challenging-thought<%= index %>"></p>
|
86
|
+
</div>
|
87
|
+
</div>
|
88
|
+
<%= f.label :act_as_if, "What could you do to ACT AS IF you believe this?" %>
|
89
|
+
<%= f.text_area :act_as_if, class: "form-control", required: true, rows: 3 %><br>
|
90
|
+
<%= f.hidden_field :id %>
|
91
|
+
|
92
|
+
<% if current_participant.active_group.arm.social? %>
|
93
|
+
<span class="new-shareable-form-after-form-groups" data-item-type="thought" data-action-type=""></span>
|
94
|
+
<% end %>
|
95
|
+
|
96
|
+
<%= content_tag(:button, t(:next), type: "submit", class: "btn btn-primary pull-right") %>
|
97
|
+
<% end %>
|
98
|
+
|
99
|
+
<% end %>
|
100
|
+
|
101
|
+
<% else %>
|
102
|
+
<p>Please return to section 1 of "Think" to input more thoughts for reflection</p>
|
103
|
+
<% end %>
|
@@ -0,0 +1,206 @@
|
|
1
|
+
{
|
2
|
+
"ignored_warnings": [
|
3
|
+
{
|
4
|
+
"warning_type": "Cross Site Scripting",
|
5
|
+
"warning_code": 4,
|
6
|
+
"fingerprint": "1faeab6ec45e44404bbe59fcc1dcfb82458b029261e4bbf7cc497d178710cda4",
|
7
|
+
"message": "Unsafe model attribute in link_to href",
|
8
|
+
"file": "app/views/think_feel_do_engine/bit_maker/content_modules/index.html.erb",
|
9
|
+
"line": 4,
|
10
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
11
|
+
"code": "link_to(\"Arm\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.arm_path(Arm.find(params[:arm_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
12
|
+
"render_path": [
|
13
|
+
"ThinkFeelDoEngine::BitMaker::ContentModulesController#index"
|
14
|
+
],
|
15
|
+
"location": {
|
16
|
+
"type": "template",
|
17
|
+
"template": "think_feel_do_engine/bit_maker/content_modules/index (ThinkFeelDoEngine::BitMaker::ContentModulesController#index)"
|
18
|
+
},
|
19
|
+
"user_input": "Arm.find(params[:arm_id])",
|
20
|
+
"confidence": "Medium",
|
21
|
+
"note": "false positive due to engine url helper method"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"warning_type": "Cross Site Scripting",
|
25
|
+
"warning_code": 4,
|
26
|
+
"fingerprint": "9785f96d81bdfc20e89893f83365505812f3b41f1e965de06ba4c66cd0eeaa66",
|
27
|
+
"message": "Unsafe model attribute in link_to href",
|
28
|
+
"file": "app/views/think_feel_do_engine/bit_maker/content_providers/index.html.erb",
|
29
|
+
"line": 4,
|
30
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
31
|
+
"code": "link_to(\"Arm\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.arm_path(Arm.find(params[:arm_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
32
|
+
"render_path": [
|
33
|
+
"ThinkFeelDoEngine::BitMaker::ContentProvidersController#index"
|
34
|
+
],
|
35
|
+
"location": {
|
36
|
+
"type": "template",
|
37
|
+
"template": "think_feel_do_engine/bit_maker/content_providers/index (ThinkFeelDoEngine::BitMaker::ContentProvidersController#index)"
|
38
|
+
},
|
39
|
+
"user_input": "Arm.find(params[:arm_id])",
|
40
|
+
"confidence": "Medium",
|
41
|
+
"note": "false positive due to engine url helper method"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"warning_type": "Cross Site Scripting",
|
45
|
+
"warning_code": 4,
|
46
|
+
"fingerprint": "390c7f7aa80b8b2d2e37239179b1fbb13bfa91a2407c8669b8118f3e267b71a6",
|
47
|
+
"message": "Unsafe model attribute in link_to href",
|
48
|
+
"file": "app/views/think_feel_do_engine/bit_maker/slideshows/index.html.erb",
|
49
|
+
"line": 4,
|
50
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
51
|
+
"code": "link_to(\"Arm\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.arm_path(Arm.find(params[:arm_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
52
|
+
"render_path": [
|
53
|
+
"ThinkFeelDoEngine::BitMaker::SlideshowsController#index"
|
54
|
+
],
|
55
|
+
"location": {
|
56
|
+
"type": "template",
|
57
|
+
"template": "think_feel_do_engine/bit_maker/slideshows/index (ThinkFeelDoEngine::BitMaker::SlideshowsController#index)"
|
58
|
+
},
|
59
|
+
"user_input": "Arm.find(params[:arm_id])",
|
60
|
+
"confidence": "Medium",
|
61
|
+
"note": "false positive due to engine url helper method"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"warning_type": "Cross Site Scripting",
|
65
|
+
"warning_code": 4,
|
66
|
+
"fingerprint": "26fead7672dd110470af566364f6c4e68495ea6afab20ee23612aa3d88adde48",
|
67
|
+
"message": "Unsafe model attribute in link_to href",
|
68
|
+
"file": "app/views/think_feel_do_engine/bit_maker/tools/index.html.erb",
|
69
|
+
"line": 4,
|
70
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
71
|
+
"code": "link_to(\"Arm\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.arm_path(Arm.find(params[:arm_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
72
|
+
"render_path": [
|
73
|
+
"ThinkFeelDoEngine::BitMaker::ToolsController#index"
|
74
|
+
],
|
75
|
+
"location": {
|
76
|
+
"type": "template",
|
77
|
+
"template": "think_feel_do_engine/bit_maker/tools/index (ThinkFeelDoEngine::BitMaker::ToolsController#index)"
|
78
|
+
},
|
79
|
+
"user_input": "Arm.find(params[:arm_id])",
|
80
|
+
"confidence": "Medium",
|
81
|
+
"note": "false positive due to engine url helper method"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"warning_type": "Cross Site Scripting",
|
85
|
+
"warning_code": 4,
|
86
|
+
"fingerprint": "039745632267d18f055319ff3da578fcc9f3faffe706f9aa4f5df9dc76c6848d",
|
87
|
+
"message": "Unsafe model attribute in link_to href",
|
88
|
+
"file": "app/views/think_feel_do_engine/coach/messages/index.html.erb",
|
89
|
+
"line": 4,
|
90
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
91
|
+
"code": "link_to(\"Group\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.group_path(Group.find(params[:group_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
92
|
+
"render_path": [
|
93
|
+
"ThinkFeelDoEngine::Coach::MessagesController#index"
|
94
|
+
],
|
95
|
+
"location": {
|
96
|
+
"type": "template",
|
97
|
+
"template": "think_feel_do_engine/coach/messages/index (ThinkFeelDoEngine::Coach::MessagesController#index)"
|
98
|
+
},
|
99
|
+
"user_input": "Group.find(params[:group_id])",
|
100
|
+
"confidence": "Medium",
|
101
|
+
"note": "false positive due to engine url helper method"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"warning_type": "Cross Site Scripting",
|
105
|
+
"warning_code": 4,
|
106
|
+
"fingerprint": "20b56d2518725c0398048ab2026b88ca931183c3b39d027c5e0dce9d139aaf82",
|
107
|
+
"message": "Unsafe model attribute in link_to href",
|
108
|
+
"file": "app/views/think_feel_do_engine/coach/patient_dashboards/index.html.erb",
|
109
|
+
"line": 4,
|
110
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
111
|
+
"code": "link_to(\"Group\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.group_path(Group.find(params[:group_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
112
|
+
"render_path": [
|
113
|
+
"ThinkFeelDoEngine::Coach::PatientDashboardsController#index"
|
114
|
+
],
|
115
|
+
"location": {
|
116
|
+
"type": "template",
|
117
|
+
"template": "think_feel_do_engine/coach/patient_dashboards/index (ThinkFeelDoEngine::Coach::PatientDashboardsController#index)"
|
118
|
+
},
|
119
|
+
"user_input": "Group.find(params[:group_id])",
|
120
|
+
"confidence": "Medium",
|
121
|
+
"note": "false positive due to engine url helper method"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"warning_type": "Cross Site Scripting",
|
125
|
+
"warning_code": 4,
|
126
|
+
"fingerprint": "d652af2ab511a0a7c8fc2a7d56ff1e4a83676f1ca6dac4b0500d9b1af7e3ce35",
|
127
|
+
"message": "Unsafe model attribute in link_to href",
|
128
|
+
"file": "app/views/think_feel_do_engine/coach/site_messages/index.html.erb",
|
129
|
+
"line": 4,
|
130
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
131
|
+
"code": "link_to(\"Group\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.group_path(Group.find(params[:group_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
132
|
+
"render_path": [
|
133
|
+
"ThinkFeelDoEngine::Coach::SiteMessagesController#index"
|
134
|
+
],
|
135
|
+
"location": {
|
136
|
+
"type": "template",
|
137
|
+
"template": "think_feel_do_engine/coach/site_messages/index (ThinkFeelDoEngine::Coach::SiteMessagesController#index)"
|
138
|
+
},
|
139
|
+
"user_input": "Group.find(params[:group_id])",
|
140
|
+
"confidence": "Medium",
|
141
|
+
"note": "false positive due to engine url helper method"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"warning_type": "Cross Site Scripting",
|
145
|
+
"warning_code": 4,
|
146
|
+
"fingerprint": "56f1178924d536042869970a3b88aac0fdde584d4dfd15c675085c0c6b934e76",
|
147
|
+
"message": "Unsafe model attribute in link_to href",
|
148
|
+
"file": "app/views/think_feel_do_engine/lessons/index.html.erb",
|
149
|
+
"line": 4,
|
150
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
151
|
+
"code": "link_to(\"Arm\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.arm_path(Arm.find(params[:arm_id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
152
|
+
"render_path": [
|
153
|
+
"ThinkFeelDoEngine::LessonsController#index"
|
154
|
+
],
|
155
|
+
"location": {
|
156
|
+
"type": "template",
|
157
|
+
"template": "think_feel_do_engine/lessons/index (ThinkFeelDoEngine::LessonsController#index)"
|
158
|
+
},
|
159
|
+
"user_input": "Arm.find(params[:arm_id])",
|
160
|
+
"confidence": "Medium",
|
161
|
+
"note": "false positive due to engine url helper method"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"warning_type": "Cross Site Scripting",
|
165
|
+
"warning_code": 4,
|
166
|
+
"fingerprint": "fe0b504b3cfa59c499ce6bf4c5a55fcf927cb8ccaa95a286b8b7480786588e84",
|
167
|
+
"message": "Unsafe model attribute in link_to href",
|
168
|
+
"file": "app/views/think_feel_do_engine/manage/groups/edit_tasks.html.erb",
|
169
|
+
"line": 4,
|
170
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
171
|
+
"code": "link_to(\"Group\", (if defined? think_feel_do_dashboard then\n think_feel_do_dashboard.group_path(Arm.find(params[:arm_id]).groups.includes(:tasks => ({ :bit_core_content_module => :tool })).find(params[:id]))\nelse\n \"#\"\nend), :class => \"btn btn-default\")",
|
172
|
+
"render_path": [
|
173
|
+
"ThinkFeelDoEngine::Manage::GroupsController#edit_tasks"
|
174
|
+
],
|
175
|
+
"location": {
|
176
|
+
"type": "template",
|
177
|
+
"template": "think_feel_do_engine/manage/groups/edit_tasks (ThinkFeelDoEngine::Manage::GroupsController#edit_tasks)"
|
178
|
+
},
|
179
|
+
"user_input": "Arm.find(params[:arm_id])",
|
180
|
+
"confidence": "Medium",
|
181
|
+
"note": "false positive due to engine url helper method"
|
182
|
+
},
|
183
|
+
{
|
184
|
+
"warning_type": "Cross Site Scripting",
|
185
|
+
"warning_code": 4,
|
186
|
+
"fingerprint": "ecd34db767d0857c589f83dca0618aff97d49d55e0c0454e71187a8f75cd569b",
|
187
|
+
"message": "Unsafe parameter value in link_to href",
|
188
|
+
"file": "app/views/think_feel_do_engine/participants/public_slides/show.html.erb",
|
189
|
+
"line": 5,
|
190
|
+
"link": "http://brakemanscanner.org/docs/warning_types/link_to_href",
|
191
|
+
"code": "link_to(t(:next), think_feel_do_engine.participants_public_slideshow_slide_path(:slideshow_id => (BitCore::Slideshow.find(params[:slideshow_id]).id), :id => (BitCore::Slideshow.find(params[:slideshow_id]).slides.find_by_position((BitCore::Slideshow.find(params[:slideshow_id]).slides.find(params[:id]).position + 1)).id)), :class => \"btn btn-primary\")",
|
192
|
+
"render_path": [
|
193
|
+
"ThinkFeelDoEngine::Participants::PublicSlidesController#show"
|
194
|
+
],
|
195
|
+
"location": {
|
196
|
+
"type": "template",
|
197
|
+
"template": "think_feel_do_engine/participants/public_slides/show (ThinkFeelDoEngine::Participants::PublicSlidesController#show)"
|
198
|
+
},
|
199
|
+
"user_input": "params",
|
200
|
+
"confidence": "Medium",
|
201
|
+
"note": "false positive due to engine url helper method"
|
202
|
+
}
|
203
|
+
],
|
204
|
+
"updated": "2015-02-18 07:56:09 -0600",
|
205
|
+
"brakeman_version": "3.0.1"
|
206
|
+
}
|