├── .browserslistrc ├── .editorconfig ├── .env.mysql2 ├── .env.postgresql ├── .eslintignore ├── .eslintrc.json ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── brake_man.yml │ ├── danger.yml │ ├── eslint.yml │ ├── mysql.yml │ ├── pa11y.yml │ ├── postgres.yml │ └── rubocop.yml ├── .gitignore ├── .rubocop.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Capfile ├── Dangerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── SECURITY.md ├── app ├── assets │ ├── builds │ │ └── .gitkeep │ ├── config │ │ └── manifest.js │ ├── fonts │ │ ├── GillSans-Light.ttf │ │ ├── SourceSans3VF-Italic.ttf.woff │ │ ├── SourceSans3VF-Italic.ttf.woff2 │ │ ├── SourceSans3VF-Roman.ttf.woff │ │ └── SourceSans3VF-Roman.ttf.woff2 │ ├── images │ │ ├── BridgetThrasher.jpeg │ │ ├── DMPTool_logo_blue_shades_v1b3b.svg │ │ ├── DMPTool_logo_blue_shades_v1b3b_no_tag.svg │ │ ├── ExnerHeadshot.JPG │ │ ├── GeoffHamm.png │ │ ├── HeatherBarnes.jpg │ │ ├── Megan_O_Donnell.jpg │ │ ├── Nick_Ruhs.jpg │ │ ├── Raj_Kumar_Bhardwaj.jpg │ │ ├── Renata_Curty.JPG │ │ ├── Sackmann_Anna_hr.jpg │ │ ├── VarnerDouglas.jpg │ │ ├── android-chrome-192x192.png │ │ ├── apple-touch-icon.png │ │ ├── asc.gif │ │ ├── background.jpg │ │ ├── bg.gif │ │ ├── browserconfig.xml │ │ ├── dcc_logo.png │ │ ├── dcc_logo_white.png │ │ ├── desc.gif │ │ ├── doty-jen-resized.jpg │ │ ├── download.png │ │ ├── favicon copy.ico │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── fullscreen.png │ │ ├── gunia.jpg │ │ ├── help_button.png │ │ ├── hero │ │ │ ├── 1-large.jpg │ │ │ ├── 2-large.jpg │ │ │ ├── 3-large.jpg │ │ │ ├── 4-large.jpg │ │ │ └── 5-large.jpg │ │ ├── jhermer.jpg │ │ ├── login-sample.png │ │ ├── logo-cdl.svg │ │ ├── logo-dmptool-large.svg │ │ ├── logo-dmptool-small.svg │ │ ├── logo.png │ │ ├── minus_laranja.png │ │ ├── mstile-150x150.png │ │ ├── plus_laranja.png │ │ ├── question-mark.png │ │ ├── ratajeski.jpg │ │ ├── remove.png │ │ ├── roadmap_logo_orange_grey.png │ │ ├── roadmap_logo_orange_white.png │ │ ├── rotsuji-portrait.jpg │ │ ├── safari-pinned-tab.svg │ │ ├── select2-spinner.gif │ │ ├── select2.png │ │ ├── select2x2.png │ │ ├── site.webmanifest │ │ ├── spinner.gif │ │ ├── uc3_logo.jpg │ │ ├── uc3_logo_white.png │ │ ├── ue_logo.png │ │ └── wham.jpg │ ├── javascripts │ │ ├── application.js │ │ └── cable.js │ ├── stylesheets │ │ ├── .gitkeep │ │ ├── application.scss │ │ ├── blocks │ │ │ ├── .gitkeep │ │ │ ├── README.md │ │ │ ├── _accessibility.scss │ │ │ ├── _alerts.scss │ │ │ ├── _autocomplete.scss │ │ │ ├── _buttons.scss │ │ │ ├── _clearable_field.scss │ │ │ ├── _datepicker.scss │ │ │ ├── _display.scss │ │ │ ├── _dropdowns.scss │ │ │ ├── _font_awesomes.scss │ │ │ ├── _footers.scss │ │ │ ├── _help_blocks.scss │ │ │ ├── _html.scss │ │ │ ├── _index.scss │ │ │ ├── _input_groups.scss │ │ │ ├── _inverse_dropdowns.scss │ │ │ ├── _labels.scss │ │ │ ├── _lists.scss │ │ │ ├── _logos.scss │ │ │ ├── _modal_dialogs.scss │ │ │ ├── _modal_permissions.scss │ │ │ ├── _modal_search.scss │ │ │ ├── _navbars.scss │ │ │ ├── _navs.scss │ │ │ ├── _new_plans_form.scss │ │ │ ├── _new_window_popup.scss │ │ │ ├── _notification_areas.scss │ │ │ ├── _org_links.scss │ │ │ ├── _panels.scss │ │ │ ├── _profile_form.scss │ │ │ ├── _progress.scss │ │ │ ├── _project_details.scss │ │ │ ├── _question_container.scss │ │ │ ├── _question_form.scss │ │ │ ├── _rda.scss │ │ │ ├── _readonly_textarea.scss │ │ │ ├── _selectpicker.scss │ │ │ ├── _spinner.scss │ │ │ ├── _statuses.scss │ │ │ ├── _tables.scss │ │ │ ├── _template_filters.scss │ │ │ ├── _tinymce_content.scss │ │ │ ├── _tooltips.scss │ │ │ ├── _ui_sortable_handle.scss │ │ │ └── _usage.scss │ │ ├── dmptool │ │ │ ├── _buttons.scss │ │ │ ├── _citation.scss │ │ │ ├── _cursors.scss │ │ │ ├── _disabled.scss │ │ │ ├── _dls.scss │ │ │ ├── _floats.scss │ │ │ ├── _form.scss │ │ │ ├── _guidance.scss │ │ │ ├── _index.scss │ │ │ ├── _label.scss │ │ │ ├── _lists.scss │ │ │ ├── _menus.scss │ │ │ ├── _oauth.scss │ │ │ ├── _search.scss │ │ │ ├── _sso_bypass.scss │ │ │ ├── _static_pages.scss │ │ │ ├── _template_preferences.scss │ │ │ └── _tinymce.scss │ │ ├── tinymce.css │ │ ├── utils │ │ │ ├── .gitkeep │ │ │ ├── README.md │ │ │ ├── _backgrounds.scss │ │ │ ├── _bordered.scss │ │ │ ├── _break_words.scss │ │ │ ├── _colours.scss │ │ │ ├── _font_size.scss │ │ │ ├── _icons.scss │ │ │ ├── _index.scss │ │ │ └── _margins.scss │ │ ├── variables │ │ │ ├── .gitkeep │ │ │ ├── README.md │ │ │ ├── _bold.scss │ │ │ ├── _bootstrap.scss │ │ │ ├── _colours.scss │ │ │ ├── _index.scss │ │ │ ├── _site_overrides.scss │ │ │ ├── _tinymce.scss │ │ │ └── _typography.scss │ │ └── vendor │ │ │ └── bootstrap-select │ │ │ └── sass │ │ │ ├── bootstrap-select.scss │ │ │ └── variables.scss │ ├── vendor │ │ └── jquery-ui │ │ │ └── datepicker │ │ │ └── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_FFF_256x240.png │ │ │ └── ui-icons_cc0000_256x240.png │ ├── videos │ │ └── index.files │ │ │ └── html5video │ │ │ ├── .htaccess │ │ │ ├── flashfox.swf │ │ │ ├── fullscreen.png │ │ │ ├── html5ext.js │ │ │ ├── screencast.jpg │ │ │ ├── screencast.m4v │ │ │ ├── screencast.mp4 │ │ │ ├── screencast.ogv │ │ │ └── screencast.webm │ └── xslt │ │ └── htmltoword │ │ ├── functions.xslt │ │ └── numbering.xslt ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── answers_controller.rb │ ├── api │ │ ├── v0 │ │ │ ├── base_controller.rb │ │ │ ├── departments_controller.rb │ │ │ ├── guidance_groups_controller.rb │ │ │ ├── plans_controller.rb │ │ │ ├── statistics_controller.rb │ │ │ └── templates_controller.rb │ │ ├── v1 │ │ │ ├── authentication_controller.rb │ │ │ ├── base_api_controller.rb │ │ │ ├── plans_controller.rb │ │ │ └── templates_controller.rb │ │ └── v2 │ │ │ ├── base_api_controller.rb │ │ │ ├── datasets_controller.rb │ │ │ ├── plans_controller.rb │ │ │ ├── related_identifiers_controller.rb │ │ │ ├── templates_controller.rb │ │ │ └── users_controller.rb │ ├── api_clients_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ ├── allowed_question_formats.rb │ │ ├── conditional_user_mailer.rb │ │ ├── dmptool │ │ │ └── authenticatable.rb │ │ ├── org_selectable.rb │ │ ├── paginable.rb │ │ ├── template_methods.rb │ │ └── versionable.rb │ ├── contact_us │ │ └── contacts_controller.rb │ ├── contributors_controller.rb │ ├── dmptool │ │ ├── home_controller.rb │ │ ├── org_admin │ │ │ ├── plans_controller.rb │ │ │ └── templates_controller.rb │ │ ├── paginable │ │ │ └── orgs_controller.rb │ │ ├── plans_controller.rb │ │ ├── public_pages_controller.rb │ │ ├── static_pages_controller.rb │ │ └── users_controller.rb │ ├── feedback_requests_controller.rb │ ├── guidance_groups_controller.rb │ ├── guidances_controller.rb │ ├── home_controller.rb │ ├── identifiers_controller.rb │ ├── notes_controller.rb │ ├── org_admin │ │ ├── conditions_controller.rb │ │ ├── departments_controller.rb │ │ ├── phase_versions_controller.rb │ │ ├── phases_controller.rb │ │ ├── plans_controller.rb │ │ ├── question_options_controller.rb │ │ ├── questions_controller.rb │ │ ├── sections_controller.rb │ │ ├── template_copies_controller.rb │ │ ├── template_customization_transfers_controller.rb │ │ ├── template_customizations_controller.rb │ │ ├── templates_controller.rb │ │ └── users_controller.rb │ ├── orgs_controller.rb │ ├── paginable │ │ ├── api_clients_controller.rb │ │ ├── api_logs_controller.rb │ │ ├── contributors_controller.rb │ │ ├── departments_controller.rb │ │ ├── guidance_groups_controller.rb │ │ ├── guidances_controller.rb │ │ ├── notifications_controller.rb │ │ ├── orgs_controller.rb │ │ ├── plans_controller.rb │ │ ├── research_outputs_controller.rb │ │ ├── templates_controller.rb │ │ ├── themes_controller.rb │ │ └── users_controller.rb │ ├── passwords_controller.rb │ ├── plan_exports_controller.rb │ ├── plans_controller.rb │ ├── public_pages_controller.rb │ ├── question_formats_controller.rb │ ├── registrations_controller.rb │ ├── registry_orgs_controller.rb │ ├── research_outputs_controller.rb │ ├── research_projects_controller.rb │ ├── roles_controller.rb │ ├── session_locales_controller.rb │ ├── sessions_controller.rb │ ├── settings.rb │ ├── settings │ │ └── plans_controller.rb │ ├── sitemaps_controller.rb │ ├── static_pages_controller.rb │ ├── super_admin │ │ ├── api_clients_controller.rb │ │ ├── api_logs_controller.rb │ │ ├── notifications_controller.rb │ │ ├── org_swaps_controller.rb │ │ ├── orgs_controller.rb │ │ ├── themes_controller.rb │ │ └── users_controller.rb │ ├── template_options_controller.rb │ ├── usage_controller.rb │ ├── usage_downloads_controller.rb │ ├── users │ │ ├── omniauth_callbacks_controller.rb │ │ ├── omniauth_passthrus_controller.rb │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ └── sessions_controller.rb │ └── users_controller.rb ├── helpers │ ├── annotations_helper.rb │ ├── application_helper.rb │ ├── authentication_helper.rb │ ├── conditions_helper.rb │ ├── customizable_template_link_helper.rb │ ├── dmptool_helper.rb │ ├── exports_helper.rb │ ├── feedbacks_helper.rb │ ├── identifier_helper.rb │ ├── languages_helper.rb │ ├── mailer_helper.rb │ ├── manifests_helper.rb │ ├── notifications_helper.rb │ ├── orgs_helper.rb │ ├── paginable_helper.rb │ ├── perms_helper.rb │ ├── plans_helper.rb │ ├── sections_helper.rb │ ├── settings_template_helper.rb │ ├── super_admin │ │ ├── api_client_helper.rb │ │ └── orgs │ │ │ └── merge_helper.rb │ ├── template_helper.rb │ └── usage_helper.rb ├── javascript │ ├── README.md │ ├── application.js │ ├── channels │ │ ├── consumer.js │ │ ├── example_channel.js │ │ └── index.js │ └── src │ │ ├── answers │ │ ├── conditions.js │ │ ├── edit.js │ │ └── rdaMetadata.js │ │ ├── devise │ │ ├── passwords │ │ │ └── edit.js │ │ └── registrations │ │ │ └── edit.js │ │ ├── dmptool │ │ ├── orgAdmin │ │ │ ├── plans │ │ │ │ └── index.js │ │ │ └── templates │ │ │ │ └── preferences.js │ │ ├── public_pages │ │ │ └── plans_index.js │ │ ├── recaptcha_aria.js │ │ └── users │ │ │ ├── passwords │ │ │ └── edit.js │ │ │ └── sessions │ │ │ └── new.js │ │ ├── guidances │ │ └── newEdit.js │ │ ├── locale │ │ ├── de │ │ │ ├── app.js │ │ │ └── timeago.js │ │ ├── en_GB │ │ │ ├── app.js │ │ │ └── timeago.js │ │ ├── en_US │ │ │ ├── app.js │ │ │ └── timeago.js │ │ ├── es │ │ │ ├── app.js │ │ │ └── timeago.js │ │ ├── fr_FR │ │ │ ├── app.js │ │ │ └── timeago.js │ │ └── pt_BR │ │ │ └── timeago.js │ │ ├── notes │ │ └── index.js │ │ ├── orgAdmin │ │ ├── conditions │ │ │ └── updateConditions.js │ │ ├── phases │ │ │ ├── newEdit.js │ │ │ ├── preview.js │ │ │ └── show.js │ │ ├── questionOptions │ │ │ └── index.js │ │ ├── questions │ │ │ └── sharedEventHandlers.js │ │ ├── sections │ │ │ └── index.js │ │ └── templates │ │ │ ├── edit.js │ │ │ ├── index.js │ │ │ └── new.js │ │ ├── orgs │ │ ├── adminEdit.js │ │ └── shibbolethDs.js │ │ ├── plans │ │ ├── download.js │ │ ├── editDetails.js │ │ ├── index.js │ │ ├── new.js │ │ ├── publish.js │ │ └── share.js │ │ ├── publicTemplates │ │ └── show.js │ │ ├── relatedIdentifiers │ │ └── edit.js │ │ ├── researchOutputs │ │ └── form.js │ │ ├── roles │ │ └── edit.js │ │ ├── shared │ │ ├── createAccountForm.js │ │ └── signInForm.js │ │ ├── superAdmin │ │ ├── apiClients │ │ │ └── form.js │ │ ├── notifications │ │ │ └── edit.js │ │ ├── themes │ │ │ └── newEdit.js │ │ └── users │ │ │ └── edit.js │ │ ├── usage │ │ └── index.js │ │ ├── users │ │ ├── adminGrantPermissions.js │ │ ├── notificationPreferences.js │ │ └── profile.js │ │ └── utils │ │ ├── accordion.js │ │ ├── array.js │ │ ├── autoComplete.js │ │ ├── charts.js │ │ ├── conditionalFields.js │ │ ├── constants.js │ │ ├── datePicker.js │ │ ├── debounce.js │ │ ├── externalLink.js │ │ ├── isType.js │ │ ├── isValidInputType.js │ │ ├── links.js │ │ ├── modalSearch.js │ │ ├── notificationHelper.js │ │ ├── outOfFocus.js │ │ ├── paginable.js │ │ ├── panelHeading.js │ │ ├── passwordHelper.js │ │ ├── popoverHelper.js │ │ ├── requiredField.js │ │ ├── scrollTo.js │ │ ├── sectionUpdate.js │ │ ├── spinner.js │ │ ├── tabHelper.js │ │ ├── timeagoFactory.js.erb │ │ ├── tinymce.js │ │ └── tooltipHelper.js ├── jobs │ ├── application_job.rb │ └── notify_subscriber_job.rb ├── mailers │ ├── dmptool │ │ └── mailer.rb │ └── user_mailer.rb ├── models │ ├── annotation.rb │ ├── answer.rb │ ├── api_client.rb │ ├── api_log.rb │ ├── application_record.rb │ ├── concerns │ │ ├── acts_as_sortable.rb │ │ ├── date_rangeable.rb │ │ ├── dmptool │ │ │ ├── org.rb │ │ │ ├── plan.rb │ │ │ └── user.rb │ │ ├── exportable_plan.rb │ │ ├── identifiable.rb │ │ ├── json_link_validator.rb │ │ ├── subscribable.rb │ │ ├── validation_messages.rb │ │ ├── validation_values.rb │ │ └── versionable_model.rb │ ├── condition.rb │ ├── contributor.rb │ ├── department.rb │ ├── exported_plan.rb │ ├── external_api_access_token.rb │ ├── guidance.rb │ ├── guidance_group.rb │ ├── identifier.rb │ ├── identifier_scheme.rb │ ├── language.rb │ ├── license.rb │ ├── metadata_standard.rb │ ├── note.rb │ ├── notification.rb │ ├── org.rb │ ├── perm.rb │ ├── phase.rb │ ├── plan.rb │ ├── pref.rb │ ├── question.rb │ ├── question_format.rb │ ├── question_option.rb │ ├── region.rb │ ├── registry_org.rb │ ├── related_identifier.rb │ ├── repository.rb │ ├── research_domain.rb │ ├── research_output.rb │ ├── research_project.rb │ ├── role.rb │ ├── section.rb │ ├── section_sorter.rb │ ├── settings │ │ └── template.rb │ ├── stat.rb │ ├── stat_created_plan.rb │ ├── stat_created_plan │ │ └── create_or_update.rb │ ├── stat_exported_plan.rb │ ├── stat_exported_plan │ │ └── create_or_update.rb │ ├── stat_joined_user.rb │ ├── stat_joined_user │ │ └── create_or_update.rb │ ├── stat_shared_plan.rb │ ├── stat_shared_plan │ │ └── create_or_update.rb │ ├── subscription.rb │ ├── template.rb │ ├── template_license.rb │ ├── template_metadata_standard.rb │ ├── template_output_type.rb │ ├── template_repository.rb │ ├── theme.rb │ ├── token_permission_type.rb │ ├── tracker.rb │ ├── user.rb │ └── user │ │ └── at_csv.rb ├── policies │ ├── annotation_policy.rb │ ├── answer_policy.rb │ ├── api │ │ ├── v0 │ │ │ ├── departments_policy.rb │ │ │ ├── guidance_group_policy.rb │ │ │ ├── guidance_policy.rb │ │ │ ├── plans_policy.rb │ │ │ ├── statistics_policy.rb │ │ │ └── template_policy.rb │ │ ├── v1 │ │ │ └── plans_policy.rb │ │ └── v2 │ │ │ ├── plans_policy.rb │ │ │ └── templates_policy.rb │ ├── api_client_policy.rb │ ├── application_policy.rb │ ├── department_policy.rb │ ├── guidance_group_policy.rb │ ├── guidance_policy.rb │ ├── identifier_policy.rb │ ├── note_policy.rb │ ├── notification_policy.rb │ ├── org_policy.rb │ ├── paginable │ │ └── plan_policy.rb │ ├── phase_policy.rb │ ├── plan_policy.rb │ ├── public_page_policy.rb │ ├── question_option_policy.rb │ ├── question_policy.rb │ ├── research_output_policy.rb │ ├── role_policy.rb │ ├── section_policy.rb │ ├── settings │ │ ├── plan_policy.rb │ │ └── project_policy.rb │ ├── template_policy.rb │ ├── theme_policy.rb │ ├── token_permission_type_policy.rb │ ├── usage_policy.rb │ └── user_policy.rb ├── presenters │ ├── api │ │ ├── v1 │ │ │ ├── api_presenter.rb │ │ │ ├── contributor_presenter.rb │ │ │ ├── funding_presenter.rb │ │ │ ├── language_presenter.rb │ │ │ ├── org_presenter.rb │ │ │ ├── pagination_presenter.rb │ │ │ ├── plan_presenter.rb │ │ │ ├── research_output_presenter.rb │ │ │ └── template_presenter.rb │ │ └── v2 │ │ │ └── plan_presenter.rb │ ├── contributor_presenter.rb │ ├── dmptool │ │ └── org_presenter.rb │ ├── guidance_presenter.rb │ ├── identifier_presenter.rb │ ├── org_selection_presenter.rb │ ├── plan_presenter.rb │ ├── related_identifier_presenter.rb │ ├── research_output_presenter.rb │ └── super_admin │ │ └── orgs │ │ └── merge_presenter.rb ├── scrubbers │ └── table_free_scrubber.rb ├── services │ ├── api │ │ ├── v1 │ │ │ ├── auth │ │ │ │ └── jwt │ │ │ │ │ ├── authentication_service.rb │ │ │ │ │ ├── authorization_service.rb │ │ │ │ │ └── json_web_token.rb │ │ │ ├── contextual_error_service.rb │ │ │ ├── conversion_service.rb │ │ │ ├── deserialization │ │ │ │ ├── contributor.rb │ │ │ │ ├── dataset.rb │ │ │ │ ├── funding.rb │ │ │ │ ├── identifier.rb │ │ │ │ ├── org.rb │ │ │ │ └── plan.rb │ │ │ ├── deserialization_service.rb │ │ │ ├── json_validation_service.rb │ │ │ ├── persistence_service.rb │ │ │ └── validation_service.rb │ │ └── v2 │ │ │ ├── contextual_error_service.rb │ │ │ ├── conversion_service.rb │ │ │ ├── deserialization │ │ │ ├── contributor.rb │ │ │ ├── dataset.rb │ │ │ ├── funding.rb │ │ │ ├── identifier.rb │ │ │ ├── org.rb │ │ │ ├── plan.rb │ │ │ └── related_identifier.rb │ │ │ ├── deserialization_service.rb │ │ │ ├── json_validation_service.rb │ │ │ └── persistence_service.rb │ ├── application_service.rb │ ├── dmp_id_service.rb │ ├── external_apis │ │ ├── base_dmp_id_service.rb │ │ ├── base_service.rb │ │ ├── datacite_service.rb │ │ ├── dmphub_service.rb │ │ ├── open_aire_service.rb │ │ ├── orcid_service.rb │ │ ├── rdamsc_service.rb │ │ ├── re3data_service.rb │ │ ├── ror_service.rb │ │ └── spdx_service.rb │ ├── locale_service.rb │ ├── org │ │ ├── create_created_plan_service.rb │ │ ├── create_exported_plan_service.rb │ │ ├── create_joined_user_service.rb │ │ ├── create_last_month_created_plan_service.rb │ │ ├── create_last_month_exported_plan_service.rb │ │ ├── create_last_month_joined_user_service.rb │ │ ├── create_last_month_shared_plan_service.rb │ │ ├── create_shared_plan_service.rb │ │ ├── monthly_usage_service.rb │ │ ├── total_count_created_plan_service.rb │ │ ├── total_count_joined_user_service.rb │ │ └── total_count_stat_service.rb │ ├── org_selection │ │ ├── hash_to_org_service.rb │ │ ├── org_to_hash_service.rb │ │ └── search_service.rb │ └── template │ │ └── upgrade_customization_service.rb ├── validators │ ├── after_validator.rb │ ├── answer_for_correct_template_validator.rb │ ├── email_validator.rb │ ├── org_links_validator.rb │ ├── template_links_validator.rb │ └── url_validator.rb └── views │ ├── answers │ ├── _locking.html.erb │ ├── _new_edit.html.erb │ └── _status.html.erb │ ├── api │ ├── v0 │ │ ├── departments │ │ │ ├── index.json.jbuilder │ │ │ └── users.json.jbuilder │ │ ├── guidance_groups │ │ │ └── index.json.jbuilder │ │ ├── plans │ │ │ ├── create.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── statistics │ │ │ ├── plans.json.jbuilder │ │ │ ├── plans_by_template.json.jbuilder │ │ │ ├── users_joined.json.jbuilder │ │ │ └── using_template.json.jbuilder │ │ └── templates │ │ │ └── index.json.jbuilder │ ├── v1 │ │ ├── _standard_response.json.jbuilder │ │ ├── contributors │ │ │ └── _show.json.jbuilder │ │ ├── datasets │ │ │ └── _show.json.jbuilder │ │ ├── error.json.jbuilder │ │ ├── heartbeat.json.jbuilder │ │ ├── identifiers │ │ │ └── _show.json.jbuilder │ │ ├── orgs │ │ │ └── _show.json.jbuilder │ │ ├── plans │ │ │ ├── _cost.json.jbuilder │ │ │ ├── _funding.json.jbuilder │ │ │ ├── _project.json.jbuilder │ │ │ ├── _show.json.jbuilder │ │ │ └── index.json.jbuilder │ │ ├── templates │ │ │ └── index.json.jbuilder │ │ └── token.json.jbuilder │ └── v2 │ │ ├── _standard_response.json.jbuilder │ │ ├── annotations │ │ └── _show.json.jbuilder │ │ ├── contributors │ │ └── _show.json.jbuilder │ │ ├── datasets │ │ └── _show.json.jbuilder │ │ ├── error.json.jbuilder │ │ ├── heartbeat.json.jbuilder │ │ ├── identifiers │ │ └── _show.json.jbuilder │ │ ├── me.json.jbuilder │ │ ├── orgs │ │ └── _show.json.jbuilder │ │ ├── phases │ │ └── _show.json.jbuilder │ │ ├── plans │ │ ├── _cost.json.jbuilder │ │ ├── _funding.json.jbuilder │ │ ├── _project.json.jbuilder │ │ ├── _show.json.jbuilder │ │ ├── index.json.jbuilder │ │ └── show.erb │ │ ├── question_options │ │ └── _show.json.jbuilder │ │ ├── questions │ │ └── _show.json.jbuilder │ │ ├── sections │ │ └── _show.json.jbuilder │ │ └── templates │ │ └── index.json.jbuilder │ ├── branded │ ├── answers │ │ └── _new_edit.html.erb │ ├── contact_us │ │ └── contacts │ │ │ ├── _new_left.html.erb │ │ │ └── _new_right.html.erb │ ├── contributors │ │ ├── _form.html.erb │ │ └── index.html.erb │ ├── home │ │ ├── index.html.erb │ │ └── robots.html.erb │ ├── kaminari │ │ ├── _first_page.html.erb │ │ ├── _gap.html.erb │ │ ├── _last_page.html.erb │ │ ├── _next_page.html.erb │ │ ├── _page.html.erb │ │ ├── _paginator.html.erb │ │ └── _prev_page.html.erb │ ├── layouts │ │ ├── _analytics.html.erb │ │ ├── _footer.html.erb │ │ ├── _header.html.erb │ │ ├── _home.html.erb │ │ ├── _json_constants.html.erb │ │ ├── _notifications.html.erb │ │ ├── _sub_header.html.erb │ │ ├── application.html.erb │ │ └── modal_search │ │ │ ├── _form.html.erb │ │ │ ├── _result.html.erb │ │ │ ├── _results.html.erb │ │ │ └── _selections.html.erb │ ├── org_admin │ │ └── templates │ │ │ ├── _navigation.html.erb │ │ │ ├── email.js.erb │ │ │ ├── metadata_standard_search.js.erb │ │ │ ├── metadata_standards │ │ │ ├── _search.html.erb │ │ │ └── _search_result.html.erb │ │ │ ├── preferences.html.erb │ │ │ ├── preferences_show.html.erb │ │ │ ├── repositories │ │ │ ├── _search.html.erb │ │ │ └── _search_result.html.erb │ │ │ └── repository_search.js.erb │ ├── orgs │ │ └── _profile_form.html.erb │ ├── paginable │ │ ├── orgs │ │ │ └── _public.html.erb │ │ ├── plans │ │ │ └── _org_admin.html.erb │ │ ├── research_outputs │ │ │ └── _index.html.erb │ │ └── templates │ │ │ ├── _invite_modal.html.erb │ │ │ ├── _invite_modal_content.html.erb │ │ │ ├── _organisational.html.erb │ │ │ └── _publicly_visible.html.erb │ ├── phases │ │ └── _edit_plan_answers.html.erb │ ├── plans │ │ ├── _collaborator_form.html.erb │ │ ├── _dmp_id_minter.html.erb │ │ ├── _download_form.html.erb │ │ ├── _follow_up_form.html.erb │ │ ├── _funding.html.erb │ │ ├── _navigation.html.erb │ │ ├── _project_details.html.erb │ │ ├── _publish_form.html.erb │ │ ├── _visibility_form.html.erb │ │ ├── follow_up.html.erb │ │ ├── mint.js.erb │ │ ├── new.html.erb │ │ └── publish.html.erb │ ├── public_pages │ │ ├── _facet_section.html.erb │ │ ├── _plans_facet_form.html.erb │ │ ├── _plans_results.html.erb │ │ ├── orgs.html.erb │ │ ├── plan_index.html.erb │ │ └── template_index.html.erb │ ├── related_identifiers │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ └── _show.html.erb │ ├── research_outputs │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── identifiers │ │ │ └── _openaire.html.erb │ │ ├── index.html.erb │ │ ├── licenses │ │ │ └── _form.html.erb │ │ ├── metadata_standard_search.js.erb │ │ ├── metadata_standards │ │ │ ├── _custom.html.erb │ │ │ ├── _search.html.erb │ │ │ └── _search_result.html.erb │ │ ├── new.html.erb │ │ ├── repositories │ │ │ ├── _custom.html.erb │ │ │ ├── _search.html.erb │ │ │ └── _search_result.html.erb │ │ ├── repository_search.js.erb │ │ ├── sections │ │ │ └── _identifiers.html.erb │ │ ├── select_license.js.erb │ │ ├── select_output_type.js.erb │ │ └── show.html.erb │ ├── shared │ │ └── export │ │ │ ├── _plan.erb │ │ │ ├── _plan_coversheet.erb │ │ │ ├── _plan_outputs.erb │ │ │ ├── _plan_related_identifiers.erb │ │ │ └── _plan_styling.erb │ ├── static_pages │ │ ├── about_us.html.erb │ │ ├── editorial_board.html.erb │ │ ├── faq.html.erb │ │ ├── general_guidance.html.erb │ │ ├── help.html.erb │ │ ├── privacy.html.erb │ │ ├── promote.html.erb │ │ ├── quick_start_guide.html.erb │ │ ├── sso_error.html.erb │ │ └── termsuse.html.erb │ ├── super_admin │ │ └── notifications │ │ │ └── _form.html.erb │ ├── user_mailer │ │ ├── invitation.html.erb │ │ ├── new_api_client.html.erb │ │ ├── new_plan_via_api.html.erb │ │ ├── new_plan_via_template.html.erb │ │ └── notify_administrators.html.erb │ └── users │ │ ├── mailer │ │ └── reset_password_instructions.html.erb │ │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ │ ├── registrations │ │ ├── _form.html.erb │ │ ├── _profile_form.html.erb │ │ ├── _profile_password.html.erb │ │ ├── _profile_preferences.html.erb │ │ ├── edit.html.erb │ │ └── new.html.erb │ │ ├── sessions │ │ ├── _form.html.erb │ │ ├── _validate.html.erb │ │ └── new.html.erb │ │ └── shared │ │ ├── _error_messages.html.erb │ │ ├── _links.html.erb │ │ ├── _login_header.html.erb │ │ └── _sso.html.erb │ ├── contact_us │ ├── contact_mailer │ │ ├── contact_email.html.erb │ │ └── contact_email.text.plain.erb │ └── contacts │ │ ├── _new_left.html.erb │ │ ├── _new_right.html.erb │ │ └── new.html.erb │ ├── contributors │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── datacite │ ├── _contributor.json.jbuilder │ └── _minter.json.jbuilder │ ├── devise │ ├── invitations │ │ └── edit.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── invitation_instructions.html.erb │ │ ├── password_change.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── _api_token.html.erb │ │ ├── _external_identifier.html.erb │ │ ├── _password_confirmation.html.erb │ │ ├── _password_details.html.erb │ │ ├── _personal_details.html.erb │ │ ├── api_client_refresh_credentials.js.erb │ │ ├── api_client_save.js.erb │ │ ├── edit.html.erb │ │ └── new.html.erb │ └── shared │ │ └── _links.erb │ ├── doorkeeper │ └── authorizations │ │ ├── _shib_sign_in.html.erb │ │ ├── _sign_in.html.erb │ │ ├── _validate.html.erb │ │ ├── error.html.erb │ │ ├── new.html.erb │ │ └── new.js.erb │ ├── guidance_groups │ ├── _guidance_group_form.html.erb │ ├── _index_by_theme.html.erb │ ├── _show.html.erb │ ├── admin_edit.html.erb │ └── admin_new.html.erb │ ├── guidances │ ├── _guidance_display.html.erb │ ├── admin_index.html.erb │ └── new_edit.html.erb │ ├── home │ ├── _welcome.html.erb │ └── index.html.erb │ ├── kaminari │ ├── _first_page.html.erb │ ├── _gap.html.erb │ ├── _last_page.html.erb │ ├── _next_page.html.erb │ ├── _page.html.erb │ ├── _paginator.html.erb │ └── _prev_page.html.erb │ ├── layouts │ ├── _branding.html.erb │ ├── _footer.html.erb │ ├── _header.html.erb │ ├── _navigation.html.erb │ ├── _notifications.html.erb │ ├── _paginable.html.erb │ ├── _signin_signout.html.erb │ ├── application.html.erb │ ├── doorkeeper │ │ └── application.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ └── modal_search │ │ ├── README.md │ │ ├── _form.html.erb │ │ ├── _result.html.erb │ │ ├── _results.html.erb │ │ └── _selections.html.erb │ ├── notes │ ├── _archive.html.erb │ ├── _edit.html.erb │ ├── _layout.html.erb │ ├── _list.html.erb │ ├── _new.html.erb │ ├── _show.html.erb │ └── _title.html.erb │ ├── org_admin │ ├── annotations │ │ ├── _form.html.erb │ │ └── _show.html.erb │ ├── conditions │ │ ├── _add.html.erb │ │ ├── _container.html.erb │ │ ├── _form.html.erb │ │ └── _webhook_form.html.erb │ ├── departments │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── phases │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _index.html.erb │ │ ├── _new.html.erb │ │ ├── _overview.html.erb │ │ ├── _phase.html.erb │ │ ├── _show.html.erb │ │ ├── container.html.erb │ │ └── preview.html.erb │ ├── plans │ │ └── index.html.erb │ ├── question_options │ │ └── _option_fields.html.erb │ ├── questions │ │ ├── _container.html.erb │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _index.html.erb │ │ ├── _new.html.erb │ │ └── _show.html.erb │ ├── sections │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _index.html.erb │ │ ├── _new.html.erb │ │ ├── _progress.html.erb │ │ ├── _section.html.erb │ │ ├── _section_group.html.erb │ │ └── _show.html.erb │ ├── shared │ │ └── _theme_selector.html.erb │ ├── templates │ │ ├── _edit.html.erb │ │ ├── _form.html.erb │ │ ├── _navigation.html.erb │ │ ├── _row.html.erb │ │ ├── _show.html.erb │ │ ├── container.html.erb │ │ ├── history.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ └── users │ │ ├── edit.html.erb │ │ └── plans.html.erb │ ├── orgs │ ├── _api_emails.html.erb │ ├── _departments.html.erb │ ├── _external_identifiers.html.erb │ ├── _feedback_form.html.erb │ ├── _merge_form.html.erb │ ├── _profile_form.html.erb │ └── admin_edit.html.erb │ ├── paginable │ ├── api_clients │ │ └── _index.html.erb │ ├── api_logs │ │ └── _index.html.erb │ ├── contributors │ │ └── _index.html.erb │ ├── departments │ │ └── _index.html.erb │ ├── guidance_groups │ │ └── _index.html.erb │ ├── guidances │ │ └── _index.html.erb │ ├── notifications │ │ └── _index.html.erb │ ├── orgs │ │ └── _index.html.erb │ ├── plans │ │ ├── _index.html.erb │ │ ├── _org_admin.html.erb │ │ ├── _organisationally_or_publicly_visible.html.erb │ │ ├── _privately_visible.html.erb │ │ └── _publicly_visible.html.erb │ ├── templates │ │ ├── _customisable.html.erb │ │ ├── _history.html.erb │ │ ├── _index.html.erb │ │ ├── _organisational.html.erb │ │ └── _publicly_visible.html.erb │ ├── themes │ │ └── _index.html.erb │ └── users │ │ └── _index.html.erb │ ├── phases │ ├── _edit_plan_answers.html.erb │ ├── _guidances_notes.html.erb │ ├── _overview.html.erb │ └── edit.html.erb │ ├── plan_exports │ └── show.erb │ ├── plans │ ├── _download_form.html.erb │ ├── _edit_details.html.erb │ ├── _guidance_choices.html.erb │ ├── _guidance_selection.html.erb │ ├── _navigation.html.erb │ ├── _overview_details.html.erb │ ├── _progress.html.erb │ ├── _project_details.html.erb │ ├── _request_feedback_form.html.erb │ ├── _share_form.html.erb │ ├── _show_details.html.erb │ ├── download.html.erb │ ├── export.xml.builder │ ├── index.html.erb │ ├── new.html.erb │ ├── overview.html.erb │ ├── request_feedback.html.erb │ ├── share.html.erb │ └── show.html.erb │ ├── public_pages │ ├── plan_export.pdf.erb │ ├── plan_index.html.erb │ └── template_index.html.erb │ ├── questions │ ├── _new_edit_question_datefield.html.erb │ ├── _new_edit_question_option_based.html.erb │ ├── _new_edit_question_textarea.html.erb │ ├── _new_edit_question_textfield.html.erb │ └── _preview_question.html.erb │ ├── shared │ ├── _access_controls.html.erb │ ├── _copy_link_modal.html.erb │ ├── _create_account_form.html.erb │ ├── _create_plan_modal.html.erb │ ├── _links.html.erb │ ├── _modal.html.erb │ ├── _org_autocomplete.html.erb │ ├── _popover.html.erb │ ├── _search.html.erb │ ├── _sign_in_form.html.erb │ ├── _table_filter.html.erb │ └── export │ │ ├── _plan.erb │ │ ├── _plan_coversheet.erb │ │ ├── _plan_outputs.erb │ │ ├── _plan_styling.erb │ │ └── _plan_txt.erb │ ├── sitemaps │ ├── _admin.html.erb │ ├── _help.html.erb │ ├── _signed_in.html.erb │ ├── _signed_out.html.erb │ ├── index.html.erb │ └── index.xml.builder │ ├── static_pages │ ├── about_us.html.erb │ ├── help.html.erb │ ├── privacy.html.erb │ └── termsuse.html.erb │ ├── super_admin │ ├── api_clients │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── email_credentials.js.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── refresh_credentials.js.erb │ ├── api_logs │ │ └── index.html.erb │ ├── notifications │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ ├── orgs │ │ ├── _analysis.html.erb │ │ ├── index.html.erb │ │ ├── merge_analyze.js.erb │ │ └── new.html.erb │ ├── themes │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ └── new.html.erb │ └── users │ │ ├── _confirm_merge.html.erb │ │ └── edit.html.erb │ ├── template_exports │ ├── template_export.docx.erb │ └── template_export.pdf.erb │ ├── template_options │ └── index.json.jbuilder │ ├── usage │ ├── _plans_by_template_chart.html.erb │ ├── _plans_created_chart.html.erb │ ├── _template_statistics.html.erb │ ├── _template_statistics_accordion.html.erb │ ├── _total_usage.html.erb │ ├── _user_statistics.html.erb │ ├── _user_statistics_accordion.html.erb │ ├── _users_joined_chart.html.erb │ ├── index.html.erb │ └── plans_by_template.js.erb │ ├── user_mailer │ ├── _email_signature.html.erb │ ├── admin_privileges.html.erb │ ├── api_credentials.html.erb │ ├── feedback_complete.html.erb │ ├── feedback_notification.html.erb │ ├── new_comment.html.erb │ ├── permissions_change_notification.html.erb │ ├── plan_access_removed.html.erb │ ├── plan_visibility.html.erb │ ├── question_answered.html.erb │ ├── sharing_notification.html.erb │ └── welcome_notification.html.erb │ └── users │ ├── _admin_grant_permissions.html.erb │ ├── _api_client_form.html.erb │ ├── _current_privileges.html.erb │ ├── _external_identifier.html.erb │ ├── _notification_preferences.html.erb │ ├── admin_index.html.erb │ ├── developer_tools.html.erb │ ├── refresh_token.js.erb │ └── third_party_apps.html.erb ├── babel.config.js ├── bin ├── _guard-core ├── annotate ├── annotate-gem ├── annotate_gem ├── brakeman ├── bundle ├── bundle-audit ├── byebug ├── coderay ├── convert_to_should_syntax ├── dev ├── dotenv ├── faker ├── guard ├── htmldiff ├── htmltoword ├── httparty ├── launchy ├── ldiff ├── listen ├── nokogiri ├── pry ├── puma ├── pumactl ├── rackup ├── rails ├── rake ├── rmsgcat ├── rmsgfmt ├── rmsginit ├── rmsgmerge ├── rspec ├── rubocop ├── ruby-parse ├── ruby-rewrite ├── rxgettext ├── safe_yaml ├── setup ├── spring ├── sprockets ├── symlink.sh ├── test.bash ├── thin ├── thor ├── tilt ├── update ├── wkhtmltopdf ├── yard ├── yardoc ├── yarn └── yri ├── config.ru ├── config ├── application.rb ├── base_site.html ├── boot.rb ├── brakeman.ignore ├── cable.yml ├── configs │ └── dmproadmap_config.rb ├── credentials.yml.mysql2 ├── credentials.yml.postgresql ├── database.yml ├── deploy.rb ├── deploy │ └── puppet-automation.rb ├── dmproadmap.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── stage.rb │ └── test.rb ├── initializers │ ├── _dmproadmap.rb │ ├── api_pagination.rb │ ├── application_controller_renderer.rb │ ├── asset_url_processor.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── bullet.rb │ ├── contact_us.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── dmptool_version.rb │ ├── doorkeeper.rb │ ├── dragonfly.rb │ ├── external_apis │ │ ├── datacite.rb │ │ ├── dmphub.rb │ │ ├── doi.rb │ │ ├── open_aire.rb │ │ ├── orcid.rb │ │ ├── rdamsc.rb │ │ ├── re3data.rb │ │ ├── ror.rb │ │ └── spdx.rb │ ├── filter_parameter_logging.rb │ ├── htmlto_word_xslt_helper.rb │ ├── inflections.rb │ ├── jbuilder_prettify.rb │ ├── kaminari_config.rb │ ├── locale.rb │ ├── mime_types.rb │ ├── new_framework_defaults_5_2.rb │ ├── new_framework_defaults_6_1.rb │ ├── permissions_policy.rb │ ├── rack_attack.rb │ ├── recaptcha.rb │ ├── rollbar.rb │ ├── session_store.rb │ ├── translation.rb │ ├── wicked_pdf.rb │ └── wrap_parameters.rb ├── locale │ ├── app.po │ ├── app.pot │ ├── client.pot │ ├── de │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ └── app.po │ ├── en │ │ ├── LC_MESSAGES │ │ │ ├── app.mo │ │ │ └── client.mo │ │ ├── app.po │ │ └── client.po │ ├── en_CA │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ └── app.po │ ├── en_GB │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ └── app.po │ ├── en_US │ │ ├── LC_MESSAGES │ │ │ ├── app.mo │ │ │ └── client.mo │ │ ├── app.po │ │ └── client.po │ ├── es │ │ ├── LC_MESSAGES │ │ │ ├── app.mo │ │ │ └── client.mo │ │ ├── app.po │ │ └── client.po │ ├── fi │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ └── app.po │ ├── fr_CA │ │ ├── LC_MESSAGES │ │ │ ├── app.mo │ │ │ └── client.mo │ │ ├── app.po │ │ └── client.po │ ├── fr_FR │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ └── app.po │ ├── i18n_placeholders.rb │ ├── ja │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ ├── app.po │ │ └── dmptool.po │ ├── pt_BR │ │ ├── LC_MESSAGES │ │ │ ├── app.mo │ │ │ └── client.mo │ │ ├── app.po │ │ └── client.po │ ├── sv_FI │ │ ├── LC_MESSAGES │ │ │ └── app.mo │ │ └── app.po │ └── tr_TR │ │ ├── LC_MESSAGES │ │ └── app.mo │ │ └── app.po ├── locales │ ├── .translation_io │ ├── bootstrap │ │ ├── de.bootstrap.yml │ │ ├── en-GB.bootstrap.yml │ │ ├── en-US.bootstrap.yml │ │ ├── es.bootstrap.yml │ │ ├── fr-FR.bootstrap.yml │ │ ├── fr.bootstrap.yml │ │ ├── ja.bootstrap.yml │ │ ├── pt-BR.bootstrap.yml │ │ └── tr-TR.bootstrap.yml │ ├── contact_us │ │ ├── contact_us.de.yml │ │ ├── contact_us.el.yml │ │ ├── contact_us.en-GB.yml │ │ ├── contact_us.en-US.yml │ │ ├── contact_us.es.yml │ │ ├── contact_us.fr-FR.yml │ │ ├── contact_us.fr.yml │ │ ├── contact_us.he.yml │ │ ├── contact_us.it.yml │ │ ├── contact_us.ja.yml │ │ ├── contact_us.pl.yml │ │ ├── contact_us.pt-BR.yml │ │ ├── contact_us.pt-PT.yml │ │ ├── contact_us.ru.yml │ │ ├── contact_us.tr-TR.yml │ │ ├── contact_us.zh-TW.yml │ │ └── contact_us.zh.yml │ ├── de.yml │ ├── devise │ │ ├── devise.de.yml │ │ ├── devise.en-GB.yml │ │ ├── devise.en-US.yml │ │ ├── devise.es.yml │ │ ├── devise.fr-FR.yml │ │ ├── devise.fr.yml │ │ ├── devise.ja.yml │ │ ├── devise.pt-BR.yml │ │ ├── devise.tr-TR.yml │ │ ├── devise_invitable.de.yml │ │ ├── devise_invitable.en-GB.yml │ │ ├── devise_invitable.en-US.yml │ │ ├── devise_invitable.es.yml │ │ ├── devise_invitable.fr-FR.yml │ │ ├── devise_invitable.fr.yml │ │ └── devise_invitable.tr-TR.yml │ ├── doorkeeper.de.yml │ ├── doorkeeper.el.yml │ ├── doorkeeper.en-GB.yml │ ├── doorkeeper.en-US.yml │ ├── doorkeeper.en.yml │ ├── doorkeeper.es.yml │ ├── doorkeeper.fi.yml │ ├── doorkeeper.fr-CA.yml │ ├── doorkeeper.fr-FR.yml │ ├── doorkeeper.fr.yml │ ├── doorkeeper.ja.yml │ ├── doorkeeper.pt-BR.yml │ ├── doorkeeper.ro.yml │ ├── doorkeeper.sv-FI.yml │ ├── el.yml │ ├── en-GB.yml │ ├── en-US.yml │ ├── en.yml │ ├── es.yml │ ├── faker │ │ ├── faker.de.yml │ │ ├── faker.en-GB.yml │ │ ├── faker.en-US.yml │ │ ├── faker.en.yml │ │ ├── faker.fr.yml │ │ └── faker.ja.yml │ ├── fi.yml │ ├── fr-CA.yml │ ├── fr-FR.yml │ ├── fr.yml │ ├── ja.yml │ ├── localization.de.yml │ ├── localization.en-CA.yml │ ├── localization.en-GB.yml │ ├── localization.en-US.yml │ ├── localization.es.yml │ ├── localization.fi.yml │ ├── localization.fr-CA.yml │ ├── localization.fr-FR.yml │ ├── localization.pt-BR.yml │ ├── localization.sv-FI.yml │ ├── localization.tr-TR.yml │ ├── pt-BR.yml │ ├── ro.yml │ ├── sv-FI.yml │ ├── tr-TR.yml │ ├── translation.de.yml │ ├── translation.en-CA.yml │ ├── translation.en-GB.yml │ ├── translation.en-US.yml │ ├── translation.es.yml │ ├── translation.fi.yml │ ├── translation.fr-CA.yml │ ├── translation.fr-FR.yml │ ├── translation.pt-BR.yml │ ├── translation.sv-FI.yml │ └── translation.tr-TR.yml ├── maintenance.html ├── puma.rb ├── robots.txt ├── routes.rb ├── spring.rb ├── storage.yml ├── webpack │ ├── loaders │ │ └── erb.js │ └── webpack.config.js └── webpacker.yml ├── db ├── diagram.svg ├── migrate │ ├── 20130603140800_create_phases.rb │ ├── 20130603143109_create_versions.rb │ ├── 20130611111340_create_user_types.rb │ ├── 20130611111359_create_user_statuses.rb │ ├── 20130611113325_create_organisation_types.rb │ ├── 20130611132258_create_user_role_types.rb │ ├── 20130611133033_create_questions.rb │ ├── 20130611135155_create_answers.rb │ ├── 20130611135806_create_users.rb │ ├── 20130611140229_create_pages.rb │ ├── 20130611141026_create_projects.rb │ ├── 20130611151644_create_plans.rb │ ├── 20130611151704_create_plan_sections.rb │ ├── 20130611151729_create_project_groups.rb │ ├── 20130611151750_create_project_partners.rb │ ├── 20130611152208_create_user_org_roles.rb │ ├── 20130611153828_create_dmptemplates.rb │ ├── 20130611153921_create_sections.rb │ ├── 20130611154055_create_file_uploads.rb │ ├── 20130611154109_create_file_types.rb │ ├── 20130612113321_create_organisations.rb │ ├── 20130612133806_create_themes.rb │ ├── 20130612133938_create_guidances.rb │ ├── 20130621101824_fix_column_names.rb │ ├── 20130625125419_fix_question_theme_relation.rb │ ├── 20130705113828_add_locale_to_themes.rb │ ├── 20130705145146_update_type_column_in_questions.rb │ ├── 20130705151214_add_locale_to_templates.rb │ ├── 20130708092900_devise_create_admin_users.rb │ ├── 20130717093801_add_slug_to_projects.rb │ ├── 20130717093814_add_slug_to_phases.rb │ ├── 20130717115239_add_slug_to_plans.rb │ ├── 20130717125231_create_options.rb │ ├── 20130717125748_add_multiple_choice_and_multiple_permitted_and_is_expanded_to_questions.rb │ ├── 20130717130107_add_answer_options_relation.rb │ ├── 20130724112909_add_devise_to_users.rb │ ├── 20130724123043_rolify_create_roles.rb │ ├── 20130730102219_change_plan_section_columns.rb │ ├── 20130731124011_add_organisation_to_project.rb │ ├── 20130731124532_add_parent_to_organisation.rb │ ├── 20130731130811_update_guidance_columns.rb │ ├── 20130731131354_create_guidance_groups.rb │ ├── 20130731131846_drop_project_partners.rb │ ├── 20130731132153_link_guidance_to_guidance_groups.rb │ ├── 20130731133039_link_guidance_groups_to_projects.rb │ ├── 20130812100100_add_release_time_to_plan_section.rb │ ├── 20130902141025_add_is_default_to_dmptemplate.rb │ ├── 20130902141150_add_grant_number_to_project.rb │ ├── 20130902142403_add_organisation_id_to_user.rb │ ├── 20130903072531_remove_organisation_id_from_user.rb │ ├── 20130903084409_create_option_warnings.rb │ ├── 20130903123015_create_friendly_id_slugs.rb │ ├── 20130913134657_add_fields_to_projects.rb │ ├── 20130913161023_add_external_guidance_url_to_phases.rb │ ├── 20130918130838_add_confirmable_to_users.rb │ ├── 20130918154825_devise_invitable_add_to_users.rb │ ├── 20130926121718_add_project_administrator_to_project_groups.rb │ ├── 20130927091932_add_other_organisation_to_users.rb │ ├── 20130927092206_add_is_other_to_organisations.rb │ ├── 20131108151505_add_dmptemplate_id_to_guidance.rb │ ├── 20131111090129_create_suggested_answers.rb │ ├── 20131118094629_change_versions_published.rb │ ├── 20131126133804_add_dmponline3_to_users.rb │ ├── 20131126135301_add_accept_terms_to_users.rb │ ├── 20131127100520_create_splash_logs.rb │ ├── 20131128150644_add_sort_name_to_organisations.rb │ ├── 20131129143550_create_exported_plans.rb │ ├── 20131212111049_add_is_example_to_suggested_answers.rb │ ├── 20140210121753_add_is_text_field_to_questions.rb │ ├── 20140214120652_add_question_id_to_guidances.rb │ ├── 20140214155629_dmptemplates_guidance_groups.rb │ ├── 20140218113637_themes_in_guidance.rb │ ├── 20140331160554_question_formats.rb │ ├── 20140331162130_add_question_format_id_to_questions.rb │ ├── 20140407105254_add_optional_subset_to_guidance_groups.rb │ ├── 20140407153318_add_published_to_sections.rb │ ├── 20140423200913_remove_suggested_answer_from_questions.rb │ ├── 20140429114226_change_published_in_version_to_boolean.rb │ ├── 20140604092907_rails_settings_migration.rb │ ├── 20140707143840_add_funder_name_to_project.rb │ ├── 20150415150436_remove_fields_from_questions.rb │ ├── 20150416092404_remove_field_from_phases.rb │ ├── 20150416101954_remove_field_from_guidances.rb │ ├── 20150416103652_remove_field_from_projects.rb │ ├── 20150416105712_change_field_type_from_projects.rb │ ├── 20150416112327_add_field_to_guidance_groups.rb │ ├── 20150416113232_remove_fields_from_roles.rb │ ├── 20150416113625_add_field_to_roles.rb │ ├── 20150416114743_remove_fields_from_users.rb │ ├── 20150416120233_add_field_to_users.rb │ ├── 20150416131657_remove_pages_table.rb │ ├── 20150416133602_remove_admin_users_table.rb │ ├── 20150427110644_create_comments.rb │ ├── 20150427145433_add_field_column_to_comments.rb │ ├── 20150430135839_add_plan_id_to_comments.rb │ ├── 20150501150321_add_archived_by_to_comments.rb │ ├── 20150518153927_add_fields_to_roles.rb │ ├── 20150805105542_add_institution_logo_text_banner_to.rb │ ├── 20150809210811_add_field_to_questions.rb │ ├── 20151208142029_add_field_to_guidances.rb │ ├── 20151208142836_update_field_in_guidance_groups.rb │ ├── 20160105114044_change_wayfless_entity_format_in_organisations.rb │ ├── 20160603124621_create_structure_for_api_authentication.rb │ ├── 20160609081745_extend_structure_for_api_authentication.rb │ ├── 20160615095101_add_field_to_user.rb │ ├── 20160719102542_remove_depricated_api_structure.rb │ ├── 20160719140055_create_languages.rb │ ├── 20160729091510_add_language_to_user.rb │ ├── 20160805101216_create_regions.rb │ ├── 20160805103704_create_region_groups.rb │ ├── 20160805103912_add_default_language_to_language.rb │ ├── 20160805105928_add_region_ref_to_organisation.rb │ ├── 20160805105941_add_language_ref_to_organisation.rb │ ├── 20160810193149_add_logouid_to_organisations.rb │ ├── 20160822130601_remove_description_from_organisation.rb │ ├── 20160822130701_add_contact_email_to_organisation.rb │ ├── 20161021100420_single_organisation_for_users.rb │ ├── 20161024163546_create_user_identifier_scheme.rb │ ├── 20161024163920_create_user_identifiers.rb │ ├── 20161102221313_change_text_description_to_text_description_in_token_permission_types.rb │ ├── 20161115105808_drop_unused_user_tables.rb │ ├── 20161115114309_drop_option_warning_table.rb │ ├── 20161115121831_remove_parent_id_from_questions.rb │ ├── 20161115123658_remove_unused_fields_from_roles.rb │ ├── 20161115124634_remove_unused_fields_from_organisations.rb │ ├── 20161115132137_remove_unused_fields_from_dmptemplates.rb │ ├── 20161115143222_rename_roles_to_perms.rb │ ├── 20161122152339_new_plan_template_structure.rb │ ├── 20161205095623_removing_intermediary_tables.rb │ ├── 20161205095624_replacing_organisation_types_with_bitflags.rb │ ├── 20161205095625_replacing_plan_roles_with_bitflags.rb │ ├── 20161206122926_add_foreign_keys.rb │ ├── 20161208122123_single_group_for_guidance.rb │ ├── 20170124235829_add_visibility_to_plans.rb │ ├── 20170130173049_add_option_based_to_question_formats.rb │ ├── 20170201194502_remove_region_group_and_add_super_region_id_to_regions.rb │ ├── 20170227122226_add_locking_columns.rb │ ├── 20170302111544_question_format_to_enum.rb │ ├── 20170412143945_add_phase_id_to_exported_plan.rb │ ├── 20170421170849_add_dirty_to_templates.rb │ ├── 20170427110141_add_logo_url_to_identifier_schemes.rb │ ├── 20170428083711_add_user_landing_url_to_identifier_schemes.rb │ ├── 20170516184429_add_recovery_email_to_users.rb │ ├── 20170606215136_add_preferences_to_users.rb │ ├── 20170607154433_create_org_identifiers.rb │ ├── 20170619173045_add_data_contact_email_and_data_contact_phone_to_plans.rb │ ├── 20170702012742_ensure_indexes_in_place.rb │ ├── 20170710182442_add_principal_investigator_email_to_plans.rb │ ├── 20170712084314_move_prefs_to_table.rb │ ├── 20170719114516_add_active_flag_to_roles.rb │ ├── 20171013152425_add_principal_investigator_phone_to_plans.rb │ ├── 20171024214257_add_links_to_orgs.rb │ ├── 20171024220146_add_contact_name_to_orgs.rb │ ├── 20171025200301_add_feedback_fields_to_orgs.rb │ ├── 20171102164156_change_plan_visibility_default.rb │ ├── 20171102185518_add_feedback_requested_to_plans.rb │ ├── 20171122195828_change_prefs_settings_to_text.rb │ ├── 20171124133802_add_links_to_templates.rb │ ├── 20180123161959_change_long_strings_to_text.rb │ ├── 20180126210659_add_ldap_password_to_users.rb │ ├── 20180131181949_add_ldap_username_to_users.rb │ ├── 20180212124444_add_complete_flag_to_plans.rb │ ├── 20180312135238_add_default_to_org_links.rb │ ├── 20180312141558_add_default_to_plan_visibility.rb │ ├── 20180313120831_add_required_indices.rb │ ├── 20180315161757_add_active_to_users.rb │ ├── 20180328115455_create_notifications.rb │ ├── 20180405151713_rename_template_fields.rb │ ├── 20180405151942_remove_dirty_from_templates.rb │ ├── 20180405152454_add_family_id_index_to_templates.rb │ ├── 20180412092647_create_notification_acknowledgements.rb │ ├── 20180417124026_add_unique_index_family_id_version_to_template.rb │ ├── 20180508151824_drop_tablename.rb │ ├── 20180713145319_fix_invalid_mysql_indices.rb │ ├── 20180713145547_remove_defaults_from_links.rb │ ├── 20180713161007_remove_settings_indices.rb │ ├── 20180713164120_add_length_constraints_to_users_email.rb │ ├── 20180803105147_remove_published_from_sections.rb │ ├── 20180807114035_add_default_value_to_optional_subset_on_guidance_groups.rb │ ├── 20180807114052_add_default_value_to_published_on_guidance_groups.rb │ ├── 20180807120926_add_default_value_to_archived_on_notes.rb │ ├── 20180807121126_add_default_value_to_is_other_on_orgs.rb │ ├── 20180813114157_remove_logo_file_name_from_orgs.rb │ ├── 20180813114216_remove_parent_id_from_orgs.rb │ ├── 20180813114234_remove_wayfless_entity_from_orgs.rb │ ├── 20180813114348_remove_slug_from_phases.rb │ ├── 20180813114525_remove_slug_from_plans.rb │ ├── 20180813114550_drop_table_friendly_id_slugs.rb │ ├── 20180813114614_drop_table_file_types.rb │ ├── 20180813114622_drop_table_file_uploads.rb │ ├── 20180813114628_drop_table_splash_logs.rb │ ├── 20180813114649_remove_banner_text_from_orgs.rb │ ├── 20180813114719_remove_question_id_from_guidances.rb │ ├── 20180813114801_remove_orcid_id_from_users.rb │ ├── 20180813114813_remove_shibboleth_id_from_users.rb │ ├── 20180815180221_drop_unique_index_customization_of_version_org_id_from_templates.rb │ ├── 20180901095920_create_stats.rb │ ├── 20180903104704_add_versionable_id_to_phases_sections_and_questions.rb │ ├── 20181024120747_add_sessions_table.rb │ ├── 20181025220743_add_details_to_stats.rb │ ├── 20190507091025_create_departments.rb │ ├── 20190724134426_create_conditions.rb │ ├── 20200121190035_add_managed_to_orgs.rb │ ├── 20200123162357_create_identifiers.rb │ ├── 20200130160919_contextualize_identifier_schemes.rb │ ├── 20200203190734_add_funder_and_org_to_plans.rb │ ├── 20200207212113_create_api_clients.rb │ ├── 20200212145931_add_enabled_to_notifications.rb │ ├── 20200213203124_add_last_api_access_to_users.rb │ ├── 20200215190747_add_context_to_identifier_schemes.rb │ ├── 20200218213103_create_contributors.rb │ ├── 20200218213414_add_start_and_end_dates_to_plans.rb │ ├── 20200313153356_add_versionable_to_question_options.rb │ ├── 20200323213847_add_api_client_id_to_plans.rb │ ├── 20200514102523_create_trackers.rb │ ├── 20200601121822_add_filtered_to_stats.rb │ ├── 20200625092600_add_indexes_to_plans.rb │ ├── 20201009101541_remove_user_identifiers_table.rb │ ├── 20201113174910_add_org_id_to_api_clients.rb │ ├── 20201119201215_create_research_outputs.rb │ ├── 20201119210343_create_mime_types.rb │ ├── 20201208192403_drop_org_identifiers.rb │ ├── 20201216140226_change_last_access_api_clients.rb │ ├── 20210107172458_add_external_service_to_identifier_schemea.rb │ ├── 20210108180323_create_repositories.rb │ ├── 20210113174230_add_repository_id_to_research_outputs.rb │ ├── 20210128214042_add_research_outputs_repositories.rb │ ├── 20210201180620_add_allow_doi_to_orgs.rb │ ├── 20210201180637_add_allow_research_outputs_to_templates.rb │ ├── 20210218190545_create_subscribers.rb │ ├── 20210218190603_create_related_identifiers.rb │ ├── 20210222193344_create_licenses.rb │ ├── 20210223174458_rename_subscribers_fields.rb │ ├── 20210225224435_add_value_to_related_identifiers.rb │ ├── 20210301163106_rename_subscribers.rb │ ├── 20210309171218_add_last_notified_to_subscriptions.rb │ ├── 20210316145725_add_ethical_issues_to_plans.rb │ ├── 20210317202247_create_metadata_standard_categories.rb │ ├── 20210325214804_create_doorkeeper_tables.rb │ ├── 20210425154923_post_madmp_cleanup.rb │ ├── 20210427162935_create_external_api_access_tokens.rb │ ├── 20210510193106_add_user_to_oauth_applications.rb │ ├── 20210521183235_add_logo_to_oauth_applications.rb │ ├── 20210615155805_add_funding_status_to_plans.rb │ ├── 20210615155826_add_fos_id_to_plans.rb │ ├── 20210629183243_create_org_indices.rb │ ├── 20210723164236_add_api_plan_creation_email_to_orgs.rb │ ├── 20210805180215_repair_madmp.rb │ ├── 20210810221831_create_subscriptions.rb │ ├── 20210819160319_db_cleanup_2021.rb │ ├── 20210913194202_add_citation_and_work_type_to_related_identifiers.rb │ ├── 20210930212541_create_related_identifiers2.rb │ ├── 20211011164528_add_email_subject_and_email_body_to_templates.rb │ ├── 20211013172016_add_invited_plan_to_users.rb │ ├── 20211026204758_add_owner_to_application.rb │ ├── 20211129155648_create_api_logs.rb │ ├── 20211202155053_add_sponsor_id_to_templates.rb │ ├── 20220119214358_add_language_id_and_featured_to_plans.rb │ ├── 20220315104737_add_helpdesk_email_to_orgs.rb │ ├── 20230313145848_add_feedback_start_at_and_stop_at_to_plans.rb │ ├── 20230315185752_enable_research_outputs.rb │ ├── 20230317180438_end_user_guidance.rb │ ├── 20230320163155_customize_research_output_fields.rb │ ├── 20230322145714_change_research_outputs_output_type.rb │ ├── 20230323000459_template_output_types.rb │ ├── 20230328172119_template_licenses.rb │ ├── 20230329235100_end_user_guidance2.rb │ ├── 20230404231415_template_repositories.rb │ ├── 20230404231434_template_metadata_standards.rb │ ├── 20230407233805_define_template_custom_repositories.rb │ ├── 20230414205248_add_service_name_to_active_storage_blobs.active_storage.rb │ ├── 20230414205249_create_active_storage_variant_records.active_storage.rb │ ├── 20230504220854_remove_tooltips_template_preferences.rb │ ├── 20230505164937_add_org_id_to_licenses.rb │ ├── 20230522211526_update_metadata_standards.rb │ └── 20230605175309_add_ui_token_to_users.rb ├── schema.rb └── seeds.rb ├── doc ├── roadmap.png └── roadmap.svg ├── docs ├── README.md ├── db │ └── syncing_databases.sql ├── dmptool.png ├── genericslides │ ├── DMPTool-Generic-Slides.pptx │ └── GrabNGo_UsingDMPToolForYourNIH_DMSP.pptx ├── logos │ ├── DMPTool_logo_blue.eps │ ├── DMPTool_logo_blue.png │ ├── DMPTool_logo_blue.svg │ ├── DMPTool_logo_blue_no_tag.eps │ ├── DMPTool_logo_blue_no_tag.png │ ├── DMPTool_logo_blue_no_tag.svg │ ├── DMPTool_logo_v1.png │ ├── DMPTool_logo_v2.png │ ├── DMPTool_logo_v2_no_tag.png │ ├── landscape │ │ ├── DMP_Tool.pdf │ │ ├── DMP_Tool.png │ │ ├── DMP_Tool.svg │ │ ├── DMP_Tool_Black.pdf │ │ ├── DMP_Tool_Black.png │ │ ├── DMP_Tool_Black.svg │ │ ├── DMP_Tool_Black_strapline.pdf │ │ ├── DMP_Tool_Black_strapline.png │ │ ├── DMP_Tool_Black_strapline.svg │ │ ├── DMP_Tool_White.pdf │ │ ├── DMP_Tool_White.png │ │ ├── DMP_Tool_White.svg │ │ ├── DMP_Tool_White_stapline.pdf │ │ ├── DMP_Tool_White_stapline.svg │ │ ├── DMP_Tool_White_strapline.png │ │ ├── DMP_Tool_stapline.pdf │ │ ├── DMP_Tool_stapline.png │ │ ├── DMP_Tool_strapline.svg │ │ ├── DMP_white_Tool.pdf │ │ ├── DMP_white_Tool.png │ │ ├── DMP_white_Tool.svg │ │ ├── DMP_white_Tool_strapline.pdf │ │ ├── DMP_white_Tool_strapline.png │ │ └── DMP_white_Tool_strapline.svg │ └── portrait │ │ ├── DMP_Tool.pdf │ │ ├── DMP_Tool.png │ │ ├── DMP_Tool.svg │ │ ├── DMP_Tool_Black.pdf │ │ ├── DMP_Tool_Black.png │ │ ├── DMP_Tool_Black.svg │ │ ├── DMP_Tool_Black_strapline.pdf │ │ ├── DMP_Tool_Black_strapline.png │ │ ├── DMP_Tool_Black_strapline.svg │ │ ├── DMP_Tool_White.pdf │ │ ├── DMP_Tool_White.png │ │ ├── DMP_Tool_White.svg │ │ ├── DMP_Tool_White_Strapline.pdf │ │ ├── DMP_Tool_White_Strapline.png │ │ ├── DMP_Tool_White_Strapline.svg │ │ ├── DMP_Tool_strapline.pdf │ │ ├── DMP_Tool_strapline.png │ │ └── DMP_Tool_strapline.svg ├── postcard │ ├── DMPTool_postcard1.pdf │ └── DMPTool_postcard2.pdf ├── poster │ └── DMPTool_poster_v2.pdf ├── quickstartguide │ ├── create_plan.png │ └── dashboard.png ├── screenshots │ ├── Email-notification.png │ ├── GoogleAnalyticsCreateProperty.png │ ├── GoogleAnalyticsTrackingCode.png │ ├── Multiple-options.png │ ├── OrgDetailsPage.png │ ├── Putting in Web URL GoogleAnalytics.png │ ├── Remove-questions.png │ ├── Save-options.png │ ├── add-customizations-2.png │ ├── add-customizations.png │ ├── add-section.png │ ├── api_credentials.png │ ├── create-a-template.png │ ├── create-template-add-phase-2.png │ ├── create-template-add-question-5.png │ ├── create-template-add-section-4.png │ ├── create-template-add-section-button-3.png │ ├── create-template-details-1.png │ ├── create-template-publish-6.png │ ├── customizable-templates.png │ ├── developer_tools.png │ ├── edit-privileges.png │ ├── example-answer.png │ ├── guidance-themes.png │ ├── guidance.png │ ├── oauth.png │ ├── oauth2_authorization.png │ ├── oauth_creds.png │ ├── org-details.png │ ├── plans-page.png │ ├── privileges.png │ ├── request-feedback.png │ ├── request_feedback.png │ ├── transfer-customization.png │ ├── translations__full_screen.png │ ├── translations_filtering.png │ ├── translations_lang_selection.png │ ├── translations_repository_selection.png │ ├── translations_retaining_markup.png │ ├── translations_warning.png │ ├── upload_plans_step1.png │ ├── upload_plans_step2.png │ ├── upload_plans_step3.png │ ├── upload_plans_step4.png │ ├── usage.png │ └── user_profile_api_token.png ├── sso │ ├── README.md │ ├── dmptool_attribute_map.xml │ ├── dmptool_attribute_release.xml │ ├── example_idp_entity_descriptor.xml │ └── example_saml_assertion.xml ├── talkpoints │ ├── IT.docx │ ├── IT.pdf │ ├── admin.docx │ ├── admin.pdf │ ├── overview.docx │ ├── overview.pdf │ ├── researchers.docx │ └── researchers.pdf ├── v5 │ ├── architecture.epgz │ ├── architecture.png │ ├── update_workflow.epgz │ ├── update_workflow.png │ ├── upload_workflow.epgz │ ├── upload_workflow.png │ ├── versioning.epgz │ └── versioning.png └── webinars │ ├── DMPTool Editorial Board Intro, April 2020.pdf │ ├── DMPTool-pre-launch-webinar-slides.pdf │ └── dmptool-webinar-QandA.pdf ├── lib ├── cleanup.rb ├── cleanup │ ├── deprecators.rb │ └── deprecators │ │ ├── get_deprecator.rb │ │ ├── predicate_deprecator.rb │ │ └── set_deprecator.rb ├── csvable.rb ├── custom_failure.rb ├── data_cleanup.rb ├── data_cleanup │ ├── README.md │ ├── instance_check.rb │ ├── model_check.rb │ ├── reporting.rb │ └── rules.rb ├── generators │ └── data_cleanup_rule │ │ ├── USAGE │ │ ├── data_cleanup_rule_generator.rb │ │ └── templates │ │ └── data_cleanup │ │ └── rules │ │ ├── base.rb │ │ └── rule.rb.erb ├── global_helpers.rb ├── org_date_rangeable.rb ├── sort_direction.rb ├── ssm_config_loader.rb ├── tasks │ ├── .gitkeep │ ├── auto_annotate_models.rake │ ├── data_cleanup.rake │ ├── dmptool_specific.rake │ ├── dmptool_stats.rake │ ├── doc.rake │ ├── factory_bot.rake │ ├── gettext.rake │ ├── initialize_data.rake │ ├── logos.rake │ ├── migrate.rake │ ├── stat.rake │ ├── upgrade.rake │ ├── utils │ │ ├── config.rake │ │ ├── external_api.rake │ │ ├── housekeeping.rake │ │ ├── language.rake │ │ ├── org_cleanup.rake │ │ ├── plan.rake │ │ ├── templates.rake │ │ └── update.rake │ ├── v3.rake │ └── v4.rake ├── templates │ └── erb │ │ └── scaffold │ │ └── _form.html.erb └── unique_random.rb ├── log └── .gitkeep ├── pa11yci └── pa11yci.config.json ├── package.json ├── postcss.config.js ├── public ├── 403.html ├── 404.html ├── 422.html ├── 429.html ├── 500.html ├── _index.html ├── android-chrome-192x192.png ├── apple-touch-icon.png ├── dmptool-ui │ ├── 1-large.172728ff.jpeg │ ├── 1-large.465e59e4.jpg │ ├── 2-large.508b7f7a.jpeg │ ├── 2-large.70514ac7.jpg │ ├── 3-large.5106248c.jpg │ ├── 3-large.53594beb.jpeg │ ├── 4-large.5f3faa99.jpeg │ ├── 4-large.a670aff6.jpg │ ├── 5-large.dc60b209.jpeg │ ├── 5-large.fdf0ed61.jpg │ ├── 6-large.0c522fed.jpeg │ ├── 6-large.a1fbfc50.jpg │ ├── 7-large.582ea7ff.jpeg │ ├── 7-large.6da2166b.jpg │ ├── SourceSans3VF-Italic.ttf.14f0b8bc.woff2 │ ├── SourceSans3VF-Italic.ttf.58c0898f.woff │ ├── SourceSans3VF-Italic.ttf.a33711ed.woff │ ├── SourceSans3VF-Italic.ttf.fd20af5b.woff2 │ ├── SourceSans3VF-Roman.ttf.99aa17fb.woff2 │ ├── SourceSans3VF-Roman.ttf.b9139669.woff2 │ ├── SourceSans3VF-Roman.ttf.c8d799f8.woff │ ├── SourceSans3VF-Roman.ttf.fd756b6b.woff │ ├── dmproadmap.css │ ├── favicon.ico │ ├── login-sample.png │ ├── logo-cdl.svg │ ├── logo-dmptool-large.svg │ ├── logo-dmptool-small.svg │ ├── logo-ucm.svg │ ├── main.css │ └── main.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── files │ ├── DMP_Checklist_2013.pdf │ ├── DMPonline-DeliveryNote-May2015.pdf │ ├── DMPonline-ReleaseNote-August2015.pdf │ ├── DMPonline-user-group-IDCC-2016.pdf │ ├── DMPonline-user-group-notes-29Jan2015.pdf │ ├── DMPonline-v4-InstitutionalBranding.pdf │ ├── DMPonline-v4-InstitutionalLogin.pdf │ ├── DMPonline-v4-LocaleSupport.pdf │ ├── roadmap_logo.png │ └── roadmap_logo.svg ├── i18n.js ├── robots.txt ├── safari-pinned-tab.svg ├── tinymce │ ├── skins │ │ └── oxide │ │ │ ├── content.inline.js │ │ │ ├── content.js │ │ │ ├── skin.css │ │ │ ├── skin.js │ │ │ ├── skin.min.css │ │ │ └── skin.shadowdom.js │ └── tinymce.css └── videos │ └── .keep ├── spec ├── controllers │ ├── answers_controller_spec.rb │ ├── concerns │ │ ├── dmptool │ │ │ └── authenticatable_spec.rb │ │ └── org_selectable_spec.rb │ ├── contributors_controller_spec.rb │ ├── dmptool │ │ ├── home_contoller_spec.rb │ │ ├── org_admin │ │ │ ├── plans_controller_spec.rb │ │ │ └── templates_controller_spec.rb │ │ ├── public_pages_controller_spec.rb │ │ ├── static_pages_controller_spec.rb │ │ └── users_controller_spec.rb │ ├── guidance_groups_controller_spec.rb │ ├── guidances_controller_spec.rb │ ├── notes_controller_spec.rb │ ├── orgs_controller_spec.rb │ ├── registrations_controller_spec.rb │ ├── registry_orgs_controller_spec.rb │ ├── super_admin │ │ └── orgs_controller_spec.rb │ └── usage_controller_spec.rb ├── csvable_spec.rb ├── factories │ ├── annotations.rb │ ├── answers.rb │ ├── api_clients.rb │ ├── api_logs.rb │ ├── conditions.rb │ ├── contributors.rb │ ├── departments.rb │ ├── exported_plans.rb │ ├── external_api_access_tokens.rb │ ├── guidance_groups.rb │ ├── guidances.rb │ ├── identifier_schemes.rb │ ├── identifiers.rb │ ├── languages.rb │ ├── licenses.rb │ ├── metadata_standards.rb │ ├── notes.rb │ ├── notifications.rb │ ├── oauth_access_grants.rb │ ├── oauth_access_tokens.rb │ ├── orgs.rb │ ├── perms.rb │ ├── phases.rb │ ├── plans.rb │ ├── prefs.rb │ ├── question_formats.rb │ ├── question_options.rb │ ├── questions.rb │ ├── regions.rb │ ├── registry_orgs.rb │ ├── related_identifiers.rb │ ├── repositories.rb │ ├── research_domains.rb │ ├── research_outputs.rb │ ├── roles.rb │ ├── sections.rb │ ├── stat_created_plan.rb │ ├── stat_joined_user.rb │ ├── subscriptions.rb │ ├── templates.rb │ ├── themes.rb │ ├── token_permission_types.rb │ ├── trackers.rb │ └── users.rb ├── features │ ├── annotations │ │ └── annotations_editing_spec.rb │ ├── authentication │ │ ├── initial_email_entry_spec.rb │ │ ├── reset_password_spec.rb │ │ ├── shibboleth_spec.rb │ │ ├── sign_in_bypass_sso_spec.rb │ │ ├── sign_in_email_password_spec.rb │ │ ├── sign_up_bypass_sso_spec.rb │ │ └── sign_up_email_password_spec.rb │ ├── feedback_requests_spec.rb │ ├── locales_spec.rb │ ├── modal_search_spec.rb │ ├── plans │ │ └── exports_spec.rb │ ├── plans_spec.rb │ ├── questions │ │ ├── checkbox_questions_spec.rb │ │ ├── dropdown_questions_spec.rb │ │ ├── radiobuttons_questions_spec.rb │ │ ├── textarea_questions_spec.rb │ │ └── textfield_questions_spec.rb │ ├── registrations_spec.rb │ ├── shared │ │ └── org_autocomplete_spec.rb │ ├── super_admins │ │ ├── merge_org_spec.rb │ │ ├── org_swaps_spec.rb │ │ └── orgs_spec.rb │ ├── templates │ │ ├── templates_copying_spec.rb │ │ ├── templates_editings_spec.rb │ │ └── templates_upgrade_customisations_spec.rb │ └── templates_spec.rb ├── helpers │ ├── identifier_helper_spec.rb │ └── usage_helper_spec.rb ├── javascripts │ ├── accordion.js │ ├── autoCompleteSpec.js │ ├── debounceSpec.js │ ├── fixtures │ │ ├── accordion.html │ │ └── autoComplete.html │ ├── isTypeSpec.js │ ├── isValidInputTypeSpec.js │ └── tinymceSpec.js ├── karma │ └── unit.js ├── mixins │ └── versionable_model.rb ├── models │ ├── annotation_spec.rb │ ├── answer_spec.rb │ ├── api_client_spec.rb │ ├── api_log_spec.rb │ ├── concerns │ │ ├── date_rangeable_spec.rb │ │ ├── dmptool │ │ │ ├── org_spec.rb │ │ │ └── user_spec.rb │ │ ├── identifiable_spec.rb │ │ └── subscribable_spec.rb │ ├── condition_spec.rb │ ├── contributor_spec.rb │ ├── department_spec.rb │ ├── exported_plan_spec.rb │ ├── external_api_access_token_spec.rb │ ├── guidance_group_spec.rb │ ├── guidance_spec.rb │ ├── identifier_scheme_spec.rb │ ├── identifier_spec.rb │ ├── language_spec.rb │ ├── license_spec.rb │ ├── metadata_standard_spec.rb │ ├── note_spec.rb │ ├── notification_spec.rb │ ├── org_spec.rb │ ├── perm_spec.rb │ ├── phase_spec.rb │ ├── plan_spec.rb │ ├── pref_spec.rb │ ├── question_format_spec.rb │ ├── question_option_spec.rb │ ├── question_spec.rb │ ├── region_spec.rb │ ├── registry_org_spec.rb │ ├── related_identifier_spec.rb │ ├── repository_spec.rb │ ├── research_domain_spec.rb │ ├── research_output_spec.rb │ ├── role_spec.rb │ ├── section_sorter_spec.rb │ ├── section_spec.rb │ ├── stat_created_plan_spec.rb │ ├── stat_joined_user_spec.rb │ ├── subscription_spec.rb │ ├── template_spec.rb │ ├── theme_spec.rb │ ├── token_permission_type_spec.rb │ ├── tracker_spec.rb │ └── user_spec.rb ├── policies │ └── usage_policy_spec.rb ├── presenters │ ├── api │ │ └── v1 │ │ │ ├── contributor_presenter_spec.rb │ │ │ ├── funding_presenter_spec.rb │ │ │ ├── language_presenter_spec.rb │ │ │ ├── org_presenter_spec.rb │ │ │ ├── pagination_presenter_spec.rb │ │ │ ├── plan_presenter_spec.rb │ │ │ └── template_presenter_spec.rb │ ├── dmptool │ │ └── org_presenter_spec.rb │ ├── identifier_presenter_spec.rb │ ├── org_selection_presenter_spec.rb │ ├── plan_presenter.rb │ ├── research_output_presenter_spec.rb │ └── super_admin │ │ └── orgs │ │ └── merge_presenter_spec.rb ├── rails_helper.rb ├── requests │ ├── api │ │ ├── v1 │ │ │ ├── authentication_controller_spec.rb │ │ │ ├── base_api_controller_spec.rb │ │ │ ├── plans_controller_spec.rb │ │ │ └── templates_controller_spec.rb │ │ └── v2 │ │ │ ├── plans_controller_spec.rb │ │ │ ├── related_identifiers_controller_spec.rb │ │ │ └── templates_controller_spec.rb │ └── usage_downloads_spec.rb ├── services │ ├── api │ │ ├── v1 │ │ │ ├── auth │ │ │ │ └── jwt │ │ │ │ │ ├── authentication_service_spec.rb │ │ │ │ │ ├── authorization_service_spec.rb │ │ │ │ │ └── json_web_token_spec.rb │ │ │ ├── contextual_error_service_spec.rb │ │ │ ├── conversion_service_spec.rb │ │ │ ├── deserialization │ │ │ │ ├── contributor_spec.rb │ │ │ │ ├── funding_spec.rb │ │ │ │ ├── identifier_spec.rb │ │ │ │ ├── org_spec.rb │ │ │ │ └── plan_spec.rb │ │ │ ├── deserialization_service_spec.rb │ │ │ ├── json_validation_service_spec.rb │ │ │ ├── persistence_service_spec.rb │ │ │ └── validation_service_spec.rb │ │ └── v2 │ │ │ ├── contextual_error_service_spec.rb │ │ │ ├── conversion_service_spec.rb │ │ │ ├── deserialization │ │ │ ├── contributor_spec.rb │ │ │ ├── dataset_spec.rb │ │ │ ├── funding_spec.rb │ │ │ ├── identifier_spec.rb │ │ │ ├── org_spec.rb │ │ │ ├── plan_spec.rb │ │ │ └── related_identifier_spec.rb │ │ │ ├── deserialization_service_spec.rb │ │ │ ├── json_validation_service_spec.rb │ │ │ └── persistence_service_spec.rb │ ├── application_service_spec.rb │ ├── dmp_id_service_spec.rb │ ├── external_apis │ │ ├── base_service_spec.rb │ │ ├── datacite_service_spec.rb │ │ ├── dmphub_service_spec.rb │ │ ├── orcid_service_spec.rb │ │ ├── rdamsc_service_spec.rb │ │ ├── re3data_service_spec.rb │ │ ├── ror_service_spec.rb │ │ └── spdx_service_spec.rb │ ├── locale_service_spec.rb │ ├── org │ │ ├── create_created_plan_service_spec.rb │ │ ├── create_joined_user_service_spec.rb │ │ ├── create_last_month_created_plan_service_spec.rb │ │ ├── create_last_month_joined_user_service_spec.rb │ │ ├── total_count_created_plan_service_spec.rb │ │ ├── total_count_joined_user_service_spec.rb │ │ └── total_count_stat_service_spec.rb │ ├── org_selection │ │ ├── hash_to_org_service_spec.rb │ │ ├── org_to_hash_service_spec.rb │ │ └── search_service_spec.rb │ └── template │ │ └── upgrade_customization_service_spec.rb ├── spec_helper.rb ├── support │ ├── capybara.rb │ ├── config_helper.rb │ ├── database_cleaner.rb │ ├── factory_bot.rb │ ├── faker.rb │ ├── helpers │ │ ├── api.rb │ │ ├── api │ │ │ ├── access_token_request_helper.rb │ │ │ ├── authorizations_request_helper.rb │ │ │ └── request_spec_helper.rb │ │ ├── authentication_helper.rb │ │ ├── autocomplete_helper.rb │ │ ├── capybara_helper.rb │ │ ├── config_helper.rb │ │ ├── dmptool_helper.rb │ │ ├── email_helper.rb │ │ ├── identifier_helper.rb │ │ ├── links_helper.rb │ │ ├── org_selection_helper.rb │ │ ├── roles_helper.rb │ │ ├── sessions_helper.rb │ │ ├── template_helper.rb │ │ ├── tiny_mce_helper.rb │ │ └── webmocks.rb │ ├── locales.rb │ ├── matchers │ │ └── has_errors_matcher.rb │ ├── mock_shibboleth_identitiy_provider.rb │ ├── mock_shibboleth_providers_controller.rb │ ├── mocks │ │ ├── api_json_samples.rb │ │ ├── api_v2_json_samples.rb │ │ ├── datacite │ │ │ ├── datacite.rb │ │ │ ├── error.json │ │ │ └── success.json │ │ ├── dmphub │ │ │ ├── dmphub.rb │ │ │ ├── error.json │ │ │ └── success.json │ │ ├── form_field_json_values.rb │ │ └── logo_file.png │ ├── shoulda.rb │ └── wait_for_ajax.rb └── views │ ├── api │ ├── v1 │ │ ├── _standard_response.json_jbuilder_spec.rb │ │ ├── contributors │ │ │ └── _show.json.jbuilder_spec.rb │ │ ├── datasets │ │ │ └── _show.json.jbuilder_spec.rb │ │ ├── error.json.jbuilder_spec.rb │ │ ├── heartbeat.json.jbuilder_spec.rb │ │ ├── identifiers │ │ │ └── _show.json.jbuilder_spec.rb │ │ ├── orgs │ │ │ └── _show.json.jbuilder_spec.rb │ │ ├── plans │ │ │ ├── _cost.json.jbuilder_spec.rb │ │ │ ├── _funding.json.jbuilder_spec.rb │ │ │ ├── _project.json.jbuilder_spec.rb │ │ │ └── _show.json.jbuilder_spec.rb │ │ └── templates │ │ │ └── index.json.jbuilder_spec.rb │ └── v2 │ │ ├── _standard_response.json_jbuilder_spec.rb │ │ ├── annotations │ │ └── _show.json.jbuilder_spec.rb │ │ ├── contributors │ │ └── _show.json.jbuilder_spec.rb │ │ ├── datasets │ │ └── _show.json.jbuilder_spec.rb │ │ ├── error.json.jbuilder_spec.rb │ │ ├── heartbeat.json.jbuilder_spec.rb │ │ ├── identifiers │ │ └── _show.json.jbuilder_spec.rb │ │ ├── orgs │ │ └── _show.json.jbuilder_spec.rb │ │ ├── phases │ │ └── _show.json.jbuilder_spec.rb │ │ ├── plans │ │ ├── _cost.json.jbuilder_spec.rb │ │ ├── _funding.json.jbuilder_spec.rb │ │ ├── _project.json.jbuilder_spec.rb │ │ ├── _show.json.jbuilder_spec.rb │ │ └── index.json.jbuilder_spec.rb │ │ ├── question_options │ │ └── _show.json.jbuilder_spec.rb │ │ ├── questions │ │ └── _show.json.jbuilder_spec.rb │ │ ├── sections │ │ └── _show.json.jbuilder_spec.rb │ │ └── templates │ │ └── index.json.jbuilder_spec.rb │ ├── branded │ ├── home │ │ └── index.html.erb_spec.rb │ ├── layouts │ │ ├── _analytics.html.erb_spec.rb │ │ ├── _footer.html.erb_spec.rb │ │ ├── _header.html.erb_spec.rb │ │ ├── _json_constants.html.erb_spec.rb │ │ ├── _notifications.html.erb_spec.rb │ │ ├── _sub_header.html.erb_spec.rb │ │ └── application.html.erb_spec.rb │ ├── paginable │ │ ├── orgs │ │ │ └── _public.html.erb_spec.rb │ │ └── templates │ │ │ ├── _invite_modal.html.erb_spec.rb │ │ │ ├── _invite_modal_content.html.erb_spec.rb │ │ │ └── _organisational.html.erb_spec.rb │ ├── public_pages │ │ ├── orgs.html.erb_spec.rb │ │ └── template_index.html.erb_spec.rb │ ├── static_pages │ │ ├── about_us.html.erb_spec.rb │ │ ├── help.html.erb_spec.rb │ │ ├── promote.html.erb_spec.rb │ │ └── termsuse.html.erb_spec.rb │ ├── user_mailer │ │ ├── invitation.html.erb_spec.rb │ │ ├── new_api_client.html.erb_spec.rb │ │ ├── new_plan_via_api.html.erb_spec.rb │ │ ├── new_plan_via_template.html.erb_spec.rb │ │ └── notify_administrators.html.erb_spec.rb │ └── users │ │ ├── mailer │ │ └── reset_password_instructions.html.erb_spec.rb │ │ └── shared │ │ ├── _error_messages.html.erb_spec.rb │ │ ├── _links.html.erb_spec.rb │ │ ├── _login_header.html.erb_spec.rb │ │ └── _sso.html.erb_spec.rb │ ├── layouts │ └── modal_search │ │ ├── _form.html.erb_spec.rb │ │ ├── _result.html.erb_spec.rb │ │ ├── _results.html.erb_spec.rb │ │ └── _selections.html.erb_spec.rb │ └── shared │ └── _org_autocomplete.html.erb_spec.rb └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.mysql2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.env.mysql2 -------------------------------------------------------------------------------- /.env.postgresql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.env.postgresql -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Fixes # . 2 | 3 | Changes proposed in this PR: 4 | - 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/brake_man.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/brake_man.yml -------------------------------------------------------------------------------- /.github/workflows/danger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/danger.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.github/workflows/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/mysql.yml -------------------------------------------------------------------------------- /.github/workflows/pa11y.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/pa11y.yml -------------------------------------------------------------------------------- /.github/workflows/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/postgres.yml -------------------------------------------------------------------------------- /.github/workflows/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.github/workflows/rubocop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Capfile -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Dangerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Procfile -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/assets/builds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/fonts/GillSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/fonts/GillSans-Light.ttf -------------------------------------------------------------------------------- /app/assets/images/BridgetThrasher.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/BridgetThrasher.jpeg -------------------------------------------------------------------------------- /app/assets/images/ExnerHeadshot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/ExnerHeadshot.JPG -------------------------------------------------------------------------------- /app/assets/images/GeoffHamm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/GeoffHamm.png -------------------------------------------------------------------------------- /app/assets/images/HeatherBarnes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/HeatherBarnes.jpg -------------------------------------------------------------------------------- /app/assets/images/Megan_O_Donnell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/Megan_O_Donnell.jpg -------------------------------------------------------------------------------- /app/assets/images/Nick_Ruhs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/Nick_Ruhs.jpg -------------------------------------------------------------------------------- /app/assets/images/Renata_Curty.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/Renata_Curty.JPG -------------------------------------------------------------------------------- /app/assets/images/Sackmann_Anna_hr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/Sackmann_Anna_hr.jpg -------------------------------------------------------------------------------- /app/assets/images/VarnerDouglas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/VarnerDouglas.jpg -------------------------------------------------------------------------------- /app/assets/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/apple-touch-icon.png -------------------------------------------------------------------------------- /app/assets/images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/asc.gif -------------------------------------------------------------------------------- /app/assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/background.jpg -------------------------------------------------------------------------------- /app/assets/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/bg.gif -------------------------------------------------------------------------------- /app/assets/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/browserconfig.xml -------------------------------------------------------------------------------- /app/assets/images/dcc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/dcc_logo.png -------------------------------------------------------------------------------- /app/assets/images/dcc_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/dcc_logo_white.png -------------------------------------------------------------------------------- /app/assets/images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/desc.gif -------------------------------------------------------------------------------- /app/assets/images/doty-jen-resized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/doty-jen-resized.jpg -------------------------------------------------------------------------------- /app/assets/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/download.png -------------------------------------------------------------------------------- /app/assets/images/favicon copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/favicon copy.ico -------------------------------------------------------------------------------- /app/assets/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/favicon-16x16.png -------------------------------------------------------------------------------- /app/assets/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/favicon-32x32.png -------------------------------------------------------------------------------- /app/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/favicon.ico -------------------------------------------------------------------------------- /app/assets/images/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/fullscreen.png -------------------------------------------------------------------------------- /app/assets/images/gunia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/gunia.jpg -------------------------------------------------------------------------------- /app/assets/images/help_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/help_button.png -------------------------------------------------------------------------------- /app/assets/images/hero/1-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/hero/1-large.jpg -------------------------------------------------------------------------------- /app/assets/images/hero/2-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/hero/2-large.jpg -------------------------------------------------------------------------------- /app/assets/images/hero/3-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/hero/3-large.jpg -------------------------------------------------------------------------------- /app/assets/images/hero/4-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/hero/4-large.jpg -------------------------------------------------------------------------------- /app/assets/images/hero/5-large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/hero/5-large.jpg -------------------------------------------------------------------------------- /app/assets/images/jhermer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/jhermer.jpg -------------------------------------------------------------------------------- /app/assets/images/login-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/login-sample.png -------------------------------------------------------------------------------- /app/assets/images/logo-cdl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/logo-cdl.svg -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/minus_laranja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/minus_laranja.png -------------------------------------------------------------------------------- /app/assets/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/mstile-150x150.png -------------------------------------------------------------------------------- /app/assets/images/plus_laranja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/plus_laranja.png -------------------------------------------------------------------------------- /app/assets/images/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/question-mark.png -------------------------------------------------------------------------------- /app/assets/images/ratajeski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/ratajeski.jpg -------------------------------------------------------------------------------- /app/assets/images/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/remove.png -------------------------------------------------------------------------------- /app/assets/images/rotsuji-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/rotsuji-portrait.jpg -------------------------------------------------------------------------------- /app/assets/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /app/assets/images/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/select2-spinner.gif -------------------------------------------------------------------------------- /app/assets/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/select2.png -------------------------------------------------------------------------------- /app/assets/images/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/select2x2.png -------------------------------------------------------------------------------- /app/assets/images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/site.webmanifest -------------------------------------------------------------------------------- /app/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/spinner.gif -------------------------------------------------------------------------------- /app/assets/images/uc3_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/uc3_logo.jpg -------------------------------------------------------------------------------- /app/assets/images/uc3_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/uc3_logo_white.png -------------------------------------------------------------------------------- /app/assets/images/ue_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/ue_logo.png -------------------------------------------------------------------------------- /app/assets/images/wham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/images/wham.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/stylesheets/blocks/README.md -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/_alerts.scss: -------------------------------------------------------------------------------- 1 | .alert { 2 | border-radius: 0px; 3 | } -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/_clearable_field.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/_rda.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/stylesheets/blocks/_rda.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/_ui_sortable_handle.scss: -------------------------------------------------------------------------------- 1 | .ui-sortable-handle{ 2 | margin-right: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/blocks/_usage.scss: -------------------------------------------------------------------------------- 1 | .single-char-input { 2 | display: inline; 3 | width: 20px; 4 | } 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/dmptool/_cursors.scss: -------------------------------------------------------------------------------- 1 | a, 2 | label a { 3 | cursor: pointer !important; 4 | } 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/dmptool/_tinymce.scss: -------------------------------------------------------------------------------- 1 | .tinymce-help { 2 | margin-top: 5px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/tinymce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/stylesheets/tinymce.css -------------------------------------------------------------------------------- /app/assets/stylesheets/utils/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/assets/stylesheets/utils/README.md -------------------------------------------------------------------------------- /app/assets/stylesheets/utils/_backgrounds.scss: -------------------------------------------------------------------------------- 1 | [class^="bg-"] { 2 | padding: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/variables/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/variables/_bold.scss: -------------------------------------------------------------------------------- 1 | .bold { 2 | font-weight: bold; 3 | } -------------------------------------------------------------------------------- /app/assets/stylesheets/variables/_site_overrides.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/answers_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/answers_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/paginable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/concerns/paginable.rb -------------------------------------------------------------------------------- /app/controllers/concerns/versionable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/concerns/versionable.rb -------------------------------------------------------------------------------- /app/controllers/guidances_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/guidances_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/orgs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/orgs_controller.rb -------------------------------------------------------------------------------- /app/controllers/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/plans_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/plans_controller.rb -------------------------------------------------------------------------------- /app/controllers/roles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/roles_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/settings.rb -------------------------------------------------------------------------------- /app/controllers/sitemaps_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/sitemaps_controller.rb -------------------------------------------------------------------------------- /app/controllers/usage_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/usage_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/annotations_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/annotations_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/authentication_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/authentication_helper.rb -------------------------------------------------------------------------------- /app/helpers/conditions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/conditions_helper.rb -------------------------------------------------------------------------------- /app/helpers/dmptool_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/dmptool_helper.rb -------------------------------------------------------------------------------- /app/helpers/exports_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/exports_helper.rb -------------------------------------------------------------------------------- /app/helpers/feedbacks_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/feedbacks_helper.rb -------------------------------------------------------------------------------- /app/helpers/identifier_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/identifier_helper.rb -------------------------------------------------------------------------------- /app/helpers/languages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/languages_helper.rb -------------------------------------------------------------------------------- /app/helpers/mailer_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/mailer_helper.rb -------------------------------------------------------------------------------- /app/helpers/manifests_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/manifests_helper.rb -------------------------------------------------------------------------------- /app/helpers/notifications_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/notifications_helper.rb -------------------------------------------------------------------------------- /app/helpers/orgs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/orgs_helper.rb -------------------------------------------------------------------------------- /app/helpers/paginable_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/paginable_helper.rb -------------------------------------------------------------------------------- /app/helpers/perms_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/perms_helper.rb -------------------------------------------------------------------------------- /app/helpers/plans_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/plans_helper.rb -------------------------------------------------------------------------------- /app/helpers/sections_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/sections_helper.rb -------------------------------------------------------------------------------- /app/helpers/settings_template_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/settings_template_helper.rb -------------------------------------------------------------------------------- /app/helpers/template_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/template_helper.rb -------------------------------------------------------------------------------- /app/helpers/usage_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/helpers/usage_helper.rb -------------------------------------------------------------------------------- /app/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/README.md -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/src/answers/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/answers/edit.js -------------------------------------------------------------------------------- /app/javascript/src/guidances/newEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/guidances/newEdit.js -------------------------------------------------------------------------------- /app/javascript/src/locale/de/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/de/app.js -------------------------------------------------------------------------------- /app/javascript/src/locale/de/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/de/timeago.js -------------------------------------------------------------------------------- /app/javascript/src/locale/en_GB/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/en_GB/app.js -------------------------------------------------------------------------------- /app/javascript/src/locale/en_US/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/en_US/app.js -------------------------------------------------------------------------------- /app/javascript/src/locale/es/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/es/app.js -------------------------------------------------------------------------------- /app/javascript/src/locale/es/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/es/timeago.js -------------------------------------------------------------------------------- /app/javascript/src/locale/fr_FR/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/locale/fr_FR/app.js -------------------------------------------------------------------------------- /app/javascript/src/notes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/notes/index.js -------------------------------------------------------------------------------- /app/javascript/src/orgs/adminEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/orgs/adminEdit.js -------------------------------------------------------------------------------- /app/javascript/src/orgs/shibbolethDs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/orgs/shibbolethDs.js -------------------------------------------------------------------------------- /app/javascript/src/plans/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/plans/download.js -------------------------------------------------------------------------------- /app/javascript/src/plans/editDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/plans/editDetails.js -------------------------------------------------------------------------------- /app/javascript/src/plans/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/plans/index.js -------------------------------------------------------------------------------- /app/javascript/src/plans/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/plans/new.js -------------------------------------------------------------------------------- /app/javascript/src/plans/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/plans/publish.js -------------------------------------------------------------------------------- /app/javascript/src/plans/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/plans/share.js -------------------------------------------------------------------------------- /app/javascript/src/roles/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/roles/edit.js -------------------------------------------------------------------------------- /app/javascript/src/shared/signInForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/shared/signInForm.js -------------------------------------------------------------------------------- /app/javascript/src/usage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/usage/index.js -------------------------------------------------------------------------------- /app/javascript/src/users/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/users/profile.js -------------------------------------------------------------------------------- /app/javascript/src/utils/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/accordion.js -------------------------------------------------------------------------------- /app/javascript/src/utils/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/array.js -------------------------------------------------------------------------------- /app/javascript/src/utils/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/charts.js -------------------------------------------------------------------------------- /app/javascript/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/constants.js -------------------------------------------------------------------------------- /app/javascript/src/utils/datePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/datePicker.js -------------------------------------------------------------------------------- /app/javascript/src/utils/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/debounce.js -------------------------------------------------------------------------------- /app/javascript/src/utils/isType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/isType.js -------------------------------------------------------------------------------- /app/javascript/src/utils/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/links.js -------------------------------------------------------------------------------- /app/javascript/src/utils/modalSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/modalSearch.js -------------------------------------------------------------------------------- /app/javascript/src/utils/outOfFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/outOfFocus.js -------------------------------------------------------------------------------- /app/javascript/src/utils/paginable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/paginable.js -------------------------------------------------------------------------------- /app/javascript/src/utils/scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/scrollTo.js -------------------------------------------------------------------------------- /app/javascript/src/utils/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/spinner.js -------------------------------------------------------------------------------- /app/javascript/src/utils/tabHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/tabHelper.js -------------------------------------------------------------------------------- /app/javascript/src/utils/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/javascript/src/utils/tinymce.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/notify_subscriber_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/jobs/notify_subscriber_job.rb -------------------------------------------------------------------------------- /app/mailers/dmptool/mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/mailers/dmptool/mailer.rb -------------------------------------------------------------------------------- /app/mailers/user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/mailers/user_mailer.rb -------------------------------------------------------------------------------- /app/models/annotation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/annotation.rb -------------------------------------------------------------------------------- /app/models/answer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/answer.rb -------------------------------------------------------------------------------- /app/models/api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/api_client.rb -------------------------------------------------------------------------------- /app/models/api_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/api_log.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/acts_as_sortable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/acts_as_sortable.rb -------------------------------------------------------------------------------- /app/models/concerns/date_rangeable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/date_rangeable.rb -------------------------------------------------------------------------------- /app/models/concerns/dmptool/org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/dmptool/org.rb -------------------------------------------------------------------------------- /app/models/concerns/dmptool/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/dmptool/plan.rb -------------------------------------------------------------------------------- /app/models/concerns/dmptool/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/dmptool/user.rb -------------------------------------------------------------------------------- /app/models/concerns/exportable_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/exportable_plan.rb -------------------------------------------------------------------------------- /app/models/concerns/identifiable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/identifiable.rb -------------------------------------------------------------------------------- /app/models/concerns/subscribable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/concerns/subscribable.rb -------------------------------------------------------------------------------- /app/models/condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/condition.rb -------------------------------------------------------------------------------- /app/models/contributor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/contributor.rb -------------------------------------------------------------------------------- /app/models/department.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/department.rb -------------------------------------------------------------------------------- /app/models/exported_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/exported_plan.rb -------------------------------------------------------------------------------- /app/models/external_api_access_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/external_api_access_token.rb -------------------------------------------------------------------------------- /app/models/guidance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/guidance.rb -------------------------------------------------------------------------------- /app/models/guidance_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/guidance_group.rb -------------------------------------------------------------------------------- /app/models/identifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/identifier.rb -------------------------------------------------------------------------------- /app/models/identifier_scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/identifier_scheme.rb -------------------------------------------------------------------------------- /app/models/language.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/language.rb -------------------------------------------------------------------------------- /app/models/license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/license.rb -------------------------------------------------------------------------------- /app/models/metadata_standard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/metadata_standard.rb -------------------------------------------------------------------------------- /app/models/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/note.rb -------------------------------------------------------------------------------- /app/models/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/notification.rb -------------------------------------------------------------------------------- /app/models/org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/org.rb -------------------------------------------------------------------------------- /app/models/perm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/perm.rb -------------------------------------------------------------------------------- /app/models/phase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/phase.rb -------------------------------------------------------------------------------- /app/models/plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/plan.rb -------------------------------------------------------------------------------- /app/models/pref.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/pref.rb -------------------------------------------------------------------------------- /app/models/question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/question.rb -------------------------------------------------------------------------------- /app/models/question_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/question_format.rb -------------------------------------------------------------------------------- /app/models/question_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/question_option.rb -------------------------------------------------------------------------------- /app/models/region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/region.rb -------------------------------------------------------------------------------- /app/models/registry_org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/registry_org.rb -------------------------------------------------------------------------------- /app/models/related_identifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/related_identifier.rb -------------------------------------------------------------------------------- /app/models/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/repository.rb -------------------------------------------------------------------------------- /app/models/research_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/research_domain.rb -------------------------------------------------------------------------------- /app/models/research_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/research_output.rb -------------------------------------------------------------------------------- /app/models/research_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/research_project.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/section.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/section.rb -------------------------------------------------------------------------------- /app/models/section_sorter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/section_sorter.rb -------------------------------------------------------------------------------- /app/models/settings/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/settings/template.rb -------------------------------------------------------------------------------- /app/models/stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/stat.rb -------------------------------------------------------------------------------- /app/models/stat_created_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/stat_created_plan.rb -------------------------------------------------------------------------------- /app/models/stat_exported_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/stat_exported_plan.rb -------------------------------------------------------------------------------- /app/models/stat_joined_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/stat_joined_user.rb -------------------------------------------------------------------------------- /app/models/stat_shared_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/stat_shared_plan.rb -------------------------------------------------------------------------------- /app/models/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/subscription.rb -------------------------------------------------------------------------------- /app/models/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/template.rb -------------------------------------------------------------------------------- /app/models/template_license.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/template_license.rb -------------------------------------------------------------------------------- /app/models/template_output_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/template_output_type.rb -------------------------------------------------------------------------------- /app/models/template_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/template_repository.rb -------------------------------------------------------------------------------- /app/models/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/theme.rb -------------------------------------------------------------------------------- /app/models/token_permission_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/token_permission_type.rb -------------------------------------------------------------------------------- /app/models/tracker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/tracker.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user/at_csv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/models/user/at_csv.rb -------------------------------------------------------------------------------- /app/policies/annotation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/annotation_policy.rb -------------------------------------------------------------------------------- /app/policies/answer_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/answer_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v0/guidance_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api/v0/guidance_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v0/plans_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api/v0/plans_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v0/template_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api/v0/template_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v1/plans_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api/v1/plans_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v2/plans_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api/v2/plans_policy.rb -------------------------------------------------------------------------------- /app/policies/api/v2/templates_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api/v2/templates_policy.rb -------------------------------------------------------------------------------- /app/policies/api_client_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/api_client_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/department_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/department_policy.rb -------------------------------------------------------------------------------- /app/policies/guidance_group_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/guidance_group_policy.rb -------------------------------------------------------------------------------- /app/policies/guidance_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/guidance_policy.rb -------------------------------------------------------------------------------- /app/policies/identifier_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/identifier_policy.rb -------------------------------------------------------------------------------- /app/policies/note_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/note_policy.rb -------------------------------------------------------------------------------- /app/policies/notification_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/notification_policy.rb -------------------------------------------------------------------------------- /app/policies/org_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/org_policy.rb -------------------------------------------------------------------------------- /app/policies/paginable/plan_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/paginable/plan_policy.rb -------------------------------------------------------------------------------- /app/policies/phase_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/phase_policy.rb -------------------------------------------------------------------------------- /app/policies/plan_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/plan_policy.rb -------------------------------------------------------------------------------- /app/policies/public_page_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/public_page_policy.rb -------------------------------------------------------------------------------- /app/policies/question_option_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/question_option_policy.rb -------------------------------------------------------------------------------- /app/policies/question_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/question_policy.rb -------------------------------------------------------------------------------- /app/policies/research_output_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/research_output_policy.rb -------------------------------------------------------------------------------- /app/policies/role_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/role_policy.rb -------------------------------------------------------------------------------- /app/policies/section_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/section_policy.rb -------------------------------------------------------------------------------- /app/policies/settings/plan_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/settings/plan_policy.rb -------------------------------------------------------------------------------- /app/policies/settings/project_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/settings/project_policy.rb -------------------------------------------------------------------------------- /app/policies/template_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/template_policy.rb -------------------------------------------------------------------------------- /app/policies/theme_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/theme_policy.rb -------------------------------------------------------------------------------- /app/policies/usage_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/usage_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/presenters/api/v1/api_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/api/v1/api_presenter.rb -------------------------------------------------------------------------------- /app/presenters/api/v1/org_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/api/v1/org_presenter.rb -------------------------------------------------------------------------------- /app/presenters/api/v1/plan_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/api/v1/plan_presenter.rb -------------------------------------------------------------------------------- /app/presenters/api/v2/plan_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/api/v2/plan_presenter.rb -------------------------------------------------------------------------------- /app/presenters/contributor_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/contributor_presenter.rb -------------------------------------------------------------------------------- /app/presenters/dmptool/org_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/dmptool/org_presenter.rb -------------------------------------------------------------------------------- /app/presenters/guidance_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/guidance_presenter.rb -------------------------------------------------------------------------------- /app/presenters/identifier_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/identifier_presenter.rb -------------------------------------------------------------------------------- /app/presenters/plan_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/presenters/plan_presenter.rb -------------------------------------------------------------------------------- /app/scrubbers/table_free_scrubber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/scrubbers/table_free_scrubber.rb -------------------------------------------------------------------------------- /app/services/application_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/services/application_service.rb -------------------------------------------------------------------------------- /app/services/dmp_id_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/services/dmp_id_service.rb -------------------------------------------------------------------------------- /app/services/locale_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/services/locale_service.rb -------------------------------------------------------------------------------- /app/validators/after_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/validators/after_validator.rb -------------------------------------------------------------------------------- /app/validators/email_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/validators/email_validator.rb -------------------------------------------------------------------------------- /app/validators/org_links_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/validators/org_links_validator.rb -------------------------------------------------------------------------------- /app/validators/url_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/validators/url_validator.rb -------------------------------------------------------------------------------- /app/views/answers/_locking.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/answers/_locking.html.erb -------------------------------------------------------------------------------- /app/views/answers/_new_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/answers/_new_edit.html.erb -------------------------------------------------------------------------------- /app/views/answers/_status.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/answers/_status.html.erb -------------------------------------------------------------------------------- /app/views/api/v1/error.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/api/v1/error.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/token.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/api/v1/token.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/error.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/api/v2/error.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/me.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/api/v2/me.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v2/plans/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/api/v2/plans/show.erb -------------------------------------------------------------------------------- /app/views/branded/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/branded/home/index.html.erb -------------------------------------------------------------------------------- /app/views/branded/home/robots.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/branded/home/robots.html.erb -------------------------------------------------------------------------------- /app/views/branded/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- 1 |
  • -------------------------------------------------------------------------------- /app/views/branded/plans/mint.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/branded/plans/mint.js.erb -------------------------------------------------------------------------------- /app/views/branded/plans/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/branded/plans/new.html.erb -------------------------------------------------------------------------------- /app/views/contributors/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/contributors/_form.html.erb -------------------------------------------------------------------------------- /app/views/contributors/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/contributors/edit.html.erb -------------------------------------------------------------------------------- /app/views/contributors/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/contributors/index.html.erb -------------------------------------------------------------------------------- /app/views/contributors/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/contributors/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/guidances/new_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/guidances/new_edit.html.erb -------------------------------------------------------------------------------- /app/views/home/_welcome.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/home/_welcome.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_first_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_gap.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_last_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_next_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_page.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_paginator.html.erb -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/kaminari/_prev_page.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_branding.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/_branding.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/_navigation.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_paginable.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/_paginable.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/notes/_archive.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_archive.html.erb -------------------------------------------------------------------------------- /app/views/notes/_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_edit.html.erb -------------------------------------------------------------------------------- /app/views/notes/_layout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_layout.html.erb -------------------------------------------------------------------------------- /app/views/notes/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_list.html.erb -------------------------------------------------------------------------------- /app/views/notes/_new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_new.html.erb -------------------------------------------------------------------------------- /app/views/notes/_show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_show.html.erb -------------------------------------------------------------------------------- /app/views/notes/_title.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/notes/_title.html.erb -------------------------------------------------------------------------------- /app/views/org_admin/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/org_admin/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/orgs/_api_emails.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/orgs/_api_emails.html.erb -------------------------------------------------------------------------------- /app/views/orgs/_departments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/orgs/_departments.html.erb -------------------------------------------------------------------------------- /app/views/orgs/_feedback_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/orgs/_feedback_form.html.erb -------------------------------------------------------------------------------- /app/views/orgs/_merge_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/orgs/_merge_form.html.erb -------------------------------------------------------------------------------- /app/views/orgs/_profile_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/orgs/_profile_form.html.erb -------------------------------------------------------------------------------- /app/views/orgs/admin_edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/orgs/admin_edit.html.erb -------------------------------------------------------------------------------- /app/views/phases/_overview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/phases/_overview.html.erb -------------------------------------------------------------------------------- /app/views/phases/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/phases/edit.html.erb -------------------------------------------------------------------------------- /app/views/plan_exports/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plan_exports/show.erb -------------------------------------------------------------------------------- /app/views/plans/_download_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/_download_form.html.erb -------------------------------------------------------------------------------- /app/views/plans/_edit_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/_edit_details.html.erb -------------------------------------------------------------------------------- /app/views/plans/_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/_navigation.html.erb -------------------------------------------------------------------------------- /app/views/plans/_progress.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/_progress.html.erb -------------------------------------------------------------------------------- /app/views/plans/_share_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/_share_form.html.erb -------------------------------------------------------------------------------- /app/views/plans/_show_details.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/_show_details.html.erb -------------------------------------------------------------------------------- /app/views/plans/download.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/download.html.erb -------------------------------------------------------------------------------- /app/views/plans/export.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/export.xml.builder -------------------------------------------------------------------------------- /app/views/plans/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/index.html.erb -------------------------------------------------------------------------------- /app/views/plans/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/new.html.erb -------------------------------------------------------------------------------- /app/views/plans/overview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/overview.html.erb -------------------------------------------------------------------------------- /app/views/plans/share.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/share.html.erb -------------------------------------------------------------------------------- /app/views/plans/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/plans/show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/shared/_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/_modal.html.erb -------------------------------------------------------------------------------- /app/views/shared/_popover.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/_popover.html.erb -------------------------------------------------------------------------------- /app/views/shared/_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/_search.html.erb -------------------------------------------------------------------------------- /app/views/shared/_sign_in_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/_sign_in_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/_table_filter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/_table_filter.html.erb -------------------------------------------------------------------------------- /app/views/shared/export/_plan.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/export/_plan.erb -------------------------------------------------------------------------------- /app/views/shared/export/_plan_txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/shared/export/_plan_txt.erb -------------------------------------------------------------------------------- /app/views/sitemaps/_admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/sitemaps/_admin.html.erb -------------------------------------------------------------------------------- /app/views/sitemaps/_help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/sitemaps/_help.html.erb -------------------------------------------------------------------------------- /app/views/sitemaps/_signed_in.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/sitemaps/_signed_in.html.erb -------------------------------------------------------------------------------- /app/views/sitemaps/_signed_out.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/sitemaps/_signed_out.html.erb -------------------------------------------------------------------------------- /app/views/sitemaps/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/sitemaps/index.html.erb -------------------------------------------------------------------------------- /app/views/sitemaps/index.xml.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/sitemaps/index.xml.builder -------------------------------------------------------------------------------- /app/views/static_pages/help.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/static_pages/help.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/privacy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/static_pages/privacy.html.erb -------------------------------------------------------------------------------- /app/views/super_admin/orgs/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/super_admin/orgs/new.html.erb -------------------------------------------------------------------------------- /app/views/usage/_total_usage.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/usage/_total_usage.html.erb -------------------------------------------------------------------------------- /app/views/usage/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/usage/index.html.erb -------------------------------------------------------------------------------- /app/views/users/admin_index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/users/admin_index.html.erb -------------------------------------------------------------------------------- /app/views/users/refresh_token.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/app/views/users/refresh_token.js.erb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/_guard-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/_guard-core -------------------------------------------------------------------------------- /bin/annotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/annotate -------------------------------------------------------------------------------- /bin/annotate-gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/annotate-gem -------------------------------------------------------------------------------- /bin/annotate_gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/annotate_gem -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/bundle-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/bundle-audit -------------------------------------------------------------------------------- /bin/byebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/byebug -------------------------------------------------------------------------------- /bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/coderay -------------------------------------------------------------------------------- /bin/convert_to_should_syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/convert_to_should_syntax -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/dotenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/dotenv -------------------------------------------------------------------------------- /bin/faker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/faker -------------------------------------------------------------------------------- /bin/guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/guard -------------------------------------------------------------------------------- /bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/htmldiff -------------------------------------------------------------------------------- /bin/htmltoword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/htmltoword -------------------------------------------------------------------------------- /bin/httparty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/httparty -------------------------------------------------------------------------------- /bin/launchy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/launchy -------------------------------------------------------------------------------- /bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/ldiff -------------------------------------------------------------------------------- /bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/listen -------------------------------------------------------------------------------- /bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/nokogiri -------------------------------------------------------------------------------- /bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/pry -------------------------------------------------------------------------------- /bin/puma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/puma -------------------------------------------------------------------------------- /bin/pumactl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/pumactl -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rmsgcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rmsgcat -------------------------------------------------------------------------------- /bin/rmsgfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rmsgfmt -------------------------------------------------------------------------------- /bin/rmsginit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rmsginit -------------------------------------------------------------------------------- /bin/rmsgmerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rmsgmerge -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/ruby-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/ruby-parse -------------------------------------------------------------------------------- /bin/ruby-rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/ruby-rewrite -------------------------------------------------------------------------------- /bin/rxgettext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/rxgettext -------------------------------------------------------------------------------- /bin/safe_yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/safe_yaml -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/sprockets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/sprockets -------------------------------------------------------------------------------- /bin/symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/symlink.sh -------------------------------------------------------------------------------- /bin/test.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/test.bash -------------------------------------------------------------------------------- /bin/thin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/thin -------------------------------------------------------------------------------- /bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/thor -------------------------------------------------------------------------------- /bin/tilt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/tilt -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/update -------------------------------------------------------------------------------- /bin/wkhtmltopdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/wkhtmltopdf -------------------------------------------------------------------------------- /bin/yard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/yard -------------------------------------------------------------------------------- /bin/yardoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/yardoc -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/yarn -------------------------------------------------------------------------------- /bin/yri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/bin/yri -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/base_site.html -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/configs/dmproadmap_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/configs/dmproadmap_config.rb -------------------------------------------------------------------------------- /config/credentials.yml.mysql2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/credentials.yml.mysql2 -------------------------------------------------------------------------------- /config/credentials.yml.postgresql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/credentials.yml.postgresql -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/deploy/puppet-automation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/deploy/puppet-automation.rb -------------------------------------------------------------------------------- /config/dmproadmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/dmproadmap.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/stage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/environments/stage.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/_dmproadmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/_dmproadmap.rb -------------------------------------------------------------------------------- /config/initializers/api_pagination.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/api_pagination.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/bullet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/bullet.rb -------------------------------------------------------------------------------- /config/initializers/contact_us.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/contact_us.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/dmptool_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/dmptool_version.rb -------------------------------------------------------------------------------- /config/initializers/doorkeeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/doorkeeper.rb -------------------------------------------------------------------------------- /config/initializers/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/dragonfly.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/locale.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rack_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/rack_attack.rb -------------------------------------------------------------------------------- /config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /config/initializers/rollbar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/rollbar.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/translation.rb -------------------------------------------------------------------------------- /config/initializers/wicked_pdf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/wicked_pdf.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locale/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/app.po -------------------------------------------------------------------------------- /config/locale/app.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/app.pot -------------------------------------------------------------------------------- /config/locale/client.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/client.pot -------------------------------------------------------------------------------- /config/locale/de/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/de/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/de/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/de/app.po -------------------------------------------------------------------------------- /config/locale/en/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/en/LC_MESSAGES/client.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en/LC_MESSAGES/client.mo -------------------------------------------------------------------------------- /config/locale/en/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en/app.po -------------------------------------------------------------------------------- /config/locale/en/client.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en/client.po -------------------------------------------------------------------------------- /config/locale/en_CA/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_CA/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/en_CA/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_CA/app.po -------------------------------------------------------------------------------- /config/locale/en_GB/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_GB/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/en_GB/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_GB/app.po -------------------------------------------------------------------------------- /config/locale/en_US/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_US/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/en_US/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_US/app.po -------------------------------------------------------------------------------- /config/locale/en_US/client.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/en_US/client.po -------------------------------------------------------------------------------- /config/locale/es/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/es/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/es/LC_MESSAGES/client.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/es/LC_MESSAGES/client.mo -------------------------------------------------------------------------------- /config/locale/es/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/es/app.po -------------------------------------------------------------------------------- /config/locale/es/client.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/es/client.po -------------------------------------------------------------------------------- /config/locale/fi/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fi/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/fi/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fi/app.po -------------------------------------------------------------------------------- /config/locale/fr_CA/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fr_CA/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/fr_CA/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fr_CA/app.po -------------------------------------------------------------------------------- /config/locale/fr_CA/client.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fr_CA/client.po -------------------------------------------------------------------------------- /config/locale/fr_FR/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fr_FR/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/fr_FR/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/fr_FR/app.po -------------------------------------------------------------------------------- /config/locale/i18n_placeholders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/i18n_placeholders.rb -------------------------------------------------------------------------------- /config/locale/ja/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/ja/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/ja/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/ja/app.po -------------------------------------------------------------------------------- /config/locale/ja/dmptool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/ja/dmptool.po -------------------------------------------------------------------------------- /config/locale/pt_BR/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/pt_BR/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/pt_BR/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/pt_BR/app.po -------------------------------------------------------------------------------- /config/locale/pt_BR/client.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/pt_BR/client.po -------------------------------------------------------------------------------- /config/locale/sv_FI/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/sv_FI/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/sv_FI/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/sv_FI/app.po -------------------------------------------------------------------------------- /config/locale/tr_TR/LC_MESSAGES/app.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/tr_TR/LC_MESSAGES/app.mo -------------------------------------------------------------------------------- /config/locale/tr_TR/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locale/tr_TR/app.po -------------------------------------------------------------------------------- /config/locales/.translation_io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/.translation_io -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.de.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.en-GB.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.en-US.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.es.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.fr-FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.fr-FR.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.fr.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.ja.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/devise/devise.tr-TR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/devise/devise.tr-TR.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.de.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.el.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.en-GB.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.en-US.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.en.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.es.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.fi.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.fr-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.fr-CA.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.fr-FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.fr-FR.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.fr.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.ja.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.ro.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.sv-FI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/doorkeeper.sv-FI.yml -------------------------------------------------------------------------------- /config/locales/el.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/el.yml -------------------------------------------------------------------------------- /config/locales/en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/en-GB.yml -------------------------------------------------------------------------------- /config/locales/en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/en-US.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/faker/faker.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/faker/faker.de.yml -------------------------------------------------------------------------------- /config/locales/faker/faker.en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/faker/faker.en-GB.yml -------------------------------------------------------------------------------- /config/locales/faker/faker.en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/faker/faker.en-US.yml -------------------------------------------------------------------------------- /config/locales/faker/faker.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/faker/faker.en.yml -------------------------------------------------------------------------------- /config/locales/faker/faker.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/faker/faker.fr.yml -------------------------------------------------------------------------------- /config/locales/faker/faker.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/faker/faker.ja.yml -------------------------------------------------------------------------------- /config/locales/fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/fi.yml -------------------------------------------------------------------------------- /config/locales/fr-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/fr-CA.yml -------------------------------------------------------------------------------- /config/locales/fr-FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/fr-FR.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/localization.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.de.yml -------------------------------------------------------------------------------- /config/locales/localization.en-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.en-CA.yml -------------------------------------------------------------------------------- /config/locales/localization.en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.en-GB.yml -------------------------------------------------------------------------------- /config/locales/localization.en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.en-US.yml -------------------------------------------------------------------------------- /config/locales/localization.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.es.yml -------------------------------------------------------------------------------- /config/locales/localization.fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.fi.yml -------------------------------------------------------------------------------- /config/locales/localization.fr-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.fr-CA.yml -------------------------------------------------------------------------------- /config/locales/localization.fr-FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.fr-FR.yml -------------------------------------------------------------------------------- /config/locales/localization.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/localization.sv-FI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.sv-FI.yml -------------------------------------------------------------------------------- /config/locales/localization.tr-TR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/localization.tr-TR.yml -------------------------------------------------------------------------------- /config/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/pt-BR.yml -------------------------------------------------------------------------------- /config/locales/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/ro.yml -------------------------------------------------------------------------------- /config/locales/sv-FI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/sv-FI.yml -------------------------------------------------------------------------------- /config/locales/tr-TR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/tr-TR.yml -------------------------------------------------------------------------------- /config/locales/translation.de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.de.yml -------------------------------------------------------------------------------- /config/locales/translation.en-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.en-CA.yml -------------------------------------------------------------------------------- /config/locales/translation.en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.en-GB.yml -------------------------------------------------------------------------------- /config/locales/translation.en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.en-US.yml -------------------------------------------------------------------------------- /config/locales/translation.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.es.yml -------------------------------------------------------------------------------- /config/locales/translation.fi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.fi.yml -------------------------------------------------------------------------------- /config/locales/translation.fr-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.fr-CA.yml -------------------------------------------------------------------------------- /config/locales/translation.fr-FR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.fr-FR.yml -------------------------------------------------------------------------------- /config/locales/translation.pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.pt-BR.yml -------------------------------------------------------------------------------- /config/locales/translation.sv-FI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.sv-FI.yml -------------------------------------------------------------------------------- /config/locales/translation.tr-TR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/locales/translation.tr-TR.yml -------------------------------------------------------------------------------- /config/maintenance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/maintenance.html -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/robots.txt -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/loaders/erb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/webpack/loaders/erb.js -------------------------------------------------------------------------------- /config/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/webpack/webpack.config.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/db/diagram.svg -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/doc/roadmap.png -------------------------------------------------------------------------------- /doc/roadmap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/doc/roadmap.svg -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/db/syncing_databases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/db/syncing_databases.sql -------------------------------------------------------------------------------- /docs/dmptool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/dmptool.png -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_blue.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_blue.eps -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_blue.png -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_blue.svg -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_blue_no_tag.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_blue_no_tag.eps -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_blue_no_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_blue_no_tag.png -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_blue_no_tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_blue_no_tag.svg -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_v1.png -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_v2.png -------------------------------------------------------------------------------- /docs/logos/DMPTool_logo_v2_no_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/DMPTool_logo_v2_no_tag.png -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool.pdf -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool.png -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool.svg -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool_Black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool_Black.pdf -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool_Black.png -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool_Black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool_Black.svg -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool_White.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool_White.pdf -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool_White.png -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_Tool_White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_Tool_White.svg -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_white_Tool.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_white_Tool.pdf -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_white_Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_white_Tool.png -------------------------------------------------------------------------------- /docs/logos/landscape/DMP_white_Tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/landscape/DMP_white_Tool.svg -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool.pdf -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool.png -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool.svg -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool_Black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool_Black.pdf -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool_Black.png -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool_Black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool_Black.svg -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool_White.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool_White.pdf -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool_White.png -------------------------------------------------------------------------------- /docs/logos/portrait/DMP_Tool_White.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/logos/portrait/DMP_Tool_White.svg -------------------------------------------------------------------------------- /docs/postcard/DMPTool_postcard1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/postcard/DMPTool_postcard1.pdf -------------------------------------------------------------------------------- /docs/postcard/DMPTool_postcard2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/postcard/DMPTool_postcard2.pdf -------------------------------------------------------------------------------- /docs/poster/DMPTool_poster_v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/poster/DMPTool_poster_v2.pdf -------------------------------------------------------------------------------- /docs/quickstartguide/create_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/quickstartguide/create_plan.png -------------------------------------------------------------------------------- /docs/quickstartguide/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/quickstartguide/dashboard.png -------------------------------------------------------------------------------- /docs/screenshots/Email-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/Email-notification.png -------------------------------------------------------------------------------- /docs/screenshots/Multiple-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/Multiple-options.png -------------------------------------------------------------------------------- /docs/screenshots/OrgDetailsPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/OrgDetailsPage.png -------------------------------------------------------------------------------- /docs/screenshots/Remove-questions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/Remove-questions.png -------------------------------------------------------------------------------- /docs/screenshots/Save-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/Save-options.png -------------------------------------------------------------------------------- /docs/screenshots/add-customizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/add-customizations.png -------------------------------------------------------------------------------- /docs/screenshots/add-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/add-section.png -------------------------------------------------------------------------------- /docs/screenshots/api_credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/api_credentials.png -------------------------------------------------------------------------------- /docs/screenshots/create-a-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/create-a-template.png -------------------------------------------------------------------------------- /docs/screenshots/developer_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/developer_tools.png -------------------------------------------------------------------------------- /docs/screenshots/edit-privileges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/edit-privileges.png -------------------------------------------------------------------------------- /docs/screenshots/example-answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/example-answer.png -------------------------------------------------------------------------------- /docs/screenshots/guidance-themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/guidance-themes.png -------------------------------------------------------------------------------- /docs/screenshots/guidance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/guidance.png -------------------------------------------------------------------------------- /docs/screenshots/oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/oauth.png -------------------------------------------------------------------------------- /docs/screenshots/oauth_creds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/oauth_creds.png -------------------------------------------------------------------------------- /docs/screenshots/org-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/org-details.png -------------------------------------------------------------------------------- /docs/screenshots/plans-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/plans-page.png -------------------------------------------------------------------------------- /docs/screenshots/privileges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/privileges.png -------------------------------------------------------------------------------- /docs/screenshots/request-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/request-feedback.png -------------------------------------------------------------------------------- /docs/screenshots/request_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/request_feedback.png -------------------------------------------------------------------------------- /docs/screenshots/upload_plans_step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/upload_plans_step1.png -------------------------------------------------------------------------------- /docs/screenshots/upload_plans_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/upload_plans_step2.png -------------------------------------------------------------------------------- /docs/screenshots/upload_plans_step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/upload_plans_step3.png -------------------------------------------------------------------------------- /docs/screenshots/upload_plans_step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/upload_plans_step4.png -------------------------------------------------------------------------------- /docs/screenshots/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/screenshots/usage.png -------------------------------------------------------------------------------- /docs/sso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/sso/README.md -------------------------------------------------------------------------------- /docs/sso/dmptool_attribute_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/sso/dmptool_attribute_map.xml -------------------------------------------------------------------------------- /docs/sso/dmptool_attribute_release.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/sso/dmptool_attribute_release.xml -------------------------------------------------------------------------------- /docs/sso/example_saml_assertion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/sso/example_saml_assertion.xml -------------------------------------------------------------------------------- /docs/talkpoints/IT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/IT.docx -------------------------------------------------------------------------------- /docs/talkpoints/IT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/IT.pdf -------------------------------------------------------------------------------- /docs/talkpoints/admin.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/admin.docx -------------------------------------------------------------------------------- /docs/talkpoints/admin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/admin.pdf -------------------------------------------------------------------------------- /docs/talkpoints/overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/overview.docx -------------------------------------------------------------------------------- /docs/talkpoints/overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/overview.pdf -------------------------------------------------------------------------------- /docs/talkpoints/researchers.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/researchers.docx -------------------------------------------------------------------------------- /docs/talkpoints/researchers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/talkpoints/researchers.pdf -------------------------------------------------------------------------------- /docs/v5/architecture.epgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/architecture.epgz -------------------------------------------------------------------------------- /docs/v5/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/architecture.png -------------------------------------------------------------------------------- /docs/v5/update_workflow.epgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/update_workflow.epgz -------------------------------------------------------------------------------- /docs/v5/update_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/update_workflow.png -------------------------------------------------------------------------------- /docs/v5/upload_workflow.epgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/upload_workflow.epgz -------------------------------------------------------------------------------- /docs/v5/upload_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/upload_workflow.png -------------------------------------------------------------------------------- /docs/v5/versioning.epgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/versioning.epgz -------------------------------------------------------------------------------- /docs/v5/versioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/v5/versioning.png -------------------------------------------------------------------------------- /docs/webinars/dmptool-webinar-QandA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/docs/webinars/dmptool-webinar-QandA.pdf -------------------------------------------------------------------------------- /lib/cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/cleanup.rb -------------------------------------------------------------------------------- /lib/cleanup/deprecators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/cleanup/deprecators.rb -------------------------------------------------------------------------------- /lib/csvable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/csvable.rb -------------------------------------------------------------------------------- /lib/custom_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/custom_failure.rb -------------------------------------------------------------------------------- /lib/data_cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/data_cleanup.rb -------------------------------------------------------------------------------- /lib/data_cleanup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/data_cleanup/README.md -------------------------------------------------------------------------------- /lib/data_cleanup/instance_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/data_cleanup/instance_check.rb -------------------------------------------------------------------------------- /lib/data_cleanup/model_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/data_cleanup/model_check.rb -------------------------------------------------------------------------------- /lib/data_cleanup/reporting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/data_cleanup/reporting.rb -------------------------------------------------------------------------------- /lib/data_cleanup/rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/data_cleanup/rules.rb -------------------------------------------------------------------------------- /lib/generators/data_cleanup_rule/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/generators/data_cleanup_rule/USAGE -------------------------------------------------------------------------------- /lib/global_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/global_helpers.rb -------------------------------------------------------------------------------- /lib/org_date_rangeable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/org_date_rangeable.rb -------------------------------------------------------------------------------- /lib/sort_direction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/sort_direction.rb -------------------------------------------------------------------------------- /lib/ssm_config_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/ssm_config_loader.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/auto_annotate_models.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/auto_annotate_models.rake -------------------------------------------------------------------------------- /lib/tasks/data_cleanup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/data_cleanup.rake -------------------------------------------------------------------------------- /lib/tasks/dmptool_specific.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/dmptool_specific.rake -------------------------------------------------------------------------------- /lib/tasks/dmptool_stats.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/dmptool_stats.rake -------------------------------------------------------------------------------- /lib/tasks/doc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/doc.rake -------------------------------------------------------------------------------- /lib/tasks/factory_bot.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/factory_bot.rake -------------------------------------------------------------------------------- /lib/tasks/gettext.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/gettext.rake -------------------------------------------------------------------------------- /lib/tasks/initialize_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/initialize_data.rake -------------------------------------------------------------------------------- /lib/tasks/logos.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/logos.rake -------------------------------------------------------------------------------- /lib/tasks/migrate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/migrate.rake -------------------------------------------------------------------------------- /lib/tasks/stat.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/stat.rake -------------------------------------------------------------------------------- /lib/tasks/upgrade.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/upgrade.rake -------------------------------------------------------------------------------- /lib/tasks/utils/config.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/config.rake -------------------------------------------------------------------------------- /lib/tasks/utils/external_api.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/external_api.rake -------------------------------------------------------------------------------- /lib/tasks/utils/housekeeping.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/housekeeping.rake -------------------------------------------------------------------------------- /lib/tasks/utils/language.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/language.rake -------------------------------------------------------------------------------- /lib/tasks/utils/org_cleanup.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/org_cleanup.rake -------------------------------------------------------------------------------- /lib/tasks/utils/plan.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/plan.rake -------------------------------------------------------------------------------- /lib/tasks/utils/templates.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/templates.rake -------------------------------------------------------------------------------- /lib/tasks/utils/update.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/utils/update.rake -------------------------------------------------------------------------------- /lib/tasks/v3.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/v3.rake -------------------------------------------------------------------------------- /lib/tasks/v4.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/tasks/v4.rake -------------------------------------------------------------------------------- /lib/unique_random.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/lib/unique_random.rb -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pa11yci/pa11yci.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/pa11yci/pa11yci.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/403.html -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/422.html -------------------------------------------------------------------------------- /public/429.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/429.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/500.html -------------------------------------------------------------------------------- /public/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/_index.html -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/dmptool-ui/1-large.172728ff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/1-large.172728ff.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/1-large.465e59e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/1-large.465e59e4.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/2-large.508b7f7a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/2-large.508b7f7a.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/2-large.70514ac7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/2-large.70514ac7.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/3-large.5106248c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/3-large.5106248c.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/3-large.53594beb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/3-large.53594beb.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/4-large.5f3faa99.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/4-large.5f3faa99.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/4-large.a670aff6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/4-large.a670aff6.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/5-large.dc60b209.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/5-large.dc60b209.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/5-large.fdf0ed61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/5-large.fdf0ed61.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/6-large.0c522fed.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/6-large.0c522fed.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/6-large.a1fbfc50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/6-large.a1fbfc50.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/7-large.582ea7ff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/7-large.582ea7ff.jpeg -------------------------------------------------------------------------------- /public/dmptool-ui/7-large.6da2166b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/7-large.6da2166b.jpg -------------------------------------------------------------------------------- /public/dmptool-ui/dmproadmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/dmproadmap.css -------------------------------------------------------------------------------- /public/dmptool-ui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/favicon.ico -------------------------------------------------------------------------------- /public/dmptool-ui/login-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/login-sample.png -------------------------------------------------------------------------------- /public/dmptool-ui/logo-cdl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/logo-cdl.svg -------------------------------------------------------------------------------- /public/dmptool-ui/logo-ucm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/logo-ucm.svg -------------------------------------------------------------------------------- /public/dmptool-ui/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/main.css -------------------------------------------------------------------------------- /public/dmptool-ui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/dmptool-ui/main.js -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/files/DMP_Checklist_2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/files/DMP_Checklist_2013.pdf -------------------------------------------------------------------------------- /public/files/roadmap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/files/roadmap_logo.png -------------------------------------------------------------------------------- /public/files/roadmap_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/files/roadmap_logo.svg -------------------------------------------------------------------------------- /public/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/i18n.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/tinymce/skins/oxide/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/tinymce/skins/oxide/content.js -------------------------------------------------------------------------------- /public/tinymce/skins/oxide/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/tinymce/skins/oxide/skin.css -------------------------------------------------------------------------------- /public/tinymce/skins/oxide/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/tinymce/skins/oxide/skin.js -------------------------------------------------------------------------------- /public/tinymce/skins/oxide/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/tinymce/skins/oxide/skin.min.css -------------------------------------------------------------------------------- /public/tinymce/tinymce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/public/tinymce/tinymce.css -------------------------------------------------------------------------------- /public/videos/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/controllers/registrations_controller_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'rails_helper' 4 | -------------------------------------------------------------------------------- /spec/csvable_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/csvable_spec.rb -------------------------------------------------------------------------------- /spec/factories/annotations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/annotations.rb -------------------------------------------------------------------------------- /spec/factories/answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/answers.rb -------------------------------------------------------------------------------- /spec/factories/api_clients.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/api_clients.rb -------------------------------------------------------------------------------- /spec/factories/api_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/api_logs.rb -------------------------------------------------------------------------------- /spec/factories/conditions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/conditions.rb -------------------------------------------------------------------------------- /spec/factories/contributors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/contributors.rb -------------------------------------------------------------------------------- /spec/factories/departments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/departments.rb -------------------------------------------------------------------------------- /spec/factories/exported_plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/exported_plans.rb -------------------------------------------------------------------------------- /spec/factories/guidance_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/guidance_groups.rb -------------------------------------------------------------------------------- /spec/factories/guidances.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/guidances.rb -------------------------------------------------------------------------------- /spec/factories/identifier_schemes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/identifier_schemes.rb -------------------------------------------------------------------------------- /spec/factories/identifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/identifiers.rb -------------------------------------------------------------------------------- /spec/factories/languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/languages.rb -------------------------------------------------------------------------------- /spec/factories/licenses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/licenses.rb -------------------------------------------------------------------------------- /spec/factories/metadata_standards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/metadata_standards.rb -------------------------------------------------------------------------------- /spec/factories/notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/notes.rb -------------------------------------------------------------------------------- /spec/factories/notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/notifications.rb -------------------------------------------------------------------------------- /spec/factories/oauth_access_grants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/oauth_access_grants.rb -------------------------------------------------------------------------------- /spec/factories/oauth_access_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/oauth_access_tokens.rb -------------------------------------------------------------------------------- /spec/factories/orgs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/orgs.rb -------------------------------------------------------------------------------- /spec/factories/perms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/perms.rb -------------------------------------------------------------------------------- /spec/factories/phases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/phases.rb -------------------------------------------------------------------------------- /spec/factories/plans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/plans.rb -------------------------------------------------------------------------------- /spec/factories/prefs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/prefs.rb -------------------------------------------------------------------------------- /spec/factories/question_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/question_formats.rb -------------------------------------------------------------------------------- /spec/factories/question_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/question_options.rb -------------------------------------------------------------------------------- /spec/factories/questions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/questions.rb -------------------------------------------------------------------------------- /spec/factories/regions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/regions.rb -------------------------------------------------------------------------------- /spec/factories/registry_orgs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/registry_orgs.rb -------------------------------------------------------------------------------- /spec/factories/related_identifiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/related_identifiers.rb -------------------------------------------------------------------------------- /spec/factories/repositories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/repositories.rb -------------------------------------------------------------------------------- /spec/factories/research_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/research_domains.rb -------------------------------------------------------------------------------- /spec/factories/research_outputs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/research_outputs.rb -------------------------------------------------------------------------------- /spec/factories/roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/roles.rb -------------------------------------------------------------------------------- /spec/factories/sections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/sections.rb -------------------------------------------------------------------------------- /spec/factories/stat_created_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/stat_created_plan.rb -------------------------------------------------------------------------------- /spec/factories/stat_joined_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/stat_joined_user.rb -------------------------------------------------------------------------------- /spec/factories/subscriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/subscriptions.rb -------------------------------------------------------------------------------- /spec/factories/templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/templates.rb -------------------------------------------------------------------------------- /spec/factories/themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/themes.rb -------------------------------------------------------------------------------- /spec/factories/trackers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/trackers.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/feedback_requests_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/feedback_requests_spec.rb -------------------------------------------------------------------------------- /spec/features/locales_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/locales_spec.rb -------------------------------------------------------------------------------- /spec/features/modal_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/modal_search_spec.rb -------------------------------------------------------------------------------- /spec/features/plans/exports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/plans/exports_spec.rb -------------------------------------------------------------------------------- /spec/features/plans_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/plans_spec.rb -------------------------------------------------------------------------------- /spec/features/registrations_spec.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'rails_helper' 4 | -------------------------------------------------------------------------------- /spec/features/super_admins/orgs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/super_admins/orgs_spec.rb -------------------------------------------------------------------------------- /spec/features/templates_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/features/templates_spec.rb -------------------------------------------------------------------------------- /spec/helpers/identifier_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/helpers/identifier_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/usage_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/helpers/usage_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/javascripts/accordion.js -------------------------------------------------------------------------------- /spec/javascripts/autoCompleteSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/javascripts/autoCompleteSpec.js -------------------------------------------------------------------------------- /spec/javascripts/debounceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/javascripts/debounceSpec.js -------------------------------------------------------------------------------- /spec/javascripts/isTypeSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/javascripts/isTypeSpec.js -------------------------------------------------------------------------------- /spec/javascripts/tinymceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/javascripts/tinymceSpec.js -------------------------------------------------------------------------------- /spec/karma/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/karma/unit.js -------------------------------------------------------------------------------- /spec/mixins/versionable_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/mixins/versionable_model.rb -------------------------------------------------------------------------------- /spec/models/annotation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/annotation_spec.rb -------------------------------------------------------------------------------- /spec/models/answer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/answer_spec.rb -------------------------------------------------------------------------------- /spec/models/api_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/api_client_spec.rb -------------------------------------------------------------------------------- /spec/models/api_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/api_log_spec.rb -------------------------------------------------------------------------------- /spec/models/condition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/condition_spec.rb -------------------------------------------------------------------------------- /spec/models/contributor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/contributor_spec.rb -------------------------------------------------------------------------------- /spec/models/department_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/department_spec.rb -------------------------------------------------------------------------------- /spec/models/exported_plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/exported_plan_spec.rb -------------------------------------------------------------------------------- /spec/models/guidance_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/guidance_group_spec.rb -------------------------------------------------------------------------------- /spec/models/guidance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/guidance_spec.rb -------------------------------------------------------------------------------- /spec/models/identifier_scheme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/identifier_scheme_spec.rb -------------------------------------------------------------------------------- /spec/models/identifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/identifier_spec.rb -------------------------------------------------------------------------------- /spec/models/language_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/language_spec.rb -------------------------------------------------------------------------------- /spec/models/license_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/license_spec.rb -------------------------------------------------------------------------------- /spec/models/note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/note_spec.rb -------------------------------------------------------------------------------- /spec/models/notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/notification_spec.rb -------------------------------------------------------------------------------- /spec/models/org_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/org_spec.rb -------------------------------------------------------------------------------- /spec/models/perm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/perm_spec.rb -------------------------------------------------------------------------------- /spec/models/phase_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/phase_spec.rb -------------------------------------------------------------------------------- /spec/models/plan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/plan_spec.rb -------------------------------------------------------------------------------- /spec/models/pref_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/pref_spec.rb -------------------------------------------------------------------------------- /spec/models/question_format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/question_format_spec.rb -------------------------------------------------------------------------------- /spec/models/question_option_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/question_option_spec.rb -------------------------------------------------------------------------------- /spec/models/question_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/question_spec.rb -------------------------------------------------------------------------------- /spec/models/region_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/region_spec.rb -------------------------------------------------------------------------------- /spec/models/registry_org_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/registry_org_spec.rb -------------------------------------------------------------------------------- /spec/models/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/repository_spec.rb -------------------------------------------------------------------------------- /spec/models/research_domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/research_domain_spec.rb -------------------------------------------------------------------------------- /spec/models/research_output_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/research_output_spec.rb -------------------------------------------------------------------------------- /spec/models/role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/role_spec.rb -------------------------------------------------------------------------------- /spec/models/section_sorter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/section_sorter_spec.rb -------------------------------------------------------------------------------- /spec/models/section_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/section_spec.rb -------------------------------------------------------------------------------- /spec/models/stat_joined_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/stat_joined_user_spec.rb -------------------------------------------------------------------------------- /spec/models/subscription_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/subscription_spec.rb -------------------------------------------------------------------------------- /spec/models/template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/template_spec.rb -------------------------------------------------------------------------------- /spec/models/theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/theme_spec.rb -------------------------------------------------------------------------------- /spec/models/tracker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/tracker_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/policies/usage_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/policies/usage_policy_spec.rb -------------------------------------------------------------------------------- /spec/presenters/plan_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/presenters/plan_presenter.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/services/dmp_id_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/services/dmp_id_service_spec.rb -------------------------------------------------------------------------------- /spec/services/locale_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/services/locale_service_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/capybara.rb -------------------------------------------------------------------------------- /spec/support/config_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/config_helper.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/faker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/faker.rb -------------------------------------------------------------------------------- /spec/support/helpers/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/helpers/api.rb -------------------------------------------------------------------------------- /spec/support/helpers/email_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/helpers/email_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/links_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/helpers/links_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/roles_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/helpers/roles_helper.rb -------------------------------------------------------------------------------- /spec/support/helpers/webmocks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/helpers/webmocks.rb -------------------------------------------------------------------------------- /spec/support/locales.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/locales.rb -------------------------------------------------------------------------------- /spec/support/mocks/dmphub/dmphub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/mocks/dmphub/dmphub.rb -------------------------------------------------------------------------------- /spec/support/mocks/dmphub/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/mocks/dmphub/error.json -------------------------------------------------------------------------------- /spec/support/mocks/logo_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/mocks/logo_file.png -------------------------------------------------------------------------------- /spec/support/shoulda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/shoulda.rb -------------------------------------------------------------------------------- /spec/support/wait_for_ajax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/spec/support/wait_for_ajax.rb -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDLUC3/dmptool/HEAD/yarn.lock --------------------------------------------------------------------------------