├── .coveralls.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── triannon │ │ │ └── .keep │ ├── javascripts │ │ └── triannon │ │ │ ├── annotations.js │ │ │ └── application.js │ └── stylesheets │ │ └── triannon │ │ ├── annotations.css │ │ └── application.css.scss ├── controllers │ ├── concerns │ │ └── rdf_response_formats.rb │ └── triannon │ │ ├── annotations_controller.rb │ │ ├── application_controller.rb │ │ ├── auth_controller.rb │ │ └── search_controller.rb ├── helpers │ └── triannon │ │ └── application_helper.rb ├── models │ └── triannon │ │ ├── annotation.rb │ │ └── annotation_ldp.rb ├── services │ └── triannon │ │ ├── ldp_loader.rb │ │ ├── ldp_to_oa_mapper.rb │ │ ├── ldp_writer.rb │ │ ├── solr_searcher.rb │ │ └── solr_writer.rb └── views │ ├── layouts │ └── triannon │ │ └── application.html.erb │ └── triannon │ ├── annotations │ ├── new.html.erb │ └── show.html.erb │ └── search │ └── find.html.erb ├── bin └── rails ├── config ├── initializers │ └── mime_types.rb ├── jetty │ └── etc │ │ └── fedora-override-web.xml ├── routes.rb ├── solr │ ├── log4j.properties │ ├── solr.xml │ └── triannon-core │ │ └── conf │ │ ├── schema.xml │ │ └── solrconfig.xml └── triannon.yml ├── lib ├── generators │ └── triannon │ │ ├── install_generator.rb │ │ └── templates │ │ └── rest_client.rb ├── rdf │ └── triannon_vocab.rb ├── tasks │ └── triannon_tasks.rake ├── triannon.rb └── triannon │ ├── engine.rb │ ├── error.rb │ ├── iiif_anno_list.rb │ ├── oa_graph_helper.rb │ └── version.rb ├── spec ├── auth_helper.rb ├── controllers │ ├── concerns │ │ └── rdf_response_formats_spec.rb │ └── triannon │ │ ├── annotations_controller_create_spec.rb │ │ ├── annotations_controller_destroy_spec.rb │ │ ├── annotations_controller_index_spec.rb │ │ ├── annotations_controller_show_spec.rb │ │ ├── auth_controller_spec.rb │ │ └── search_controller_spec.rb ├── features │ ├── annotations_new_spec.rb │ └── annotations_show_spec.rb ├── fixtures │ ├── annotations │ │ ├── body-chars-generic-context.json │ │ ├── body-chars-html.json │ │ ├── body-chars-no-context.json │ │ ├── body-chars-no-id.json │ │ ├── body-chars-plain-iiif.json │ │ ├── body-chars-plain.json │ │ ├── body-chars.json │ │ ├── body-chars.rdf │ │ ├── body-chars.ttl │ │ ├── body-choice-bodies-graph-hash-uris.ttl │ │ ├── body-choice.json │ │ ├── body-choice.ttl │ │ ├── body-pdf.json │ │ ├── body-semantic-tag.json │ │ ├── body-semantic-tag.ttl │ │ ├── body-sound.json │ │ ├── body-url.json │ │ ├── bookmark.json │ │ ├── fragment-selector.json │ │ ├── mult-bodies.json │ │ ├── mult-bodies.ttl │ │ ├── mult-motivations.json │ │ ├── mult-targets.json │ │ ├── provenance.json │ │ ├── tag.json │ │ ├── target-choice.ttl │ │ ├── target-frag-uri.json │ │ ├── text-position-selector.json │ │ └── text-quote-selector.json │ ├── ldp_annotations │ │ ├── fcrepo4_base.ttl │ │ ├── fcrepo4_base_prov.ttl │ │ ├── fcrepo4_body.ttl │ │ ├── fcrepo4_body_ext_refs.ttl │ │ ├── fcrepo4_root_anno_container.ttl │ │ ├── fcrepo4_target.ttl │ │ └── fcrepo4_target_ext_refs.ttl │ └── vcr_cassettes │ │ ├── AnnotationsAuthentication │ │ └── authorized_annotation_create │ │ │ └── delete │ │ │ ├── fails_to_delete_annotation_using_an_expired_access_token.yml │ │ │ ├── fails_to_delete_annotation_using_an_invalid_access_token.yml │ │ │ ├── fails_to_delete_annotation_without_an_access_token.yml │ │ │ └── succeeds_with_a_valid_access_token.yml │ │ ├── Triannon_Annotation │ │ ├── _destroy │ │ │ └── calls_solr_delete_method_after_successful_destroy_in_LDP_store.yml │ │ ├── _find │ │ │ └── sets_anno_id.yml │ │ ├── _save │ │ │ ├── calls_solr_save_method_after_successful_save_to_LDP_Store.yml │ │ │ ├── doesn_t_call_solr_save_method_after_exception_for_LDP_store_create.yml │ │ │ ├── reloads_graph_from_storage_to_ensure_id_is_in_the_graph.yml │ │ │ ├── returns_false_if_graph_is_nil.yml │ │ │ ├── returns_false_if_graph_size_is_0.yml │ │ │ └── sets_anno_id.yml │ │ ├── _solr_save │ │ │ ├── calls_SolrWriter_write_with_triannon_graph.yml │ │ │ ├── does_NOT_call_SolrWriter_write_when_graph_has_no_id.yml │ │ │ ├── does_NOT_call_SolrWriter_write_when_graph_is_nil.yml │ │ │ └── raises_exception_when_Solr_add_is_not_successful.yml │ │ ├── after_spec.yml │ │ └── before_spec.yml │ │ ├── Triannon_AnnotationsController │ │ ├── _auth │ │ │ ├── after_spec.yml │ │ │ └── before_spec.yml │ │ ├── _create │ │ │ ├── HTTP_Content-Type_header │ │ │ │ ├── application │ │ │ │ │ ├── json_specified_for_jsonld.yml │ │ │ │ │ └── jsonrequest_specified_for_jsonld.yml │ │ │ │ ├── behaves_like_header_does_NOT_match_data │ │ │ │ │ └── application │ │ │ │ │ │ ├── rdf_xml_specified_and_NOT_provided.yml │ │ │ │ │ │ └── x-turtle_specified_and_NOT_provided.yml │ │ │ │ ├── behaves_like_header_matches_data │ │ │ │ │ ├── application │ │ │ │ │ │ ├── rdf_xml_specified_and_provided.yml │ │ │ │ │ │ ├── x-turtle_specified_and_provided.yml │ │ │ │ │ │ ├── x-xml_specified_and_provided.yml │ │ │ │ │ │ └── xml_specified_and_provided.yml │ │ │ │ │ └── text │ │ │ │ │ │ ├── rdf_specified_and_provided.yml │ │ │ │ │ │ ├── rdf_xml_specified_and_provided.yml │ │ │ │ │ │ ├── turtle_specified_and_provided.yml │ │ │ │ │ │ └── xml_specified_and_provided.yml │ │ │ │ ├── jsonld_context │ │ │ │ │ └── NOT_included_in_header │ │ │ │ │ │ ├── iiif_uri_inline │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ ├── oa_dated_uri_inline │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ ├── oa_generic_uri_inline │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ └── raises_400_error_when_no_context_specified_inline.yml │ │ │ │ ├── jsonld_specified_and_NOT_provided.yml │ │ │ │ ├── jsonld_specified_and_matches_data.yml │ │ │ │ ├── text │ │ │ │ │ └── x-json_specified_for_jsonld.yml │ │ │ │ ├── unknown_format_gives_400.yml │ │ │ │ ├── unspecified_Content-Type_-_tries_to_infer_it_jsonld.yml │ │ │ │ └── unspecified_Content-Type_-_tries_to_infer_it_ttl.yml │ │ │ ├── after_spec.yml │ │ │ ├── before_spec.yml │ │ │ ├── creates_a_new_annotation_from_params_from_form.yml │ │ │ ├── creates_a_new_annotation_from_the_body_of_the_request.yml │ │ │ └── response_format │ │ │ │ ├── _ │ │ │ │ └── _gets_json-ld.yml │ │ │ │ ├── empty_string_gets_json-ld.yml │ │ │ │ ├── html_uses_view.yml │ │ │ │ ├── json │ │ │ │ └── behaves_like_Accept_header_determines_media_type │ │ │ │ │ ├── application │ │ │ │ │ ├── json.yml │ │ │ │ │ ├── jsonrequest.yml │ │ │ │ │ └── ld_json.yml │ │ │ │ │ └── text │ │ │ │ │ └── x-json.yml │ │ │ │ ├── jsonld_context │ │ │ │ ├── Accept_header_profile_specifies_context_URL │ │ │ │ │ ├── context_specified_for_non-json_returns_non-json.yml │ │ │ │ │ ├── json_be_nice_and_pay_attention_to_profile_ │ │ │ │ │ │ ├── iiif │ │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ ├── missing_context_returns_oa_dated.yml │ │ │ │ │ │ ├── oa_dated │ │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ └── oa_generic │ │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ └── jsonld │ │ │ │ │ │ ├── iiif │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ ├── missing_context_returns_oa_dated.yml │ │ │ │ │ │ ├── oa_dated │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ ├── oa_generic │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ └── .yml │ │ │ │ │ │ └── unrecognized_context_returns_oa_dated.yml │ │ │ │ └── Link_header_specifies_context_URL │ │ │ │ │ ├── context_specified_for_non-json_returns_non-json.yml │ │ │ │ │ ├── json │ │ │ │ │ ├── iiif │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ ├── missing_context_returns_oa_dated │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ ├── no_link_header_returns_oa_dated.yml │ │ │ │ │ ├── oa_dated │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ ├── oa_generic │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ └── unrecognized_context_returns_oa_dated │ │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ └── jsonld_be_nice_and_pay_attention_to_link_ │ │ │ │ │ ├── iiif │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ ├── missing_context_returns_oa_dated │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ ├── no_link_header_returns_oa_dated.yml │ │ │ │ │ ├── oa_dated │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ ├── oa_generic │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ │ └── link_type_specified.yml │ │ │ │ │ └── unrecognized_context_returns_oa_dated │ │ │ │ │ └── behaves_like_creates_anno_successfully │ │ │ │ │ ├── link_type_not_specified.yml │ │ │ │ │ └── link_type_specified.yml │ │ │ │ ├── multiple_formats │ │ │ │ └── uses_first_known_format.yml │ │ │ │ ├── nil_gets_json-ld.yml │ │ │ │ ├── rdfxml │ │ │ │ └── behaves_like_Accept_header_determines_media_type │ │ │ │ │ ├── application │ │ │ │ │ ├── rdf_xml.yml │ │ │ │ │ ├── x-xml.yml │ │ │ │ │ └── xml.yml │ │ │ │ │ └── text │ │ │ │ │ ├── rdf.yml │ │ │ │ │ ├── rdf_xml.yml │ │ │ │ │ └── xml.yml │ │ │ │ └── turtle │ │ │ │ └── behaves_like_Accept_header_determines_media_type │ │ │ │ ├── application │ │ │ │ └── x-turtle.yml │ │ │ │ └── text │ │ │ │ └── turtle.yml │ │ ├── _destroy │ │ │ ├── after_spec.yml │ │ │ ├── before_spec.yml │ │ │ ├── non-existent_id │ │ │ │ ├── gives_404_resp_code.yml │ │ │ │ ├── gives_html_response.yml │ │ │ │ └── has_useful_info_in_the_response.yml │ │ │ └── returns_204_status_code_for_successful_delete.yml │ │ ├── _index │ │ │ ├── after_spec.yml │ │ │ └── before_spec.yml │ │ └── _show │ │ │ ├── after_spec.yml │ │ │ └── before_spec.yml │ │ ├── Triannon_LdpWriter │ │ ├── class_methods │ │ │ ├── _container_exist_ │ │ │ │ ├── appends_the_path_param_to_config_ldp_url_.yml │ │ │ │ ├── avoids_double_slash_if_slash_at_beginning_of_path.yml │ │ │ │ ├── avoids_double_slash_if_slash_at_end_of_ldp_base_url.yml │ │ │ │ ├── false_for_non-existent_container.yml │ │ │ │ └── true_for_existing_container.yml │ │ │ ├── _create_anno │ │ │ │ ├── calls_create_base.yml │ │ │ │ ├── calls_create_body_container_and_create_body_resources_if_there_are_bodies.yml │ │ │ │ ├── calls_create_target_container_and_create_target_resource.yml │ │ │ │ ├── creates_a_LDP_resource_for_bodies_ldp_container_at_id_ │ │ │ │ │ └── b.yml │ │ │ │ ├── creates_a_LDP_resource_for_targets_ldp_container_at_id_ │ │ │ │ │ └── t.yml │ │ │ │ ├── creates_a_single_body_container_with_multiple_resources_if_there_are_multiple_bodies.yml │ │ │ │ ├── creates_a_single_target_container_with_multiple_resources_if_there_are_multiple_targets.yml │ │ │ │ ├── does_not_create_a_body_container_if_there_are_no_bodies.yml │ │ │ │ └── returns_the_pid_of_the_annotation_container_in_LDP_store.yml │ │ │ ├── _create_basic_container │ │ │ │ ├── avoids_double_slash_in_url │ │ │ │ │ └── slug_starts_with_slash.yml │ │ │ │ ├── before_spec.yml │ │ │ │ ├── creates_container_if_it_doesn_t_already_exist.yml │ │ │ │ ├── parent_path_missing_nil_or_empty_creates_container_directly_under_ldp_base_url.yml │ │ │ │ ├── returns_false_and_prints_a_message_if_container_already_exists.yml │ │ │ │ └── returns_true_and_prints_a_message_to_STDOUT_if_it_creates_container.yml │ │ │ ├── after_ldp_writer_spec.yml │ │ │ └── before_ldp_writer_spec.yml │ │ ├── instance_methods │ │ │ ├── _create_base │ │ │ │ ├── IIIF_anno_has_sc_painting_motivation.yml │ │ │ │ ├── LDP_store_creates_Basic_Container_for_the_annotation_and_returns_id.yml │ │ │ │ ├── creates_new_annotation_as_a_child_of_anno_root_container.yml │ │ │ │ ├── keeps_multiple_motivations_if_present.yml │ │ │ │ ├── posts_provenance_if_present.yml │ │ │ │ └── raises_Triannon_MissingLDPContainerError_if_anno_root_container_doesn_t_exist.yml │ │ │ ├── _create_body_container │ │ │ │ └── LDP_store_creates_retrievable_LDP_DirectContainer_with_correct_member_relationships.yml │ │ │ ├── _create_body_resources │ │ │ │ ├── after_create_resources_in_container │ │ │ │ │ ├── base_container_gets_oa_hasBody_statement.yml │ │ │ │ │ ├── body_container_gets_ldp_contains_statement.yml │ │ │ │ │ └── correct_body_content_in_new_body_child_container.yml │ │ │ │ └── calls_create_resources_in_container_with_hasBody_predicate.yml │ │ │ ├── _create_target_container │ │ │ │ └── LDP_store_creates_retrievable_LDP_DirectContainer_with_correct_member_relationships.yml │ │ │ ├── _create_target_resources │ │ │ │ ├── after_create_resources_in_container │ │ │ │ │ ├── base_container_gets_oa_hasTarget_statement.yml │ │ │ │ │ ├── correct_target_content_in_new_target_child_container.yml │ │ │ │ │ └── target_container_gets_ldp_contains_statement.yml │ │ │ │ └── calls_create_resources_in_container_with_hasTarget_predicate.yml │ │ │ ├── _delete_containers │ │ │ │ ├── deletes_all_child_containers_recursively.yml │ │ │ │ ├── deletes_the_resource_from_the_LDP_store_when_id_is_full_url.yml │ │ │ │ ├── doesn_t_delete_the_parent_container.yml │ │ │ │ ├── works_when_id_is_anno_root_anno_id.yml │ │ │ │ └── works_when_id_is_just_anno_id.yml │ │ │ ├── after_create_body_resources.yml │ │ │ ├── after_create_target_resources.yml │ │ │ ├── after_ldp_writer_spec.yml │ │ │ └── before_ldp_writer_spec.yml │ │ └── protected_methods │ │ │ ├── _create_direct_container │ │ │ ├── LDP_store_creates_retrievable_empty_LDP_DirectContainer_with_expected_id_and_LDP_member_relationships.yml │ │ │ └── has_the_correct_ldp_memberRelation_and_id_for_hasBody.yml │ │ │ ├── _create_resources_in_container │ │ │ ├── Choice │ │ │ │ ├── contains_all_appropriate_statements_for_blank_nodes_recursively.yml │ │ │ │ └── three_images.yml │ │ │ ├── ContentAsText │ │ │ │ ├── IIIF_context_flavor.yml │ │ │ │ ├── creates_all_appropriate_statements_for_blank_nodes_recursively.yml │ │ │ │ └── multiple_resources.yml │ │ │ ├── SpecificResource │ │ │ │ ├── FragmentSelector_with_Source_having_addl_metadata.yml │ │ │ │ ├── TextPositionSelector.yml │ │ │ │ ├── TextQuoteSelector.yml │ │ │ │ └── multiple_SpecificResources.yml │ │ │ ├── external_URI │ │ │ │ ├── IIIF_context_has_additional_properties.yml │ │ │ │ ├── URI_has_additional_properties.yml │ │ │ │ ├── URI_has_semantic_tag.yml │ │ │ │ ├── mult_URIs_with_addl_properties.yml │ │ │ │ ├── mult_plain_URIs.yml │ │ │ │ ├── multiple_URI_resources_with_addl_properties.yml │ │ │ │ └── plain_URI.yml │ │ │ └── multiple_resources_of_different_types │ │ │ │ └── multiple_resources_one_URI_.yml │ │ │ ├── after_ldp_writer_spec.yml │ │ │ └── before_ldp_writer_spec.yml │ │ ├── Triannon_SearchController │ │ └── GET_find │ │ │ └── returns_http_success.yml │ │ ├── Triannon_SolrSearcher │ │ ├── _find │ │ │ └── calls_anno_graphs_array.yml │ │ ├── _search │ │ │ ├── returns_a_solr_response_object_with_docs_with_anno_jsonld_field.yml │ │ │ └── works_with_no_params.yml │ │ ├── after_search_spec.yml │ │ └── before_search_spec.yml │ │ ├── creating_an_annotation │ │ ├── creating_root_container.yml │ │ ├── deleting_root_container.yml │ │ └── html │ │ │ └── redirects_to_show_after_anno_created.yml │ │ ├── integration_tests_for_Choice │ │ ├── after_spec.yml │ │ ├── before_spec.yml │ │ ├── body_is_choice_of_ContentAsText.yml │ │ ├── body_is_choice_of_external_URIs_with_addl_metadata.yml │ │ ├── target_is_choice_of_external_URIs_default_w_addl_metadata.yml │ │ └── target_is_choice_of_three_images_URIs.yml │ │ ├── integration_tests_for_Solr │ │ ├── after_spec.yml │ │ ├── before_spec.yml │ │ ├── deletes_from_Solr.yml │ │ └── writes_to_Solr │ │ │ ├── all_fields_in_Solr_doc.yml │ │ │ └── has_non-empty_id_value_for_outer_node_of_anno_jsonld.yml │ │ ├── integration_tests_for_SpecificResource │ │ ├── after_spec.yml │ │ ├── before_spec.yml │ │ ├── body_is_FragmentSelector.yml │ │ ├── body_is_TextPositionSelector.yml │ │ ├── body_is_TextQuoteSelector.yml │ │ ├── source_uri_has_additional_metadata.yml │ │ ├── target_is_FragmentSelector.yml │ │ ├── target_is_TextPositionSelector.yml │ │ └── target_is_TextQuoteSelector.yml │ │ ├── integration_tests_for_content_as_text │ │ ├── after_spec.yml │ │ ├── before_spec.yml │ │ ├── body_is_blank_node_with_content_as_text.yml │ │ ├── body_is_blank_node_with_content_as_text_w_diff_triples.yml │ │ └── two_bodies_each_as_blank_nodes.yml │ │ ├── integration_tests_for_external_URIs │ │ ├── after_spec.yml │ │ ├── before_spec.yml │ │ ├── body_and_target_have_plain_external_URI.yml │ │ ├── body_uri_with_metadata.yml │ │ ├── body_uri_with_semantic_tag.yml │ │ ├── mult_bodies_with_plain_external_URIs.yml │ │ ├── mult_targets_with_plain_external_URIs.yml │ │ ├── target_has_external_URI.yml │ │ └── target_uri_has_additional_properties.yml │ │ └── integration_tests_for_no_body │ │ ├── after_spec.yml │ │ ├── before_spec.yml │ │ └── bookmark.yml ├── integration │ ├── annotations_auth_spec.rb │ ├── choice_spec.rb │ ├── content_as_text_spec.rb │ ├── external_uri_spec.rb │ ├── no_body_spec.rb │ ├── solr_spec.rb │ └── specific_resource_spec.rb ├── lib │ ├── iiif_anno_list_spec.rb │ └── oa_graph_helper_spec.rb ├── models │ └── triannon │ │ ├── annotation_active_model_spec.rb │ │ ├── annotation_ldp_spec.rb │ │ └── annotation_spec.rb ├── routing │ └── triannon │ │ ├── auth_routing_spec.rb │ │ └── triannon_routing_spec.rb ├── services │ ├── ldp_loader_spec.rb │ ├── ldp_to_oa_mapper_map_choice_spec.rb │ ├── ldp_to_oa_mapper_map_content_as_text_spec.rb │ ├── ldp_to_oa_mapper_map_external_ref_spec.rb │ ├── ldp_to_oa_mapper_map_specific_resource_spec.rb │ ├── ldp_to_oa_mapper_spec.rb │ ├── ldp_writer_class_methods_spec.rb │ ├── ldp_writer_protected_methods_spec.rb │ ├── ldp_writer_spec.rb │ ├── solr_searcher_spec.rb │ └── solr_writer_spec.rb ├── spec_helper.rb ├── test_app_templates │ └── lib │ │ └── generators │ │ └── test_app_generator.rb └── views │ └── triannon │ └── search │ └── find.html.erb_spec.rb └── triannon.gemspec /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/triannon/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/triannon/annotations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/assets/javascripts/triannon/annotations.js -------------------------------------------------------------------------------- /app/assets/javascripts/triannon/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/assets/javascripts/triannon/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/triannon/annotations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/assets/stylesheets/triannon/annotations.css -------------------------------------------------------------------------------- /app/assets/stylesheets/triannon/application.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/assets/stylesheets/triannon/application.css.scss -------------------------------------------------------------------------------- /app/controllers/concerns/rdf_response_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/controllers/concerns/rdf_response_formats.rb -------------------------------------------------------------------------------- /app/controllers/triannon/annotations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/controllers/triannon/annotations_controller.rb -------------------------------------------------------------------------------- /app/controllers/triannon/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/controllers/triannon/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/triannon/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/controllers/triannon/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/triannon/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/controllers/triannon/search_controller.rb -------------------------------------------------------------------------------- /app/helpers/triannon/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/helpers/triannon/application_helper.rb -------------------------------------------------------------------------------- /app/models/triannon/annotation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/models/triannon/annotation.rb -------------------------------------------------------------------------------- /app/models/triannon/annotation_ldp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/models/triannon/annotation_ldp.rb -------------------------------------------------------------------------------- /app/services/triannon/ldp_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/services/triannon/ldp_loader.rb -------------------------------------------------------------------------------- /app/services/triannon/ldp_to_oa_mapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/services/triannon/ldp_to_oa_mapper.rb -------------------------------------------------------------------------------- /app/services/triannon/ldp_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/services/triannon/ldp_writer.rb -------------------------------------------------------------------------------- /app/services/triannon/solr_searcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/services/triannon/solr_searcher.rb -------------------------------------------------------------------------------- /app/services/triannon/solr_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/services/triannon/solr_writer.rb -------------------------------------------------------------------------------- /app/views/layouts/triannon/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/views/layouts/triannon/application.html.erb -------------------------------------------------------------------------------- /app/views/triannon/annotations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/views/triannon/annotations/new.html.erb -------------------------------------------------------------------------------- /app/views/triannon/annotations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/views/triannon/annotations/show.html.erb -------------------------------------------------------------------------------- /app/views/triannon/search/find.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/app/views/triannon/search/find.html.erb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/bin/rails -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/jetty/etc/fedora-override-web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/jetty/etc/fedora-override-web.xml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/solr/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/solr/log4j.properties -------------------------------------------------------------------------------- /config/solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/solr/solr.xml -------------------------------------------------------------------------------- /config/solr/triannon-core/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/solr/triannon-core/conf/schema.xml -------------------------------------------------------------------------------- /config/solr/triannon-core/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/solr/triannon-core/conf/solrconfig.xml -------------------------------------------------------------------------------- /config/triannon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/config/triannon.yml -------------------------------------------------------------------------------- /lib/generators/triannon/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/generators/triannon/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/triannon/templates/rest_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/generators/triannon/templates/rest_client.rb -------------------------------------------------------------------------------- /lib/rdf/triannon_vocab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/rdf/triannon_vocab.rb -------------------------------------------------------------------------------- /lib/tasks/triannon_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/tasks/triannon_tasks.rake -------------------------------------------------------------------------------- /lib/triannon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/triannon.rb -------------------------------------------------------------------------------- /lib/triannon/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/triannon/engine.rb -------------------------------------------------------------------------------- /lib/triannon/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/triannon/error.rb -------------------------------------------------------------------------------- /lib/triannon/iiif_anno_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/triannon/iiif_anno_list.rb -------------------------------------------------------------------------------- /lib/triannon/oa_graph_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/lib/triannon/oa_graph_helper.rb -------------------------------------------------------------------------------- /lib/triannon/version.rb: -------------------------------------------------------------------------------- 1 | module Triannon 2 | VERSION = "3.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/auth_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/auth_helper.rb -------------------------------------------------------------------------------- /spec/controllers/concerns/rdf_response_formats_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/concerns/rdf_response_formats_spec.rb -------------------------------------------------------------------------------- /spec/controllers/triannon/annotations_controller_create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/triannon/annotations_controller_create_spec.rb -------------------------------------------------------------------------------- /spec/controllers/triannon/annotations_controller_destroy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/triannon/annotations_controller_destroy_spec.rb -------------------------------------------------------------------------------- /spec/controllers/triannon/annotations_controller_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/triannon/annotations_controller_index_spec.rb -------------------------------------------------------------------------------- /spec/controllers/triannon/annotations_controller_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/triannon/annotations_controller_show_spec.rb -------------------------------------------------------------------------------- /spec/controllers/triannon/auth_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/triannon/auth_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/triannon/search_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/controllers/triannon/search_controller_spec.rb -------------------------------------------------------------------------------- /spec/features/annotations_new_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/features/annotations_new_spec.rb -------------------------------------------------------------------------------- /spec/features/annotations_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/features/annotations_show_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars-generic-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars-generic-context.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars-html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars-html.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars-no-context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars-no-context.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars-no-id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars-no-id.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars-plain-iiif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars-plain-iiif.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars-plain.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars.rdf -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-chars.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-chars.ttl -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-choice-bodies-graph-hash-uris.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-choice-bodies-graph-hash-uris.ttl -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-choice.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-choice.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-choice.ttl -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-pdf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-pdf.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-semantic-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-semantic-tag.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-semantic-tag.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-semantic-tag.ttl -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-sound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-sound.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/body-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/body-url.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/bookmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/bookmark.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/fragment-selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/fragment-selector.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/mult-bodies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/mult-bodies.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/mult-bodies.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/mult-bodies.ttl -------------------------------------------------------------------------------- /spec/fixtures/annotations/mult-motivations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/mult-motivations.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/mult-targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/mult-targets.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/provenance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/provenance.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/tag.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/target-choice.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/target-choice.ttl -------------------------------------------------------------------------------- /spec/fixtures/annotations/target-frag-uri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/target-frag-uri.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/text-position-selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/text-position-selector.json -------------------------------------------------------------------------------- /spec/fixtures/annotations/text-quote-selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/annotations/text-quote-selector.json -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_base.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_base.ttl -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_base_prov.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_base_prov.ttl -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_body.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_body.ttl -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_body_ext_refs.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_body_ext_refs.ttl -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_root_anno_container.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_root_anno_container.ttl -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_target.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_target.ttl -------------------------------------------------------------------------------- /spec/fixtures/ldp_annotations/fcrepo4_target_ext_refs.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/ldp_annotations/fcrepo4_target_ext_refs.ttl -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/fails_to_delete_annotation_using_an_expired_access_token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/fails_to_delete_annotation_using_an_expired_access_token.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/fails_to_delete_annotation_using_an_invalid_access_token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/fails_to_delete_annotation_using_an_invalid_access_token.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/fails_to_delete_annotation_without_an_access_token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/fails_to_delete_annotation_without_an_access_token.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/succeeds_with_a_valid_access_token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/AnnotationsAuthentication/authorized_annotation_create/delete/succeeds_with_a_valid_access_token.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_destroy/calls_solr_delete_method_after_successful_destroy_in_LDP_store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_destroy/calls_solr_delete_method_after_successful_destroy_in_LDP_store.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_find/sets_anno_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_find/sets_anno_id.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/calls_solr_save_method_after_successful_save_to_LDP_Store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/calls_solr_save_method_after_successful_save_to_LDP_Store.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/doesn_t_call_solr_save_method_after_exception_for_LDP_store_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/doesn_t_call_solr_save_method_after_exception_for_LDP_store_create.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/reloads_graph_from_storage_to_ensure_id_is_in_the_graph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/reloads_graph_from_storage_to_ensure_id_is_in_the_graph.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/returns_false_if_graph_is_nil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/returns_false_if_graph_is_nil.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/returns_false_if_graph_size_is_0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/returns_false_if_graph_size_is_0.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/sets_anno_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_save/sets_anno_id.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/calls_SolrWriter_write_with_triannon_graph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/calls_SolrWriter_write_with_triannon_graph.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/does_NOT_call_SolrWriter_write_when_graph_has_no_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/does_NOT_call_SolrWriter_write_when_graph_has_no_id.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/does_NOT_call_SolrWriter_write_when_graph_is_nil.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/does_NOT_call_SolrWriter_write_when_graph_is_nil.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/raises_exception_when_Solr_add_is_not_successful.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/_solr_save/raises_exception_when_Solr_add_is_not_successful.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_Annotation/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_Annotation/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_auth/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_auth/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_auth/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_auth/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/application/json_specified_for_jsonld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/application/json_specified_for_jsonld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/application/jsonrequest_specified_for_jsonld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/application/jsonrequest_specified_for_jsonld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_does_NOT_match_data/application/rdf_xml_specified_and_NOT_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_does_NOT_match_data/application/rdf_xml_specified_and_NOT_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_does_NOT_match_data/application/x-turtle_specified_and_NOT_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_does_NOT_match_data/application/x-turtle_specified_and_NOT_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/rdf_xml_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/rdf_xml_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/x-turtle_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/x-turtle_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/x-xml_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/x-xml_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/xml_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/application/xml_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/rdf_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/rdf_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/rdf_xml_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/rdf_xml_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/turtle_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/turtle_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/xml_specified_and_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/behaves_like_header_matches_data/text/xml_specified_and_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/iiif_uri_inline/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/iiif_uri_inline/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/oa_dated_uri_inline/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/oa_dated_uri_inline/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/oa_generic_uri_inline/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/oa_generic_uri_inline/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/raises_400_error_when_no_context_specified_inline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_context/NOT_included_in_header/raises_400_error_when_no_context_specified_inline.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_specified_and_NOT_provided.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_specified_and_NOT_provided.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_specified_and_matches_data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/jsonld_specified_and_matches_data.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/text/x-json_specified_for_jsonld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/text/x-json_specified_for_jsonld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/unknown_format_gives_400.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/unknown_format_gives_400.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/unspecified_Content-Type_-_tries_to_infer_it_jsonld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/unspecified_Content-Type_-_tries_to_infer_it_jsonld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/unspecified_Content-Type_-_tries_to_infer_it_ttl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/HTTP_Content-Type_header/unspecified_Content-Type_-_tries_to_infer_it_ttl.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/creates_a_new_annotation_from_params_from_form.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/creates_a_new_annotation_from_params_from_form.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/creates_a_new_annotation_from_the_body_of_the_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/creates_a_new_annotation_from_the_body_of_the_request.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/_/_gets_json-ld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/_/_gets_json-ld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/empty_string_gets_json-ld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/empty_string_gets_json-ld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/html_uses_view.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/html_uses_view.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/application/json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/application/json.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/application/jsonrequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/application/jsonrequest.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/application/ld_json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/application/ld_json.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/text/x-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/json/behaves_like_Accept_header_determines_media_type/text/x-json.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/context_specified_for_non-json_returns_non-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/context_specified_for_non-json_returns_non-json.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/iiif/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/iiif/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/missing_context_returns_oa_dated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/missing_context_returns_oa_dated.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/oa_dated/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/oa_dated/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/oa_generic/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/json_be_nice_and_pay_attention_to_profile_/oa_generic/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/iiif/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/iiif/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/missing_context_returns_oa_dated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/missing_context_returns_oa_dated.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/oa_dated/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/oa_dated/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/oa_generic/behaves_like_creates_anno_successfully/.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/oa_generic/behaves_like_creates_anno_successfully/.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/unrecognized_context_returns_oa_dated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Accept_header_profile_specifies_context_URL/jsonld/unrecognized_context_returns_oa_dated.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/context_specified_for_non-json_returns_non-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/context_specified_for_non-json_returns_non-json.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/iiif/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/iiif/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/iiif/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/iiif/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/no_link_header_returns_oa_dated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/no_link_header_returns_oa_dated.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_generic/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_generic/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_generic/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/oa_generic/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/json/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/iiif/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/iiif/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/iiif/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/iiif/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/missing_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/no_link_header_returns_oa_dated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/no_link_header_returns_oa_dated.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_generic/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_generic/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_generic/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/oa_generic/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_not_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/jsonld_context/Link_header_specifies_context_URL/jsonld_be_nice_and_pay_attention_to_link_/unrecognized_context_returns_oa_dated/behaves_like_creates_anno_successfully/link_type_specified.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/multiple_formats/uses_first_known_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/multiple_formats/uses_first_known_format.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/nil_gets_json-ld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/nil_gets_json-ld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/application/rdf_xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/application/rdf_xml.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/application/x-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/application/x-xml.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/application/xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/application/xml.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/text/rdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/text/rdf.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/text/rdf_xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/text/rdf_xml.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/text/xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/rdfxml/behaves_like_Accept_header_determines_media_type/text/xml.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/turtle/behaves_like_Accept_header_determines_media_type/application/x-turtle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/turtle/behaves_like_Accept_header_determines_media_type/application/x-turtle.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/turtle/behaves_like_Accept_header_determines_media_type/text/turtle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_create/response_format/turtle/behaves_like_Accept_header_determines_media_type/text/turtle.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/non-existent_id/gives_404_resp_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/non-existent_id/gives_404_resp_code.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/non-existent_id/gives_html_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/non-existent_id/gives_html_response.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/non-existent_id/has_useful_info_in_the_response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/non-existent_id/has_useful_info_in_the_response.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/returns_204_status_code_for_successful_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_destroy/returns_204_status_code_for_successful_delete.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_index/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_index/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_index/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_index/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_show/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_show/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_show/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_AnnotationsController/_show/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/appends_the_path_param_to_config_ldp_url_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/appends_the_path_param_to_config_ldp_url_.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/avoids_double_slash_if_slash_at_beginning_of_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/avoids_double_slash_if_slash_at_beginning_of_path.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/avoids_double_slash_if_slash_at_end_of_ldp_base_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/avoids_double_slash_if_slash_at_end_of_ldp_base_url.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/false_for_non-existent_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/false_for_non-existent_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/true_for_existing_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_container_exist_/true_for_existing_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/calls_create_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/calls_create_base.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/calls_create_body_container_and_create_body_resources_if_there_are_bodies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/calls_create_body_container_and_create_body_resources_if_there_are_bodies.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/calls_create_target_container_and_create_target_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/calls_create_target_container_and_create_target_resource.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_LDP_resource_for_bodies_ldp_container_at_id_/b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_LDP_resource_for_bodies_ldp_container_at_id_/b.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_LDP_resource_for_targets_ldp_container_at_id_/t.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_LDP_resource_for_targets_ldp_container_at_id_/t.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_single_body_container_with_multiple_resources_if_there_are_multiple_bodies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_single_body_container_with_multiple_resources_if_there_are_multiple_bodies.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_single_target_container_with_multiple_resources_if_there_are_multiple_targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/creates_a_single_target_container_with_multiple_resources_if_there_are_multiple_targets.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/does_not_create_a_body_container_if_there_are_no_bodies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/does_not_create_a_body_container_if_there_are_no_bodies.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/returns_the_pid_of_the_annotation_container_in_LDP_store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_anno/returns_the_pid_of_the_annotation_container_in_LDP_store.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/avoids_double_slash_in_url/slug_starts_with_slash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/avoids_double_slash_in_url/slug_starts_with_slash.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/creates_container_if_it_doesn_t_already_exist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/creates_container_if_it_doesn_t_already_exist.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/parent_path_missing_nil_or_empty_creates_container_directly_under_ldp_base_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/parent_path_missing_nil_or_empty_creates_container_directly_under_ldp_base_url.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/returns_false_and_prints_a_message_if_container_already_exists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/returns_false_and_prints_a_message_if_container_already_exists.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/returns_true_and_prints_a_message_to_STDOUT_if_it_creates_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/_create_basic_container/returns_true_and_prints_a_message_to_STDOUT_if_it_creates_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/after_ldp_writer_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/after_ldp_writer_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/before_ldp_writer_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/class_methods/before_ldp_writer_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/IIIF_anno_has_sc_painting_motivation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/IIIF_anno_has_sc_painting_motivation.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/LDP_store_creates_Basic_Container_for_the_annotation_and_returns_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/LDP_store_creates_Basic_Container_for_the_annotation_and_returns_id.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/creates_new_annotation_as_a_child_of_anno_root_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/creates_new_annotation_as_a_child_of_anno_root_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/keeps_multiple_motivations_if_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/keeps_multiple_motivations_if_present.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/posts_provenance_if_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/posts_provenance_if_present.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/raises_Triannon_MissingLDPContainerError_if_anno_root_container_doesn_t_exist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_base/raises_Triannon_MissingLDPContainerError_if_anno_root_container_doesn_t_exist.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_container/LDP_store_creates_retrievable_LDP_DirectContainer_with_correct_member_relationships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_container/LDP_store_creates_retrievable_LDP_DirectContainer_with_correct_member_relationships.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/after_create_resources_in_container/base_container_gets_oa_hasBody_statement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/after_create_resources_in_container/base_container_gets_oa_hasBody_statement.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/after_create_resources_in_container/body_container_gets_ldp_contains_statement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/after_create_resources_in_container/body_container_gets_ldp_contains_statement.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/after_create_resources_in_container/correct_body_content_in_new_body_child_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/after_create_resources_in_container/correct_body_content_in_new_body_child_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/calls_create_resources_in_container_with_hasBody_predicate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_body_resources/calls_create_resources_in_container_with_hasBody_predicate.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_container/LDP_store_creates_retrievable_LDP_DirectContainer_with_correct_member_relationships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_container/LDP_store_creates_retrievable_LDP_DirectContainer_with_correct_member_relationships.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/after_create_resources_in_container/base_container_gets_oa_hasTarget_statement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/after_create_resources_in_container/base_container_gets_oa_hasTarget_statement.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/after_create_resources_in_container/correct_target_content_in_new_target_child_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/after_create_resources_in_container/correct_target_content_in_new_target_child_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/after_create_resources_in_container/target_container_gets_ldp_contains_statement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/after_create_resources_in_container/target_container_gets_ldp_contains_statement.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/calls_create_resources_in_container_with_hasTarget_predicate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_create_target_resources/calls_create_resources_in_container_with_hasTarget_predicate.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/deletes_all_child_containers_recursively.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/deletes_all_child_containers_recursively.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/deletes_the_resource_from_the_LDP_store_when_id_is_full_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/deletes_the_resource_from_the_LDP_store_when_id_is_full_url.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/doesn_t_delete_the_parent_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/doesn_t_delete_the_parent_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/works_when_id_is_anno_root_anno_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/works_when_id_is_anno_root_anno_id.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/works_when_id_is_just_anno_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/_delete_containers/works_when_id_is_just_anno_id.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/after_create_body_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/after_create_body_resources.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/after_create_target_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/after_create_target_resources.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/after_ldp_writer_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/after_ldp_writer_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/before_ldp_writer_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/instance_methods/before_ldp_writer_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_direct_container/LDP_store_creates_retrievable_empty_LDP_DirectContainer_with_expected_id_and_LDP_member_relationships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_direct_container/LDP_store_creates_retrievable_empty_LDP_DirectContainer_with_expected_id_and_LDP_member_relationships.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_direct_container/has_the_correct_ldp_memberRelation_and_id_for_hasBody.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_direct_container/has_the_correct_ldp_memberRelation_and_id_for_hasBody.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/Choice/contains_all_appropriate_statements_for_blank_nodes_recursively.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/Choice/contains_all_appropriate_statements_for_blank_nodes_recursively.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/Choice/three_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/Choice/three_images.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/ContentAsText/IIIF_context_flavor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/ContentAsText/IIIF_context_flavor.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/ContentAsText/creates_all_appropriate_statements_for_blank_nodes_recursively.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/ContentAsText/creates_all_appropriate_statements_for_blank_nodes_recursively.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/ContentAsText/multiple_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/ContentAsText/multiple_resources.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/FragmentSelector_with_Source_having_addl_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/FragmentSelector_with_Source_having_addl_metadata.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/TextPositionSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/TextPositionSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/TextQuoteSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/TextQuoteSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/multiple_SpecificResources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/SpecificResource/multiple_SpecificResources.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/IIIF_context_has_additional_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/IIIF_context_has_additional_properties.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/URI_has_additional_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/URI_has_additional_properties.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/URI_has_semantic_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/URI_has_semantic_tag.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/mult_URIs_with_addl_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/mult_URIs_with_addl_properties.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/mult_plain_URIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/mult_plain_URIs.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/multiple_URI_resources_with_addl_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/multiple_URI_resources_with_addl_properties.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/plain_URI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/external_URI/plain_URI.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/multiple_resources_of_different_types/multiple_resources_one_URI_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/_create_resources_in_container/multiple_resources_of_different_types/multiple_resources_one_URI_.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/after_ldp_writer_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/after_ldp_writer_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/before_ldp_writer_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_LdpWriter/protected_methods/before_ldp_writer_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_SearchController/GET_find/returns_http_success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_SearchController/GET_find/returns_http_success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/_find/calls_anno_graphs_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/_find/calls_anno_graphs_array.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/_search/returns_a_solr_response_object_with_docs_with_anno_jsonld_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/_search/returns_a_solr_response_object_with_docs_with_anno_jsonld_field.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/_search/works_with_no_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/_search/works_with_no_params.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/after_search_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/after_search_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/before_search_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/Triannon_SolrSearcher/before_search_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/creating_an_annotation/creating_root_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/creating_an_annotation/creating_root_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/creating_an_annotation/deleting_root_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/creating_an_annotation/deleting_root_container.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/creating_an_annotation/html/redirects_to_show_after_anno_created.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/creating_an_annotation/html/redirects_to_show_after_anno_created.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Choice/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Choice/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Choice/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Choice/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Choice/body_is_choice_of_ContentAsText.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Choice/body_is_choice_of_ContentAsText.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Choice/body_is_choice_of_external_URIs_with_addl_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Choice/body_is_choice_of_external_URIs_with_addl_metadata.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Choice/target_is_choice_of_external_URIs_default_w_addl_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Choice/target_is_choice_of_external_URIs_default_w_addl_metadata.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Choice/target_is_choice_of_three_images_URIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Choice/target_is_choice_of_three_images_URIs.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Solr/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Solr/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Solr/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Solr/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Solr/deletes_from_Solr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Solr/deletes_from_Solr.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Solr/writes_to_Solr/all_fields_in_Solr_doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Solr/writes_to_Solr/all_fields_in_Solr_doc.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_Solr/writes_to_Solr/has_non-empty_id_value_for_outer_node_of_anno_jsonld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_Solr/writes_to_Solr/has_non-empty_id_value_for_outer_node_of_anno_jsonld.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/body_is_FragmentSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/body_is_FragmentSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/body_is_TextPositionSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/body_is_TextPositionSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/body_is_TextQuoteSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/body_is_TextQuoteSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/source_uri_has_additional_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/source_uri_has_additional_metadata.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/target_is_FragmentSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/target_is_FragmentSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/target_is_TextPositionSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/target_is_TextPositionSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/target_is_TextQuoteSelector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_SpecificResource/target_is_TextQuoteSelector.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/body_is_blank_node_with_content_as_text.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/body_is_blank_node_with_content_as_text.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/body_is_blank_node_with_content_as_text_w_diff_triples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/body_is_blank_node_with_content_as_text_w_diff_triples.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/two_bodies_each_as_blank_nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_content_as_text/two_bodies_each_as_blank_nodes.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/body_and_target_have_plain_external_URI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/body_and_target_have_plain_external_URI.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/body_uri_with_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/body_uri_with_metadata.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/body_uri_with_semantic_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/body_uri_with_semantic_tag.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/mult_bodies_with_plain_external_URIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/mult_bodies_with_plain_external_URIs.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/mult_targets_with_plain_external_URIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/mult_targets_with_plain_external_URIs.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/target_has_external_URI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/target_has_external_URI.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/target_uri_has_additional_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_external_URIs/target_uri_has_additional_properties.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_no_body/after_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_no_body/after_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_no_body/before_spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_no_body/before_spec.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/integration_tests_for_no_body/bookmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/fixtures/vcr_cassettes/integration_tests_for_no_body/bookmark.yml -------------------------------------------------------------------------------- /spec/integration/annotations_auth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/annotations_auth_spec.rb -------------------------------------------------------------------------------- /spec/integration/choice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/choice_spec.rb -------------------------------------------------------------------------------- /spec/integration/content_as_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/content_as_text_spec.rb -------------------------------------------------------------------------------- /spec/integration/external_uri_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/external_uri_spec.rb -------------------------------------------------------------------------------- /spec/integration/no_body_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/no_body_spec.rb -------------------------------------------------------------------------------- /spec/integration/solr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/solr_spec.rb -------------------------------------------------------------------------------- /spec/integration/specific_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/integration/specific_resource_spec.rb -------------------------------------------------------------------------------- /spec/lib/iiif_anno_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/lib/iiif_anno_list_spec.rb -------------------------------------------------------------------------------- /spec/lib/oa_graph_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/lib/oa_graph_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/triannon/annotation_active_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/models/triannon/annotation_active_model_spec.rb -------------------------------------------------------------------------------- /spec/models/triannon/annotation_ldp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/models/triannon/annotation_ldp_spec.rb -------------------------------------------------------------------------------- /spec/models/triannon/annotation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/models/triannon/annotation_spec.rb -------------------------------------------------------------------------------- /spec/routing/triannon/auth_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/routing/triannon/auth_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/triannon/triannon_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/routing/triannon/triannon_routing_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_loader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_loader_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_to_oa_mapper_map_choice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_to_oa_mapper_map_choice_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_to_oa_mapper_map_content_as_text_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_to_oa_mapper_map_content_as_text_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_to_oa_mapper_map_external_ref_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_to_oa_mapper_map_external_ref_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_to_oa_mapper_map_specific_resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_to_oa_mapper_map_specific_resource_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_to_oa_mapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_to_oa_mapper_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_writer_class_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_writer_class_methods_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_writer_protected_methods_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_writer_protected_methods_spec.rb -------------------------------------------------------------------------------- /spec/services/ldp_writer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/ldp_writer_spec.rb -------------------------------------------------------------------------------- /spec/services/solr_searcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/solr_searcher_spec.rb -------------------------------------------------------------------------------- /spec/services/solr_writer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/services/solr_writer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/test_app_templates/lib/generators/test_app_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/test_app_templates/lib/generators/test_app_generator.rb -------------------------------------------------------------------------------- /spec/views/triannon/search/find.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/spec/views/triannon/search/find.html.erb_spec.rb -------------------------------------------------------------------------------- /triannon.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sul-dlss-deprecated/triannon/HEAD/triannon.gemspec --------------------------------------------------------------------------------