├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md └── workflows │ └── warclight-build.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .solr_wrapper ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── blacklight │ │ │ ├── compact.svg │ │ │ └── logo.png │ ├── javascripts │ │ └── warclight │ │ │ └── warclight.js │ └── stylesheets │ │ └── warclight │ │ └── application.scss ├── controllers │ └── concerns │ │ └── warclight │ │ └── field_config_helpers.rb ├── helpers │ └── warclight_helper.rb ├── jobs │ └── warclight │ │ └── application_job.rb └── models │ └── concerns │ └── warclight │ ├── catalog.rb │ ├── search_behavior.rb │ └── solr_document.rb ├── bin └── rails ├── config └── routes.rb ├── docker-compose.yml ├── docker-entrypoint.sh ├── lib ├── generators │ └── warclight │ │ ├── install_generator.rb │ │ ├── templates │ │ ├── catalog_controller.rb │ │ ├── warclight.js │ │ └── warclight.scss │ │ └── update_generator.rb ├── warclight.rb └── warclight │ ├── engine.rb │ └── version.rb ├── package.json ├── solr ├── conf │ ├── elevate.xml │ ├── lang │ │ ├── contractions_ca.txt │ │ ├── contractions_fr.txt │ │ ├── contractions_ga.txt │ │ ├── contractions_it.txt │ │ ├── hyphenations_ga.txt │ │ ├── stemdict_nl.txt │ │ ├── stoptags_ja.txt │ │ ├── stopwords_ar.txt │ │ ├── stopwords_bg.txt │ │ ├── stopwords_ca.txt │ │ ├── stopwords_cz.txt │ │ ├── stopwords_da.txt │ │ ├── stopwords_de.txt │ │ ├── stopwords_el.txt │ │ ├── stopwords_en.txt │ │ ├── stopwords_es.txt │ │ ├── stopwords_eu.txt │ │ ├── stopwords_fa.txt │ │ ├── stopwords_fi.txt │ │ ├── stopwords_fr.txt │ │ ├── stopwords_ga.txt │ │ ├── stopwords_gl.txt │ │ ├── stopwords_hi.txt │ │ ├── stopwords_hu.txt │ │ ├── stopwords_hy.txt │ │ ├── stopwords_id.txt │ │ ├── stopwords_it.txt │ │ ├── stopwords_ja.txt │ │ ├── stopwords_lv.txt │ │ ├── stopwords_nl.txt │ │ ├── stopwords_no.txt │ │ ├── stopwords_pt.txt │ │ ├── stopwords_ro.txt │ │ ├── stopwords_ru.txt │ │ ├── stopwords_sv.txt │ │ ├── stopwords_th.txt │ │ ├── stopwords_tr.txt │ │ └── userdict_ja.txt │ ├── params.json │ ├── protwords.txt │ ├── schema.xml │ ├── solrconfig.xml │ ├── solrcore.properties │ ├── stopwords.txt │ ├── stopwords_path.txt │ └── synonyms.txt └── warclight_warc-indexer.conf ├── spec ├── fixtures │ └── warcs │ │ ├── 2013-steacie-hackfest-2015_01_13.warc.gz │ │ ├── YULEARN-2014_12_10.warc.gz │ │ ├── etig-2014_08_13.warc.gz │ │ ├── library_research_roadmap-2014_11_28.warc.gz │ │ └── test.warc.gz ├── helpers │ └── warclight_helper_spec.rb ├── models │ └── concerns │ │ └── warclight │ │ └── solr_document_spec.rb ├── spec_helper.rb ├── test_app_templates │ ├── Gemfile.extra │ └── lib │ │ └── generators │ │ └── test_app_generator.rb └── warclight_spec.rb ├── tasks └── warclight.rake ├── template.rb ├── vendor └── assets │ └── javascripts │ ├── responsiveTruncator.js │ └── stickyfill.js └── warclight.gemspec /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/workflows/warclight-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.github/workflows/warclight-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.solr_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/.solr_wrapper -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/blacklight/compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/assets/images/blacklight/compact.svg -------------------------------------------------------------------------------- /app/assets/images/blacklight/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/assets/images/blacklight/logo.png -------------------------------------------------------------------------------- /app/assets/javascripts/warclight/warclight.js: -------------------------------------------------------------------------------- 1 | // Vendor Scripts 2 | -------------------------------------------------------------------------------- /app/assets/stylesheets/warclight/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/assets/stylesheets/warclight/application.scss -------------------------------------------------------------------------------- /app/controllers/concerns/warclight/field_config_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/controllers/concerns/warclight/field_config_helpers.rb -------------------------------------------------------------------------------- /app/helpers/warclight_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/helpers/warclight_helper.rb -------------------------------------------------------------------------------- /app/jobs/warclight/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/jobs/warclight/application_job.rb -------------------------------------------------------------------------------- /app/models/concerns/warclight/catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/models/concerns/warclight/catalog.rb -------------------------------------------------------------------------------- /app/models/concerns/warclight/search_behavior.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/models/concerns/warclight/search_behavior.rb -------------------------------------------------------------------------------- /app/models/concerns/warclight/solr_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/app/models/concerns/warclight/solr_document.rb -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/bin/rails -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Warclight::Engine.routes.draw do 4 | end 5 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /lib/generators/warclight/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/lib/generators/warclight/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/warclight/templates/catalog_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/lib/generators/warclight/templates/catalog_controller.rb -------------------------------------------------------------------------------- /lib/generators/warclight/templates/warclight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/lib/generators/warclight/templates/warclight.js -------------------------------------------------------------------------------- /lib/generators/warclight/templates/warclight.scss: -------------------------------------------------------------------------------- 1 | /* 2 | *= require warclight/application 3 | */ 4 | -------------------------------------------------------------------------------- /lib/generators/warclight/update_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/lib/generators/warclight/update_generator.rb -------------------------------------------------------------------------------- /lib/warclight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/lib/warclight.rb -------------------------------------------------------------------------------- /lib/warclight/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/lib/warclight/engine.rb -------------------------------------------------------------------------------- /lib/warclight/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Warclight 4 | VERSION = '0.9.0' 5 | end 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/package.json -------------------------------------------------------------------------------- /solr/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/elevate.xml -------------------------------------------------------------------------------- /solr/conf/lang/contractions_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/contractions_ca.txt -------------------------------------------------------------------------------- /solr/conf/lang/contractions_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/contractions_fr.txt -------------------------------------------------------------------------------- /solr/conf/lang/contractions_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/contractions_ga.txt -------------------------------------------------------------------------------- /solr/conf/lang/contractions_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/contractions_it.txt -------------------------------------------------------------------------------- /solr/conf/lang/hyphenations_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/hyphenations_ga.txt -------------------------------------------------------------------------------- /solr/conf/lang/stemdict_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stemdict_nl.txt -------------------------------------------------------------------------------- /solr/conf/lang/stoptags_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stoptags_ja.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_ar.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_bg.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_ca.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_cz.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_da.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_de.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_el.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_en.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_es.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_eu.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_fa.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_fi.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_fr.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_ga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_ga.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_gl.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_hi.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_hu.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_hy.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_id.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_it.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_ja.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_lv.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_nl.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_no.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_pt.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_ro.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_ru.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_sv.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_th.txt -------------------------------------------------------------------------------- /solr/conf/lang/stopwords_tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/stopwords_tr.txt -------------------------------------------------------------------------------- /solr/conf/lang/userdict_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/lang/userdict_ja.txt -------------------------------------------------------------------------------- /solr/conf/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/params.json -------------------------------------------------------------------------------- /solr/conf/protwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/protwords.txt -------------------------------------------------------------------------------- /solr/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/schema.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/solrconfig.xml -------------------------------------------------------------------------------- /solr/conf/solrcore.properties: -------------------------------------------------------------------------------- 1 | #solr.lock.type=hdfs 2 | -------------------------------------------------------------------------------- /solr/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/stopwords.txt -------------------------------------------------------------------------------- /solr/conf/stopwords_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/stopwords_path.txt -------------------------------------------------------------------------------- /solr/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/conf/synonyms.txt -------------------------------------------------------------------------------- /solr/warclight_warc-indexer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/solr/warclight_warc-indexer.conf -------------------------------------------------------------------------------- /spec/fixtures/warcs/2013-steacie-hackfest-2015_01_13.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/fixtures/warcs/2013-steacie-hackfest-2015_01_13.warc.gz -------------------------------------------------------------------------------- /spec/fixtures/warcs/YULEARN-2014_12_10.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/fixtures/warcs/YULEARN-2014_12_10.warc.gz -------------------------------------------------------------------------------- /spec/fixtures/warcs/etig-2014_08_13.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/fixtures/warcs/etig-2014_08_13.warc.gz -------------------------------------------------------------------------------- /spec/fixtures/warcs/library_research_roadmap-2014_11_28.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/fixtures/warcs/library_research_roadmap-2014_11_28.warc.gz -------------------------------------------------------------------------------- /spec/fixtures/warcs/test.warc.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/fixtures/warcs/test.warc.gz -------------------------------------------------------------------------------- /spec/helpers/warclight_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/helpers/warclight_helper_spec.rb -------------------------------------------------------------------------------- /spec/models/concerns/warclight/solr_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/models/concerns/warclight/solr_document_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/test_app_templates/Gemfile.extra: -------------------------------------------------------------------------------- 1 | gem 'blacklight_range_limit', '8.2.3' 2 | -------------------------------------------------------------------------------- /spec/test_app_templates/lib/generators/test_app_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/test_app_templates/lib/generators/test_app_generator.rb -------------------------------------------------------------------------------- /spec/warclight_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/spec/warclight_spec.rb -------------------------------------------------------------------------------- /tasks/warclight.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/tasks/warclight.rake -------------------------------------------------------------------------------- /template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/template.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/responsiveTruncator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/vendor/assets/javascripts/responsiveTruncator.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/stickyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/vendor/assets/javascripts/stickyfill.js -------------------------------------------------------------------------------- /warclight.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archivesunleashed/warclight/HEAD/warclight.gemspec --------------------------------------------------------------------------------