├── .gitignore ├── Bowerfile ├── Capfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── Vagrantfile ├── ansible ├── README.md ├── ansible.cfg ├── development-playbook.retry ├── development-playbook.yml ├── development.ini ├── imported_roles │ ├── basic-setup │ │ ├── README.md │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── dev-bundle │ │ ├── README.md │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── dev-open-firewall │ │ ├── README.md │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── geerlingguy.java │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ ├── molecule │ │ │ └── default │ │ │ │ ├── molecule.yml │ │ │ │ ├── playbook.yml │ │ │ │ ├── tests │ │ │ │ └── test_default.py │ │ │ │ └── yaml-lint.yml │ │ ├── tasks │ │ │ ├── main.yml │ │ │ ├── setup-Debian.yml │ │ │ ├── setup-FreeBSD.yml │ │ │ └── setup-RedHat.yml │ │ ├── templates │ │ │ └── java_home.sh.j2 │ │ └── vars │ │ │ ├── Debian-8.yml │ │ │ ├── Debian-9.yml │ │ │ ├── Fedora.yml │ │ │ ├── FreeBSD.yml │ │ │ ├── RedHat-6.yml │ │ │ ├── RedHat-7.yml │ │ │ ├── Ubuntu-12.yml │ │ │ ├── Ubuntu-14.yml │ │ │ ├── Ubuntu-16.yml │ │ │ └── Ubuntu-18.yml │ ├── geerlingguy.mysql │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ ├── molecule │ │ │ └── default │ │ │ │ ├── molecule.yml │ │ │ │ ├── playbook.yml │ │ │ │ └── yaml-lint.yml │ │ ├── tasks │ │ │ ├── configure.yml │ │ │ ├── databases.yml │ │ │ ├── main.yml │ │ │ ├── replication.yml │ │ │ ├── secure-installation.yml │ │ │ ├── setup-Archlinux.yml │ │ │ ├── setup-Debian.yml │ │ │ ├── setup-RedHat.yml │ │ │ ├── users.yml │ │ │ └── variables.yml │ │ ├── templates │ │ │ ├── my.cnf.j2 │ │ │ ├── root-my.cnf.j2 │ │ │ └── user-my.cnf.j2 │ │ └── vars │ │ │ ├── Archlinux.yml │ │ │ ├── Debian.yml │ │ │ ├── RedHat-6.yml │ │ │ └── RedHat-7.yml │ ├── github-com-known-host │ │ ├── README.md │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── rvm-setup │ │ ├── README.md │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ └── tasks │ │ │ └── main.yml │ ├── rvm.ruby │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── meta │ │ │ ├── .galaxy_install_info │ │ │ └── main.yml │ │ ├── tasks │ │ │ ├── main.yml │ │ │ ├── rubies.yml │ │ │ └── rvm.yml │ │ ├── tests │ │ │ ├── ansible.cfg │ │ │ ├── assertions.yml │ │ │ ├── docker-compose.yml │ │ │ ├── dockerfiles │ │ │ │ ├── centos6 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── centos7 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── debian8 │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build │ │ │ │ ├── debian9 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── ubuntu14 │ │ │ │ │ ├── Dockerfile │ │ │ │ │ └── build │ │ │ │ └── ubuntu16 │ │ │ │ │ └── Dockerfile │ │ │ ├── inventory │ │ │ ├── root.yml │ │ │ └── user.yml │ │ └── vars │ │ │ └── main.yml │ └── solr │ │ ├── .gitignore │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── meta │ │ ├── .galaxy_install_info │ │ └── main.yml │ │ └── tasks │ │ └── main.yml ├── requirements.yml └── roles │ ├── ansible-solr │ ├── .gitignore │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml │ ├── archivesspace │ └── tasks │ │ └── main.yml │ ├── basic-setup │ ├── .gitignore │ ├── README.md │ ├── meta │ │ └── main.yml │ └── tasks │ │ └── main.yml │ ├── circa │ └── tasks │ │ └── main.yml │ ├── dev-bundle │ └── tasks │ │ └── main.yml │ ├── geerlingguy.java │ ├── .travis.yml │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── meta │ │ ├── .galaxy_install_info │ │ └── main.yml │ ├── tasks │ │ ├── main.yml │ │ ├── setup-Debian.yml │ │ ├── setup-FreeBSD.yml │ │ └── setup-RedHat.yml │ ├── templates │ │ └── java_home.sh.j2 │ ├── tests │ │ └── test.yml │ └── vars │ │ ├── Debian.yml │ │ ├── Fedora.yml │ │ ├── FreeBSD.yml │ │ ├── RedHat.yml │ │ ├── Ubuntu-12.04.yml │ │ ├── Ubuntu-14.04.yml │ │ └── Ubuntu-16.04.yml │ └── rvm_io.ruby │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── defaults │ └── main.yml │ ├── meta │ ├── .galaxy_install_info │ └── main.yml │ ├── tasks │ ├── main.yml │ ├── rubies.yml │ └── rvm.yml │ ├── tests │ ├── inventory │ └── test.yml │ └── vars │ └── main.yml ├── api.md ├── app ├── assets │ ├── images │ │ ├── .keep │ │ ├── calendar.gif │ │ ├── calendar.png │ │ ├── circa.png │ │ ├── loading.gif │ │ ├── ncsu-library-logo-white.png │ │ ├── timeline_sprite.png │ │ ├── timeline_sprite_end.png │ │ └── timeline_sprite_start.png │ ├── javascripts │ │ ├── angular │ │ │ ├── app.js.erb │ │ │ ├── controllers │ │ │ │ ├── .DS_Store │ │ │ │ ├── circa │ │ │ │ │ ├── circa_item.js │ │ │ │ │ ├── circa_locations.js │ │ │ │ │ ├── circa_order.js │ │ │ │ │ ├── circa_shared_utils.js │ │ │ │ │ └── circa_user.js │ │ │ │ ├── circa_ctrl.js │ │ │ │ ├── custom │ │ │ │ │ └── .keep │ │ │ │ ├── dashboard │ │ │ │ │ ├── course_reserves.js │ │ │ │ │ ├── digital_object_requests.js │ │ │ │ │ ├── items_in_transit_for_use.js │ │ │ │ │ ├── pending_transfers.js │ │ │ │ │ └── returns_in_transit.js │ │ │ │ ├── dashboard_ctrl.js │ │ │ │ ├── enumeration_values │ │ │ │ │ ├── enumeration_values_edit_ctrl.js │ │ │ │ │ ├── enumeration_values_list_ctrl.js │ │ │ │ │ ├── enumeration_values_merge_ctrl.js │ │ │ │ │ └── enumeration_values_new_ctrl.js │ │ │ │ ├── enumeration_values_ctrl.js │ │ │ │ ├── items │ │ │ │ │ ├── items_list_ctrl.js │ │ │ │ │ └── items_show_ctrl.js │ │ │ │ ├── items_ctrl.js │ │ │ │ ├── locations │ │ │ │ │ ├── locations_edit_ctrl.js │ │ │ │ │ ├── locations_list_ctrl.js │ │ │ │ │ ├── locations_new_ctrl.js │ │ │ │ │ └── locations_show_ctrl.js │ │ │ │ ├── locations_ctrl.js │ │ │ │ ├── order_sub_types │ │ │ │ │ ├── order_sub_types_edit_ctrl.js │ │ │ │ │ └── order_sub_types_list_ctrl.js │ │ │ │ ├── order_sub_types_ctrl.js │ │ │ │ ├── orders │ │ │ │ │ ├── orders_clone_ctrl.js │ │ │ │ │ ├── orders_edit_ctrl.js │ │ │ │ │ ├── orders_list_ctrl.js │ │ │ │ │ ├── orders_new_ctrl.js │ │ │ │ │ └── orders_show_ctrl.js │ │ │ │ ├── orders_ctrl.js │ │ │ │ ├── orders_ctrl_functions │ │ │ │ │ ├── orders_archivesspace_records.js │ │ │ │ │ ├── orders_filters.js │ │ │ │ │ ├── orders_form_utils.js │ │ │ │ │ ├── orders_invoice.js │ │ │ │ │ ├── orders_items.js │ │ │ │ │ ├── orders_reproduction.js │ │ │ │ │ ├── orders_shared_items.js │ │ │ │ │ ├── orders_users.js │ │ │ │ │ └── orders_validation.js │ │ │ │ ├── reports_ctrl.js │ │ │ │ ├── settings_ctrl.js │ │ │ │ ├── user_roles │ │ │ │ │ ├── user_roles_edit_ctrl.js │ │ │ │ │ ├── user_roles_list_ctrl.js │ │ │ │ │ ├── user_roles_merge_ctrl.js │ │ │ │ │ └── user_roles_new_ctrl.js │ │ │ │ ├── user_roles_ctrl.js │ │ │ │ ├── users │ │ │ │ │ ├── users_edit_ctrl.js │ │ │ │ │ ├── users_list_ctrl.js │ │ │ │ │ ├── users_new_ctrl.js │ │ │ │ │ └── users_show_ctrl.js │ │ │ │ └── users_ctrl.js │ │ │ ├── directives │ │ │ │ ├── common_directives.js.erb │ │ │ │ └── form_directives.js │ │ │ ├── filters │ │ │ │ └── common_filters.js │ │ │ └── services │ │ │ │ ├── common_services.js.erb │ │ │ │ ├── form_utilities.js │ │ │ │ └── reports.js │ │ ├── application.js │ │ ├── ecmascript6_polyfill.js │ │ └── jasmine_examples │ │ │ ├── Player.js │ │ │ └── Song.js │ └── stylesheets │ │ ├── application.scss │ │ ├── core.scss │ │ ├── dashboard.scss │ │ ├── forms.scss │ │ ├── foundation_resets.scss │ │ ├── header.scss │ │ ├── items.scss │ │ ├── layout.scss │ │ ├── list_view_components.scss │ │ ├── modal.scss │ │ ├── orders.scss │ │ ├── pages.scss │ │ ├── print.scss │ │ ├── record_display.scss │ │ ├── reports.scss │ │ ├── users.scss │ │ └── variables.scss ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ ├── .keep │ │ ├── api_utilities.rb │ │ └── solr_list.rb │ ├── enumeration_values_controller.rb │ ├── invoices_controller.rb │ ├── items_controller.rb │ ├── locations_controller.rb │ ├── order_sub_types_controller.rb │ ├── orders_controller.rb │ ├── reports_controller.rb │ ├── search_controller.rb │ ├── static_pages_controller.rb │ ├── user_roles_controller.rb │ ├── users │ │ ├── confirmations_controller.rb │ │ ├── omniauth_callbacks_controller.rb │ │ ├── passwords_controller.rb │ │ ├── registrations_controller.rb │ │ ├── sessions_controller.rb │ │ └── unlocks_controller.rb │ ├── users_controller.rb │ └── utility_controller.rb ├── helpers │ ├── application_helper.rb │ ├── enumeration_values_helper.rb │ ├── invoices_helper.rb │ ├── items_helper.rb │ ├── locations_helper.rb │ ├── order_sub_types_helper.rb │ ├── orders_helper.rb │ ├── pages_helper.rb │ ├── reports_helper.rb │ ├── search_helper.rb │ ├── user_roles_helper.rb │ └── users_helper.rb ├── lib │ ├── aspace_utilities.rb │ ├── circa_exceptions.rb │ ├── date_utilities.rb │ ├── enumeration_utilities.rb │ └── general_utilities.rb ├── mailers │ ├── .keep │ ├── application_mailer.rb │ ├── order_mailer.rb │ └── work_complete_mailer.rb ├── models │ ├── .DS_Store │ ├── .keep │ ├── access_session.rb │ ├── application_record.rb │ ├── concerns │ │ ├── .keep │ │ ├── aspace_connect.rb │ │ ├── item_state_config.rb │ │ ├── order_state_config.rb │ │ ├── ref_integrity.rb │ │ ├── solr_connect.rb │ │ ├── solr_doc.rb │ │ ├── state_transition_support.rb │ │ ├── user_roles.rb.bk │ │ └── versions_support.rb │ ├── course_reserve.rb │ ├── digital_collections_order.rb │ ├── enumeration.rb │ ├── enumeration_value.rb │ ├── invoice.rb │ ├── item.rb │ ├── item_archivesspace_record.rb │ ├── item_catalog_record.rb │ ├── item_order.rb │ ├── location.rb │ ├── note.rb │ ├── order.rb │ ├── order_archivesspace_record.rb │ ├── order_assignment.rb │ ├── order_fee.rb │ ├── order_sub_type.rb │ ├── order_type.rb │ ├── order_user.rb │ ├── paper_trail │ │ └── version.rb │ ├── reproduction_format.rb │ ├── reproduction_spec.rb │ ├── search.rb │ ├── search_index.rb │ ├── state_transition.rb │ ├── user.rb │ ├── user_access_session.rb │ └── user_role.rb ├── services │ ├── create_or_update_items_from_archivesspace.rb │ ├── reports │ │ ├── access_sessions_per_resource_report.rb │ │ ├── generate_report.rb │ │ ├── item_requests_per_location_report.rb │ │ ├── item_requests_per_resource_report.rb │ │ ├── item_transfers_per_location_report.rb │ │ ├── orders_per_researcher_type_report.rb │ │ ├── researchers_by_type_report.rb │ │ └── unique_visits_report.rb │ └── serializers │ │ ├── serialize_enumeration_value.rb │ │ ├── serialize_item.rb │ │ ├── serialize_location.rb │ │ ├── serialize_order.rb │ │ ├── serialize_order_history.rb │ │ ├── serialize_order_sub_type.rb │ │ ├── serialize_record.rb │ │ └── serialize_user.rb └── views │ ├── custom │ └── layouts │ │ └── _head_custom.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── invoices │ ├── _from_address.html.erb │ ├── _item_description_row.html.erb │ ├── _per_order_fee_row.html.erb │ ├── _per_unit_fee_row.html.erb │ └── show.html.erb │ ├── items │ ├── create.html.erb │ ├── destroy.html.erb │ ├── index.html.erb │ ├── items_in_transit_for_use_list.html.erb │ ├── returns_list.html.erb │ ├── show.html.erb │ ├── transfer_list.html.erb │ └── update.html.erb │ ├── layouts │ ├── _current_user.html.erb │ ├── _flash.html.erb │ ├── _google_analytics.html.erb │ ├── _head.html.erb │ ├── _header.html.erb │ ├── application.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ ├── print.html.erb │ └── static_pages.html.erb │ ├── order_mailer │ ├── assignee_email.html.erb │ └── assignee_email.txt.erb │ ├── orders │ ├── call_slip.html.erb │ └── invoice.html.erb │ ├── pages │ └── home.html.erb │ ├── static_pages │ └── index.html.erb │ └── work_complete_mailer │ └── assignee_email.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── bower.json ├── config.ru ├── config ├── application.rb ├── application_example.yml ├── boot.rb ├── database-mysql.yml ├── database-sqlite3.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── archivesspace_config.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── bower_rails.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── paper_trail.rb │ ├── resque.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── routes.rb └── schedule.rb ├── db ├── migrate │ ├── 20170726171934_create_digital_image_orders.rb │ ├── 20170726173418_add_detail_to_item_orders.rb │ ├── 20170807163802_add_total_pages_to_item_orders.rb │ ├── 20170829153229_add_fields_to_digital_image_orders.rb │ ├── 20170905170746_create_order_fees.rb │ ├── 20170906134622_create_reproduction_specs.rb │ ├── 20170906134654_create_reproduction_formats.rb │ ├── 20170906150515_remove_item_order_repro_fields.rb │ ├── 20170906163509_remove_order_type_id_from_orders.rb │ ├── 20170908134249_update_reproduction_formats.rb │ ├── 20170911145824_add_default_fee_to_reproduction_format.rb │ ├── 20170925202456_add_type_to_order_fees.rb │ ├── 20170926194445_update_order_fees.rb │ ├── 20170928171808_update_digital_image_order_columns.rb │ ├── 20170929153343_add_cloned_order_id_to_orders.rb │ ├── 20171003201328_add_default_location_id_to_order_sub_types.rb │ ├── 20171005183146_remove_default_from_locations.rb │ ├── 20171013192731_add_requested_images_detail.rb │ ├── 20171023133636_add_old_uri_to_items.rb │ ├── 20171103132927_add_default_to_order_sub_type.rb │ ├── 20171103142835_add_invoice_date_to_orders.rb │ ├── 20171108192803_orders_add_invoice_payment_date.rb │ ├── 20171108210616_orders_add_invoice_attn.rb │ ├── 20171120184558_add_total_images_to_digital_image_orders.rb │ ├── 20171206205745_add_invoice_id_to_order.rb │ ├── 20180423203305_change_patron_to_researcher.rb │ ├── 20180605134836_add_deactivate_fields_to_item_orders.rb │ ├── 20180626154304_create_invoices.rb │ ├── 20180628180936_add_remote_to_order_users.rb │ ├── 20180703144008_rename_digital_image_to_digital_collections.rb │ └── 20180717170822_add_inactive_to_users.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep ├── tasks │ ├── .keep │ ├── circa.rake │ ├── enumerations.rake │ ├── items.rake │ ├── ncsu_reports.rake │ ├── orders.rake │ ├── reports.rake │ ├── resque.rake │ ├── search_index.rake │ ├── solr.rake │ ├── special.rake │ ├── users.rake │ └── users_ncsu.rake └── yaml │ └── countries.yml ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── homescreen-icon-114x114.png ├── homescreen-icon-57x57.png ├── homescreen-icon-72x72.png ├── javascripts │ └── angular │ │ └── controllers │ │ └── spec │ │ └── javascripts │ │ ├── helpers │ │ └── .gitkeep │ │ └── support │ │ ├── jasmine.yml │ │ └── jasmine_helper.rb ├── robots.txt └── templates │ ├── application │ ├── dashboard.html │ └── settings.html │ ├── common │ ├── admin_override.html │ ├── app_header.html │ ├── blank.html │ ├── delete_record.html │ ├── pagination.html │ ├── processing.html │ ├── remove_list_filter.html │ ├── search_form.html │ ├── sort_order_toggle_alpha.html │ ├── sort_order_toggle_numeric.html │ └── validation_error.html │ ├── dashboard │ ├── course_reserves.html │ ├── digital_object_requests.html │ ├── item_sub_record.html │ ├── items_in_transit_for_use.html │ ├── pending_transfers.html │ └── returns_in_transit.html │ ├── enumeration_values │ ├── edit.html │ ├── form_fields.html │ ├── list.html │ ├── merge.html │ └── new.html │ ├── items │ ├── item_detail.html │ ├── item_location_overview.html │ ├── item_overview.html │ ├── list.html │ ├── list_filters.html │ ├── list_sort.html │ ├── location_selector.html │ ├── modification_history.html │ ├── movement_history.html │ ├── obsolete.html │ ├── order_list.html │ ├── show.html │ └── version_overview.html │ ├── locations │ ├── edit.html │ ├── form_fields.html │ ├── list.html │ ├── new.html │ └── show.html │ ├── order_sub_types │ ├── edit.html │ ├── list.html │ └── new.html │ ├── orders │ ├── bulk_item_events.html │ ├── check_out_controls.html │ ├── clone.html │ ├── edit.html │ ├── fields │ │ ├── archivesspace_record_selector.html │ │ ├── assignee_selector.html │ │ ├── assignees.html │ │ ├── course_info.html │ │ ├── dates.html │ │ ├── invoice_attn.html │ │ ├── invoice_date.html │ │ ├── invoice_payment_date.html │ │ ├── item_list.html │ │ ├── items.html │ │ ├── location.html │ │ ├── location_old.html │ │ ├── notes.html │ │ ├── order_reproduction_fee.html │ │ ├── order_type_sub_type.html │ │ ├── removed_assignees_list.html │ │ ├── removed_items_list.html │ │ ├── removed_users_list.html │ │ ├── reproduction_fees.html │ │ ├── reproduction_item_spec.html │ │ ├── reproduction_items.html │ │ ├── reproduction_user.html │ │ ├── research_users.html │ │ ├── user_selector.html │ │ └── users.html │ ├── form_fields.html │ ├── history.html │ ├── invoice_form.html │ ├── item_order_reproduction_details.html │ ├── item_other_open_orders.html │ ├── list.html │ ├── list_filters.html │ ├── list_sort.html │ ├── new.html │ ├── new_user_modal.html │ ├── order_actions.html │ ├── order_details.html │ ├── order_researchers.html │ ├── record_list_item.html │ ├── record_list_item_short.html │ ├── show.html │ ├── show_item_list.html │ ├── user_list.html │ ├── user_overview.html │ └── workflow_controls.html │ ├── reports.html │ ├── reports │ ├── date_config.html │ ├── list.html │ ├── orders_per_researcher_type.html │ ├── requests_per_location.html │ ├── requests_per_resource.html │ ├── researchers_per_type.html │ ├── transfers_per_location.html │ └── unique_visits.html │ ├── test.html │ ├── user_roles │ ├── edit.html │ ├── form_fields.html │ ├── list.html │ ├── merge.html │ └── new.html │ └── users │ ├── edit.html │ ├── form_fields.html │ ├── ldap_search.html │ ├── list.html │ ├── new.html │ ├── order_list.html │ ├── record_list_item.html │ └── show.html ├── reports ├── .keep ├── access_sessions_2017-07-01-2018-06-30.csv └── unique_visits_2017-07-01-2018-06-30.csv ├── solr_conf ├── _rest_managed.json ├── configoverlay.json ├── currency.xml ├── lang │ └── stopwords_en.txt ├── protwords.txt ├── schema.xml ├── solrconfig.xml ├── stopwords.txt └── synonyms.txt ├── spec ├── controllers │ ├── enumeration_values_controller_spec.rb │ ├── items_controller_spec.rb │ ├── locations_controller_spec.rb │ ├── order_sub_types_controller_spec.rb │ ├── orders │ │ ├── orders_controller_delete_spec.rb │ │ ├── orders_controller_get_spec.rb │ │ ├── orders_controller_post_spec.rb │ │ └── orders_controller_put_spec.rb │ ├── reports_controller_spec.rb │ ├── user_roles_controller_spec.rb │ ├── users_controller_spec.rb │ └── utility_controller_spec.rb ├── factories.rb ├── helpers │ ├── enumeration_values_helper_spec.rb │ ├── order_sub_types_helper_spec.rb │ ├── reports_helper_spec.rb │ └── user_roles_helper_spec.rb ├── javascripts │ ├── circa_controllers_spec.js │ ├── helpers │ │ ├── .gitkeep │ │ ├── angular_helpers.js │ │ └── jasmine_examples │ │ │ └── SpecHelper.js │ ├── items_controllers_spec.js │ ├── jasmine_examples │ │ └── PlayerSpec_example.js │ └── support │ │ ├── jasmine.yml │ │ └── jasmine_helper.rb ├── mailers │ ├── order_mailer_spec.rb │ └── previews │ │ └── order_mailer_preview.rb ├── models │ ├── access_session_spec.rb │ ├── course_reserve_spec.rb │ ├── digital_collections_order_spec.rb │ ├── enumeration_spec.rb │ ├── enumeration_value_spec.rb │ ├── invoice_spec.rb │ ├── item_activation_spec.rb │ ├── item_catalog_record_spec.rb │ ├── item_order_spec.rb │ ├── item_spec.rb │ ├── location_spec.rb │ ├── note_spec.rb │ ├── order_fee_spec.rb │ ├── order_spec.rb │ ├── order_sub_type_spec.rb │ ├── order_type_spec.rb │ ├── order_user_spec.rb │ ├── reproduction_format_spec.rb │ ├── reproduction_spec_spec.rb │ ├── search_index_spec.rb │ ├── search_spec.rb │ ├── state_transition_spec.rb │ ├── user_access_session_spec.rb │ ├── user_role_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── routing │ └── routing_spec.rb ├── services │ ├── create_or_update_items_from_archivesspace_data_spec.rb │ ├── serialize_item_spec.rb │ ├── serialize_order_spec.rb │ └── serialize_record_spec.rb ├── spec_helper.rb ├── state_transitions │ ├── item_state_interaction_spec.rb │ ├── item_state_spec.rb │ └── order_state_spec.rb └── support │ ├── aspace_api_spec_support.rb │ ├── catalog_api_spec_support.rb │ ├── controller_helpers.rb │ ├── order_types_helpers.rb │ ├── transition_support.rb │ └── user_roles_spec_support.rb ├── user_guide ├── home.md ├── locations.md ├── login.md ├── orders.md ├── quickstart_demo.md ├── user_guide.md └── users.md └── vendor └── assets ├── .bowerrc ├── bower.json ├── bower_components ├── angucomplete-alt │ ├── .bower.json │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── angucomplete-alt.css │ ├── angucomplete-alt.js │ ├── bower.json │ ├── dist │ │ └── angucomplete-alt.min.js │ └── package.json ├── angular-animate │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── angular-animate.js │ ├── angular-animate.min.js │ ├── angular-animate.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angular-foundation │ ├── .bower.json │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── mm-foundation-tpls.js │ ├── mm-foundation-tpls.min.js │ ├── mm-foundation.js │ ├── mm-foundation.min.js │ └── package.json ├── angular-loader │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── angular-loader.js │ ├── angular-loader.min.js │ ├── angular-loader.min.js.map │ ├── bower.json │ └── package.json ├── angular-mocks │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── angular-mocks.js │ ├── bower.json │ ├── ngAnimateMock.js │ ├── ngMock.js │ ├── ngMockE2E.js │ └── package.json ├── angular-route │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angular │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── format-as-currency │ ├── .bower.json │ ├── LICENSE.md │ ├── README.md │ ├── bower.json │ ├── demo │ │ └── index.html │ ├── dist │ │ └── format-as-currency.js │ ├── gulpfile.js │ ├── karma.conf.js │ ├── package.json │ └── src │ │ └── format-as-currency.js └── ng-country-select │ ├── .bower.json │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── coffeelint.json │ ├── dist │ ├── ng-country-select.js │ └── ng-country-select.min.js │ ├── gulpfile.js │ └── package.json └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/.gitignore -------------------------------------------------------------------------------- /Bowerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/Bowerfile -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/development-playbook.retry: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /ansible/development-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/development-playbook.yml -------------------------------------------------------------------------------- /ansible/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/development.ini -------------------------------------------------------------------------------- /ansible/imported_roles/basic-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/basic-setup/README.md -------------------------------------------------------------------------------- /ansible/imported_roles/basic-setup/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:22 2019', version: v1.1.0} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/basic-setup/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/basic-setup/meta/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/basic-setup/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/basic-setup/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/dev-bundle/README.md: -------------------------------------------------------------------------------- 1 | # dev-bundle 2 | Role for adding ncsu github to known hosts. 3 | -------------------------------------------------------------------------------- /ansible/imported_roles/dev-bundle/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:22 2019', version: v1.1.0} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/dev-bundle/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | author: ncsu-lib 4 | description: 5 | -------------------------------------------------------------------------------- /ansible/imported_roles/dev-bundle/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/dev-bundle/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/dev-open-firewall/README.md: -------------------------------------------------------------------------------- 1 | # dev-open-firewall 2 | Role for opening necessary ports. 3 | -------------------------------------------------------------------------------- /ansible/imported_roles/dev-open-firewall/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:23 2019', version: v1.1.0} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/dev-open-firewall/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | author: ncsu-lib 4 | description: 5 | -------------------------------------------------------------------------------- /ansible/imported_roles/dev-open-firewall/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/dev-open-firewall/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | */__pycache__ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/.travis.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/LICENSE -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/README.md -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/defaults/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:22 2019', version: 1.9.5} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/meta/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/molecule/default/tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/molecule/default/tests/test_default.py -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/molecule/default/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/molecule/default/yaml-lint.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/tasks/setup-FreeBSD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/tasks/setup-FreeBSD.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/templates/java_home.sh.j2: -------------------------------------------------------------------------------- 1 | export JAVA_HOME={{ java_home }} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Debian-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Debian-8.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Debian-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Debian-9.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Fedora.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/FreeBSD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/FreeBSD.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/RedHat-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/RedHat-6.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/RedHat-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/RedHat-7.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Ubuntu-12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Ubuntu-12.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Ubuntu-14.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Ubuntu-14.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Ubuntu-16.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Ubuntu-16.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.java/vars/Ubuntu-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.java/vars/Ubuntu-18.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | */__pycache__ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/.travis.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/LICENSE -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/README.md -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/defaults/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/handlers/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:20 2019', version: 2.9.4} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/meta/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/molecule/default/molecule.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/molecule/default/playbook.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/molecule/default/yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/molecule/default/yaml-lint.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/configure.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/databases.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/replication.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/replication.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/secure-installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/secure-installation.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/setup-Archlinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/setup-Archlinux.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/users.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/tasks/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/tasks/variables.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/templates/my.cnf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/templates/my.cnf.j2 -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/templates/root-my.cnf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/templates/root-my.cnf.j2 -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/templates/user-my.cnf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/templates/user-my.cnf.j2 -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/vars/Archlinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/vars/Archlinux.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/vars/Debian.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/vars/RedHat-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/vars/RedHat-6.yml -------------------------------------------------------------------------------- /ansible/imported_roles/geerlingguy.mysql/vars/RedHat-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/geerlingguy.mysql/vars/RedHat-7.yml -------------------------------------------------------------------------------- /ansible/imported_roles/github-com-known-host/README.md: -------------------------------------------------------------------------------- 1 | # github-com-known-host -------------------------------------------------------------------------------- /ansible/imported_roles/github-com-known-host/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:22 2019', version: v1.1.0} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/github-com-known-host/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | author: ncsu-lib 4 | description: 5 | -------------------------------------------------------------------------------- /ansible/imported_roles/github-com-known-host/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/github-com-known-host/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm-setup/README.md: -------------------------------------------------------------------------------- 1 | # rvm-setup -------------------------------------------------------------------------------- /ansible/imported_roles/rvm-setup/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:23 2019', version: v1.1.0} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/rvm-setup/meta/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | galaxy_info: 3 | author: ncsu-lib 4 | description: 5 | -------------------------------------------------------------------------------- /ansible/imported_roles/rvm-setup/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm-setup/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/.gitignore -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/.travis.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/CHANGELOG.md -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/CONTRIBUTING.md -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/LICENSE -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/README.md -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/defaults/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:18 2019', version: v2.1.2} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/meta/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tasks/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tasks/rubies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tasks/rubies.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tasks/rvm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tasks/rvm.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/ansible.cfg -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/assertions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/assertions.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/docker-compose.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/centos6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/centos6/Dockerfile -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/centos7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/centos7/Dockerfile -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/debian8/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/debian8/Dockerfile -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/debian8/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/debian8/build -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/debian9/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/debian9/Dockerfile -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/ubuntu14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/ubuntu14/Dockerfile -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/ubuntu14/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/ubuntu14/build -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/dockerfiles/ubuntu16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/dockerfiles/ubuntu16/Dockerfile -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/inventory -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/root.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/tests/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/tests/user.yml -------------------------------------------------------------------------------- /ansible/imported_roles/rvm.ruby/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/rvm.ruby/vars/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/solr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/solr/.gitignore -------------------------------------------------------------------------------- /ansible/imported_roles/solr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/solr/README.md -------------------------------------------------------------------------------- /ansible/imported_roles/solr/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/solr/defaults/main.yml -------------------------------------------------------------------------------- /ansible/imported_roles/solr/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Mar 19 16:12:23 2019', version: ''} 2 | -------------------------------------------------------------------------------- /ansible/imported_roles/solr/meta/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/imported_roles/solr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/imported_roles/solr/tasks/main.yml -------------------------------------------------------------------------------- /ansible/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/requirements.yml -------------------------------------------------------------------------------- /ansible/roles/ansible-solr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/ansible-solr/.gitignore -------------------------------------------------------------------------------- /ansible/roles/ansible-solr/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/ansible-solr/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/ansible-solr/meta/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/roles/ansible-solr/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/ansible-solr/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/archivesspace/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/archivesspace/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/basic-setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/basic-setup/.gitignore -------------------------------------------------------------------------------- /ansible/roles/basic-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/basic-setup/README.md -------------------------------------------------------------------------------- /ansible/roles/basic-setup/meta/main.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/roles/basic-setup/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/basic-setup/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/circa/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/circa/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dev-bundle/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/dev-bundle/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/.travis.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/README.md -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Tue Oct 3 20:04:21 2017', version: 1.7.4} 2 | -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/tasks/setup-FreeBSD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/tasks/setup-FreeBSD.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/templates/java_home.sh.j2: -------------------------------------------------------------------------------- 1 | export JAVA_HOME={{ java_home }} 2 | -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/tests/test.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/Debian.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/Fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/Fedora.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/FreeBSD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/FreeBSD.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/RedHat.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/Ubuntu-12.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/Ubuntu-12.04.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/Ubuntu-14.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/Ubuntu-14.04.yml -------------------------------------------------------------------------------- /ansible/roles/geerlingguy.java/vars/Ubuntu-16.04.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/geerlingguy.java/vars/Ubuntu-16.04.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/.gitignore -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/.travis.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/LICENSE -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/README.md -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/defaults/main.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/meta/.galaxy_install_info: -------------------------------------------------------------------------------- 1 | {install_date: 'Wed Sep 20 19:27:19 2017', version: v2.0.1} 2 | -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/meta/main.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/tasks/rubies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/tasks/rubies.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/tasks/rvm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/tasks/rvm.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/tests/test.yml -------------------------------------------------------------------------------- /ansible/roles/rvm_io.ruby/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/ansible/roles/rvm_io.ruby/vars/main.yml -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/api.md -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/calendar.gif -------------------------------------------------------------------------------- /app/assets/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/calendar.png -------------------------------------------------------------------------------- /app/assets/images/circa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/circa.png -------------------------------------------------------------------------------- /app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/images/ncsu-library-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/ncsu-library-logo-white.png -------------------------------------------------------------------------------- /app/assets/images/timeline_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/timeline_sprite.png -------------------------------------------------------------------------------- /app/assets/images/timeline_sprite_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/timeline_sprite_end.png -------------------------------------------------------------------------------- /app/assets/images/timeline_sprite_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/images/timeline_sprite_start.png -------------------------------------------------------------------------------- /app/assets/javascripts/angular/app.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/app.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/.DS_Store -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/circa/circa_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/circa/circa_item.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/circa/circa_locations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/circa/circa_locations.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/circa/circa_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/circa/circa_order.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/circa/circa_shared_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/circa/circa_shared_utils.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/circa/circa_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/circa/circa_user.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/circa_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/circa_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/custom/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/dashboard/course_reserves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/dashboard/course_reserves.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/dashboard/digital_object_requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/dashboard/digital_object_requests.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/dashboard/items_in_transit_for_use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/dashboard/items_in_transit_for_use.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/dashboard/pending_transfers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/dashboard/pending_transfers.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/dashboard/returns_in_transit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/dashboard/returns_in_transit.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/dashboard_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/dashboard_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_edit_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_edit_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_merge_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_merge_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_new_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/enumeration_values/enumeration_values_new_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/enumeration_values_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/enumeration_values_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/items/items_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/items/items_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/items/items_show_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/items/items_show_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/items_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/items_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/locations/locations_edit_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/locations/locations_edit_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/locations/locations_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/locations/locations_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/locations/locations_new_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/locations/locations_new_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/locations/locations_show_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/locations/locations_show_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/locations_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/locations_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/order_sub_types/order_sub_types_edit_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/order_sub_types/order_sub_types_edit_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/order_sub_types/order_sub_types_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/order_sub_types/order_sub_types_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/order_sub_types_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/order_sub_types_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders/orders_clone_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders/orders_clone_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders/orders_edit_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders/orders_edit_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders/orders_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders/orders_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders/orders_new_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders/orders_new_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders/orders_show_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders/orders_show_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_archivesspace_records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_archivesspace_records.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_filters.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_form_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_form_utils.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_invoice.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_items.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_reproduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_reproduction.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_shared_items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_shared_items.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_users.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/orders_ctrl_functions/orders_validation.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/reports_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/reports_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/settings_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/settings_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/user_roles/user_roles_edit_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/user_roles/user_roles_edit_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/user_roles/user_roles_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/user_roles/user_roles_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/user_roles/user_roles_merge_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/user_roles/user_roles_merge_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/user_roles/user_roles_new_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/user_roles/user_roles_new_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/user_roles_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/user_roles_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/users/users_edit_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/users/users_edit_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/users/users_list_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/users/users_list_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/users/users_new_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/users/users_new_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/users/users_show_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/users/users_show_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/controllers/users_ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/controllers/users_ctrl.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/directives/common_directives.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/directives/common_directives.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/angular/directives/form_directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/directives/form_directives.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/filters/common_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/filters/common_filters.js -------------------------------------------------------------------------------- /app/assets/javascripts/angular/services/common_services.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/services/common_services.js.erb -------------------------------------------------------------------------------- /app/assets/javascripts/angular/services/form_utilities.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/assets/javascripts/angular/services/reports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/angular/services/reports.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/ecmascript6_polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/ecmascript6_polyfill.js -------------------------------------------------------------------------------- /app/assets/javascripts/jasmine_examples/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/jasmine_examples/Player.js -------------------------------------------------------------------------------- /app/assets/javascripts/jasmine_examples/Song.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/javascripts/jasmine_examples/Song.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/core.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/dashboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/forms.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/foundation_resets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/foundation_resets.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/header.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/items.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/items.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/layout.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/list_view_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/list_view_components.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/modal.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/orders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/orders.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/pages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/print.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/record_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/record_display.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/reports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/reports.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/assets/stylesheets/variables.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/api_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/concerns/api_utilities.rb -------------------------------------------------------------------------------- /app/controllers/concerns/solr_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/concerns/solr_list.rb -------------------------------------------------------------------------------- /app/controllers/enumeration_values_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/enumeration_values_controller.rb -------------------------------------------------------------------------------- /app/controllers/invoices_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/invoices_controller.rb -------------------------------------------------------------------------------- /app/controllers/items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/items_controller.rb -------------------------------------------------------------------------------- /app/controllers/locations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/locations_controller.rb -------------------------------------------------------------------------------- /app/controllers/order_sub_types_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/order_sub_types_controller.rb -------------------------------------------------------------------------------- /app/controllers/orders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/orders_controller.rb -------------------------------------------------------------------------------- /app/controllers/reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_roles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/user_roles_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/confirmations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users/confirmations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/omniauth_callbacks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users/omniauth_callbacks_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/unlocks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users/unlocks_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/utility_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/controllers/utility_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/enumeration_values_helper.rb: -------------------------------------------------------------------------------- 1 | module EnumerationValuesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/invoices_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/helpers/invoices_helper.rb -------------------------------------------------------------------------------- /app/helpers/items_helper.rb: -------------------------------------------------------------------------------- 1 | module ItemsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/locations_helper.rb: -------------------------------------------------------------------------------- 1 | module LocationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/order_sub_types_helper.rb: -------------------------------------------------------------------------------- 1 | module OrderSubTypesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/orders_helper.rb: -------------------------------------------------------------------------------- 1 | module OrdersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- 1 | module PagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/reports_helper.rb: -------------------------------------------------------------------------------- 1 | module ReportsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- 1 | module SearchHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/user_roles_helper.rb: -------------------------------------------------------------------------------- 1 | module UserRolesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/lib/aspace_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/lib/aspace_utilities.rb -------------------------------------------------------------------------------- /app/lib/circa_exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/lib/circa_exceptions.rb -------------------------------------------------------------------------------- /app/lib/date_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/lib/date_utilities.rb -------------------------------------------------------------------------------- /app/lib/enumeration_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/lib/enumeration_utilities.rb -------------------------------------------------------------------------------- /app/lib/general_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/lib/general_utilities.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/order_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/mailers/order_mailer.rb -------------------------------------------------------------------------------- /app/mailers/work_complete_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/mailers/work_complete_mailer.rb -------------------------------------------------------------------------------- /app/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/.DS_Store -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/access_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/access_session.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/aspace_connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/aspace_connect.rb -------------------------------------------------------------------------------- /app/models/concerns/item_state_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/item_state_config.rb -------------------------------------------------------------------------------- /app/models/concerns/order_state_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/order_state_config.rb -------------------------------------------------------------------------------- /app/models/concerns/ref_integrity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/ref_integrity.rb -------------------------------------------------------------------------------- /app/models/concerns/solr_connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/solr_connect.rb -------------------------------------------------------------------------------- /app/models/concerns/solr_doc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/solr_doc.rb -------------------------------------------------------------------------------- /app/models/concerns/state_transition_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/state_transition_support.rb -------------------------------------------------------------------------------- /app/models/concerns/user_roles.rb.bk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/user_roles.rb.bk -------------------------------------------------------------------------------- /app/models/concerns/versions_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/concerns/versions_support.rb -------------------------------------------------------------------------------- /app/models/course_reserve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/course_reserve.rb -------------------------------------------------------------------------------- /app/models/digital_collections_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/digital_collections_order.rb -------------------------------------------------------------------------------- /app/models/enumeration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/enumeration.rb -------------------------------------------------------------------------------- /app/models/enumeration_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/enumeration_value.rb -------------------------------------------------------------------------------- /app/models/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/invoice.rb -------------------------------------------------------------------------------- /app/models/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/item.rb -------------------------------------------------------------------------------- /app/models/item_archivesspace_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/item_archivesspace_record.rb -------------------------------------------------------------------------------- /app/models/item_catalog_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/item_catalog_record.rb -------------------------------------------------------------------------------- /app/models/item_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/item_order.rb -------------------------------------------------------------------------------- /app/models/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/location.rb -------------------------------------------------------------------------------- /app/models/note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/note.rb -------------------------------------------------------------------------------- /app/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order.rb -------------------------------------------------------------------------------- /app/models/order_archivesspace_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order_archivesspace_record.rb -------------------------------------------------------------------------------- /app/models/order_assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order_assignment.rb -------------------------------------------------------------------------------- /app/models/order_fee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order_fee.rb -------------------------------------------------------------------------------- /app/models/order_sub_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order_sub_type.rb -------------------------------------------------------------------------------- /app/models/order_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order_type.rb -------------------------------------------------------------------------------- /app/models/order_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/order_user.rb -------------------------------------------------------------------------------- /app/models/paper_trail/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/paper_trail/version.rb -------------------------------------------------------------------------------- /app/models/reproduction_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/reproduction_format.rb -------------------------------------------------------------------------------- /app/models/reproduction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/reproduction_spec.rb -------------------------------------------------------------------------------- /app/models/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/search.rb -------------------------------------------------------------------------------- /app/models/search_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/search_index.rb -------------------------------------------------------------------------------- /app/models/state_transition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/state_transition.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_access_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/user_access_session.rb -------------------------------------------------------------------------------- /app/models/user_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/models/user_role.rb -------------------------------------------------------------------------------- /app/services/create_or_update_items_from_archivesspace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/create_or_update_items_from_archivesspace.rb -------------------------------------------------------------------------------- /app/services/reports/access_sessions_per_resource_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/access_sessions_per_resource_report.rb -------------------------------------------------------------------------------- /app/services/reports/generate_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/generate_report.rb -------------------------------------------------------------------------------- /app/services/reports/item_requests_per_location_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/item_requests_per_location_report.rb -------------------------------------------------------------------------------- /app/services/reports/item_requests_per_resource_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/item_requests_per_resource_report.rb -------------------------------------------------------------------------------- /app/services/reports/item_transfers_per_location_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/item_transfers_per_location_report.rb -------------------------------------------------------------------------------- /app/services/reports/orders_per_researcher_type_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/orders_per_researcher_type_report.rb -------------------------------------------------------------------------------- /app/services/reports/researchers_by_type_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/researchers_by_type_report.rb -------------------------------------------------------------------------------- /app/services/reports/unique_visits_report.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/reports/unique_visits_report.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_enumeration_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_enumeration_value.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_item.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_location.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_order.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_order_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_order_history.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_order_sub_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_order_sub_type.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_record.rb -------------------------------------------------------------------------------- /app/services/serializers/serialize_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/services/serializers/serialize_user.rb -------------------------------------------------------------------------------- /app/views/custom/layouts/_head_custom.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/custom/layouts/_head_custom.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_from_address.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/invoices/_from_address.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_item_description_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/invoices/_item_description_row.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_per_order_fee_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/invoices/_per_order_fee_row.html.erb -------------------------------------------------------------------------------- /app/views/invoices/_per_unit_fee_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/invoices/_per_unit_fee_row.html.erb -------------------------------------------------------------------------------- /app/views/invoices/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/invoices/show.html.erb -------------------------------------------------------------------------------- /app/views/items/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/create.html.erb -------------------------------------------------------------------------------- /app/views/items/destroy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/destroy.html.erb -------------------------------------------------------------------------------- /app/views/items/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/index.html.erb -------------------------------------------------------------------------------- /app/views/items/items_in_transit_for_use_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/items_in_transit_for_use_list.html.erb -------------------------------------------------------------------------------- /app/views/items/returns_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/returns_list.html.erb -------------------------------------------------------------------------------- /app/views/items/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/show.html.erb -------------------------------------------------------------------------------- /app/views/items/transfer_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/transfer_list.html.erb -------------------------------------------------------------------------------- /app/views/items/update.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/items/update.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_current_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/_current_user.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/_flash.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_google_analytics.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/_head.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/_head.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/print.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/print.html.erb -------------------------------------------------------------------------------- /app/views/layouts/static_pages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/layouts/static_pages.html.erb -------------------------------------------------------------------------------- /app/views/order_mailer/assignee_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/order_mailer/assignee_email.html.erb -------------------------------------------------------------------------------- /app/views/order_mailer/assignee_email.txt.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/order_mailer/assignee_email.txt.erb -------------------------------------------------------------------------------- /app/views/orders/call_slip.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/orders/call_slip.html.erb -------------------------------------------------------------------------------- /app/views/orders/invoice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/orders/invoice.html.erb -------------------------------------------------------------------------------- /app/views/pages/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/pages/home.html.erb -------------------------------------------------------------------------------- /app/views/static_pages/index.html.erb: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /app/views/work_complete_mailer/assignee_email.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/app/views/work_complete_mailer/assignee_email.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/bin/spring -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/bower.json -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/application_example.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/database-mysql.yml -------------------------------------------------------------------------------- /config/database-sqlite3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/database-sqlite3.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/archivesspace_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/archivesspace_config.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/bower_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/bower_rails.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/paper_trail.rb: -------------------------------------------------------------------------------- 1 | PaperTrail.config.track_associations = false 2 | -------------------------------------------------------------------------------- /config/initializers/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/resque.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /db/migrate/20170726171934_create_digital_image_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170726171934_create_digital_image_orders.rb -------------------------------------------------------------------------------- /db/migrate/20170726173418_add_detail_to_item_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170726173418_add_detail_to_item_orders.rb -------------------------------------------------------------------------------- /db/migrate/20170807163802_add_total_pages_to_item_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170807163802_add_total_pages_to_item_orders.rb -------------------------------------------------------------------------------- /db/migrate/20170829153229_add_fields_to_digital_image_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170829153229_add_fields_to_digital_image_orders.rb -------------------------------------------------------------------------------- /db/migrate/20170905170746_create_order_fees.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170905170746_create_order_fees.rb -------------------------------------------------------------------------------- /db/migrate/20170906134622_create_reproduction_specs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170906134622_create_reproduction_specs.rb -------------------------------------------------------------------------------- /db/migrate/20170906134654_create_reproduction_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170906134654_create_reproduction_formats.rb -------------------------------------------------------------------------------- /db/migrate/20170906150515_remove_item_order_repro_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170906150515_remove_item_order_repro_fields.rb -------------------------------------------------------------------------------- /db/migrate/20170906163509_remove_order_type_id_from_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170906163509_remove_order_type_id_from_orders.rb -------------------------------------------------------------------------------- /db/migrate/20170908134249_update_reproduction_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170908134249_update_reproduction_formats.rb -------------------------------------------------------------------------------- /db/migrate/20170911145824_add_default_fee_to_reproduction_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170911145824_add_default_fee_to_reproduction_format.rb -------------------------------------------------------------------------------- /db/migrate/20170925202456_add_type_to_order_fees.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170925202456_add_type_to_order_fees.rb -------------------------------------------------------------------------------- /db/migrate/20170926194445_update_order_fees.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170926194445_update_order_fees.rb -------------------------------------------------------------------------------- /db/migrate/20170928171808_update_digital_image_order_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170928171808_update_digital_image_order_columns.rb -------------------------------------------------------------------------------- /db/migrate/20170929153343_add_cloned_order_id_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20170929153343_add_cloned_order_id_to_orders.rb -------------------------------------------------------------------------------- /db/migrate/20171003201328_add_default_location_id_to_order_sub_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171003201328_add_default_location_id_to_order_sub_types.rb -------------------------------------------------------------------------------- /db/migrate/20171005183146_remove_default_from_locations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171005183146_remove_default_from_locations.rb -------------------------------------------------------------------------------- /db/migrate/20171013192731_add_requested_images_detail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171013192731_add_requested_images_detail.rb -------------------------------------------------------------------------------- /db/migrate/20171023133636_add_old_uri_to_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171023133636_add_old_uri_to_items.rb -------------------------------------------------------------------------------- /db/migrate/20171103132927_add_default_to_order_sub_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171103132927_add_default_to_order_sub_type.rb -------------------------------------------------------------------------------- /db/migrate/20171103142835_add_invoice_date_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171103142835_add_invoice_date_to_orders.rb -------------------------------------------------------------------------------- /db/migrate/20171108192803_orders_add_invoice_payment_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171108192803_orders_add_invoice_payment_date.rb -------------------------------------------------------------------------------- /db/migrate/20171108210616_orders_add_invoice_attn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171108210616_orders_add_invoice_attn.rb -------------------------------------------------------------------------------- /db/migrate/20171120184558_add_total_images_to_digital_image_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171120184558_add_total_images_to_digital_image_orders.rb -------------------------------------------------------------------------------- /db/migrate/20171206205745_add_invoice_id_to_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20171206205745_add_invoice_id_to_order.rb -------------------------------------------------------------------------------- /db/migrate/20180423203305_change_patron_to_researcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20180423203305_change_patron_to_researcher.rb -------------------------------------------------------------------------------- /db/migrate/20180605134836_add_deactivate_fields_to_item_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20180605134836_add_deactivate_fields_to_item_orders.rb -------------------------------------------------------------------------------- /db/migrate/20180626154304_create_invoices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20180626154304_create_invoices.rb -------------------------------------------------------------------------------- /db/migrate/20180628180936_add_remote_to_order_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20180628180936_add_remote_to_order_users.rb -------------------------------------------------------------------------------- /db/migrate/20180703144008_rename_digital_image_to_digital_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20180703144008_rename_digital_image_to_digital_collections.rb -------------------------------------------------------------------------------- /db/migrate/20180717170822_add_inactive_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/migrate/20180717170822_add_inactive_to_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/circa.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/circa.rake -------------------------------------------------------------------------------- /lib/tasks/enumerations.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/enumerations.rake -------------------------------------------------------------------------------- /lib/tasks/items.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/items.rake -------------------------------------------------------------------------------- /lib/tasks/ncsu_reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/ncsu_reports.rake -------------------------------------------------------------------------------- /lib/tasks/orders.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/orders.rake -------------------------------------------------------------------------------- /lib/tasks/reports.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/reports.rake -------------------------------------------------------------------------------- /lib/tasks/resque.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/resque.rake -------------------------------------------------------------------------------- /lib/tasks/search_index.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/search_index.rake -------------------------------------------------------------------------------- /lib/tasks/solr.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/solr.rake -------------------------------------------------------------------------------- /lib/tasks/special.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/special.rake -------------------------------------------------------------------------------- /lib/tasks/users.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/users.rake -------------------------------------------------------------------------------- /lib/tasks/users_ncsu.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/tasks/users_ncsu.rake -------------------------------------------------------------------------------- /lib/yaml/countries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/lib/yaml/countries.yml -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/homescreen-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/homescreen-icon-114x114.png -------------------------------------------------------------------------------- /public/homescreen-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/homescreen-icon-57x57.png -------------------------------------------------------------------------------- /public/homescreen-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/homescreen-icon-72x72.png -------------------------------------------------------------------------------- /public/javascripts/angular/controllers/spec/javascripts/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/javascripts/angular/controllers/spec/javascripts/support/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/javascripts/angular/controllers/spec/javascripts/support/jasmine.yml -------------------------------------------------------------------------------- /public/javascripts/angular/controllers/spec/javascripts/support/jasmine_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/javascripts/angular/controllers/spec/javascripts/support/jasmine_helper.rb -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/templates/application/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/application/dashboard.html -------------------------------------------------------------------------------- /public/templates/application/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/application/settings.html -------------------------------------------------------------------------------- /public/templates/common/admin_override.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/admin_override.html -------------------------------------------------------------------------------- /public/templates/common/app_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/app_header.html -------------------------------------------------------------------------------- /public/templates/common/blank.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/templates/common/delete_record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/delete_record.html -------------------------------------------------------------------------------- /public/templates/common/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/pagination.html -------------------------------------------------------------------------------- /public/templates/common/processing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/processing.html -------------------------------------------------------------------------------- /public/templates/common/remove_list_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/remove_list_filter.html -------------------------------------------------------------------------------- /public/templates/common/search_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/search_form.html -------------------------------------------------------------------------------- /public/templates/common/sort_order_toggle_alpha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/sort_order_toggle_alpha.html -------------------------------------------------------------------------------- /public/templates/common/sort_order_toggle_numeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/sort_order_toggle_numeric.html -------------------------------------------------------------------------------- /public/templates/common/validation_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/common/validation_error.html -------------------------------------------------------------------------------- /public/templates/dashboard/course_reserves.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/dashboard/course_reserves.html -------------------------------------------------------------------------------- /public/templates/dashboard/digital_object_requests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/dashboard/digital_object_requests.html -------------------------------------------------------------------------------- /public/templates/dashboard/item_sub_record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/dashboard/item_sub_record.html -------------------------------------------------------------------------------- /public/templates/dashboard/items_in_transit_for_use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/dashboard/items_in_transit_for_use.html -------------------------------------------------------------------------------- /public/templates/dashboard/pending_transfers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/dashboard/pending_transfers.html -------------------------------------------------------------------------------- /public/templates/dashboard/returns_in_transit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/dashboard/returns_in_transit.html -------------------------------------------------------------------------------- /public/templates/enumeration_values/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/enumeration_values/edit.html -------------------------------------------------------------------------------- /public/templates/enumeration_values/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/enumeration_values/form_fields.html -------------------------------------------------------------------------------- /public/templates/enumeration_values/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/enumeration_values/list.html -------------------------------------------------------------------------------- /public/templates/enumeration_values/merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/enumeration_values/merge.html -------------------------------------------------------------------------------- /public/templates/enumeration_values/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/enumeration_values/new.html -------------------------------------------------------------------------------- /public/templates/items/item_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/item_detail.html -------------------------------------------------------------------------------- /public/templates/items/item_location_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/item_location_overview.html -------------------------------------------------------------------------------- /public/templates/items/item_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/item_overview.html -------------------------------------------------------------------------------- /public/templates/items/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/list.html -------------------------------------------------------------------------------- /public/templates/items/list_filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/list_filters.html -------------------------------------------------------------------------------- /public/templates/items/list_sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/list_sort.html -------------------------------------------------------------------------------- /public/templates/items/location_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/location_selector.html -------------------------------------------------------------------------------- /public/templates/items/modification_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/modification_history.html -------------------------------------------------------------------------------- /public/templates/items/movement_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/movement_history.html -------------------------------------------------------------------------------- /public/templates/items/obsolete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/obsolete.html -------------------------------------------------------------------------------- /public/templates/items/order_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/order_list.html -------------------------------------------------------------------------------- /public/templates/items/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/show.html -------------------------------------------------------------------------------- /public/templates/items/version_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/items/version_overview.html -------------------------------------------------------------------------------- /public/templates/locations/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/locations/edit.html -------------------------------------------------------------------------------- /public/templates/locations/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/locations/form_fields.html -------------------------------------------------------------------------------- /public/templates/locations/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/locations/list.html -------------------------------------------------------------------------------- /public/templates/locations/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/locations/new.html -------------------------------------------------------------------------------- /public/templates/locations/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/locations/show.html -------------------------------------------------------------------------------- /public/templates/order_sub_types/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/order_sub_types/edit.html -------------------------------------------------------------------------------- /public/templates/order_sub_types/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/order_sub_types/list.html -------------------------------------------------------------------------------- /public/templates/order_sub_types/new.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/templates/orders/bulk_item_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/bulk_item_events.html -------------------------------------------------------------------------------- /public/templates/orders/check_out_controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/check_out_controls.html -------------------------------------------------------------------------------- /public/templates/orders/clone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/clone.html -------------------------------------------------------------------------------- /public/templates/orders/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/edit.html -------------------------------------------------------------------------------- /public/templates/orders/fields/archivesspace_record_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/archivesspace_record_selector.html -------------------------------------------------------------------------------- /public/templates/orders/fields/assignee_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/assignee_selector.html -------------------------------------------------------------------------------- /public/templates/orders/fields/assignees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/assignees.html -------------------------------------------------------------------------------- /public/templates/orders/fields/course_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/course_info.html -------------------------------------------------------------------------------- /public/templates/orders/fields/dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/dates.html -------------------------------------------------------------------------------- /public/templates/orders/fields/invoice_attn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/invoice_attn.html -------------------------------------------------------------------------------- /public/templates/orders/fields/invoice_date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/invoice_date.html -------------------------------------------------------------------------------- /public/templates/orders/fields/invoice_payment_date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/invoice_payment_date.html -------------------------------------------------------------------------------- /public/templates/orders/fields/item_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/item_list.html -------------------------------------------------------------------------------- /public/templates/orders/fields/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/items.html -------------------------------------------------------------------------------- /public/templates/orders/fields/location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/location.html -------------------------------------------------------------------------------- /public/templates/orders/fields/location_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/location_old.html -------------------------------------------------------------------------------- /public/templates/orders/fields/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/notes.html -------------------------------------------------------------------------------- /public/templates/orders/fields/order_reproduction_fee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/order_reproduction_fee.html -------------------------------------------------------------------------------- /public/templates/orders/fields/order_type_sub_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/order_type_sub_type.html -------------------------------------------------------------------------------- /public/templates/orders/fields/removed_assignees_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/removed_assignees_list.html -------------------------------------------------------------------------------- /public/templates/orders/fields/removed_items_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/removed_items_list.html -------------------------------------------------------------------------------- /public/templates/orders/fields/removed_users_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/removed_users_list.html -------------------------------------------------------------------------------- /public/templates/orders/fields/reproduction_fees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/reproduction_fees.html -------------------------------------------------------------------------------- /public/templates/orders/fields/reproduction_item_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/reproduction_item_spec.html -------------------------------------------------------------------------------- /public/templates/orders/fields/reproduction_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/reproduction_items.html -------------------------------------------------------------------------------- /public/templates/orders/fields/reproduction_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/reproduction_user.html -------------------------------------------------------------------------------- /public/templates/orders/fields/research_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/research_users.html -------------------------------------------------------------------------------- /public/templates/orders/fields/user_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/user_selector.html -------------------------------------------------------------------------------- /public/templates/orders/fields/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/fields/users.html -------------------------------------------------------------------------------- /public/templates/orders/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/form_fields.html -------------------------------------------------------------------------------- /public/templates/orders/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/history.html -------------------------------------------------------------------------------- /public/templates/orders/invoice_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/invoice_form.html -------------------------------------------------------------------------------- /public/templates/orders/item_order_reproduction_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/item_order_reproduction_details.html -------------------------------------------------------------------------------- /public/templates/orders/item_other_open_orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/item_other_open_orders.html -------------------------------------------------------------------------------- /public/templates/orders/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/list.html -------------------------------------------------------------------------------- /public/templates/orders/list_filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/list_filters.html -------------------------------------------------------------------------------- /public/templates/orders/list_sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/list_sort.html -------------------------------------------------------------------------------- /public/templates/orders/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/new.html -------------------------------------------------------------------------------- /public/templates/orders/new_user_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/new_user_modal.html -------------------------------------------------------------------------------- /public/templates/orders/order_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/order_actions.html -------------------------------------------------------------------------------- /public/templates/orders/order_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/order_details.html -------------------------------------------------------------------------------- /public/templates/orders/order_researchers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/order_researchers.html -------------------------------------------------------------------------------- /public/templates/orders/record_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/record_list_item.html -------------------------------------------------------------------------------- /public/templates/orders/record_list_item_short.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/record_list_item_short.html -------------------------------------------------------------------------------- /public/templates/orders/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/show.html -------------------------------------------------------------------------------- /public/templates/orders/show_item_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/show_item_list.html -------------------------------------------------------------------------------- /public/templates/orders/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/user_list.html -------------------------------------------------------------------------------- /public/templates/orders/user_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/user_overview.html -------------------------------------------------------------------------------- /public/templates/orders/workflow_controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/orders/workflow_controls.html -------------------------------------------------------------------------------- /public/templates/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports.html -------------------------------------------------------------------------------- /public/templates/reports/date_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/date_config.html -------------------------------------------------------------------------------- /public/templates/reports/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/list.html -------------------------------------------------------------------------------- /public/templates/reports/orders_per_researcher_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/orders_per_researcher_type.html -------------------------------------------------------------------------------- /public/templates/reports/requests_per_location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/requests_per_location.html -------------------------------------------------------------------------------- /public/templates/reports/requests_per_resource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/requests_per_resource.html -------------------------------------------------------------------------------- /public/templates/reports/researchers_per_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/researchers_per_type.html -------------------------------------------------------------------------------- /public/templates/reports/transfers_per_location.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/transfers_per_location.html -------------------------------------------------------------------------------- /public/templates/reports/unique_visits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/reports/unique_visits.html -------------------------------------------------------------------------------- /public/templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/test.html -------------------------------------------------------------------------------- /public/templates/user_roles/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/user_roles/edit.html -------------------------------------------------------------------------------- /public/templates/user_roles/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/user_roles/form_fields.html -------------------------------------------------------------------------------- /public/templates/user_roles/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/user_roles/list.html -------------------------------------------------------------------------------- /public/templates/user_roles/merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/user_roles/merge.html -------------------------------------------------------------------------------- /public/templates/user_roles/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/user_roles/new.html -------------------------------------------------------------------------------- /public/templates/users/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/edit.html -------------------------------------------------------------------------------- /public/templates/users/form_fields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/form_fields.html -------------------------------------------------------------------------------- /public/templates/users/ldap_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/ldap_search.html -------------------------------------------------------------------------------- /public/templates/users/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/list.html -------------------------------------------------------------------------------- /public/templates/users/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/new.html -------------------------------------------------------------------------------- /public/templates/users/order_list.html: -------------------------------------------------------------------------------- 1 | {{ orders | json }} 2 | -------------------------------------------------------------------------------- /public/templates/users/record_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/record_list_item.html -------------------------------------------------------------------------------- /public/templates/users/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/public/templates/users/show.html -------------------------------------------------------------------------------- /reports/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reports/access_sessions_2017-07-01-2018-06-30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/reports/access_sessions_2017-07-01-2018-06-30.csv -------------------------------------------------------------------------------- /reports/unique_visits_2017-07-01-2018-06-30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/reports/unique_visits_2017-07-01-2018-06-30.csv -------------------------------------------------------------------------------- /solr_conf/_rest_managed.json: -------------------------------------------------------------------------------- 1 | {"initArgs":{},"managedList":[]} 2 | -------------------------------------------------------------------------------- /solr_conf/configoverlay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/configoverlay.json -------------------------------------------------------------------------------- /solr_conf/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/currency.xml -------------------------------------------------------------------------------- /solr_conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /solr_conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/protwords.txt -------------------------------------------------------------------------------- /solr_conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/schema.xml -------------------------------------------------------------------------------- /solr_conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/solrconfig.xml -------------------------------------------------------------------------------- /solr_conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/stopwords.txt -------------------------------------------------------------------------------- /solr_conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/solr_conf/synonyms.txt -------------------------------------------------------------------------------- /spec/controllers/enumeration_values_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/enumeration_values_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/items_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/items_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/locations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/locations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/order_sub_types_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/order_sub_types_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/orders/orders_controller_delete_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/orders/orders_controller_delete_spec.rb -------------------------------------------------------------------------------- /spec/controllers/orders/orders_controller_get_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/orders/orders_controller_get_spec.rb -------------------------------------------------------------------------------- /spec/controllers/orders/orders_controller_post_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/orders/orders_controller_post_spec.rb -------------------------------------------------------------------------------- /spec/controllers/orders/orders_controller_put_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/orders/orders_controller_put_spec.rb -------------------------------------------------------------------------------- /spec/controllers/reports_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/reports_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/user_roles_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/user_roles_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/users_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/users_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/utility_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/controllers/utility_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/helpers/enumeration_values_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/helpers/enumeration_values_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/order_sub_types_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/helpers/order_sub_types_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/reports_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/helpers/reports_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/user_roles_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/helpers/user_roles_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/circa_controllers_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/circa_controllers_spec.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/javascripts/helpers/angular_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/helpers/angular_helpers.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/jasmine_examples/SpecHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/helpers/jasmine_examples/SpecHelper.js -------------------------------------------------------------------------------- /spec/javascripts/items_controllers_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/items_controllers_spec.js -------------------------------------------------------------------------------- /spec/javascripts/jasmine_examples/PlayerSpec_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/jasmine_examples/PlayerSpec_example.js -------------------------------------------------------------------------------- /spec/javascripts/support/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/support/jasmine.yml -------------------------------------------------------------------------------- /spec/javascripts/support/jasmine_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/javascripts/support/jasmine_helper.rb -------------------------------------------------------------------------------- /spec/mailers/order_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/mailers/order_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/order_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/mailers/previews/order_mailer_preview.rb -------------------------------------------------------------------------------- /spec/models/access_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/access_session_spec.rb -------------------------------------------------------------------------------- /spec/models/course_reserve_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/course_reserve_spec.rb -------------------------------------------------------------------------------- /spec/models/digital_collections_order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/digital_collections_order_spec.rb -------------------------------------------------------------------------------- /spec/models/enumeration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/enumeration_spec.rb -------------------------------------------------------------------------------- /spec/models/enumeration_value_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/enumeration_value_spec.rb -------------------------------------------------------------------------------- /spec/models/invoice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/invoice_spec.rb -------------------------------------------------------------------------------- /spec/models/item_activation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/item_activation_spec.rb -------------------------------------------------------------------------------- /spec/models/item_catalog_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/item_catalog_record_spec.rb -------------------------------------------------------------------------------- /spec/models/item_order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/item_order_spec.rb -------------------------------------------------------------------------------- /spec/models/item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/item_spec.rb -------------------------------------------------------------------------------- /spec/models/location_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/location_spec.rb -------------------------------------------------------------------------------- /spec/models/note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/note_spec.rb -------------------------------------------------------------------------------- /spec/models/order_fee_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/order_fee_spec.rb -------------------------------------------------------------------------------- /spec/models/order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/order_spec.rb -------------------------------------------------------------------------------- /spec/models/order_sub_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/order_sub_type_spec.rb -------------------------------------------------------------------------------- /spec/models/order_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/order_type_spec.rb -------------------------------------------------------------------------------- /spec/models/order_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/order_user_spec.rb -------------------------------------------------------------------------------- /spec/models/reproduction_format_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/reproduction_format_spec.rb -------------------------------------------------------------------------------- /spec/models/reproduction_spec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/reproduction_spec_spec.rb -------------------------------------------------------------------------------- /spec/models/search_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/search_index_spec.rb -------------------------------------------------------------------------------- /spec/models/search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/search_spec.rb -------------------------------------------------------------------------------- /spec/models/state_transition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/state_transition_spec.rb -------------------------------------------------------------------------------- /spec/models/user_access_session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/user_access_session_spec.rb -------------------------------------------------------------------------------- /spec/models/user_role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/user_role_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/routing/routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/routing/routing_spec.rb -------------------------------------------------------------------------------- /spec/services/create_or_update_items_from_archivesspace_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/services/create_or_update_items_from_archivesspace_data_spec.rb -------------------------------------------------------------------------------- /spec/services/serialize_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/services/serialize_item_spec.rb -------------------------------------------------------------------------------- /spec/services/serialize_order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/services/serialize_order_spec.rb -------------------------------------------------------------------------------- /spec/services/serialize_record_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/services/serialize_record_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/state_transitions/item_state_interaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/state_transitions/item_state_interaction_spec.rb -------------------------------------------------------------------------------- /spec/state_transitions/item_state_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/state_transitions/item_state_spec.rb -------------------------------------------------------------------------------- /spec/state_transitions/order_state_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/state_transitions/order_state_spec.rb -------------------------------------------------------------------------------- /spec/support/aspace_api_spec_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/support/aspace_api_spec_support.rb -------------------------------------------------------------------------------- /spec/support/catalog_api_spec_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/support/catalog_api_spec_support.rb -------------------------------------------------------------------------------- /spec/support/controller_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/support/controller_helpers.rb -------------------------------------------------------------------------------- /spec/support/order_types_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/support/order_types_helpers.rb -------------------------------------------------------------------------------- /spec/support/transition_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/support/transition_support.rb -------------------------------------------------------------------------------- /spec/support/user_roles_spec_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/spec/support/user_roles_spec_support.rb -------------------------------------------------------------------------------- /user_guide/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/home.md -------------------------------------------------------------------------------- /user_guide/locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/locations.md -------------------------------------------------------------------------------- /user_guide/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/login.md -------------------------------------------------------------------------------- /user_guide/orders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/orders.md -------------------------------------------------------------------------------- /user_guide/quickstart_demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/quickstart_demo.md -------------------------------------------------------------------------------- /user_guide/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/user_guide.md -------------------------------------------------------------------------------- /user_guide/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/user_guide/users.md -------------------------------------------------------------------------------- /vendor/assets/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/assets/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/CONTRIBUTORS.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/Gruntfile.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/LICENSE -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/angucomplete-alt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/angucomplete-alt.css -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/angucomplete-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/angucomplete-alt.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/dist/angucomplete-alt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/dist/angucomplete-alt.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angucomplete-alt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angucomplete-alt/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/LICENSE.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/angular-animate.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/angular-animate.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/angular-animate.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/angular-animate.min.js.map -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/index.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-animate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-animate/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/.npmignore: -------------------------------------------------------------------------------- 1 | bower.json 2 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/LICENSE -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/mm-foundation-tpls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/mm-foundation-tpls.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/mm-foundation-tpls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/mm-foundation-tpls.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/mm-foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/mm-foundation.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/mm-foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/mm-foundation.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-foundation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-foundation/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/LICENSE.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/angular-loader.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/angular-loader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/angular-loader.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/angular-loader.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/angular-loader.min.js.map -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-loader/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-mocks/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-mocks/LICENSE.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-mocks/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-mocks/angular-mocks.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-mocks/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/ngAnimateMock.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngAnimateMock'; 3 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/ngMock.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngMock'; 3 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/ngMockE2E.js: -------------------------------------------------------------------------------- 1 | require('./angular-mocks'); 2 | module.exports = 'ngMockE2E'; 3 | -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-mocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-mocks/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/LICENSE.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/angular-route.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/angular-route.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/angular-route.min.js.map -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/index.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular-route/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular-route/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/LICENSE.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/angular.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/index.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/angular/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/LICENSE.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/demo/index.html -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/dist/format-as-currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/dist/format-as-currency.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/gulpfile.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/karma.conf.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/package.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/format-as-currency/src/format-as-currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/format-as-currency/src/format-as-currency.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/.bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/LICENSE.txt -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/README.md -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/bower.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/coffeelint.json -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/dist/ng-country-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/dist/ng-country-select.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/dist/ng-country-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/dist/ng-country-select.min.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/gulpfile.js -------------------------------------------------------------------------------- /vendor/assets/bower_components/ng-country-select/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCSU-Libraries/circa/HEAD/vendor/assets/bower_components/ng-country-select/package.json -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------