├── .codeclimate.yml ├── .env ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .rspec ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── fonts │ │ ├── roboto-light.ttf │ │ └── robotocondensed-regular.ttf │ ├── images │ │ ├── .keep │ │ ├── dalphi-logo.png │ │ ├── dalphi-logo.svg │ │ ├── done.svg │ │ ├── favicon.png │ │ ├── implisense-logo.png │ │ └── implisense-logo.svg │ ├── javascripts │ │ ├── annotation_document_manager.coffee │ │ ├── annotation_documents_editor.coffee │ │ ├── annotation_iteration.coffee │ │ ├── annotation_lifecycle.coffee │ │ ├── application.coffee │ │ ├── cable.coffee │ │ ├── channels │ │ │ └── .keep │ │ ├── clickable_table_row.coffee │ │ ├── compatibility_check_indicator.coffee │ │ ├── copy_to_clipboard.coffee │ │ ├── interface_test.coffee │ │ ├── interface_types_form.coffee │ │ ├── interfaces_form.coffee │ │ ├── navigation_handler.coffee │ │ ├── protocol_dropdown.coffee │ │ ├── raw_data_available_indicator.coffee │ │ ├── raw_data_editor.coffee │ │ ├── selected_interfaces.coffee │ │ └── service_available_indicator.coffee │ └── stylesheets │ │ ├── annotations.scss │ │ ├── annotators.scss │ │ ├── application.scss │ │ ├── application │ │ └── .keep │ │ ├── authentication.scss │ │ ├── bootstrap-overwrites.scss │ │ ├── connectivity-indicator.scss │ │ ├── content-container.scss │ │ ├── fonts.scss.erb │ │ ├── interfaces.scss │ │ ├── projects.scss │ │ ├── services.scss │ │ ├── sidebar.scss │ │ ├── statistics.scss │ │ ├── styleguide.scss │ │ ├── topbar.scss │ │ └── variables.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── annotation_documents_controller.rb │ ├── annotations_controller.rb │ ├── annotators_controller.rb │ ├── api │ │ ├── docs_controller.rb │ │ └── v1 │ │ │ ├── annotation_documents_controller.rb │ │ │ ├── base_controller.rb │ │ │ ├── error_model.rb │ │ │ ├── raw_data_controller.rb │ │ │ ├── statistics_controller.rb │ │ │ └── who_are_you_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ ├── error_response.rb │ │ └── service_roles.rb │ ├── interface_types_controller.rb │ ├── interfaces_controller.rb │ ├── projects_controller.rb │ ├── raw_data_controller.rb │ ├── services_controller.rb │ ├── sessions_controller.rb │ └── statistics_controller.rb ├── helpers │ ├── application_helper.rb │ └── breadcrumb_bakery.rb ├── jobs │ └── application_job.rb ├── mailers │ ├── annotator_project_assignment_mailer.rb │ ├── annotator_welcome_mailer.rb │ └── application_mailer.rb ├── models │ ├── admin.rb │ ├── annotation_document.rb │ ├── annotator.rb │ ├── application_record.rb │ ├── concerns │ │ └── url_response_checker.rb │ ├── interface.rb │ ├── interface_type.rb │ ├── project.rb │ ├── raw_datum.rb │ ├── service.rb │ └── statistic.rb ├── validators │ ├── annotation_document_validator.rb │ ├── http_response_validator.rb │ ├── interface_title_uniqueness_validator.rb │ ├── json_validator.rb │ ├── project_interfaces_validator.rb │ ├── project_service_validator.rb │ ├── service_interface_types_validator.rb │ └── website_components_validator.rb └── views │ ├── annotation_documents │ ├── index.slim │ └── show.slim │ ├── annotations │ ├── annotate.slim │ └── blankslate.slim │ ├── annotator_project_assignment_mailer │ ├── assign.slim │ ├── assign.text.erb │ ├── unassign.slim │ └── unassign.text.erb │ ├── annotator_welcome_mailer │ ├── with_password.slim │ ├── with_password.text.erb │ ├── without_password.slim │ └── without_password.text.erb │ ├── annotators │ ├── _form.slim │ ├── _projects.slim │ ├── edit.slim │ ├── index.slim │ ├── new.slim │ └── show.slim │ ├── application │ └── styleguide.slim │ ├── devise │ ├── mailer │ │ ├── reset_password_instructions.slim │ │ └── reset_password_instructions.text.erb │ ├── passwords │ │ ├── edit.slim │ │ └── new.slim │ ├── registrations │ │ ├── edit.slim │ │ └── new.slim │ ├── sessions │ │ └── new.slim │ └── shared │ │ └── _links.slim │ ├── interface_types │ └── edit.slim │ ├── interfaces │ ├── _form.slim │ ├── edit.slim │ ├── index.slim │ ├── new.slim │ ├── shared │ │ ├── _card.slim │ │ └── _item.slim │ └── show.slim │ ├── layouts │ ├── application.slim │ ├── mailer.slim │ └── mailer.text.erb │ ├── projects │ ├── _form.slim │ ├── _select_service.slim │ ├── dashboard │ │ ├── _interfaces.slim │ │ ├── _raw_data.slim │ │ ├── _services.slim │ │ └── services │ │ │ ├── _compatibility.slim │ │ │ └── _set_and_available.slim │ ├── edit.slim │ ├── index.slim │ ├── new.slim │ └── show.slim │ ├── raw_data │ ├── _form.slim │ ├── edit.slim │ ├── index.slim │ └── new.slim │ ├── services │ ├── _form.slim │ ├── edit.slim │ ├── index.slim │ ├── new.slim │ ├── role_services.slim │ └── shared │ │ ├── _card.slim │ │ ├── _connectivity_sign.slim │ │ └── _item.slim │ ├── shared │ ├── _annotation_documents.slim │ ├── _button.slim │ ├── _button_content.slim │ ├── _flash.slim │ ├── _project_header.slim │ ├── _project_tabs.slim │ ├── _sidebar.slim │ ├── _tabs.slim │ ├── _topbar.slim │ └── blank_slates │ │ ├── _annotate.slim │ │ ├── _annotation_documents.slim │ │ └── _raw_data.slim │ └── statistics │ ├── _graphs.slim │ ├── _table.slim │ └── index.slim ├── bin ├── bundle ├── ci ├── code-analyzers ├── delayed_job ├── deploy ├── helpers │ ├── brakeman │ ├── coffee-lint │ ├── coverage │ ├── debug-statements │ ├── git-merge │ ├── message │ ├── migration │ ├── rails-best-practices │ ├── reek │ ├── rspec │ ├── rubocop │ ├── scss-lint │ ├── slim-lint │ └── teaspoon ├── linters ├── rails ├── rake ├── setup ├── spring ├── start ├── test └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── cable.yml.erb ├── dalphi.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_record_belongs_to_required_by_default.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── callback_terminator.rb │ ├── chartkick.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── gravatar_image_tag.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── paperclip.rb │ ├── per_form_csrf_tokens.rb │ ├── redis.rb │ ├── request_forgery_protection.rb │ ├── rubyzip.rb │ ├── session_store.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ ├── swagger_docs.rb │ └── wrap_parameters.rb ├── linters │ ├── coffeelint.json │ ├── reek.helpers.yml │ ├── reek.yml │ ├── rubocop.yml │ ├── scss-lint.yml │ └── slim-lint.yml ├── locales │ ├── activerecord.en.yml │ ├── admin.en.yml │ ├── annotation_documents.en.yml │ ├── annotators.en.yml │ ├── api.en.yml │ ├── api_errors.yml │ ├── breadcrumb_exceptions.en.yml │ ├── devise.en.yml │ ├── en.yml │ ├── enums.en.yml │ ├── interface_types.en.yml │ ├── interfaces.en.yml │ ├── mailers.en.yml │ ├── projects.en.yml │ ├── raw_data.en.yml │ ├── services.en.yml │ ├── sidebar.en.yml │ ├── simple_form.en.yml │ └── statistics.en.yml ├── puma.rb ├── rails_best_practices.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20160411124723_create_projects.rb │ ├── 20160411124801_create_raw_data.rb │ ├── 20160411124849_add_attachment_data_to_raw_data.rb │ ├── 20160411124927_devise_create_users.rb │ ├── 20160411150443_add_user_to_projects.rb │ ├── 20160411150644_add_project_to_raw_data.rb │ ├── 20160413091701_create_delayed_jobs.rb │ ├── 20160420130620_create_services.rb │ ├── 20160426085322_rename_service_roll_to_role.rb │ ├── 20160426150224_rename_service_capability_to_problem_id.rb │ ├── 20160506164236_add_service_references_to_project.rb │ ├── 20160531081559_add_merge_service_reference_to_project.rb │ ├── 20160531102500_create_annotation_documents.rb │ ├── 20160531102642_add_attachment_content_to_annotation_documents.rb │ ├── 20160531102941_add_raw_datum_reference_to_annotation_document.rb │ ├── 20160531151835_add_filename_to_raw_data.rb │ ├── 20160601124141_add_project_reference_to_annotation_document.rb │ ├── 20160609120034_change_annotation_documents_type_to_interface_type.rb │ ├── 20160609171729_change_content_of_annotation_documents_to_be_text.rb │ ├── 20160609190704_change_annotation_document_index.rb │ ├── 20160614100350_refactor_annotation_documents_to_be_more_generic.rb │ ├── 20160615095335_change_service_problem_id_to_string.rb │ ├── 20160629092831_create_interfaces.rb │ ├── 20160629151147_change_interface_type_in_annotation_document.rb │ ├── 20160706082354_add_interface_types_to_services.rb │ ├── 20160706094601_change_interface_type_of_interfaces.rb │ ├── 20160706134743_create_join_table_interface_project.rb │ ├── 20160706141042_add_compiled_code_to_interfaces.rb │ ├── 20160712121210_add_requested_at_to_annotation_document.rb │ ├── 20160825161109_delete_active_learning_service_from_projects.rb │ ├── 20160825174312_refactor_bootstrap_service_to_iterate_service.rb │ ├── 20160830101939_add_attachment_template_to_interfaces.rb │ ├── 20160830102840_add_attachment_stylesheet_to_interfaces.rb │ ├── 20160830103035_add_attachment_java_script_to_interfaces.rb │ ├── 20160830123153_create_interface_types.rb │ ├── 20160830131431_add_interface_type_to_interface.rb │ ├── 20160830133804_remove_interface_type_string_from_interface.rb │ ├── 20160830135732_remove_interface_type_string_from_services.rb │ ├── 20160830140521_add_interface_type_relations_to_services.rb │ ├── 20160830144815_remove_interface_type_string_from_annotation_documents.rb │ ├── 20160830145004_add_interface_types_to_annotation_documents.rb │ ├── 20160907110204_create_statistics.rb │ ├── 20160907114349_add_project_to_statistics.rb │ ├── 20160923141257_rename_user_to_admin.rb │ ├── 20161011130138_devise_create_annotators.rb │ ├── 20161011130154_add_name_to_annotators.rb │ ├── 20161011140404_create_join_table_annotator_project.rb │ ├── 20161011144622_add_annotable_to_annotation_documents.rb │ └── 20170118112300_add_meta_to_annotation_documents.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── lib ├── assets │ └── .keep ├── tasks │ └── .keep └── templates │ └── slim │ └── scaffold │ └── _form.html.slim ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── api │ └── swagger ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── javascripts │ └── autocomplete-rails.js └── robots.txt ├── spec ├── controllers │ ├── .keep │ └── annotators_controller_spec.rb ├── factories │ ├── admins.rb │ ├── annotation_documents.rb │ ├── annotators.rb │ ├── interface_types.rb │ ├── interfaces.rb │ ├── projects.rb │ ├── raw_data.rb │ ├── services.rb │ └── statistics.rb ├── feature_test_helper.rb ├── features │ └── project_selection_spec.rb ├── fixtures │ ├── image │ │ └── implisense-logo.png │ ├── interfaces │ │ ├── empty.css │ │ ├── empty.html │ │ ├── empty.js │ │ ├── ner_complete.html │ │ ├── text_nominal.css │ │ ├── text_nominal.html │ │ ├── text_nominal.js │ │ ├── text_nominal_invalid.css │ │ └── text_nominal_invalid.js │ ├── service_headers │ │ ├── iterate │ │ ├── machine_learning │ │ └── merge │ ├── text │ │ ├── 2000-06-08-com.handelsblatt.www.in9r34todujsm7zd5sk4ba0n.txt │ │ ├── annotation_documnent_payload_real_world.txt │ │ ├── data.json │ │ ├── invalid.bin │ │ ├── invalid1.bin │ │ ├── invalid2.bin │ │ ├── ipsum.txt │ │ ├── lorem.txt │ │ ├── lorem_first_chunk.txt │ │ ├── lorem_second_chunk.txt │ │ ├── merged.txt │ │ ├── spiegel.txt │ │ ├── unmerged.txt │ │ ├── valid.md │ │ ├── valid1.md │ │ └── valid2.md │ └── zip │ │ ├── invalid.zip │ │ ├── linux_encoding.zip │ │ ├── mac_encoding.zip │ │ ├── partially-valid.zip │ │ ├── subdirectory1.zip │ │ ├── subdirectory2.zip │ │ └── valid.zip ├── helpers │ └── .keep ├── javascripts │ ├── fixtures │ │ └── parameters.slim │ ├── spec_helper.coffee │ └── support │ │ └── annotation_document_manager_spec.coffee ├── mailers │ └── previews │ │ ├── annotator_project_assignment_preview.rb │ │ └── annotator_welcome_preview.rb ├── models │ ├── admin_spec.rb │ ├── annotation_document_spec.rb │ ├── annotator_spec.rb │ ├── interface_spec.rb │ ├── interface_type_spec.rb │ ├── project_spec.rb │ ├── raw_datum_spec.rb │ ├── service_spec.rb │ └── statistic_spec.rb ├── rails_helper.rb ├── requests │ ├── annotation_documents_spec.rb │ ├── annotations │ │ └── annotate_spec.rb │ ├── annotators │ │ └── create_spec.rb │ ├── api │ │ ├── redirect_spec.rb │ │ └── v1 │ │ │ ├── annotation_documents_spec.rb │ │ │ ├── raw_data_spec.rb │ │ │ ├── statistics_spec.rb │ │ │ └── who_are_you_spec.rb │ ├── authentication_spec.rb │ ├── interface_types │ │ └── update_spec.rb │ ├── interfaces │ │ ├── create_spec.rb │ │ ├── destory_spec.rb │ │ ├── refresh_spec.rb │ │ └── update_spec.rb │ ├── projects │ │ ├── annotation_documents │ │ │ └── destroy_all_spec.rb │ │ ├── check_interfaces_spec.rb │ │ ├── check_problem_identifiers_spec.rb │ │ ├── create_spec.rb │ │ ├── destroy_spec.rb │ │ ├── iterate_spec.rb │ │ ├── merge_spec.rb │ │ ├── raw_data │ │ │ ├── create_spec.rb │ │ │ ├── destroy_all_spec.rb │ │ │ ├── destroy_spec.rb │ │ │ ├── index_spec.rb │ │ │ └── update_spec.rb │ │ ├── setup_spec.rb │ │ └── update_spec.rb │ ├── services │ │ ├── check_connectivity_spec.rb │ │ ├── create_spec.rb │ │ ├── destroy_spec.rb │ │ ├── refresh_spec.rb │ │ └── update_spec.rb │ ├── services_spec.rb │ └── smoke_test_spec.rb ├── routing │ ├── .keep │ └── projects_routing_spec.rb ├── spec_helper.rb ├── support │ ├── annotation_document_helper.rb │ ├── datetime_helpers.rb │ ├── devise_request_spec_helpers.rb │ └── service_helper.rb └── teaspoon_env.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | DOMAIN=localhost 2 | PORT=3000 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg -diff 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/fonts/roboto-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/fonts/roboto-light.ttf -------------------------------------------------------------------------------- /app/assets/fonts/robotocondensed-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/fonts/robotocondensed-regular.ttf -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/dalphi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/images/dalphi-logo.png -------------------------------------------------------------------------------- /app/assets/images/dalphi-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/images/dalphi-logo.svg -------------------------------------------------------------------------------- /app/assets/images/done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/images/done.svg -------------------------------------------------------------------------------- /app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/images/favicon.png -------------------------------------------------------------------------------- /app/assets/images/implisense-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/images/implisense-logo.png -------------------------------------------------------------------------------- /app/assets/images/implisense-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/images/implisense-logo.svg -------------------------------------------------------------------------------- /app/assets/javascripts/annotation_document_manager.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/annotation_document_manager.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/annotation_documents_editor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/annotation_documents_editor.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/annotation_iteration.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/annotation_iteration.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/annotation_lifecycle.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/annotation_lifecycle.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/application.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/cable.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/cable.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/clickable_table_row.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/clickable_table_row.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/compatibility_check_indicator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/compatibility_check_indicator.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/copy_to_clipboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/copy_to_clipboard.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/interface_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/interface_test.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/interface_types_form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/interface_types_form.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/interfaces_form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/interfaces_form.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/navigation_handler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/navigation_handler.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/protocol_dropdown.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/protocol_dropdown.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/raw_data_available_indicator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/raw_data_available_indicator.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/raw_data_editor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/raw_data_editor.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/selected_interfaces.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/selected_interfaces.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/service_available_indicator.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/javascripts/service_available_indicator.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/annotations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/annotations.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/annotators.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/annotators.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/authentication.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/authentication.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap-overwrites.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/bootstrap-overwrites.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/connectivity-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/connectivity-indicator.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/content-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/content-container.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/fonts.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/fonts.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/interfaces.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/interfaces.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/projects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/projects.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/services.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/services.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/sidebar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/statistics.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/statistics.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/styleguide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/styleguide.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/topbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/assets/stylesheets/variables.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/annotation_documents_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/annotation_documents_controller.rb -------------------------------------------------------------------------------- /app/controllers/annotations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/annotations_controller.rb -------------------------------------------------------------------------------- /app/controllers/annotators_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/annotators_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/docs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/docs_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/annotation_documents_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/v1/annotation_documents_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/v1/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/error_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/v1/error_model.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/raw_data_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/v1/raw_data_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/statistics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/v1/statistics_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/who_are_you_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/api/v1/who_are_you_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/error_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/concerns/error_response.rb -------------------------------------------------------------------------------- /app/controllers/concerns/service_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/concerns/service_roles.rb -------------------------------------------------------------------------------- /app/controllers/interface_types_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/interface_types_controller.rb -------------------------------------------------------------------------------- /app/controllers/interfaces_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/interfaces_controller.rb -------------------------------------------------------------------------------- /app/controllers/projects_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/projects_controller.rb -------------------------------------------------------------------------------- /app/controllers/raw_data_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/raw_data_controller.rb -------------------------------------------------------------------------------- /app/controllers/services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/services_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/statistics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/controllers/statistics_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/breadcrumb_bakery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/helpers/breadcrumb_bakery.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/annotator_project_assignment_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/mailers/annotator_project_assignment_mailer.rb -------------------------------------------------------------------------------- /app/mailers/annotator_welcome_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/mailers/annotator_welcome_mailer.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/admin.rb -------------------------------------------------------------------------------- /app/models/annotation_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/annotation_document.rb -------------------------------------------------------------------------------- /app/models/annotator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/annotator.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/url_response_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/concerns/url_response_checker.rb -------------------------------------------------------------------------------- /app/models/interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/interface.rb -------------------------------------------------------------------------------- /app/models/interface_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/interface_type.rb -------------------------------------------------------------------------------- /app/models/project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/project.rb -------------------------------------------------------------------------------- /app/models/raw_datum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/raw_datum.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/statistic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/models/statistic.rb -------------------------------------------------------------------------------- /app/validators/annotation_document_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/annotation_document_validator.rb -------------------------------------------------------------------------------- /app/validators/http_response_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/http_response_validator.rb -------------------------------------------------------------------------------- /app/validators/interface_title_uniqueness_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/interface_title_uniqueness_validator.rb -------------------------------------------------------------------------------- /app/validators/json_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/json_validator.rb -------------------------------------------------------------------------------- /app/validators/project_interfaces_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/project_interfaces_validator.rb -------------------------------------------------------------------------------- /app/validators/project_service_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/project_service_validator.rb -------------------------------------------------------------------------------- /app/validators/service_interface_types_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/service_interface_types_validator.rb -------------------------------------------------------------------------------- /app/validators/website_components_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/validators/website_components_validator.rb -------------------------------------------------------------------------------- /app/views/annotation_documents/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotation_documents/index.slim -------------------------------------------------------------------------------- /app/views/annotation_documents/show.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotation_documents/show.slim -------------------------------------------------------------------------------- /app/views/annotations/annotate.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotations/annotate.slim -------------------------------------------------------------------------------- /app/views/annotations/blankslate.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotations/blankslate.slim -------------------------------------------------------------------------------- /app/views/annotator_project_assignment_mailer/assign.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_project_assignment_mailer/assign.slim -------------------------------------------------------------------------------- /app/views/annotator_project_assignment_mailer/assign.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_project_assignment_mailer/assign.text.erb -------------------------------------------------------------------------------- /app/views/annotator_project_assignment_mailer/unassign.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_project_assignment_mailer/unassign.slim -------------------------------------------------------------------------------- /app/views/annotator_project_assignment_mailer/unassign.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_project_assignment_mailer/unassign.text.erb -------------------------------------------------------------------------------- /app/views/annotator_welcome_mailer/with_password.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_welcome_mailer/with_password.slim -------------------------------------------------------------------------------- /app/views/annotator_welcome_mailer/with_password.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_welcome_mailer/with_password.text.erb -------------------------------------------------------------------------------- /app/views/annotator_welcome_mailer/without_password.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_welcome_mailer/without_password.slim -------------------------------------------------------------------------------- /app/views/annotator_welcome_mailer/without_password.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotator_welcome_mailer/without_password.text.erb -------------------------------------------------------------------------------- /app/views/annotators/_form.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotators/_form.slim -------------------------------------------------------------------------------- /app/views/annotators/_projects.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotators/_projects.slim -------------------------------------------------------------------------------- /app/views/annotators/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotators/edit.slim -------------------------------------------------------------------------------- /app/views/annotators/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotators/index.slim -------------------------------------------------------------------------------- /app/views/annotators/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotators/new.slim -------------------------------------------------------------------------------- /app/views/annotators/show.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/annotators/show.slim -------------------------------------------------------------------------------- /app/views/application/styleguide.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/application/styleguide.slim -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/mailer/reset_password_instructions.slim -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/mailer/reset_password_instructions.text.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/passwords/edit.slim -------------------------------------------------------------------------------- /app/views/devise/passwords/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/passwords/new.slim -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/registrations/edit.slim -------------------------------------------------------------------------------- /app/views/devise/registrations/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/registrations/new.slim -------------------------------------------------------------------------------- /app/views/devise/sessions/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/sessions/new.slim -------------------------------------------------------------------------------- /app/views/devise/shared/_links.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/devise/shared/_links.slim -------------------------------------------------------------------------------- /app/views/interface_types/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interface_types/edit.slim -------------------------------------------------------------------------------- /app/views/interfaces/_form.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/_form.slim -------------------------------------------------------------------------------- /app/views/interfaces/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/edit.slim -------------------------------------------------------------------------------- /app/views/interfaces/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/index.slim -------------------------------------------------------------------------------- /app/views/interfaces/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/new.slim -------------------------------------------------------------------------------- /app/views/interfaces/shared/_card.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/shared/_card.slim -------------------------------------------------------------------------------- /app/views/interfaces/shared/_item.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/shared/_item.slim -------------------------------------------------------------------------------- /app/views/interfaces/show.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/interfaces/show.slim -------------------------------------------------------------------------------- /app/views/layouts/application.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/layouts/application.slim -------------------------------------------------------------------------------- /app/views/layouts/mailer.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/layouts/mailer.slim -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/projects/_form.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/_form.slim -------------------------------------------------------------------------------- /app/views/projects/_select_service.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/_select_service.slim -------------------------------------------------------------------------------- /app/views/projects/dashboard/_interfaces.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/dashboard/_interfaces.slim -------------------------------------------------------------------------------- /app/views/projects/dashboard/_raw_data.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/dashboard/_raw_data.slim -------------------------------------------------------------------------------- /app/views/projects/dashboard/_services.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/dashboard/_services.slim -------------------------------------------------------------------------------- /app/views/projects/dashboard/services/_compatibility.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/dashboard/services/_compatibility.slim -------------------------------------------------------------------------------- /app/views/projects/dashboard/services/_set_and_available.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/dashboard/services/_set_and_available.slim -------------------------------------------------------------------------------- /app/views/projects/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/edit.slim -------------------------------------------------------------------------------- /app/views/projects/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/index.slim -------------------------------------------------------------------------------- /app/views/projects/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/new.slim -------------------------------------------------------------------------------- /app/views/projects/show.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/projects/show.slim -------------------------------------------------------------------------------- /app/views/raw_data/_form.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/raw_data/_form.slim -------------------------------------------------------------------------------- /app/views/raw_data/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/raw_data/edit.slim -------------------------------------------------------------------------------- /app/views/raw_data/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/raw_data/index.slim -------------------------------------------------------------------------------- /app/views/raw_data/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/raw_data/new.slim -------------------------------------------------------------------------------- /app/views/services/_form.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/_form.slim -------------------------------------------------------------------------------- /app/views/services/edit.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/edit.slim -------------------------------------------------------------------------------- /app/views/services/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/index.slim -------------------------------------------------------------------------------- /app/views/services/new.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/new.slim -------------------------------------------------------------------------------- /app/views/services/role_services.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/role_services.slim -------------------------------------------------------------------------------- /app/views/services/shared/_card.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/shared/_card.slim -------------------------------------------------------------------------------- /app/views/services/shared/_connectivity_sign.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/shared/_connectivity_sign.slim -------------------------------------------------------------------------------- /app/views/services/shared/_item.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/services/shared/_item.slim -------------------------------------------------------------------------------- /app/views/shared/_annotation_documents.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_annotation_documents.slim -------------------------------------------------------------------------------- /app/views/shared/_button.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_button.slim -------------------------------------------------------------------------------- /app/views/shared/_button_content.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_button_content.slim -------------------------------------------------------------------------------- /app/views/shared/_flash.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_flash.slim -------------------------------------------------------------------------------- /app/views/shared/_project_header.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_project_header.slim -------------------------------------------------------------------------------- /app/views/shared/_project_tabs.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_project_tabs.slim -------------------------------------------------------------------------------- /app/views/shared/_sidebar.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_sidebar.slim -------------------------------------------------------------------------------- /app/views/shared/_tabs.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_tabs.slim -------------------------------------------------------------------------------- /app/views/shared/_topbar.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/_topbar.slim -------------------------------------------------------------------------------- /app/views/shared/blank_slates/_annotate.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/blank_slates/_annotate.slim -------------------------------------------------------------------------------- /app/views/shared/blank_slates/_annotation_documents.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/blank_slates/_annotation_documents.slim -------------------------------------------------------------------------------- /app/views/shared/blank_slates/_raw_data.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/shared/blank_slates/_raw_data.slim -------------------------------------------------------------------------------- /app/views/statistics/_graphs.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/statistics/_graphs.slim -------------------------------------------------------------------------------- /app/views/statistics/_table.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/statistics/_table.slim -------------------------------------------------------------------------------- /app/views/statistics/index.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/app/views/statistics/index.slim -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/ci -------------------------------------------------------------------------------- /bin/code-analyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/code-analyzers -------------------------------------------------------------------------------- /bin/delayed_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/delayed_job -------------------------------------------------------------------------------- /bin/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/deploy -------------------------------------------------------------------------------- /bin/helpers/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/brakeman -------------------------------------------------------------------------------- /bin/helpers/coffee-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/coffee-lint -------------------------------------------------------------------------------- /bin/helpers/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/coverage -------------------------------------------------------------------------------- /bin/helpers/debug-statements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/debug-statements -------------------------------------------------------------------------------- /bin/helpers/git-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/git-merge -------------------------------------------------------------------------------- /bin/helpers/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/message -------------------------------------------------------------------------------- /bin/helpers/migration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/migration -------------------------------------------------------------------------------- /bin/helpers/rails-best-practices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/rails-best-practices -------------------------------------------------------------------------------- /bin/helpers/reek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/reek -------------------------------------------------------------------------------- /bin/helpers/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/rspec -------------------------------------------------------------------------------- /bin/helpers/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/rubocop -------------------------------------------------------------------------------- /bin/helpers/scss-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/scss-lint -------------------------------------------------------------------------------- /bin/helpers/slim-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/slim-lint -------------------------------------------------------------------------------- /bin/helpers/teaspoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/helpers/teaspoon -------------------------------------------------------------------------------- /bin/linters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/linters -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/start -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/test -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cable.yml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/cable.yml.erb -------------------------------------------------------------------------------- /config/dalphi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/dalphi.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_record_belongs_to_required_by_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/active_record_belongs_to_required_by_default.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/callback_terminator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/callback_terminator.rb -------------------------------------------------------------------------------- /config/initializers/chartkick.rb: -------------------------------------------------------------------------------- 1 | Chartkick.options = { 2 | colors: ['#93B449'] 3 | } 4 | -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/gravatar_image_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/gravatar_image_tag.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paperclip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/paperclip.rb -------------------------------------------------------------------------------- /config/initializers/per_form_csrf_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/per_form_csrf_tokens.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/request_forgery_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/request_forgery_protection.rb -------------------------------------------------------------------------------- /config/initializers/rubyzip.rb: -------------------------------------------------------------------------------- 1 | require 'zip' 2 | 3 | Zip.unicode_names = true 4 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/swagger_docs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/swagger_docs.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/linters/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/linters/coffeelint.json -------------------------------------------------------------------------------- /config/linters/reek.helpers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/linters/reek.helpers.yml -------------------------------------------------------------------------------- /config/linters/reek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/linters/reek.yml -------------------------------------------------------------------------------- /config/linters/rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/linters/rubocop.yml -------------------------------------------------------------------------------- /config/linters/scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/linters/scss-lint.yml -------------------------------------------------------------------------------- /config/linters/slim-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/linters/slim-lint.yml -------------------------------------------------------------------------------- /config/locales/activerecord.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/activerecord.en.yml -------------------------------------------------------------------------------- /config/locales/admin.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/admin.en.yml -------------------------------------------------------------------------------- /config/locales/annotation_documents.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/annotation_documents.en.yml -------------------------------------------------------------------------------- /config/locales/annotators.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/annotators.en.yml -------------------------------------------------------------------------------- /config/locales/api.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/api.en.yml -------------------------------------------------------------------------------- /config/locales/api_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/api_errors.yml -------------------------------------------------------------------------------- /config/locales/breadcrumb_exceptions.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/breadcrumb_exceptions.en.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/enums.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/enums.en.yml -------------------------------------------------------------------------------- /config/locales/interface_types.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/interface_types.en.yml -------------------------------------------------------------------------------- /config/locales/interfaces.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/interfaces.en.yml -------------------------------------------------------------------------------- /config/locales/mailers.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/mailers.en.yml -------------------------------------------------------------------------------- /config/locales/projects.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/projects.en.yml -------------------------------------------------------------------------------- /config/locales/raw_data.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/raw_data.en.yml -------------------------------------------------------------------------------- /config/locales/services.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/services.en.yml -------------------------------------------------------------------------------- /config/locales/sidebar.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/sidebar.en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/locales/statistics.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/locales/statistics.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/rails_best_practices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/rails_best_practices.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/migrate/20160411124723_create_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160411124723_create_projects.rb -------------------------------------------------------------------------------- /db/migrate/20160411124801_create_raw_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160411124801_create_raw_data.rb -------------------------------------------------------------------------------- /db/migrate/20160411124849_add_attachment_data_to_raw_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160411124849_add_attachment_data_to_raw_data.rb -------------------------------------------------------------------------------- /db/migrate/20160411124927_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160411124927_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20160411150443_add_user_to_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160411150443_add_user_to_projects.rb -------------------------------------------------------------------------------- /db/migrate/20160411150644_add_project_to_raw_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160411150644_add_project_to_raw_data.rb -------------------------------------------------------------------------------- /db/migrate/20160413091701_create_delayed_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160413091701_create_delayed_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20160420130620_create_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160420130620_create_services.rb -------------------------------------------------------------------------------- /db/migrate/20160426085322_rename_service_roll_to_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160426085322_rename_service_roll_to_role.rb -------------------------------------------------------------------------------- /db/migrate/20160426150224_rename_service_capability_to_problem_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160426150224_rename_service_capability_to_problem_id.rb -------------------------------------------------------------------------------- /db/migrate/20160506164236_add_service_references_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160506164236_add_service_references_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20160531081559_add_merge_service_reference_to_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160531081559_add_merge_service_reference_to_project.rb -------------------------------------------------------------------------------- /db/migrate/20160531102500_create_annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160531102500_create_annotation_documents.rb -------------------------------------------------------------------------------- /db/migrate/20160531102642_add_attachment_content_to_annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160531102642_add_attachment_content_to_annotation_documents.rb -------------------------------------------------------------------------------- /db/migrate/20160531102941_add_raw_datum_reference_to_annotation_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160531102941_add_raw_datum_reference_to_annotation_document.rb -------------------------------------------------------------------------------- /db/migrate/20160531151835_add_filename_to_raw_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160531151835_add_filename_to_raw_data.rb -------------------------------------------------------------------------------- /db/migrate/20160601124141_add_project_reference_to_annotation_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160601124141_add_project_reference_to_annotation_document.rb -------------------------------------------------------------------------------- /db/migrate/20160609120034_change_annotation_documents_type_to_interface_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160609120034_change_annotation_documents_type_to_interface_type.rb -------------------------------------------------------------------------------- /db/migrate/20160609171729_change_content_of_annotation_documents_to_be_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160609171729_change_content_of_annotation_documents_to_be_text.rb -------------------------------------------------------------------------------- /db/migrate/20160609190704_change_annotation_document_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160609190704_change_annotation_document_index.rb -------------------------------------------------------------------------------- /db/migrate/20160614100350_refactor_annotation_documents_to_be_more_generic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160614100350_refactor_annotation_documents_to_be_more_generic.rb -------------------------------------------------------------------------------- /db/migrate/20160615095335_change_service_problem_id_to_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160615095335_change_service_problem_id_to_string.rb -------------------------------------------------------------------------------- /db/migrate/20160629092831_create_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160629092831_create_interfaces.rb -------------------------------------------------------------------------------- /db/migrate/20160629151147_change_interface_type_in_annotation_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160629151147_change_interface_type_in_annotation_document.rb -------------------------------------------------------------------------------- /db/migrate/20160706082354_add_interface_types_to_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160706082354_add_interface_types_to_services.rb -------------------------------------------------------------------------------- /db/migrate/20160706094601_change_interface_type_of_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160706094601_change_interface_type_of_interfaces.rb -------------------------------------------------------------------------------- /db/migrate/20160706134743_create_join_table_interface_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160706134743_create_join_table_interface_project.rb -------------------------------------------------------------------------------- /db/migrate/20160706141042_add_compiled_code_to_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160706141042_add_compiled_code_to_interfaces.rb -------------------------------------------------------------------------------- /db/migrate/20160712121210_add_requested_at_to_annotation_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160712121210_add_requested_at_to_annotation_document.rb -------------------------------------------------------------------------------- /db/migrate/20160825161109_delete_active_learning_service_from_projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160825161109_delete_active_learning_service_from_projects.rb -------------------------------------------------------------------------------- /db/migrate/20160825174312_refactor_bootstrap_service_to_iterate_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160825174312_refactor_bootstrap_service_to_iterate_service.rb -------------------------------------------------------------------------------- /db/migrate/20160830101939_add_attachment_template_to_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830101939_add_attachment_template_to_interfaces.rb -------------------------------------------------------------------------------- /db/migrate/20160830102840_add_attachment_stylesheet_to_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830102840_add_attachment_stylesheet_to_interfaces.rb -------------------------------------------------------------------------------- /db/migrate/20160830103035_add_attachment_java_script_to_interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830103035_add_attachment_java_script_to_interfaces.rb -------------------------------------------------------------------------------- /db/migrate/20160830123153_create_interface_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830123153_create_interface_types.rb -------------------------------------------------------------------------------- /db/migrate/20160830131431_add_interface_type_to_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830131431_add_interface_type_to_interface.rb -------------------------------------------------------------------------------- /db/migrate/20160830133804_remove_interface_type_string_from_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830133804_remove_interface_type_string_from_interface.rb -------------------------------------------------------------------------------- /db/migrate/20160830135732_remove_interface_type_string_from_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830135732_remove_interface_type_string_from_services.rb -------------------------------------------------------------------------------- /db/migrate/20160830140521_add_interface_type_relations_to_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830140521_add_interface_type_relations_to_services.rb -------------------------------------------------------------------------------- /db/migrate/20160830144815_remove_interface_type_string_from_annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830144815_remove_interface_type_string_from_annotation_documents.rb -------------------------------------------------------------------------------- /db/migrate/20160830145004_add_interface_types_to_annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160830145004_add_interface_types_to_annotation_documents.rb -------------------------------------------------------------------------------- /db/migrate/20160907110204_create_statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160907110204_create_statistics.rb -------------------------------------------------------------------------------- /db/migrate/20160907114349_add_project_to_statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160907114349_add_project_to_statistics.rb -------------------------------------------------------------------------------- /db/migrate/20160923141257_rename_user_to_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20160923141257_rename_user_to_admin.rb -------------------------------------------------------------------------------- /db/migrate/20161011130138_devise_create_annotators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20161011130138_devise_create_annotators.rb -------------------------------------------------------------------------------- /db/migrate/20161011130154_add_name_to_annotators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20161011130154_add_name_to_annotators.rb -------------------------------------------------------------------------------- /db/migrate/20161011140404_create_join_table_annotator_project.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20161011140404_create_join_table_annotator_project.rb -------------------------------------------------------------------------------- /db/migrate/20161011144622_add_annotable_to_annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20161011144622_add_annotable_to_annotation_documents.rb -------------------------------------------------------------------------------- /db/migrate/20170118112300_add_meta_to_annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/migrate/20170118112300_add_meta_to_annotation_documents.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/templates/slim/scaffold/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/lib/templates/slim/scaffold/_form.html.slim -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/public/500.html -------------------------------------------------------------------------------- /public/api/swagger: -------------------------------------------------------------------------------- 1 | ../../lib/components/swagger-ui/dist -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/javascripts/autocomplete-rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/public/javascripts/autocomplete-rails.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/controllers/annotators_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/controllers/annotators_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories/admins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/admins.rb -------------------------------------------------------------------------------- /spec/factories/annotation_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/annotation_documents.rb -------------------------------------------------------------------------------- /spec/factories/annotators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/annotators.rb -------------------------------------------------------------------------------- /spec/factories/interface_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/interface_types.rb -------------------------------------------------------------------------------- /spec/factories/interfaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/interfaces.rb -------------------------------------------------------------------------------- /spec/factories/projects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/projects.rb -------------------------------------------------------------------------------- /spec/factories/raw_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/raw_data.rb -------------------------------------------------------------------------------- /spec/factories/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/services.rb -------------------------------------------------------------------------------- /spec/factories/statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/factories/statistics.rb -------------------------------------------------------------------------------- /spec/feature_test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/feature_test_helper.rb -------------------------------------------------------------------------------- /spec/features/project_selection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/features/project_selection_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/image/implisense-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/image/implisense-logo.png -------------------------------------------------------------------------------- /spec/fixtures/interfaces/empty.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/interfaces/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/interfaces/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/interfaces/ner_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/interfaces/ner_complete.html -------------------------------------------------------------------------------- /spec/fixtures/interfaces/text_nominal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/interfaces/text_nominal.css -------------------------------------------------------------------------------- /spec/fixtures/interfaces/text_nominal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/interfaces/text_nominal.html -------------------------------------------------------------------------------- /spec/fixtures/interfaces/text_nominal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/interfaces/text_nominal.js -------------------------------------------------------------------------------- /spec/fixtures/interfaces/text_nominal_invalid.css: -------------------------------------------------------------------------------- 1 | p { text-align: very-middel & font-size: large }; 2 | -------------------------------------------------------------------------------- /spec/fixtures/interfaces/text_nominal_invalid.js: -------------------------------------------------------------------------------- 1 | alert(this is not a JS string!) -> if 0 2 | -------------------------------------------------------------------------------- /spec/fixtures/service_headers/iterate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/service_headers/iterate -------------------------------------------------------------------------------- /spec/fixtures/service_headers/machine_learning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/service_headers/machine_learning -------------------------------------------------------------------------------- /spec/fixtures/service_headers/merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/service_headers/merge -------------------------------------------------------------------------------- /spec/fixtures/text/2000-06-08-com.handelsblatt.www.in9r34todujsm7zd5sk4ba0n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/2000-06-08-com.handelsblatt.www.in9r34todujsm7zd5sk4ba0n.txt -------------------------------------------------------------------------------- /spec/fixtures/text/annotation_documnent_payload_real_world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/annotation_documnent_payload_real_world.txt -------------------------------------------------------------------------------- /spec/fixtures/text/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/data.json -------------------------------------------------------------------------------- /spec/fixtures/text/invalid.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/invalid.bin -------------------------------------------------------------------------------- /spec/fixtures/text/invalid1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/invalid1.bin -------------------------------------------------------------------------------- /spec/fixtures/text/invalid2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/invalid2.bin -------------------------------------------------------------------------------- /spec/fixtures/text/ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/ipsum.txt -------------------------------------------------------------------------------- /spec/fixtures/text/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/lorem.txt -------------------------------------------------------------------------------- /spec/fixtures/text/lorem_first_chunk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/lorem_first_chunk.txt -------------------------------------------------------------------------------- /spec/fixtures/text/lorem_second_chunk.txt: -------------------------------------------------------------------------------- 1 | Aenean commodo ligula eget dolor. 2 | -------------------------------------------------------------------------------- /spec/fixtures/text/merged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/merged.txt -------------------------------------------------------------------------------- /spec/fixtures/text/spiegel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/spiegel.txt -------------------------------------------------------------------------------- /spec/fixtures/text/unmerged.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/text/unmerged.txt -------------------------------------------------------------------------------- /spec/fixtures/text/valid.md: -------------------------------------------------------------------------------- 1 | valid 2 | -------------------------------------------------------------------------------- /spec/fixtures/text/valid1.md: -------------------------------------------------------------------------------- 1 | valid1 2 | -------------------------------------------------------------------------------- /spec/fixtures/text/valid2.md: -------------------------------------------------------------------------------- 1 | valid2 2 | -------------------------------------------------------------------------------- /spec/fixtures/zip/invalid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/invalid.zip -------------------------------------------------------------------------------- /spec/fixtures/zip/linux_encoding.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/linux_encoding.zip -------------------------------------------------------------------------------- /spec/fixtures/zip/mac_encoding.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/mac_encoding.zip -------------------------------------------------------------------------------- /spec/fixtures/zip/partially-valid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/partially-valid.zip -------------------------------------------------------------------------------- /spec/fixtures/zip/subdirectory1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/subdirectory1.zip -------------------------------------------------------------------------------- /spec/fixtures/zip/subdirectory2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/subdirectory2.zip -------------------------------------------------------------------------------- /spec/fixtures/zip/valid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/fixtures/zip/valid.zip -------------------------------------------------------------------------------- /spec/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/javascripts/fixtures/parameters.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/javascripts/fixtures/parameters.slim -------------------------------------------------------------------------------- /spec/javascripts/spec_helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/javascripts/spec_helper.coffee -------------------------------------------------------------------------------- /spec/javascripts/support/annotation_document_manager_spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/javascripts/support/annotation_document_manager_spec.coffee -------------------------------------------------------------------------------- /spec/mailers/previews/annotator_project_assignment_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/mailers/previews/annotator_project_assignment_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/annotator_welcome_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/mailers/previews/annotator_welcome_preview.rb -------------------------------------------------------------------------------- /spec/models/admin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/admin_spec.rb -------------------------------------------------------------------------------- /spec/models/annotation_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/annotation_document_spec.rb -------------------------------------------------------------------------------- /spec/models/annotator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/annotator_spec.rb -------------------------------------------------------------------------------- /spec/models/interface_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/interface_spec.rb -------------------------------------------------------------------------------- /spec/models/interface_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/interface_type_spec.rb -------------------------------------------------------------------------------- /spec/models/project_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/project_spec.rb -------------------------------------------------------------------------------- /spec/models/raw_datum_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/raw_datum_spec.rb -------------------------------------------------------------------------------- /spec/models/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/service_spec.rb -------------------------------------------------------------------------------- /spec/models/statistic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/models/statistic_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/annotation_documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/annotation_documents_spec.rb -------------------------------------------------------------------------------- /spec/requests/annotations/annotate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/annotations/annotate_spec.rb -------------------------------------------------------------------------------- /spec/requests/annotators/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/annotators/create_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/redirect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/api/redirect_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/annotation_documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/api/v1/annotation_documents_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/raw_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/api/v1/raw_data_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/statistics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/api/v1/statistics_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/v1/who_are_you_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/api/v1/who_are_you_spec.rb -------------------------------------------------------------------------------- /spec/requests/authentication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/authentication_spec.rb -------------------------------------------------------------------------------- /spec/requests/interface_types/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/interface_types/update_spec.rb -------------------------------------------------------------------------------- /spec/requests/interfaces/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/interfaces/create_spec.rb -------------------------------------------------------------------------------- /spec/requests/interfaces/destory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/interfaces/destory_spec.rb -------------------------------------------------------------------------------- /spec/requests/interfaces/refresh_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/interfaces/refresh_spec.rb -------------------------------------------------------------------------------- /spec/requests/interfaces/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/interfaces/update_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/annotation_documents/destroy_all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/annotation_documents/destroy_all_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/check_interfaces_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/check_interfaces_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/check_problem_identifiers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/check_problem_identifiers_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/create_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/destroy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/destroy_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/iterate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/iterate_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/merge_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/merge_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/raw_data/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/raw_data/create_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/raw_data/destroy_all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/raw_data/destroy_all_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/raw_data/destroy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/raw_data/destroy_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/raw_data/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/raw_data/index_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/raw_data/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/raw_data/update_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/setup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/setup_spec.rb -------------------------------------------------------------------------------- /spec/requests/projects/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/projects/update_spec.rb -------------------------------------------------------------------------------- /spec/requests/services/check_connectivity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/services/check_connectivity_spec.rb -------------------------------------------------------------------------------- /spec/requests/services/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/services/create_spec.rb -------------------------------------------------------------------------------- /spec/requests/services/destroy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/services/destroy_spec.rb -------------------------------------------------------------------------------- /spec/requests/services/refresh_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/services/refresh_spec.rb -------------------------------------------------------------------------------- /spec/requests/services/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/services/update_spec.rb -------------------------------------------------------------------------------- /spec/requests/services_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/services_spec.rb -------------------------------------------------------------------------------- /spec/requests/smoke_test_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/requests/smoke_test_spec.rb -------------------------------------------------------------------------------- /spec/routing/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/routing/projects_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/routing/projects_routing_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/annotation_document_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/support/annotation_document_helper.rb -------------------------------------------------------------------------------- /spec/support/datetime_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/support/datetime_helpers.rb -------------------------------------------------------------------------------- /spec/support/devise_request_spec_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/support/devise_request_spec_helpers.rb -------------------------------------------------------------------------------- /spec/support/service_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/support/service_helper.rb -------------------------------------------------------------------------------- /spec/teaspoon_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dalphi/dalphi/HEAD/spec/teaspoon_env.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------