├── .editorconfig ├── .eslintrc.yaml ├── .github └── workflows │ └── pre-commit.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .stylelintrc.yaml ├── CHANGELOG.md ├── README.md ├── Vagrantfile ├── __init__.py ├── conf ├── celerybeat ├── celerybeat.conf ├── celerybeat.service ├── celeryconfig.py ├── celeryd ├── celeryd.conf ├── celeryd.service ├── chronam-apache2_4.conf ├── chronam-canonical.conf ├── chronam.conf ├── chronam.pth ├── chronam.wsgi ├── default.vcl ├── load_essays_cron.sh └── my.cnf ├── core ├── __init__.py ├── batch_loader.py ├── context_processors.py ├── decorator.py ├── essay_loader.py ├── feeds │ ├── __init__.py │ └── newspapers.py ├── fixtures │ ├── awardee.json │ ├── batch.json │ ├── countries.json │ ├── essay_titles.json │ ├── ethnicities.json │ ├── initial_data.json │ ├── institutions.json │ ├── issue.json │ ├── labor_presses.json │ ├── languages.json │ ├── material_types.json │ ├── page.json │ ├── place_links.json │ ├── titles.json │ ├── uuml_thys_sample.json │ └── uuml_thys_sample.py ├── forms.py ├── holding_loader.py ├── index.py ├── manage.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── batches.py │ │ ├── chronam_sync.py │ │ ├── commit_index.py │ │ ├── diff_batches.py │ │ ├── dump_batch_ocr.py │ │ ├── dump_ocr.py │ │ ├── dump_page_iiif_urls.py │ │ ├── ethnicities_with_issues.py │ │ ├── flickr.py │ │ ├── index.py │ │ ├── index_missing_pages.py │ │ ├── index_pages.py │ │ ├── index_titles.py │ │ ├── link_places.py │ │ ├── load_batch.py │ │ ├── load_batches.py │ │ ├── load_essays.py │ │ ├── load_holdings.py │ │ ├── load_institutions.py │ │ ├── load_titles.py │ │ ├── make_countries_fixture.py │ │ ├── optimize_mysql.py │ │ ├── optimize_solr.py │ │ ├── process_coordinates.py │ │ ├── pull_titles.py │ │ ├── purge_batch.py │ │ ├── purge_django_cache.py │ │ ├── purge_essays.py │ │ ├── purge_etitles.py │ │ ├── queue_load_batch.py │ │ ├── queue_process_coordinates.py │ │ ├── queue_purge_batch.py │ │ ├── reconcile.py │ │ ├── release.py │ │ ├── title_sync.py │ │ ├── update_has_issues.py │ │ └── zap_index.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160405_0900.py │ ├── 0003_auto_20160928_0840.py │ ├── 0004_auto_20170712_1312.py │ ├── 0005_remove_languagetext_text.py │ ├── 0006_auto_20180116_1142.py │ ├── 0007_index_issue_titles_with_dates.py │ ├── 0008_auto_20211130_1437.py │ └── __init__.py ├── models.py ├── ocr_extractor.py ├── rdf.py ├── sitemaps.py ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── datepicker.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── less │ │ │ └── datepicker.less │ ├── css │ │ ├── ca_reports.css │ │ ├── loading.gif │ │ ├── tablesort.css │ │ ├── ui_overwrite.css │ │ └── ui_tabs.css │ ├── images │ │ ├── asc.gif │ │ ├── bg.gif │ │ ├── calendar_icon.gif │ │ ├── desc.gif │ │ ├── fullpage_grouphover.png │ │ ├── fullpage_hover.png │ │ ├── fullpage_pressed.png │ │ ├── fullpage_rest.png │ │ ├── home_grouphover.png │ │ ├── home_hover.png │ │ ├── home_pressed.png │ │ ├── home_rest.png │ │ ├── item_btn_next.png │ │ ├── item_btn_prev.png │ │ ├── item_clip_icon.png │ │ ├── next_grouphover.png │ │ ├── next_hover.png │ │ ├── next_pressed.png │ │ ├── next_rest.png │ │ ├── previous_grouphover.png │ │ ├── previous_hover.png │ │ ├── previous_pressed.png │ │ ├── previous_rest.png │ │ ├── tab-prime-bg.png │ │ ├── tab-prime.png │ │ ├── tab.png │ │ ├── tab2.png │ │ ├── ui-anim_basic_16x16.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── zoomin_grouphover.png │ │ ├── zoomin_hover.png │ │ ├── zoomin_pressed.png │ │ ├── zoomin_rest.png │ │ ├── zoomout_grouphover.png │ │ ├── zoomout_hover.png │ │ ├── zoomout_pressed.png │ │ └── zoomout_rest.png │ ├── jquery-ui.css │ ├── js │ │ ├── highlight.js │ │ ├── page.js │ │ └── search.js │ └── vendor │ │ ├── jquery-ui.js │ │ ├── jquery.ba-bbq.min.js │ │ ├── jquery.jcarousel.min.js │ │ ├── jquery.min.js │ │ └── jquery.tablesorter.min.js ├── tasks.py ├── templates │ ├── 404.html │ ├── 500.html │ ├── about.html │ ├── about_api.html │ ├── base.html │ ├── disclaimer.html │ ├── help.html │ ├── holdings.html │ ├── home.html │ ├── includes │ │ ├── disclaimer.html │ │ ├── footer.html │ │ ├── issue_frontpages_ctrl.html │ │ ├── issue_pages_ctrl.html │ │ ├── lc_metadata.html │ │ ├── results_ctrl.html │ │ ├── tabs.html │ │ ├── titles_browse_ctrl.html │ │ └── titles_results_ctrl.html │ ├── issue_pages.html │ ├── issues.html │ ├── marc.html │ ├── news_directory.html │ ├── newspaper.html │ ├── newspapers.html │ ├── newspapers.txt │ ├── page.html │ ├── page_print.html │ ├── page_text.html │ ├── reports │ │ ├── awardee.html │ │ ├── awardees.html │ │ ├── batch.html │ │ ├── batch_summary.html │ │ ├── batch_summary.txt │ │ ├── batches.html │ │ ├── batches.xml │ │ ├── cities.html │ │ ├── city.html │ │ ├── counties.html │ │ ├── county.html │ │ ├── essay.html │ │ ├── essays.html │ │ ├── events.html │ │ ├── events.xml │ │ ├── institution.html │ │ ├── institution_titles.html │ │ ├── institutions.html │ │ ├── language_batch_pages.html │ │ ├── language_batches.html │ │ ├── language_title_pages.html │ │ ├── language_titles.html │ │ ├── languages.html │ │ ├── ocr.html │ │ ├── ocr.xml │ │ ├── pages_on_flickr.html │ │ ├── reel.html │ │ ├── reels.html │ │ ├── reports.html │ │ ├── state.html │ │ ├── states.html │ │ ├── states_counties.html │ │ ├── status.html │ │ └── terms.html │ ├── search_advanced.html │ ├── search_pages_opensearch.xml │ ├── search_pages_results.html │ ├── search_pages_results.xml │ ├── search_titles_opensearch.xml │ ├── search_titles_results.html │ ├── search_titles_results.xml │ ├── site.html │ ├── site_base.html │ ├── site_base_alt.html │ ├── title.html │ ├── title.xml │ └── titles.html ├── templatetags │ ├── __init__.py │ └── custom_filters.py ├── test-data │ ├── bib-with-vague-dates.xml │ ├── essay.html │ ├── etitle.xml │ ├── holdings.xml │ ├── ocr.txt │ ├── ocr.xml │ ├── rda.xml │ ├── sn86069873.xml │ ├── title-delete.xml │ ├── title.xml │ └── uuml_thys_ocr.txt ├── tests │ ├── __init__.py │ ├── api_tests.py │ ├── batch_loader_tests.py │ ├── browse_tests.py │ ├── caching_tests.py │ ├── essay_loader_tests.py │ ├── holding_loader_tests.py │ ├── index_tests.py │ ├── jp2_tests.py │ ├── json_tests.py │ ├── ocr_dump_tests.py │ ├── ocr_extractor_tests.py │ ├── rdf_tests.py │ ├── system_tests.py │ ├── title_loader_tests.py │ └── title_pull_tests.py ├── title_loader.py ├── title_pull.py ├── utils │ ├── __init__.py │ ├── url.py │ └── utils.py ├── views │ ├── __init__.py │ ├── browse.py │ ├── directory.py │ ├── home.py │ ├── image.py │ ├── reports.py │ ├── search.py │ └── static.py └── worldcat_overrides │ ├── __init__.py │ └── request.py ├── example ├── __init__.py ├── screenshots │ ├── screenshot-issues.jpg │ └── screenshot-splash.jpg ├── static │ └── images │ │ └── dbrunton.jpeg └── templates │ └── site.html ├── install_redhat.md ├── install_ubuntu.md ├── loc ├── __init__.py ├── models.py ├── static │ ├── base.css │ ├── css │ │ ├── ca_head.css │ │ ├── ca_ie.css │ │ ├── ca_print.css │ │ ├── ca_reports.css │ │ ├── ca_reset.css │ │ └── loc_footer_v2.css │ ├── images │ │ ├── bg_item_ctrl.png │ │ ├── btn_browse.png │ │ ├── btn_browse_sel.png │ │ ├── btn_go.png │ │ ├── btn_submit_bg.gif │ │ ├── btn_usnews.png │ │ ├── btn_usnews_sel.png │ │ ├── btn_x.gif │ │ ├── center.gif │ │ ├── divider_neh.png │ │ ├── dot.gif │ │ ├── dot_v.gif │ │ ├── fullpage_grouphover.png │ │ ├── fullpage_hover.png │ │ ├── fullpage_pressed.png │ │ ├── fullpage_rest.png │ │ ├── home_grouphover.png │ │ ├── home_hover.png │ │ ├── home_pressed.png │ │ ├── home_rest.png │ │ ├── i_clip_download.gif │ │ ├── i_clip_print.gif │ │ ├── i_home_flickr.jpg │ │ ├── i_home_highlights.jpg │ │ ├── i_home_newsboy.jpg │ │ ├── i_view_browse.png │ │ ├── i_view_list.png │ │ ├── icon-ext-gray.gif │ │ ├── item_dot_divider.png │ │ ├── item_text_icon.png │ │ ├── left-img-head.gif │ │ ├── leftnav.jpg │ │ ├── line2.gif │ │ ├── logo_chron_top.png │ │ ├── logo_loc.gif │ │ ├── logo_loc_cobrand.gif │ │ ├── logo_neh.gif │ │ ├── logo_neh.png │ │ ├── next_grouphover.png │ │ ├── next_hover.png │ │ ├── next_page.gif │ │ ├── next_pressed.png │ │ ├── next_rest.png │ │ ├── no_thumbnail.gif │ │ ├── pag_next_off.gif │ │ ├── pag_next_on.gif │ │ ├── pag_prev_off.gif │ │ ├── pag_prev_on.gif │ │ ├── prev_page.gif │ │ ├── previous_grouphover.png │ │ ├── previous_hover.png │ │ ├── previous_pressed.png │ │ ├── previous_rest.png │ │ ├── red_60.png │ │ ├── table_dot.gif │ │ ├── table_dot_first.gif │ │ ├── table_dot_last.gif │ │ ├── transparent.gif │ │ ├── xml.png │ │ ├── zoomin_grouphover.png │ │ ├── zoomin_hover.png │ │ ├── zoomin_pressed.png │ │ ├── zoomin_rest.png │ │ ├── zoomout_grouphover.png │ │ ├── zoomout_hover.png │ │ ├── zoomout_pressed.png │ │ └── zoomout_rest.png │ ├── img-foot │ │ ├── Thumbs.db │ │ ├── arrow-dbl-gray-right.gif │ │ ├── facebook.gif │ │ ├── flickr.gif │ │ ├── icon-ext-foot.gif │ │ ├── line.gif │ │ ├── speech.gif │ │ ├── twitter.gif │ │ └── youtube.gif │ ├── img-head │ │ ├── Thumbs.db │ │ ├── ask.gif │ │ ├── btns-about.gif │ │ ├── btns-asklib.gif │ │ ├── btns-help.gif │ │ ├── catalog.gif │ │ ├── digitalcoll.gif │ │ ├── line-top.gif │ │ ├── line.gif │ │ ├── loc.gif │ │ ├── logo-ca.gif │ │ ├── logo-loc.gif │ │ ├── logo-neh.gif │ │ ├── rule.gif │ │ └── vert_dots.gif │ ├── img-std │ │ ├── arrow-dbl-gray-left.gif │ │ ├── arrow-dbl-gray-right.gif │ │ ├── arrow-dbl-left.gif │ │ ├── arrow-dbl-right.gif │ │ ├── btn-input-clear.gif │ │ ├── btn-input-continue.gif │ │ ├── btn-input-go.gif │ │ ├── btn-input-reset.gif │ │ ├── btn-input-search.gif │ │ ├── btn-input-submit.gif │ │ ├── bullet.gif │ │ ├── bullet_blue.gif │ │ ├── bullet_blue_dash.gif │ │ ├── dot.gif │ │ ├── dot_v.gif │ │ ├── dotted-h1-bot-rh.gif │ │ ├── dotted-h1-bot.gif │ │ ├── dotted-h1-top-rh.gif │ │ ├── dotted-h1-top.gif │ │ ├── fav.ico │ │ ├── get_adobe_reader.gif │ │ ├── i_arrow.gif │ │ ├── i_arrow_down.gif │ │ ├── i_arrow_grey.gif │ │ ├── i_arrow_o.gif │ │ ├── i_arrow_up.gif │ │ ├── i_audio.gif │ │ ├── i_audio2.gif │ │ ├── i_backtotop.gif │ │ ├── i_backtotop_g.gif │ │ ├── i_disclaimer.gif │ │ ├── i_enlarge.gif │ │ ├── i_external.gif │ │ ├── i_gallery.gif │ │ ├── i_grid.gif │ │ ├── i_list.gif │ │ ├── i_newwindow.gif │ │ ├── i_permalink.gif │ │ ├── i_podcast.gif │ │ ├── i_print.gif │ │ ├── i_rss.gif │ │ ├── i_slideshow.gif │ │ ├── i_video.gif │ │ ├── i_video2.gif │ │ ├── ph_bot.gif │ │ ├── ph_bot2.gif │ │ ├── ph_top.gif │ │ ├── ph_top2.gif │ │ ├── slideshow.gif │ │ └── speech.gif │ ├── js │ │ ├── head.min.js │ │ ├── jquery.mousewheel.js │ │ └── main.js │ ├── next-horizontal.png │ ├── next-vertical.png │ ├── prev-horizontal.png │ ├── prev-vertical.png │ └── ui_carousel.css ├── templates │ ├── base.html │ ├── home.html │ ├── includes │ │ ├── results_ctrl.html │ │ └── tabs.html │ ├── page.html │ ├── page_print.html │ ├── page_text.html │ ├── search_pages_results.html │ ├── search_pages_results_list.html │ ├── site.html │ └── site_base_alt.html ├── tests.py └── views.py ├── loc_cts ├── __init__.py ├── cts.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── bag_instances.py │ │ ├── poll_cts.py │ │ ├── poll_purge.py │ │ └── service_requests.py ├── tasks.py └── tests │ ├── __init__.py │ └── cts_tests.py ├── package.json ├── pyproject.toml ├── requirements-dev.txt ├── requirements.pip ├── requirements_loc.pip ├── scripts ├── __init__.py └── extract_marc_values.py ├── settings_jenkins.py ├── settings_loc.py ├── settings_template.py ├── settings_test.py ├── setup.cfg ├── solr ├── Dockerfile └── conf │ ├── jetty-logging.xml │ ├── jetty-redhat │ ├── jetty-ubuntu │ ├── jetty6.sh │ ├── jetty7.sh │ ├── schema.xml │ ├── solr-tomcat.xml │ ├── solrconfig-centos.xml │ ├── solrconfig-ubuntu.xml │ └── solrconfig.xml ├── static └── robots.txt ├── urls.py └── vagrant ├── centos ├── root_setup.sh └── user_setup.sh └── runserver.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.stylelintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/.stylelintrc.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/Vagrantfile -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/celerybeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celerybeat -------------------------------------------------------------------------------- /conf/celerybeat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celerybeat.conf -------------------------------------------------------------------------------- /conf/celerybeat.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celerybeat.service -------------------------------------------------------------------------------- /conf/celeryconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celeryconfig.py -------------------------------------------------------------------------------- /conf/celeryd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celeryd -------------------------------------------------------------------------------- /conf/celeryd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celeryd.conf -------------------------------------------------------------------------------- /conf/celeryd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/celeryd.service -------------------------------------------------------------------------------- /conf/chronam-apache2_4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/chronam-apache2_4.conf -------------------------------------------------------------------------------- /conf/chronam-canonical.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/chronam-canonical.conf -------------------------------------------------------------------------------- /conf/chronam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/chronam.conf -------------------------------------------------------------------------------- /conf/chronam.pth: -------------------------------------------------------------------------------- 1 | /opt 2 | -------------------------------------------------------------------------------- /conf/chronam.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/chronam.wsgi -------------------------------------------------------------------------------- /conf/default.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/default.vcl -------------------------------------------------------------------------------- /conf/load_essays_cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/load_essays_cron.sh -------------------------------------------------------------------------------- /conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/conf/my.cnf -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/batch_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/batch_loader.py -------------------------------------------------------------------------------- /core/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/context_processors.py -------------------------------------------------------------------------------- /core/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/decorator.py -------------------------------------------------------------------------------- /core/essay_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/essay_loader.py -------------------------------------------------------------------------------- /core/feeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/feeds/__init__.py -------------------------------------------------------------------------------- /core/feeds/newspapers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/feeds/newspapers.py -------------------------------------------------------------------------------- /core/fixtures/awardee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/awardee.json -------------------------------------------------------------------------------- /core/fixtures/batch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/batch.json -------------------------------------------------------------------------------- /core/fixtures/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/countries.json -------------------------------------------------------------------------------- /core/fixtures/essay_titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/essay_titles.json -------------------------------------------------------------------------------- /core/fixtures/ethnicities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/ethnicities.json -------------------------------------------------------------------------------- /core/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/initial_data.json -------------------------------------------------------------------------------- /core/fixtures/institutions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/institutions.json -------------------------------------------------------------------------------- /core/fixtures/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/issue.json -------------------------------------------------------------------------------- /core/fixtures/labor_presses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/labor_presses.json -------------------------------------------------------------------------------- /core/fixtures/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/languages.json -------------------------------------------------------------------------------- /core/fixtures/material_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/material_types.json -------------------------------------------------------------------------------- /core/fixtures/page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/page.json -------------------------------------------------------------------------------- /core/fixtures/place_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/place_links.json -------------------------------------------------------------------------------- /core/fixtures/titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/titles.json -------------------------------------------------------------------------------- /core/fixtures/uuml_thys_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/uuml_thys_sample.json -------------------------------------------------------------------------------- /core/fixtures/uuml_thys_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/fixtures/uuml_thys_sample.py -------------------------------------------------------------------------------- /core/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/forms.py -------------------------------------------------------------------------------- /core/holding_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/holding_loader.py -------------------------------------------------------------------------------- /core/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/index.py -------------------------------------------------------------------------------- /core/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/manage.py -------------------------------------------------------------------------------- /core/management/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /core/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/__init__.py -------------------------------------------------------------------------------- /core/management/commands/batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/batches.py -------------------------------------------------------------------------------- /core/management/commands/chronam_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/chronam_sync.py -------------------------------------------------------------------------------- /core/management/commands/commit_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/commit_index.py -------------------------------------------------------------------------------- /core/management/commands/diff_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/diff_batches.py -------------------------------------------------------------------------------- /core/management/commands/dump_batch_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/dump_batch_ocr.py -------------------------------------------------------------------------------- /core/management/commands/dump_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/dump_ocr.py -------------------------------------------------------------------------------- /core/management/commands/dump_page_iiif_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/dump_page_iiif_urls.py -------------------------------------------------------------------------------- /core/management/commands/ethnicities_with_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/ethnicities_with_issues.py -------------------------------------------------------------------------------- /core/management/commands/flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/flickr.py -------------------------------------------------------------------------------- /core/management/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/index.py -------------------------------------------------------------------------------- /core/management/commands/index_missing_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/index_missing_pages.py -------------------------------------------------------------------------------- /core/management/commands/index_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/index_pages.py -------------------------------------------------------------------------------- /core/management/commands/index_titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/index_titles.py -------------------------------------------------------------------------------- /core/management/commands/link_places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/link_places.py -------------------------------------------------------------------------------- /core/management/commands/load_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/load_batch.py -------------------------------------------------------------------------------- /core/management/commands/load_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/load_batches.py -------------------------------------------------------------------------------- /core/management/commands/load_essays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/load_essays.py -------------------------------------------------------------------------------- /core/management/commands/load_holdings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/load_holdings.py -------------------------------------------------------------------------------- /core/management/commands/load_institutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/load_institutions.py -------------------------------------------------------------------------------- /core/management/commands/load_titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/load_titles.py -------------------------------------------------------------------------------- /core/management/commands/make_countries_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/make_countries_fixture.py -------------------------------------------------------------------------------- /core/management/commands/optimize_mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/optimize_mysql.py -------------------------------------------------------------------------------- /core/management/commands/optimize_solr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/optimize_solr.py -------------------------------------------------------------------------------- /core/management/commands/process_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/process_coordinates.py -------------------------------------------------------------------------------- /core/management/commands/pull_titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/pull_titles.py -------------------------------------------------------------------------------- /core/management/commands/purge_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/purge_batch.py -------------------------------------------------------------------------------- /core/management/commands/purge_django_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/purge_django_cache.py -------------------------------------------------------------------------------- /core/management/commands/purge_essays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/purge_essays.py -------------------------------------------------------------------------------- /core/management/commands/purge_etitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/purge_etitles.py -------------------------------------------------------------------------------- /core/management/commands/queue_load_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/queue_load_batch.py -------------------------------------------------------------------------------- /core/management/commands/queue_process_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/queue_process_coordinates.py -------------------------------------------------------------------------------- /core/management/commands/queue_purge_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/queue_purge_batch.py -------------------------------------------------------------------------------- /core/management/commands/reconcile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/reconcile.py -------------------------------------------------------------------------------- /core/management/commands/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/release.py -------------------------------------------------------------------------------- /core/management/commands/title_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/title_sync.py -------------------------------------------------------------------------------- /core/management/commands/update_has_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/update_has_issues.py -------------------------------------------------------------------------------- /core/management/commands/zap_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/management/commands/zap_index.py -------------------------------------------------------------------------------- /core/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/middleware.py -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0001_initial.py -------------------------------------------------------------------------------- /core/migrations/0002_auto_20160405_0900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0002_auto_20160405_0900.py -------------------------------------------------------------------------------- /core/migrations/0003_auto_20160928_0840.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0003_auto_20160928_0840.py -------------------------------------------------------------------------------- /core/migrations/0004_auto_20170712_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0004_auto_20170712_1312.py -------------------------------------------------------------------------------- /core/migrations/0005_remove_languagetext_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0005_remove_languagetext_text.py -------------------------------------------------------------------------------- /core/migrations/0006_auto_20180116_1142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0006_auto_20180116_1142.py -------------------------------------------------------------------------------- /core/migrations/0007_index_issue_titles_with_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0007_index_issue_titles_with_dates.py -------------------------------------------------------------------------------- /core/migrations/0008_auto_20211130_1437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/migrations/0008_auto_20211130_1437.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/models.py -------------------------------------------------------------------------------- /core/ocr_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/ocr_extractor.py -------------------------------------------------------------------------------- /core/rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/rdf.py -------------------------------------------------------------------------------- /core/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/sitemaps.py -------------------------------------------------------------------------------- /core/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /core/static/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /core/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /core/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /core/static/bootstrap/css/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/css/datepicker.css -------------------------------------------------------------------------------- /core/static/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /core/static/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /core/static/bootstrap/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /core/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /core/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /core/static/bootstrap/less/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/bootstrap/less/datepicker.less -------------------------------------------------------------------------------- /core/static/css/ca_reports.css: -------------------------------------------------------------------------------- 1 | /* */ -------------------------------------------------------------------------------- /core/static/css/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/css/loading.gif -------------------------------------------------------------------------------- /core/static/css/tablesort.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/css/tablesort.css -------------------------------------------------------------------------------- /core/static/css/ui_overwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/css/ui_overwrite.css -------------------------------------------------------------------------------- /core/static/css/ui_tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/css/ui_tabs.css -------------------------------------------------------------------------------- /core/static/images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/asc.gif -------------------------------------------------------------------------------- /core/static/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/bg.gif -------------------------------------------------------------------------------- /core/static/images/calendar_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/calendar_icon.gif -------------------------------------------------------------------------------- /core/static/images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/desc.gif -------------------------------------------------------------------------------- /core/static/images/fullpage_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/fullpage_grouphover.png -------------------------------------------------------------------------------- /core/static/images/fullpage_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/fullpage_hover.png -------------------------------------------------------------------------------- /core/static/images/fullpage_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/fullpage_pressed.png -------------------------------------------------------------------------------- /core/static/images/fullpage_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/fullpage_rest.png -------------------------------------------------------------------------------- /core/static/images/home_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/home_grouphover.png -------------------------------------------------------------------------------- /core/static/images/home_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/home_hover.png -------------------------------------------------------------------------------- /core/static/images/home_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/home_pressed.png -------------------------------------------------------------------------------- /core/static/images/home_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/home_rest.png -------------------------------------------------------------------------------- /core/static/images/item_btn_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/item_btn_next.png -------------------------------------------------------------------------------- /core/static/images/item_btn_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/item_btn_prev.png -------------------------------------------------------------------------------- /core/static/images/item_clip_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/item_clip_icon.png -------------------------------------------------------------------------------- /core/static/images/next_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/next_grouphover.png -------------------------------------------------------------------------------- /core/static/images/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/next_hover.png -------------------------------------------------------------------------------- /core/static/images/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/next_pressed.png -------------------------------------------------------------------------------- /core/static/images/next_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/next_rest.png -------------------------------------------------------------------------------- /core/static/images/previous_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/previous_grouphover.png -------------------------------------------------------------------------------- /core/static/images/previous_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/previous_hover.png -------------------------------------------------------------------------------- /core/static/images/previous_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/previous_pressed.png -------------------------------------------------------------------------------- /core/static/images/previous_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/previous_rest.png -------------------------------------------------------------------------------- /core/static/images/tab-prime-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/tab-prime-bg.png -------------------------------------------------------------------------------- /core/static/images/tab-prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/tab-prime.png -------------------------------------------------------------------------------- /core/static/images/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/tab.png -------------------------------------------------------------------------------- /core/static/images/tab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/tab2.png -------------------------------------------------------------------------------- /core/static/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /core/static/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /core/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /core/static/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /core/static/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /core/static/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /core/static/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /core/static/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /core/static/images/zoomin_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomin_grouphover.png -------------------------------------------------------------------------------- /core/static/images/zoomin_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomin_hover.png -------------------------------------------------------------------------------- /core/static/images/zoomin_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomin_pressed.png -------------------------------------------------------------------------------- /core/static/images/zoomin_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomin_rest.png -------------------------------------------------------------------------------- /core/static/images/zoomout_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomout_grouphover.png -------------------------------------------------------------------------------- /core/static/images/zoomout_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomout_hover.png -------------------------------------------------------------------------------- /core/static/images/zoomout_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomout_pressed.png -------------------------------------------------------------------------------- /core/static/images/zoomout_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/images/zoomout_rest.png -------------------------------------------------------------------------------- /core/static/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/jquery-ui.css -------------------------------------------------------------------------------- /core/static/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/js/highlight.js -------------------------------------------------------------------------------- /core/static/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/js/page.js -------------------------------------------------------------------------------- /core/static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/js/search.js -------------------------------------------------------------------------------- /core/static/vendor/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/vendor/jquery-ui.js -------------------------------------------------------------------------------- /core/static/vendor/jquery.ba-bbq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/vendor/jquery.ba-bbq.min.js -------------------------------------------------------------------------------- /core/static/vendor/jquery.jcarousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/vendor/jquery.jcarousel.min.js -------------------------------------------------------------------------------- /core/static/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/vendor/jquery.min.js -------------------------------------------------------------------------------- /core/static/vendor/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/static/vendor/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /core/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tasks.py -------------------------------------------------------------------------------- /core/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/404.html -------------------------------------------------------------------------------- /core/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/500.html -------------------------------------------------------------------------------- /core/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/about.html -------------------------------------------------------------------------------- /core/templates/about_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/about_api.html -------------------------------------------------------------------------------- /core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/base.html -------------------------------------------------------------------------------- /core/templates/disclaimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/disclaimer.html -------------------------------------------------------------------------------- /core/templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/help.html -------------------------------------------------------------------------------- /core/templates/holdings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/holdings.html -------------------------------------------------------------------------------- /core/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/home.html -------------------------------------------------------------------------------- /core/templates/includes/disclaimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/disclaimer.html -------------------------------------------------------------------------------- /core/templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/footer.html -------------------------------------------------------------------------------- /core/templates/includes/issue_frontpages_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/issue_frontpages_ctrl.html -------------------------------------------------------------------------------- /core/templates/includes/issue_pages_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/issue_pages_ctrl.html -------------------------------------------------------------------------------- /core/templates/includes/lc_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/lc_metadata.html -------------------------------------------------------------------------------- /core/templates/includes/results_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/results_ctrl.html -------------------------------------------------------------------------------- /core/templates/includes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/tabs.html -------------------------------------------------------------------------------- /core/templates/includes/titles_browse_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/titles_browse_ctrl.html -------------------------------------------------------------------------------- /core/templates/includes/titles_results_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/includes/titles_results_ctrl.html -------------------------------------------------------------------------------- /core/templates/issue_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/issue_pages.html -------------------------------------------------------------------------------- /core/templates/issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/issues.html -------------------------------------------------------------------------------- /core/templates/marc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/marc.html -------------------------------------------------------------------------------- /core/templates/news_directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/news_directory.html -------------------------------------------------------------------------------- /core/templates/newspaper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/newspaper.html -------------------------------------------------------------------------------- /core/templates/newspapers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/newspapers.html -------------------------------------------------------------------------------- /core/templates/newspapers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/newspapers.txt -------------------------------------------------------------------------------- /core/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/page.html -------------------------------------------------------------------------------- /core/templates/page_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/page_print.html -------------------------------------------------------------------------------- /core/templates/page_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/page_text.html -------------------------------------------------------------------------------- /core/templates/reports/awardee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/awardee.html -------------------------------------------------------------------------------- /core/templates/reports/awardees.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/awardees.html -------------------------------------------------------------------------------- /core/templates/reports/batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/batch.html -------------------------------------------------------------------------------- /core/templates/reports/batch_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/batch_summary.html -------------------------------------------------------------------------------- /core/templates/reports/batch_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/batch_summary.txt -------------------------------------------------------------------------------- /core/templates/reports/batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/batches.html -------------------------------------------------------------------------------- /core/templates/reports/batches.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/batches.xml -------------------------------------------------------------------------------- /core/templates/reports/cities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/cities.html -------------------------------------------------------------------------------- /core/templates/reports/city.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/city.html -------------------------------------------------------------------------------- /core/templates/reports/counties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/counties.html -------------------------------------------------------------------------------- /core/templates/reports/county.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/county.html -------------------------------------------------------------------------------- /core/templates/reports/essay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/essay.html -------------------------------------------------------------------------------- /core/templates/reports/essays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/essays.html -------------------------------------------------------------------------------- /core/templates/reports/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/events.html -------------------------------------------------------------------------------- /core/templates/reports/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/events.xml -------------------------------------------------------------------------------- /core/templates/reports/institution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/institution.html -------------------------------------------------------------------------------- /core/templates/reports/institution_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/institution_titles.html -------------------------------------------------------------------------------- /core/templates/reports/institutions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/institutions.html -------------------------------------------------------------------------------- /core/templates/reports/language_batch_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/language_batch_pages.html -------------------------------------------------------------------------------- /core/templates/reports/language_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/language_batches.html -------------------------------------------------------------------------------- /core/templates/reports/language_title_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/language_title_pages.html -------------------------------------------------------------------------------- /core/templates/reports/language_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/language_titles.html -------------------------------------------------------------------------------- /core/templates/reports/languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/languages.html -------------------------------------------------------------------------------- /core/templates/reports/ocr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/ocr.html -------------------------------------------------------------------------------- /core/templates/reports/ocr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/ocr.xml -------------------------------------------------------------------------------- /core/templates/reports/pages_on_flickr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/pages_on_flickr.html -------------------------------------------------------------------------------- /core/templates/reports/reel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/reel.html -------------------------------------------------------------------------------- /core/templates/reports/reels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/reels.html -------------------------------------------------------------------------------- /core/templates/reports/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/reports.html -------------------------------------------------------------------------------- /core/templates/reports/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/state.html -------------------------------------------------------------------------------- /core/templates/reports/states.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/states.html -------------------------------------------------------------------------------- /core/templates/reports/states_counties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/states_counties.html -------------------------------------------------------------------------------- /core/templates/reports/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/status.html -------------------------------------------------------------------------------- /core/templates/reports/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/reports/terms.html -------------------------------------------------------------------------------- /core/templates/search_advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_advanced.html -------------------------------------------------------------------------------- /core/templates/search_pages_opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_pages_opensearch.xml -------------------------------------------------------------------------------- /core/templates/search_pages_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_pages_results.html -------------------------------------------------------------------------------- /core/templates/search_pages_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_pages_results.xml -------------------------------------------------------------------------------- /core/templates/search_titles_opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_titles_opensearch.xml -------------------------------------------------------------------------------- /core/templates/search_titles_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_titles_results.html -------------------------------------------------------------------------------- /core/templates/search_titles_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/search_titles_results.xml -------------------------------------------------------------------------------- /core/templates/site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/site.html -------------------------------------------------------------------------------- /core/templates/site_base.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /core/templates/site_base_alt.html: -------------------------------------------------------------------------------- 1 | {% extends "site_base.html" %} 2 | -------------------------------------------------------------------------------- /core/templates/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/title.html -------------------------------------------------------------------------------- /core/templates/title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/title.xml -------------------------------------------------------------------------------- /core/templates/titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templates/titles.html -------------------------------------------------------------------------------- /core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/templatetags/custom_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/templatetags/custom_filters.py -------------------------------------------------------------------------------- /core/test-data/bib-with-vague-dates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/bib-with-vague-dates.xml -------------------------------------------------------------------------------- /core/test-data/essay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/essay.html -------------------------------------------------------------------------------- /core/test-data/etitle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/etitle.xml -------------------------------------------------------------------------------- /core/test-data/holdings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/holdings.xml -------------------------------------------------------------------------------- /core/test-data/ocr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/ocr.txt -------------------------------------------------------------------------------- /core/test-data/ocr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/ocr.xml -------------------------------------------------------------------------------- /core/test-data/rda.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/rda.xml -------------------------------------------------------------------------------- /core/test-data/sn86069873.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/sn86069873.xml -------------------------------------------------------------------------------- /core/test-data/title-delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/title-delete.xml -------------------------------------------------------------------------------- /core/test-data/title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/title.xml -------------------------------------------------------------------------------- /core/test-data/uuml_thys_ocr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/test-data/uuml_thys_ocr.txt -------------------------------------------------------------------------------- /core/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/__init__.py -------------------------------------------------------------------------------- /core/tests/api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/api_tests.py -------------------------------------------------------------------------------- /core/tests/batch_loader_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/batch_loader_tests.py -------------------------------------------------------------------------------- /core/tests/browse_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/browse_tests.py -------------------------------------------------------------------------------- /core/tests/caching_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/caching_tests.py -------------------------------------------------------------------------------- /core/tests/essay_loader_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/essay_loader_tests.py -------------------------------------------------------------------------------- /core/tests/holding_loader_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/holding_loader_tests.py -------------------------------------------------------------------------------- /core/tests/index_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/index_tests.py -------------------------------------------------------------------------------- /core/tests/jp2_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/jp2_tests.py -------------------------------------------------------------------------------- /core/tests/json_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/json_tests.py -------------------------------------------------------------------------------- /core/tests/ocr_dump_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/ocr_dump_tests.py -------------------------------------------------------------------------------- /core/tests/ocr_extractor_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/ocr_extractor_tests.py -------------------------------------------------------------------------------- /core/tests/rdf_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/rdf_tests.py -------------------------------------------------------------------------------- /core/tests/system_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/system_tests.py -------------------------------------------------------------------------------- /core/tests/title_loader_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/title_loader_tests.py -------------------------------------------------------------------------------- /core/tests/title_pull_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/tests/title_pull_tests.py -------------------------------------------------------------------------------- /core/title_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/title_loader.py -------------------------------------------------------------------------------- /core/title_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/title_pull.py -------------------------------------------------------------------------------- /core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/utils/__init__.py -------------------------------------------------------------------------------- /core/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/utils/url.py -------------------------------------------------------------------------------- /core/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/utils/utils.py -------------------------------------------------------------------------------- /core/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/__init__.py -------------------------------------------------------------------------------- /core/views/browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/browse.py -------------------------------------------------------------------------------- /core/views/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/directory.py -------------------------------------------------------------------------------- /core/views/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/home.py -------------------------------------------------------------------------------- /core/views/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/image.py -------------------------------------------------------------------------------- /core/views/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/reports.py -------------------------------------------------------------------------------- /core/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/search.py -------------------------------------------------------------------------------- /core/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/views/static.py -------------------------------------------------------------------------------- /core/worldcat_overrides/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/worldcat_overrides/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/core/worldcat_overrides/request.py -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/screenshots/screenshot-issues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/example/screenshots/screenshot-issues.jpg -------------------------------------------------------------------------------- /example/screenshots/screenshot-splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/example/screenshots/screenshot-splash.jpg -------------------------------------------------------------------------------- /example/static/images/dbrunton.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/example/static/images/dbrunton.jpeg -------------------------------------------------------------------------------- /example/templates/site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/example/templates/site.html -------------------------------------------------------------------------------- /install_redhat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/install_redhat.md -------------------------------------------------------------------------------- /install_ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/install_ubuntu.md -------------------------------------------------------------------------------- /loc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loc/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/models.py -------------------------------------------------------------------------------- /loc/static/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/base.css -------------------------------------------------------------------------------- /loc/static/css/ca_head.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/css/ca_head.css -------------------------------------------------------------------------------- /loc/static/css/ca_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/css/ca_ie.css -------------------------------------------------------------------------------- /loc/static/css/ca_print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/css/ca_print.css -------------------------------------------------------------------------------- /loc/static/css/ca_reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/css/ca_reports.css -------------------------------------------------------------------------------- /loc/static/css/ca_reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/css/ca_reset.css -------------------------------------------------------------------------------- /loc/static/css/loc_footer_v2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/css/loc_footer_v2.css -------------------------------------------------------------------------------- /loc/static/images/bg_item_ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/bg_item_ctrl.png -------------------------------------------------------------------------------- /loc/static/images/btn_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_browse.png -------------------------------------------------------------------------------- /loc/static/images/btn_browse_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_browse_sel.png -------------------------------------------------------------------------------- /loc/static/images/btn_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_go.png -------------------------------------------------------------------------------- /loc/static/images/btn_submit_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_submit_bg.gif -------------------------------------------------------------------------------- /loc/static/images/btn_usnews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_usnews.png -------------------------------------------------------------------------------- /loc/static/images/btn_usnews_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_usnews_sel.png -------------------------------------------------------------------------------- /loc/static/images/btn_x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/btn_x.gif -------------------------------------------------------------------------------- /loc/static/images/center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/center.gif -------------------------------------------------------------------------------- /loc/static/images/divider_neh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/divider_neh.png -------------------------------------------------------------------------------- /loc/static/images/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/dot.gif -------------------------------------------------------------------------------- /loc/static/images/dot_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/dot_v.gif -------------------------------------------------------------------------------- /loc/static/images/fullpage_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/fullpage_grouphover.png -------------------------------------------------------------------------------- /loc/static/images/fullpage_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/fullpage_hover.png -------------------------------------------------------------------------------- /loc/static/images/fullpage_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/fullpage_pressed.png -------------------------------------------------------------------------------- /loc/static/images/fullpage_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/fullpage_rest.png -------------------------------------------------------------------------------- /loc/static/images/home_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/home_grouphover.png -------------------------------------------------------------------------------- /loc/static/images/home_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/home_hover.png -------------------------------------------------------------------------------- /loc/static/images/home_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/home_pressed.png -------------------------------------------------------------------------------- /loc/static/images/home_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/home_rest.png -------------------------------------------------------------------------------- /loc/static/images/i_clip_download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_clip_download.gif -------------------------------------------------------------------------------- /loc/static/images/i_clip_print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_clip_print.gif -------------------------------------------------------------------------------- /loc/static/images/i_home_flickr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_home_flickr.jpg -------------------------------------------------------------------------------- /loc/static/images/i_home_highlights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_home_highlights.jpg -------------------------------------------------------------------------------- /loc/static/images/i_home_newsboy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_home_newsboy.jpg -------------------------------------------------------------------------------- /loc/static/images/i_view_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_view_browse.png -------------------------------------------------------------------------------- /loc/static/images/i_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/i_view_list.png -------------------------------------------------------------------------------- /loc/static/images/icon-ext-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/icon-ext-gray.gif -------------------------------------------------------------------------------- /loc/static/images/item_dot_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/item_dot_divider.png -------------------------------------------------------------------------------- /loc/static/images/item_text_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/item_text_icon.png -------------------------------------------------------------------------------- /loc/static/images/left-img-head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/left-img-head.gif -------------------------------------------------------------------------------- /loc/static/images/leftnav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/leftnav.jpg -------------------------------------------------------------------------------- /loc/static/images/line2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/line2.gif -------------------------------------------------------------------------------- /loc/static/images/logo_chron_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/logo_chron_top.png -------------------------------------------------------------------------------- /loc/static/images/logo_loc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/logo_loc.gif -------------------------------------------------------------------------------- /loc/static/images/logo_loc_cobrand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/logo_loc_cobrand.gif -------------------------------------------------------------------------------- /loc/static/images/logo_neh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/logo_neh.gif -------------------------------------------------------------------------------- /loc/static/images/logo_neh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/logo_neh.png -------------------------------------------------------------------------------- /loc/static/images/next_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/next_grouphover.png -------------------------------------------------------------------------------- /loc/static/images/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/next_hover.png -------------------------------------------------------------------------------- /loc/static/images/next_page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/next_page.gif -------------------------------------------------------------------------------- /loc/static/images/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/next_pressed.png -------------------------------------------------------------------------------- /loc/static/images/next_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/next_rest.png -------------------------------------------------------------------------------- /loc/static/images/no_thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/no_thumbnail.gif -------------------------------------------------------------------------------- /loc/static/images/pag_next_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/pag_next_off.gif -------------------------------------------------------------------------------- /loc/static/images/pag_next_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/pag_next_on.gif -------------------------------------------------------------------------------- /loc/static/images/pag_prev_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/pag_prev_off.gif -------------------------------------------------------------------------------- /loc/static/images/pag_prev_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/pag_prev_on.gif -------------------------------------------------------------------------------- /loc/static/images/prev_page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/prev_page.gif -------------------------------------------------------------------------------- /loc/static/images/previous_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/previous_grouphover.png -------------------------------------------------------------------------------- /loc/static/images/previous_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/previous_hover.png -------------------------------------------------------------------------------- /loc/static/images/previous_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/previous_pressed.png -------------------------------------------------------------------------------- /loc/static/images/previous_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/previous_rest.png -------------------------------------------------------------------------------- /loc/static/images/red_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/red_60.png -------------------------------------------------------------------------------- /loc/static/images/table_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/table_dot.gif -------------------------------------------------------------------------------- /loc/static/images/table_dot_first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/table_dot_first.gif -------------------------------------------------------------------------------- /loc/static/images/table_dot_last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/table_dot_last.gif -------------------------------------------------------------------------------- /loc/static/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/transparent.gif -------------------------------------------------------------------------------- /loc/static/images/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/xml.png -------------------------------------------------------------------------------- /loc/static/images/zoomin_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomin_grouphover.png -------------------------------------------------------------------------------- /loc/static/images/zoomin_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomin_hover.png -------------------------------------------------------------------------------- /loc/static/images/zoomin_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomin_pressed.png -------------------------------------------------------------------------------- /loc/static/images/zoomin_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomin_rest.png -------------------------------------------------------------------------------- /loc/static/images/zoomout_grouphover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomout_grouphover.png -------------------------------------------------------------------------------- /loc/static/images/zoomout_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomout_hover.png -------------------------------------------------------------------------------- /loc/static/images/zoomout_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomout_pressed.png -------------------------------------------------------------------------------- /loc/static/images/zoomout_rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/images/zoomout_rest.png -------------------------------------------------------------------------------- /loc/static/img-foot/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/Thumbs.db -------------------------------------------------------------------------------- /loc/static/img-foot/arrow-dbl-gray-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/arrow-dbl-gray-right.gif -------------------------------------------------------------------------------- /loc/static/img-foot/facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/facebook.gif -------------------------------------------------------------------------------- /loc/static/img-foot/flickr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/flickr.gif -------------------------------------------------------------------------------- /loc/static/img-foot/icon-ext-foot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/icon-ext-foot.gif -------------------------------------------------------------------------------- /loc/static/img-foot/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/line.gif -------------------------------------------------------------------------------- /loc/static/img-foot/speech.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/speech.gif -------------------------------------------------------------------------------- /loc/static/img-foot/twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/twitter.gif -------------------------------------------------------------------------------- /loc/static/img-foot/youtube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-foot/youtube.gif -------------------------------------------------------------------------------- /loc/static/img-head/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/Thumbs.db -------------------------------------------------------------------------------- /loc/static/img-head/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/ask.gif -------------------------------------------------------------------------------- /loc/static/img-head/btns-about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/btns-about.gif -------------------------------------------------------------------------------- /loc/static/img-head/btns-asklib.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/btns-asklib.gif -------------------------------------------------------------------------------- /loc/static/img-head/btns-help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/btns-help.gif -------------------------------------------------------------------------------- /loc/static/img-head/catalog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/catalog.gif -------------------------------------------------------------------------------- /loc/static/img-head/digitalcoll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/digitalcoll.gif -------------------------------------------------------------------------------- /loc/static/img-head/line-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/line-top.gif -------------------------------------------------------------------------------- /loc/static/img-head/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/line.gif -------------------------------------------------------------------------------- /loc/static/img-head/loc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/loc.gif -------------------------------------------------------------------------------- /loc/static/img-head/logo-ca.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/logo-ca.gif -------------------------------------------------------------------------------- /loc/static/img-head/logo-loc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/logo-loc.gif -------------------------------------------------------------------------------- /loc/static/img-head/logo-neh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/logo-neh.gif -------------------------------------------------------------------------------- /loc/static/img-head/rule.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/rule.gif -------------------------------------------------------------------------------- /loc/static/img-head/vert_dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-head/vert_dots.gif -------------------------------------------------------------------------------- /loc/static/img-std/arrow-dbl-gray-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/arrow-dbl-gray-left.gif -------------------------------------------------------------------------------- /loc/static/img-std/arrow-dbl-gray-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/arrow-dbl-gray-right.gif -------------------------------------------------------------------------------- /loc/static/img-std/arrow-dbl-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/arrow-dbl-left.gif -------------------------------------------------------------------------------- /loc/static/img-std/arrow-dbl-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/arrow-dbl-right.gif -------------------------------------------------------------------------------- /loc/static/img-std/btn-input-clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/btn-input-clear.gif -------------------------------------------------------------------------------- /loc/static/img-std/btn-input-continue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/btn-input-continue.gif -------------------------------------------------------------------------------- /loc/static/img-std/btn-input-go.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/btn-input-go.gif -------------------------------------------------------------------------------- /loc/static/img-std/btn-input-reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/btn-input-reset.gif -------------------------------------------------------------------------------- /loc/static/img-std/btn-input-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/btn-input-search.gif -------------------------------------------------------------------------------- /loc/static/img-std/btn-input-submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/btn-input-submit.gif -------------------------------------------------------------------------------- /loc/static/img-std/bullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/bullet.gif -------------------------------------------------------------------------------- /loc/static/img-std/bullet_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/bullet_blue.gif -------------------------------------------------------------------------------- /loc/static/img-std/bullet_blue_dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/bullet_blue_dash.gif -------------------------------------------------------------------------------- /loc/static/img-std/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/dot.gif -------------------------------------------------------------------------------- /loc/static/img-std/dot_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/dot_v.gif -------------------------------------------------------------------------------- /loc/static/img-std/dotted-h1-bot-rh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/dotted-h1-bot-rh.gif -------------------------------------------------------------------------------- /loc/static/img-std/dotted-h1-bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/dotted-h1-bot.gif -------------------------------------------------------------------------------- /loc/static/img-std/dotted-h1-top-rh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/dotted-h1-top-rh.gif -------------------------------------------------------------------------------- /loc/static/img-std/dotted-h1-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/dotted-h1-top.gif -------------------------------------------------------------------------------- /loc/static/img-std/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/fav.ico -------------------------------------------------------------------------------- /loc/static/img-std/get_adobe_reader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/get_adobe_reader.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_arrow.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_arrow_down.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_arrow_grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_arrow_grey.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_arrow_o.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_arrow_o.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_arrow_up.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_audio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_audio.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_audio2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_audio2.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_backtotop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_backtotop.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_backtotop_g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_backtotop_g.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_disclaimer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_disclaimer.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_enlarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_enlarge.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_external.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_external.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_gallery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_gallery.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_grid.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_list.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_newwindow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_newwindow.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_permalink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_permalink.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_podcast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_podcast.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_print.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_rss.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_slideshow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_slideshow.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_video.gif -------------------------------------------------------------------------------- /loc/static/img-std/i_video2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/i_video2.gif -------------------------------------------------------------------------------- /loc/static/img-std/ph_bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/ph_bot.gif -------------------------------------------------------------------------------- /loc/static/img-std/ph_bot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/ph_bot2.gif -------------------------------------------------------------------------------- /loc/static/img-std/ph_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/ph_top.gif -------------------------------------------------------------------------------- /loc/static/img-std/ph_top2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/ph_top2.gif -------------------------------------------------------------------------------- /loc/static/img-std/slideshow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/slideshow.gif -------------------------------------------------------------------------------- /loc/static/img-std/speech.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/img-std/speech.gif -------------------------------------------------------------------------------- /loc/static/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/js/head.min.js -------------------------------------------------------------------------------- /loc/static/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /loc/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/js/main.js -------------------------------------------------------------------------------- /loc/static/next-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/next-horizontal.png -------------------------------------------------------------------------------- /loc/static/next-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/next-vertical.png -------------------------------------------------------------------------------- /loc/static/prev-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/prev-horizontal.png -------------------------------------------------------------------------------- /loc/static/prev-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/prev-vertical.png -------------------------------------------------------------------------------- /loc/static/ui_carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/static/ui_carousel.css -------------------------------------------------------------------------------- /loc/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/base.html -------------------------------------------------------------------------------- /loc/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/home.html -------------------------------------------------------------------------------- /loc/templates/includes/results_ctrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/includes/results_ctrl.html -------------------------------------------------------------------------------- /loc/templates/includes/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/includes/tabs.html -------------------------------------------------------------------------------- /loc/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/page.html -------------------------------------------------------------------------------- /loc/templates/page_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/page_print.html -------------------------------------------------------------------------------- /loc/templates/page_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/page_text.html -------------------------------------------------------------------------------- /loc/templates/search_pages_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/search_pages_results.html -------------------------------------------------------------------------------- /loc/templates/search_pages_results_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/search_pages_results_list.html -------------------------------------------------------------------------------- /loc/templates/site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/site.html -------------------------------------------------------------------------------- /loc/templates/site_base_alt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/templates/site_base_alt.html -------------------------------------------------------------------------------- /loc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc/tests.py -------------------------------------------------------------------------------- /loc/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /loc_cts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /loc_cts/cts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/cts.py -------------------------------------------------------------------------------- /loc_cts/management/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /loc_cts/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/management/commands/__init__.py -------------------------------------------------------------------------------- /loc_cts/management/commands/bag_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/management/commands/bag_instances.py -------------------------------------------------------------------------------- /loc_cts/management/commands/poll_cts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/management/commands/poll_cts.py -------------------------------------------------------------------------------- /loc_cts/management/commands/poll_purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/management/commands/poll_purge.py -------------------------------------------------------------------------------- /loc_cts/management/commands/service_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/management/commands/service_requests.py -------------------------------------------------------------------------------- /loc_cts/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/tasks.py -------------------------------------------------------------------------------- /loc_cts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from cts_tests import * 2 | -------------------------------------------------------------------------------- /loc_cts/tests/cts_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/loc_cts/tests/cts_tests.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 110 3 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/requirements.pip -------------------------------------------------------------------------------- /requirements_loc.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/requirements_loc.pip -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/extract_marc_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/scripts/extract_marc_values.py -------------------------------------------------------------------------------- /settings_jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/settings_jenkins.py -------------------------------------------------------------------------------- /settings_loc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/settings_loc.py -------------------------------------------------------------------------------- /settings_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/settings_template.py -------------------------------------------------------------------------------- /settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/settings_test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/setup.cfg -------------------------------------------------------------------------------- /solr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/Dockerfile -------------------------------------------------------------------------------- /solr/conf/jetty-logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/jetty-logging.xml -------------------------------------------------------------------------------- /solr/conf/jetty-redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/jetty-redhat -------------------------------------------------------------------------------- /solr/conf/jetty-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/jetty-ubuntu -------------------------------------------------------------------------------- /solr/conf/jetty6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/jetty6.sh -------------------------------------------------------------------------------- /solr/conf/jetty7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/jetty7.sh -------------------------------------------------------------------------------- /solr/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/schema.xml -------------------------------------------------------------------------------- /solr/conf/solr-tomcat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/solr-tomcat.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig-centos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/solrconfig-centos.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig-ubuntu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/solrconfig-ubuntu.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/solr/conf/solrconfig.xml -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/static/robots.txt -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/urls.py -------------------------------------------------------------------------------- /vagrant/centos/root_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/vagrant/centos/root_setup.sh -------------------------------------------------------------------------------- /vagrant/centos/user_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/vagrant/centos/user_setup.sh -------------------------------------------------------------------------------- /vagrant/runserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/chronam/HEAD/vagrant/runserver.sh --------------------------------------------------------------------------------