├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── NOTICE.txt ├── README ├── docs ├── Makefile ├── conf.py ├── ecosystem.rst ├── index.rst ├── installation.rst └── make.bat ├── manage.py ├── requirements ├── deploy.txt └── requirements.txt ├── setup.py └── viewshare ├── __init__.py ├── apps ├── __init__.py ├── account │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto__del_account__add_emailconfirmation.py │ │ └── __init__.py │ ├── models.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── augment │ ├── __init__.py │ ├── admin.py │ ├── conf.py │ ├── fixtures │ │ └── initial_data.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_force_fixture_load.py │ │ ├── 0003_add_error_codes.py │ │ ├── 0004_auto__add_augmenttransaction__chg_field_listpattern_slug.py │ │ ├── 0005_auto__add_field_augmenttransaction_data.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── urls.py │ └── views.py ├── connections │ ├── __init__.py │ ├── context_processors.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── connection_helpers.py │ ├── urls.py │ └── views.py ├── discover │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_load_curated_exhibit_collections.py │ │ ├── 0003_auto__chg_field_curatedexhibit_exhibit.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── exhibit │ ├── __init__.py │ ├── admin.py │ ├── conf.py │ ├── fixtures │ │ └── canvases.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_nullable_dataset_for_exhibit.py │ │ ├── 0003_views_metadata_to_property.py │ │ ├── 0004_register_lenses.py │ │ ├── 0005_remove_themes.py │ │ ├── 0006_inline_lenses.py │ │ ├── 0007_public_and_draft_exhibit.py │ │ ├── 0008_migrate_publication_info.py │ │ ├── 0009_auto__chg_field_publishedexhibit_s__add_field_draftexhibit_creator__de.py │ │ ├── 0010_rename_slug_title_description_owner.py │ │ ├── 0011_auto__add_patternlistproperty__add_delimitedlistproperty__add_exhibitp.py │ │ ├── 0012_published_exhibits_for_isolated_datasets.py │ │ ├── 0013_migrate_data_profile_properties_and_data.py │ │ ├── 0014_populate_profile.py │ │ ├── 0015_drop_dataset_reference.py │ │ ├── 0016_exhibit_base_owner_slug.py │ │ ├── 0017_migrate_owner_slug_to_base.py │ │ ├── 0018_drop_owner_slug.py │ │ ├── 0019_rename_temp_fields.py │ │ ├── 0020_property_data_model.py │ │ ├── 0021_migrate_property_data.py │ │ ├── 0022_remove_full_data_file.py │ │ ├── 0023_create_id_and_label_properties.py │ │ ├── 0024_auto__chg_field_draftexhibit_parent__add_unique_draftexhibit_parent.py │ │ ├── 0025_auto__add_datatransaction.py │ │ ├── 0026_auto__add_field_datatransaction_result.py │ │ ├── 0027_auto__del_datatransaction.py │ │ ├── 0028_auto__chg_field_exhibitproperty_name__add_index_exhibitproperty_name.py │ │ ├── 0029_ensure_default_lens.py │ │ ├── 0030_piechart_modification.py │ │ ├── 0031_auto__del_canvas__del_field_exhibit_canvas.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── static │ │ ├── dataset │ │ │ └── js │ │ │ │ ├── apps │ │ │ │ └── editor-app.js │ │ │ │ ├── models │ │ │ │ └── editor │ │ │ │ │ ├── augmentation-support-issue.js │ │ │ │ │ ├── composite-property.js │ │ │ │ │ ├── pattern-property.js │ │ │ │ │ ├── property-collection.js │ │ │ │ │ └── property.js │ │ │ │ ├── observer.js │ │ │ │ ├── templates │ │ │ │ └── editor │ │ │ │ │ ├── augmentation-support-issue.html │ │ │ │ │ ├── composite-property.html │ │ │ │ │ ├── editor.html │ │ │ │ │ ├── list-augment.html │ │ │ │ │ ├── map-augment.html │ │ │ │ │ ├── modal-augment.html │ │ │ │ │ ├── modal.html │ │ │ │ │ ├── notification.html │ │ │ │ │ ├── property.html │ │ │ │ │ ├── record-nav.html │ │ │ │ │ ├── record.html │ │ │ │ │ └── timeline-augment.html │ │ │ │ └── views │ │ │ │ └── editor │ │ │ │ ├── augmentation-support-issue-view.js │ │ │ │ ├── composite-property-view.js │ │ │ │ ├── editor-view.js │ │ │ │ ├── list-augment-view.js │ │ │ │ ├── map-augment-view.js │ │ │ │ ├── modal-augment-view.js │ │ │ │ ├── modal-view.js │ │ │ │ ├── notification-view.js │ │ │ │ ├── property-view.js │ │ │ │ ├── record-nav-view.js │ │ │ │ ├── record-view.js │ │ │ │ ├── timeline-augment-view.js │ │ │ │ └── view-interface.js │ │ ├── editor-build.js │ │ ├── editor-main.js │ │ ├── embed-build.js │ │ ├── embed-main.js │ │ ├── exhibit-display-build.js │ │ ├── exhibit-display-main.js │ │ ├── exhibit-layout-build.js │ │ ├── exhibit-layout-main.js │ │ ├── freemix │ │ │ ├── css │ │ │ │ ├── canvas.css │ │ │ │ ├── editor.css │ │ │ │ ├── embed-code.css │ │ │ │ ├── embed.css │ │ │ │ ├── exhibit_display.css │ │ │ │ ├── exhibit_edit.css │ │ │ │ ├── exhibit_inspect.css │ │ │ │ ├── inspector.css │ │ │ │ ├── layout.css │ │ │ │ ├── multiselect.css │ │ │ │ ├── patch_exhibit.css │ │ │ │ └── views.css │ │ │ ├── img │ │ │ │ ├── cloud-facet.png │ │ │ │ ├── facet-both-s.png │ │ │ │ ├── facet-left-s.png │ │ │ │ ├── facet-right-s.png │ │ │ │ ├── facet-top-s.png │ │ │ │ ├── form-shadow.png │ │ │ │ ├── gallery.png │ │ │ │ ├── icon_edit_green.png │ │ │ │ ├── image-facet.png │ │ │ │ ├── list-facet.png │ │ │ │ ├── list-icon.png │ │ │ │ ├── logo-facet.png │ │ │ │ ├── map-icon.png │ │ │ │ ├── numeric-facet.png │ │ │ │ ├── orange-fade-arrow.png │ │ │ │ ├── orange-fade.png │ │ │ │ ├── piechart-icon.png │ │ │ │ ├── scatterplot-icon.png │ │ │ │ ├── search-facet.png │ │ │ │ ├── slider-facet.png │ │ │ │ ├── table-icon.png │ │ │ │ ├── text-facet.png │ │ │ │ └── timeline-icon.png │ │ │ └── js │ │ │ │ ├── detail.js │ │ │ │ ├── display │ │ │ │ ├── display.js │ │ │ │ ├── exhibit-html-view.js │ │ │ │ ├── facets │ │ │ │ │ ├── base.js │ │ │ │ │ ├── list.js │ │ │ │ │ ├── logo.js │ │ │ │ │ ├── numeric.js │ │ │ │ │ ├── registry.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── slider.js │ │ │ │ │ ├── tagcloud.js │ │ │ │ │ └── text.js │ │ │ │ ├── lenses │ │ │ │ │ ├── base.js │ │ │ │ │ ├── list.js │ │ │ │ │ ├── registry.js │ │ │ │ │ └── thumbnail.js │ │ │ │ └── views │ │ │ │ │ ├── barchart.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── list.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── piechart.js │ │ │ │ │ ├── registry.js │ │ │ │ │ ├── scatterplot.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── thumbnail.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── embed │ │ │ │ └── display.js │ │ │ │ ├── exhibit_utilities.js │ │ │ │ ├── freemix.js │ │ │ │ ├── layout │ │ │ │ ├── cancel_button.js │ │ │ │ ├── edit_button.js │ │ │ │ ├── editor.js │ │ │ │ ├── facets │ │ │ │ │ ├── base.js │ │ │ │ │ ├── container.js │ │ │ │ │ ├── list.js │ │ │ │ │ ├── logo.js │ │ │ │ │ ├── numeric.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── slider.js │ │ │ │ │ ├── tagcloud.js │ │ │ │ │ └── text.js │ │ │ │ ├── lenses │ │ │ │ │ ├── base.js │ │ │ │ │ ├── list.js │ │ │ │ │ └── thumbnail.js │ │ │ │ ├── modallinks.js │ │ │ │ ├── models │ │ │ │ │ └── composite-property.js │ │ │ │ ├── patch_exhibit.js │ │ │ │ ├── save_button.js │ │ │ │ ├── views │ │ │ │ │ ├── augmentation │ │ │ │ │ │ ├── composite-property-view.js │ │ │ │ │ │ ├── composite-settings-view.js │ │ │ │ │ │ └── property-multiselect-component.js │ │ │ │ │ ├── barchart.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── container.js │ │ │ │ │ ├── list.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── piechart.js │ │ │ │ │ ├── scatterplot.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── thumbnail.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── widget.js │ │ │ │ └── widget_editor.js │ │ │ │ ├── lib │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── creole.js │ │ │ │ ├── handlebars.js │ │ │ │ ├── hoverIntent.js │ │ │ │ ├── jquery-sortable.js │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery.bgiframe.min.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.csrf.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.json.js │ │ │ │ ├── jquery.slides.js │ │ │ │ ├── jquery.uuid.js │ │ │ │ ├── lightbox.js │ │ │ │ ├── multiselect.js │ │ │ │ ├── require.js │ │ │ │ └── text.js │ │ │ │ ├── patch_exhibit.js │ │ │ │ ├── templates │ │ │ │ ├── exhibit-wrapper.html │ │ │ │ ├── exhibit-wrapper.html.js │ │ │ │ └── layout │ │ │ │ │ ├── add-facet-button.html │ │ │ │ │ ├── add-facet-modal.html │ │ │ │ │ ├── facet-container.html │ │ │ │ │ ├── facet-widget.html │ │ │ │ │ ├── facets │ │ │ │ │ ├── list-facet-editor.html │ │ │ │ │ ├── logo-facet-editor.html │ │ │ │ │ ├── numeric-facet-editor.html │ │ │ │ │ ├── search-facet-editor.html │ │ │ │ │ ├── slider-facet-editor.html │ │ │ │ │ ├── tagcloud-facet-editor.html │ │ │ │ │ └── text-facet-editor.html │ │ │ │ │ ├── lenses │ │ │ │ │ ├── list-lens.html │ │ │ │ │ └── thumbnail-lens.html │ │ │ │ │ ├── modal-save-cancel.html │ │ │ │ │ ├── view-container.html │ │ │ │ │ ├── view-menu.html │ │ │ │ │ ├── view-widget.html │ │ │ │ │ ├── views │ │ │ │ │ ├── augment-error.html │ │ │ │ │ ├── augment-progress.html │ │ │ │ │ ├── augment-success.html │ │ │ │ │ ├── barchart-view.html │ │ │ │ │ ├── date-property.html │ │ │ │ │ ├── list-view.html │ │ │ │ │ ├── location-property.html │ │ │ │ │ ├── map-view-settings.html │ │ │ │ │ ├── map-view.html │ │ │ │ │ ├── piechart-view.html │ │ │ │ │ ├── scatterplot-view.html │ │ │ │ │ ├── table-view.html │ │ │ │ │ ├── thumbnail-view.html │ │ │ │ │ ├── timeline-view-settings.html │ │ │ │ │ └── timeline-view.html │ │ │ │ │ ├── widget-editor.html │ │ │ │ │ └── widget-errors.html │ │ │ │ └── widget.js │ │ └── simile │ │ │ ├── ajax │ │ │ ├── README │ │ │ ├── content │ │ │ │ └── history.html │ │ │ ├── images │ │ │ │ ├── bubble-arrow-point-down.png │ │ │ │ ├── bubble-arrow-point-left.png │ │ │ │ ├── bubble-arrow-point-right.png │ │ │ │ ├── bubble-arrow-point-up.png │ │ │ │ ├── bubble-bottom-left.png │ │ │ │ ├── bubble-bottom-right.png │ │ │ │ ├── bubble-bottom.png │ │ │ │ ├── bubble-left.png │ │ │ │ ├── bubble-right.png │ │ │ │ ├── bubble-top-left.png │ │ │ │ ├── bubble-top-right.png │ │ │ │ ├── bubble-top.png │ │ │ │ ├── close-button.png │ │ │ │ ├── copy.png │ │ │ │ ├── message-bottom-left.png │ │ │ │ ├── message-bottom-right.png │ │ │ │ ├── message-left.png │ │ │ │ ├── message-right.png │ │ │ │ ├── message-top-left.png │ │ │ │ └── message-top-right.png │ │ │ └── styles │ │ │ │ ├── graphics-ie6.css │ │ │ │ ├── graphics.css │ │ │ │ └── simile-ajax-bundle.css │ │ │ ├── exhibit │ │ │ ├── exhibit.js │ │ │ ├── ext │ │ │ │ ├── ajax │ │ │ │ │ └── api │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── almond.js │ │ │ │ │ │ └── require.js │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ ├── bubble.js │ │ │ │ │ │ ├── date-time.js │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ ├── event-index.js │ │ │ │ │ │ ├── graphics.js │ │ │ │ │ │ ├── history.js │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ ├── platform.js │ │ │ │ │ │ ├── set.js │ │ │ │ │ │ ├── simile-ajax-base.js │ │ │ │ │ │ ├── sorted-array.js │ │ │ │ │ │ ├── string.js │ │ │ │ │ │ ├── units.js │ │ │ │ │ │ ├── window-manager.js │ │ │ │ │ │ └── xmlhttp.js │ │ │ │ │ │ ├── simile-ajax-bundle.js │ │ │ │ │ │ ├── simile-ajax.js │ │ │ │ │ │ └── styles │ │ │ │ │ │ ├── graphics-ie6.css │ │ │ │ │ │ ├── graphics.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ └── simile-ajax-bundle.css │ │ │ │ └── timeline │ │ │ │ │ └── api │ │ │ │ │ ├── lib │ │ │ │ │ ├── almond.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── require.js │ │ │ │ │ ├── nls │ │ │ │ │ ├── cs │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── days.js │ │ │ │ │ ├── de │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── es │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── fr │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── it │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── months.js │ │ │ │ │ ├── nl │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── pl │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── pt-br │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── root │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── ru │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── se │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── timeline.js │ │ │ │ │ ├── tr │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── vi │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ └── zh │ │ │ │ │ │ ├── days.js │ │ │ │ │ │ ├── months.js │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── scripts │ │ │ │ │ ├── band.js │ │ │ │ │ ├── compact-painter.js │ │ │ │ │ ├── detailed-painter.js │ │ │ │ │ ├── ether-highlight.js │ │ │ │ │ ├── ether-interval-marker-layout.js │ │ │ │ │ ├── event-utils.js │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── japanese-era-ether-painter.js │ │ │ │ │ │ └── japanese-eras.js │ │ │ │ │ ├── gregorian-ether-painter.js │ │ │ │ │ ├── hot-zone-ether.js │ │ │ │ │ ├── hot-zone-gregorian-ether-painter.js │ │ │ │ │ ├── labellers.js │ │ │ │ │ ├── linear-ether.js │ │ │ │ │ ├── original-painter.js │ │ │ │ │ ├── overview-painter.js │ │ │ │ │ ├── point-decorator.js │ │ │ │ │ ├── quarterly-ether-painter.js │ │ │ │ │ ├── sources.js │ │ │ │ │ ├── span-decorator.js │ │ │ │ │ ├── themes.js │ │ │ │ │ ├── timeline-base.js │ │ │ │ │ ├── timeline-core.js │ │ │ │ │ ├── timeline-impl.js │ │ │ │ │ └── year-count-ether-painter.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── ethers.css │ │ │ │ │ ├── events.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── timeline-bundle.css │ │ │ │ │ └── timeline.css │ │ │ │ │ ├── timeline-bundle.js │ │ │ │ │ └── timeline.js │ │ │ ├── extensions │ │ │ │ ├── flot │ │ │ │ │ ├── flot-extension-bundle.js │ │ │ │ │ ├── flot-extension.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── jquery.flot.axislabels.js │ │ │ │ │ │ ├── jquery.flot.js │ │ │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ │ │ └── jquery.flot.resize.js │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── locale.js │ │ │ │ │ │ └── root │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── barchart-view.js │ │ │ │ │ │ ├── flot-base.js │ │ │ │ │ │ ├── piechart-view.js │ │ │ │ │ │ ├── scatterplot-view.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ └── styles │ │ │ │ │ │ ├── flot-extension-bundle.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── scatterplot.css │ │ │ │ │ │ └── utils.css │ │ │ │ ├── map │ │ │ │ │ ├── map-extension-bundle.js │ │ │ │ │ ├── map-extension.js │ │ │ │ │ ├── nls │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ │ ├── es │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ │ ├── fr │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ │ ├── locale.js │ │ │ │ │ │ ├── nl │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ │ ├── root │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ │ └── sv │ │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── canvas.js │ │ │ │ │ │ ├── map-view.js │ │ │ │ │ │ ├── marker.js │ │ │ │ │ │ └── painter.js │ │ │ │ │ └── styles │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── map-extension-bundle.css │ │ │ │ │ │ └── map-view.css │ │ │ │ ├── openlayers │ │ │ │ │ ├── images │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── cloud-popup-relative.png │ │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ │ ├── east-mini.png │ │ │ │ │ │ ├── layer-switcher-maximize.png │ │ │ │ │ │ ├── layer-switcher-minimize.png │ │ │ │ │ │ ├── marker-blue.png │ │ │ │ │ │ ├── marker-gold.png │ │ │ │ │ │ ├── marker-green.png │ │ │ │ │ │ ├── marker.png │ │ │ │ │ │ ├── measuring-stick-off.png │ │ │ │ │ │ ├── measuring-stick-on.png │ │ │ │ │ │ ├── north-mini.png │ │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ │ ├── slider.png │ │ │ │ │ │ ├── south-mini.png │ │ │ │ │ │ ├── west-mini.png │ │ │ │ │ │ ├── zoom-minus-mini.png │ │ │ │ │ │ ├── zoom-plus-mini.png │ │ │ │ │ │ ├── zoom-world-mini.png │ │ │ │ │ │ └── zoombar.png │ │ │ │ │ ├── lib │ │ │ │ │ │ └── OpenLayers.js │ │ │ │ │ ├── openlayers-extension-bundle.js │ │ │ │ │ ├── openlayers-extension.js │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── openlayers-view.js │ │ │ │ │ └── styles │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── add_point_off.png │ │ │ │ │ │ ├── add_point_on.png │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── close.gif │ │ │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ │ │ ├── draw_line_off.png │ │ │ │ │ │ ├── draw_line_on.png │ │ │ │ │ │ ├── draw_point_off.png │ │ │ │ │ │ ├── draw_point_on.png │ │ │ │ │ │ ├── draw_polygon_off.png │ │ │ │ │ │ ├── draw_polygon_on.png │ │ │ │ │ │ ├── editing_tool_bar.png │ │ │ │ │ │ ├── move_feature_off.png │ │ │ │ │ │ ├── move_feature_on.png │ │ │ │ │ │ ├── navigation_history.png │ │ │ │ │ │ ├── overview_replacement.gif │ │ │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ │ │ ├── pan-panel.png │ │ │ │ │ │ ├── pan_off.png │ │ │ │ │ │ ├── pan_on.png │ │ │ │ │ │ ├── panning-hand-off.png │ │ │ │ │ │ ├── panning-hand-on.png │ │ │ │ │ │ ├── remove_point_off.png │ │ │ │ │ │ ├── remove_point_on.png │ │ │ │ │ │ ├── ruler.png │ │ │ │ │ │ ├── save_features_off.png │ │ │ │ │ │ ├── save_features_on.png │ │ │ │ │ │ ├── view_next_off.png │ │ │ │ │ │ ├── view_next_on.png │ │ │ │ │ │ ├── view_previous_off.png │ │ │ │ │ │ ├── view_previous_on.png │ │ │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ │ │ └── zoom-panel.png │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── olmap-view.css │ │ │ │ │ │ ├── openlayers-extension-bundle.css │ │ │ │ │ │ └── style.css │ │ │ │ └── time │ │ │ │ │ ├── nls │ │ │ │ │ ├── de │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── es │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── fr │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── nl │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── root │ │ │ │ │ │ └── locale.js │ │ │ │ │ └── sv │ │ │ │ │ │ └── locale.js │ │ │ │ │ ├── scripts │ │ │ │ │ ├── base.js │ │ │ │ │ └── timeline-view.js │ │ │ │ │ ├── styles │ │ │ │ │ ├── main.css │ │ │ │ │ ├── time-extension-bundle.css │ │ │ │ │ └── timeline-view.css │ │ │ │ │ ├── time-extension-bundle.js │ │ │ │ │ └── time-extension.js │ │ │ ├── images │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── black-check-no-border.png │ │ │ │ ├── black-check.png │ │ │ │ ├── blank-16x16.png │ │ │ │ ├── bookmark-icon.png │ │ │ │ ├── bubble-arrow-point-down.png │ │ │ │ ├── bubble-arrow-point-left.png │ │ │ │ ├── bubble-arrow-point-right.png │ │ │ │ ├── bubble-arrow-point-up.png │ │ │ │ ├── bubble-bottom-left.png │ │ │ │ ├── bubble-bottom-right.png │ │ │ │ ├── bubble-bottom.png │ │ │ │ ├── bubble-left.png │ │ │ │ ├── bubble-right.png │ │ │ │ ├── bubble-top-left.png │ │ │ │ ├── bubble-top-right.png │ │ │ │ ├── bubble-top.png │ │ │ │ ├── close-button.png │ │ │ │ ├── collapse.png │ │ │ │ ├── copy.png │ │ │ │ ├── day-with-items-bkgrd.gif │ │ │ │ ├── down-arrow.png │ │ │ │ ├── expand.png │ │ │ │ ├── gray-check-no-border.png │ │ │ │ ├── gray-check.png │ │ │ │ ├── left-arrow.png │ │ │ │ ├── liveclipboard-icon.png │ │ │ │ ├── logos │ │ │ │ │ ├── exhibit-small-AliceBlue.png │ │ │ │ │ ├── exhibit-small-AntiqueWhite.png │ │ │ │ │ ├── exhibit-small-Aqua.png │ │ │ │ │ ├── exhibit-small-Aquamarine.png │ │ │ │ │ ├── exhibit-small-Azure.png │ │ │ │ │ ├── exhibit-small-Beige.png │ │ │ │ │ ├── exhibit-small-Bisque.png │ │ │ │ │ ├── exhibit-small-Black.png │ │ │ │ │ ├── exhibit-small-BlanchedAlmond.png │ │ │ │ │ ├── exhibit-small-Blue.png │ │ │ │ │ ├── exhibit-small-BlueViolet.png │ │ │ │ │ ├── exhibit-small-Brown.png │ │ │ │ │ ├── exhibit-small-BurlyWood.png │ │ │ │ │ ├── exhibit-small-CadetBlue.png │ │ │ │ │ ├── exhibit-small-Chartreuse.png │ │ │ │ │ ├── exhibit-small-Chocolate.png │ │ │ │ │ ├── exhibit-small-Coral.png │ │ │ │ │ ├── exhibit-small-CornflowerBlue.png │ │ │ │ │ ├── exhibit-small-Cornsilk.png │ │ │ │ │ ├── exhibit-small-Crimson.png │ │ │ │ │ ├── exhibit-small-Cyan.png │ │ │ │ │ ├── exhibit-small-DarkBlue.png │ │ │ │ │ ├── exhibit-small-DarkCyan.png │ │ │ │ │ ├── exhibit-small-DarkGoldenRod.png │ │ │ │ │ ├── exhibit-small-DarkGray.png │ │ │ │ │ ├── exhibit-small-DarkGreen.png │ │ │ │ │ ├── exhibit-small-DarkGrey.png │ │ │ │ │ ├── exhibit-small-DarkKhaki.png │ │ │ │ │ ├── exhibit-small-DarkMagenta.png │ │ │ │ │ ├── exhibit-small-DarkOliveGreen.png │ │ │ │ │ ├── exhibit-small-DarkOrchid.png │ │ │ │ │ ├── exhibit-small-DarkRed.png │ │ │ │ │ ├── exhibit-small-DarkSalmon.png │ │ │ │ │ ├── exhibit-small-DarkSeaGreen.png │ │ │ │ │ ├── exhibit-small-DarkSlateBlue.png │ │ │ │ │ ├── exhibit-small-DarkSlateGray.png │ │ │ │ │ ├── exhibit-small-DarkSlateGrey.png │ │ │ │ │ ├── exhibit-small-DarkTurquoise.png │ │ │ │ │ ├── exhibit-small-DarkViolet.png │ │ │ │ │ ├── exhibit-small-Darkorange.png │ │ │ │ │ ├── exhibit-small-DeepPink.png │ │ │ │ │ ├── exhibit-small-DeepSkyBlue.png │ │ │ │ │ ├── exhibit-small-DimGray.png │ │ │ │ │ ├── exhibit-small-DimGrey.png │ │ │ │ │ ├── exhibit-small-DodgerBlue.png │ │ │ │ │ ├── exhibit-small-FireBrick.png │ │ │ │ │ ├── exhibit-small-FloralWhite.png │ │ │ │ │ ├── exhibit-small-ForestGreen.png │ │ │ │ │ ├── exhibit-small-Fuchsia.png │ │ │ │ │ ├── exhibit-small-Gainsboro.png │ │ │ │ │ ├── exhibit-small-GhostWhite.png │ │ │ │ │ ├── exhibit-small-Gold.png │ │ │ │ │ ├── exhibit-small-GoldenRod.png │ │ │ │ │ ├── exhibit-small-Gray.png │ │ │ │ │ ├── exhibit-small-Green.png │ │ │ │ │ ├── exhibit-small-GreenYellow.png │ │ │ │ │ ├── exhibit-small-Grey.png │ │ │ │ │ ├── exhibit-small-HoneyDew.png │ │ │ │ │ ├── exhibit-small-HotPink.png │ │ │ │ │ ├── exhibit-small-IndianRed .png │ │ │ │ │ ├── exhibit-small-Indigo .png │ │ │ │ │ ├── exhibit-small-Ivory.png │ │ │ │ │ ├── exhibit-small-Khaki.png │ │ │ │ │ ├── exhibit-small-Lavender.png │ │ │ │ │ ├── exhibit-small-LavenderBlush.png │ │ │ │ │ ├── exhibit-small-LawnGreen.png │ │ │ │ │ ├── exhibit-small-LemonChiffon.png │ │ │ │ │ ├── exhibit-small-LightBlue.png │ │ │ │ │ ├── exhibit-small-LightCoral.png │ │ │ │ │ ├── exhibit-small-LightCyan.png │ │ │ │ │ ├── exhibit-small-LightGoldenRodYellow.png │ │ │ │ │ ├── exhibit-small-LightGray.png │ │ │ │ │ ├── exhibit-small-LightGreen.png │ │ │ │ │ ├── exhibit-small-LightGrey.png │ │ │ │ │ ├── exhibit-small-LightPink.png │ │ │ │ │ ├── exhibit-small-LightSalmon.png │ │ │ │ │ ├── exhibit-small-LightSeaGreen.png │ │ │ │ │ ├── exhibit-small-LightSkyBlue.png │ │ │ │ │ ├── exhibit-small-LightSlateGray.png │ │ │ │ │ ├── exhibit-small-LightSlateGrey.png │ │ │ │ │ ├── exhibit-small-LightSteelBlue.png │ │ │ │ │ ├── exhibit-small-LightYellow.png │ │ │ │ │ ├── exhibit-small-Lime.png │ │ │ │ │ ├── exhibit-small-LimeGreen.png │ │ │ │ │ ├── exhibit-small-Linen.png │ │ │ │ │ ├── exhibit-small-Magenta.png │ │ │ │ │ ├── exhibit-small-Maroon.png │ │ │ │ │ ├── exhibit-small-MediumAquaMarine.png │ │ │ │ │ ├── exhibit-small-MediumBlue.png │ │ │ │ │ ├── exhibit-small-MediumOrchid.png │ │ │ │ │ ├── exhibit-small-MediumPurple.png │ │ │ │ │ ├── exhibit-small-MediumSeaGreen.png │ │ │ │ │ ├── exhibit-small-MediumSlateBlue.png │ │ │ │ │ ├── exhibit-small-MediumSpringGreen.png │ │ │ │ │ ├── exhibit-small-MediumTurquoise.png │ │ │ │ │ ├── exhibit-small-MediumVioletRed.png │ │ │ │ │ ├── exhibit-small-MidnightBlue.png │ │ │ │ │ ├── exhibit-small-MintCream.png │ │ │ │ │ ├── exhibit-small-MistyRose.png │ │ │ │ │ ├── exhibit-small-Moccasin.png │ │ │ │ │ ├── exhibit-small-NavajoWhite.png │ │ │ │ │ ├── exhibit-small-Navy.png │ │ │ │ │ ├── exhibit-small-OldLace.png │ │ │ │ │ ├── exhibit-small-Olive.png │ │ │ │ │ ├── exhibit-small-OliveDrab.png │ │ │ │ │ ├── exhibit-small-Orange.png │ │ │ │ │ ├── exhibit-small-OrangeRed.png │ │ │ │ │ ├── exhibit-small-Orchid.png │ │ │ │ │ ├── exhibit-small-PaleGoldenRod.png │ │ │ │ │ ├── exhibit-small-PaleGreen.png │ │ │ │ │ ├── exhibit-small-PaleTurquoise.png │ │ │ │ │ ├── exhibit-small-PaleVioletRed.png │ │ │ │ │ ├── exhibit-small-PapayaWhip.png │ │ │ │ │ ├── exhibit-small-PeachPuff.png │ │ │ │ │ ├── exhibit-small-Peru.png │ │ │ │ │ ├── exhibit-small-Pink.png │ │ │ │ │ ├── exhibit-small-Plum.png │ │ │ │ │ ├── exhibit-small-PowderBlue.png │ │ │ │ │ ├── exhibit-small-Purple.png │ │ │ │ │ ├── exhibit-small-Red.png │ │ │ │ │ ├── exhibit-small-RosyBrown.png │ │ │ │ │ ├── exhibit-small-RoyalBlue.png │ │ │ │ │ ├── exhibit-small-SaddleBrown.png │ │ │ │ │ ├── exhibit-small-Salmon.png │ │ │ │ │ ├── exhibit-small-SandyBrown.png │ │ │ │ │ ├── exhibit-small-SeaGreen.png │ │ │ │ │ ├── exhibit-small-SeaShell.png │ │ │ │ │ ├── exhibit-small-Sienna.png │ │ │ │ │ ├── exhibit-small-Silver.png │ │ │ │ │ ├── exhibit-small-SkyBlue.png │ │ │ │ │ ├── exhibit-small-SlateBlue.png │ │ │ │ │ ├── exhibit-small-SlateGray.png │ │ │ │ │ ├── exhibit-small-SlateGrey.png │ │ │ │ │ ├── exhibit-small-Snow.png │ │ │ │ │ ├── exhibit-small-SpringGreen.png │ │ │ │ │ ├── exhibit-small-SteelBlue.png │ │ │ │ │ ├── exhibit-small-Tan.png │ │ │ │ │ ├── exhibit-small-Teal.png │ │ │ │ │ ├── exhibit-small-Thistle.png │ │ │ │ │ ├── exhibit-small-Tomato.png │ │ │ │ │ ├── exhibit-small-Turquoise.png │ │ │ │ │ ├── exhibit-small-Violet.png │ │ │ │ │ ├── exhibit-small-Wheat.png │ │ │ │ │ ├── exhibit-small-White.png │ │ │ │ │ ├── exhibit-small-WhiteSmoke.png │ │ │ │ │ ├── exhibit-small-Yellow.png │ │ │ │ │ └── exhibit-small-YellowGreen.png │ │ │ │ ├── map-marker-shadow.png │ │ │ │ ├── message-bottom-left.png │ │ │ │ ├── message-bottom-right.png │ │ │ │ ├── message-bubble │ │ │ │ │ ├── message-bottom-left.png │ │ │ │ │ ├── message-bottom-right.png │ │ │ │ │ ├── message-left.png │ │ │ │ │ ├── message-right.png │ │ │ │ │ ├── message-top-left.png │ │ │ │ │ └── message-top-right.png │ │ │ │ ├── message-left.png │ │ │ │ ├── message-right.png │ │ │ │ ├── message-top-left.png │ │ │ │ ├── message-top-right.png │ │ │ │ ├── month-header-left.gif │ │ │ │ ├── month-header-right.gif │ │ │ │ ├── no-check-no-border.png │ │ │ │ ├── no-check.png │ │ │ │ ├── option-check.png │ │ │ │ ├── option.png │ │ │ │ ├── progress-running.gif │ │ │ │ ├── reset-history-icon.png │ │ │ │ ├── right-arrow.png │ │ │ │ ├── slider-handle.png │ │ │ │ ├── slider-handle2.png │ │ │ │ ├── up-arrow.png │ │ │ │ ├── week-selector-active.gif │ │ │ │ └── week-selector.gif │ │ │ ├── lib │ │ │ │ ├── almond.js │ │ │ │ ├── async.js │ │ │ │ ├── base64.js │ │ │ │ ├── i18n.js │ │ │ │ ├── jquery.history.js │ │ │ │ ├── jquery.history.shim.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.nouislider.js │ │ │ │ ├── jquery.simile.bubble.js │ │ │ │ ├── jquery.simile.dom.js │ │ │ │ ├── json2.js │ │ │ │ ├── polyfill.js │ │ │ │ ├── require.js │ │ │ │ ├── sprintf.js │ │ │ │ └── xrayquire.js │ │ │ ├── nls │ │ │ │ ├── de │ │ │ │ │ └── locale.js │ │ │ │ ├── es │ │ │ │ │ └── locale.js │ │ │ │ ├── fr │ │ │ │ │ └── locale.js │ │ │ │ ├── locale.js │ │ │ │ ├── nl │ │ │ │ │ └── locale.js │ │ │ │ ├── no │ │ │ │ │ └── locale.js │ │ │ │ ├── pt-br │ │ │ │ │ └── locale.js │ │ │ │ ├── root │ │ │ │ │ └── locale.js │ │ │ │ └── sv │ │ │ │ │ └── locale.js │ │ │ ├── scripts │ │ │ │ ├── bc │ │ │ │ │ ├── attributes.js │ │ │ │ │ └── bc.js │ │ │ │ ├── data │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── database.js │ │ │ │ │ ├── database │ │ │ │ │ │ ├── local.js │ │ │ │ │ │ ├── property.js │ │ │ │ │ │ ├── range-index.js │ │ │ │ │ │ └── type.js │ │ │ │ │ ├── exporter.js │ │ │ │ │ ├── exporters │ │ │ │ │ │ ├── bibtex.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── rdf-xml.js │ │ │ │ │ │ ├── semantic-wikitext.js │ │ │ │ │ │ └── tsv.js │ │ │ │ │ ├── expression-parser.js │ │ │ │ │ ├── expression-scanner.js │ │ │ │ │ ├── expression.js │ │ │ │ │ ├── expression │ │ │ │ │ │ ├── collection.js │ │ │ │ │ │ ├── constant.js │ │ │ │ │ │ ├── control-call.js │ │ │ │ │ │ ├── controls.js │ │ │ │ │ │ ├── function-call.js │ │ │ │ │ │ ├── function-utilities.js │ │ │ │ │ │ ├── functions.js │ │ │ │ │ │ ├── operator.js │ │ │ │ │ │ └── path.js │ │ │ │ │ ├── importer.js │ │ │ │ │ └── importers │ │ │ │ │ │ ├── babel-based.js │ │ │ │ │ │ ├── google-spreadsheet.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ └── jsonp.js │ │ │ │ ├── exhibit-base.js │ │ │ │ ├── exhibit-core.js │ │ │ │ ├── exhibit-impl.js │ │ │ │ ├── registry.js │ │ │ │ ├── ui │ │ │ │ │ ├── coders │ │ │ │ │ │ ├── coder.js │ │ │ │ │ │ ├── color-coder.js │ │ │ │ │ │ ├── color-gradient-coder.js │ │ │ │ │ │ ├── default-color-coder.js │ │ │ │ │ │ ├── icon-coder.js │ │ │ │ │ │ ├── ordered-color-coder.js │ │ │ │ │ │ ├── size-coder.js │ │ │ │ │ │ └── size-gradient-coder.js │ │ │ │ │ ├── control-panel.js │ │ │ │ │ ├── coordinator.js │ │ │ │ │ ├── facets │ │ │ │ │ │ ├── alpha-range-facet.js │ │ │ │ │ │ ├── cloud-facet.js │ │ │ │ │ │ ├── facet.js │ │ │ │ │ │ ├── hierarchical-facet.js │ │ │ │ │ │ ├── list-facet.js │ │ │ │ │ │ ├── numeric-range-facet.js │ │ │ │ │ │ ├── slider-facet.js │ │ │ │ │ │ └── text-search-facet.js │ │ │ │ │ ├── format-parser.js │ │ │ │ │ ├── format-scanner.js │ │ │ │ │ ├── formatter.js │ │ │ │ │ ├── lens-registry.js │ │ │ │ │ ├── lens.js │ │ │ │ │ ├── ui-context.js │ │ │ │ │ ├── ui.js │ │ │ │ │ ├── views │ │ │ │ │ │ ├── ordered-view-frame.js │ │ │ │ │ │ ├── tabular-view.js │ │ │ │ │ │ ├── thumbnail-view.js │ │ │ │ │ │ ├── tile-view.js │ │ │ │ │ │ ├── view-panel.js │ │ │ │ │ │ └── view.js │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── bookmark-widget.js │ │ │ │ │ │ ├── collection-summary-widget.js │ │ │ │ │ │ ├── legend-gradient-widget.js │ │ │ │ │ │ ├── legend-widget.js │ │ │ │ │ │ ├── logo.js │ │ │ │ │ │ ├── option-widget.js │ │ │ │ │ │ ├── reset-history-widget.js │ │ │ │ │ │ ├── resizable-div-widget.js │ │ │ │ │ │ └── toolbox-widget.js │ │ │ │ └── util │ │ │ │ │ ├── accessors.js │ │ │ │ │ ├── bookmark.js │ │ │ │ │ ├── coders.js │ │ │ │ │ ├── database.js │ │ │ │ │ ├── date-time.js │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── entities.js │ │ │ │ │ ├── facets.js │ │ │ │ │ ├── from-string.js │ │ │ │ │ ├── histogram.js │ │ │ │ │ ├── history-init.js │ │ │ │ │ ├── history.js │ │ │ │ │ ├── importers.js │ │ │ │ │ ├── localizer.js │ │ │ │ │ ├── persistence.js │ │ │ │ │ ├── set.js │ │ │ │ │ ├── settings.js │ │ │ │ │ ├── ui.js │ │ │ │ │ ├── units.js │ │ │ │ │ ├── util.js │ │ │ │ │ └── views.js │ │ │ └── styles │ │ │ │ └── exhibit-bundle.css │ │ │ └── timeline │ │ │ ├── ext │ │ │ ├── geochrono │ │ │ │ ├── geochrono-api.js │ │ │ │ └── scripts │ │ │ │ │ ├── ether-painters.js │ │ │ │ │ ├── geochrono.js │ │ │ │ │ ├── l10n │ │ │ │ │ └── en │ │ │ │ │ │ └── labellers.js │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── units.js │ │ │ └── planning │ │ │ │ ├── planning-api.js │ │ │ │ └── scripts │ │ │ │ ├── ether-painters.js │ │ │ │ ├── l10n │ │ │ │ └── en │ │ │ │ │ └── labellers.js │ │ │ │ ├── labellers.js │ │ │ │ ├── planning.js │ │ │ │ └── units.js │ │ │ ├── images │ │ │ ├── blue-circle.png │ │ │ ├── bubble-bottom-arrow.png │ │ │ ├── bubble-bottom-left.png │ │ │ ├── bubble-bottom-right.png │ │ │ ├── bubble-bottom.png │ │ │ ├── bubble-left-arrow.png │ │ │ ├── bubble-left.png │ │ │ ├── bubble-right-arrow.png │ │ │ ├── bubble-right.png │ │ │ ├── bubble-top-arrow.png │ │ │ ├── bubble-top-left.png │ │ │ ├── bubble-top-right.png │ │ │ ├── bubble-top.png │ │ │ ├── close-button.png │ │ │ ├── copyright-vertical.png │ │ │ ├── copyright.png │ │ │ ├── dark-blue-circle.png │ │ │ ├── dark-green-circle.png │ │ │ ├── dark-red-circle.png │ │ │ ├── dull-blue-circle.png │ │ │ ├── dull-green-circle.png │ │ │ ├── dull-red-circle.png │ │ │ ├── gray-circle.png │ │ │ ├── green-circle.png │ │ │ ├── message-bottom-left.png │ │ │ ├── message-bottom-right.png │ │ │ ├── message-left.png │ │ │ ├── message-right.png │ │ │ ├── message-top-left.png │ │ │ ├── message-top-right.png │ │ │ ├── progress-running.gif │ │ │ ├── red-circle.png │ │ │ └── top-bubble.png │ │ │ ├── scripts │ │ │ ├── band.js │ │ │ ├── compact-painter.js │ │ │ ├── decorators.js │ │ │ ├── detailed-painter.js │ │ │ ├── ether-painters.js │ │ │ ├── ethers.js │ │ │ ├── event-utils.js │ │ │ ├── ext │ │ │ │ └── japanese-eras.js │ │ │ ├── l10n │ │ │ │ ├── cs │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── de │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── en │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── es │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── fr │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── it │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── nl │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── pt_BR │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── ru │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── se │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── tr │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ ├── vi │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ │ └── zh │ │ │ │ │ ├── labellers.js │ │ │ │ │ └── timeline.js │ │ │ ├── labellers.js │ │ │ ├── original-painter.js │ │ │ ├── overview-painter.js │ │ │ ├── sources.js │ │ │ ├── themes.js │ │ │ └── timeline.js │ │ │ ├── styles │ │ │ ├── ethers.css │ │ │ ├── events.css │ │ │ ├── timeline-bundle.css │ │ │ └── timeline.css │ │ │ └── timeline-api.js │ ├── templates │ │ ├── exhibit │ │ │ ├── base.html │ │ │ ├── create │ │ │ │ └── exhibit_metadata_form.html │ │ │ ├── detail │ │ │ │ └── exhibit_metadata.html │ │ │ ├── edit │ │ │ │ ├── base.html │ │ │ │ ├── exhibit_metadata_form.html │ │ │ │ ├── property-editor.html │ │ │ │ └── success.html │ │ │ ├── embed │ │ │ │ └── show.js │ │ │ ├── exhibit_delete_dialog.html │ │ │ ├── exhibit_detail.html │ │ │ ├── exhibit_display.html │ │ │ ├── exhibit_list.html │ │ │ ├── exhibit_list_item.html │ │ │ ├── exhibit_update.html │ │ │ ├── list │ │ │ │ ├── base.html │ │ │ │ ├── exhibit_list_all.html │ │ │ │ └── exhibit_list_by_owner.html │ │ │ └── widget_js.html │ │ ├── freemix │ │ │ └── js_include │ │ │ │ └── jquery_ui.html │ │ └── simile │ │ │ └── js │ │ │ └── exhibit.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── embed_tags.py │ │ └── exhibit_tags.py │ ├── urls.py │ └── views.py ├── legacy │ ├── __init__.py │ └── dataset │ │ ├── __init__.py │ │ ├── migrations │ │ ├── 0001_initial_models.py │ │ ├── 0002_null_datasource_owner.py │ │ ├── 0003_dataset_onetoone_to_datasource.py │ │ ├── 0004_source_key_reversal.py │ │ ├── 0005_delete_dataset_source.py │ │ ├── 0006_auto__add_field_dataset_properties_cache.py │ │ ├── 0007_add_property_cache.py │ │ ├── 0008_add_json_models.py │ │ ├── 0009_migrate_json.py │ │ ├── 0010_remove_json_fields.py │ │ ├── 0011_add_datasource_transaction_is_complete.py │ │ ├── 0012_set_old_transactions_complete.py │ │ ├── 0013_datasource_exhibit_reference.py │ │ ├── 0014_ds_reference_exhibit.py │ │ ├── 0015_remove_obsolete_tables.py │ │ ├── 0016_remove_dataset_models.py │ │ └── __init__.py │ │ └── models.py ├── moderated_registration │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_load_org_types.py │ │ ├── 0003_delete_org_fields.py │ │ └── __init__.py │ ├── models.py │ ├── urls.py │ └── views.py ├── profiles │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_organization.py │ │ ├── 0003_remove_name_field.py │ │ └── __init__.py │ ├── models.py │ ├── templatetags │ │ ├── __init__.py │ │ └── profile_tags.py │ ├── urls.py │ └── views.py ├── share │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_time_stamps.py │ │ ├── 0003_auto__chg_field_sharedexhibitkey_exhibit.py │ │ └── __init__.py │ ├── models.py │ ├── urls.py │ └── views.py ├── support │ ├── __init__.py │ ├── admin.py │ ├── backends │ │ ├── __init__.py │ │ ├── redmine.py │ │ └── uservoice.py │ ├── fixtures │ │ ├── augmentation_errors.json │ │ └── support_picklists.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_add_pick_lists.py │ │ ├── 0002_add_data_source.py │ │ ├── 0003_load_augmentation_errors.py │ │ ├── 0004_load_support_picklists.py │ │ └── __init__.py │ ├── models.py │ ├── urls.py │ ├── uservoice │ │ ├── __init__.py │ │ ├── urls.py │ │ └── views.py │ └── views.py ├── upload │ ├── __init__.py │ ├── admin.py │ ├── conf.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_oai_datasource.py │ │ ├── 0003_add_jsondatasource.py │ │ ├── 0004_auto__add_datasource.py │ │ ├── 0005_auto__add_referencedatasource.py │ │ ├── 0006_create_reference_datasources.py │ │ ├── 0007_new_ds_ptr.py │ │ ├── 0008_migrate_datasources.py │ │ ├── 0009_drop_dataset_datasource_refs.py │ │ ├── 0010_rename_new_ds_ptr__datasource_ptr.py │ │ ├── 0011_referenced_exhibit_to_publishedexhibit.py │ │ ├── 0012_auto__add_uploadtransaction.py │ │ ├── 0013_auto__del_uploadtransaction.py │ │ ├── 0014_auto__add_uploadtransaction.py │ │ ├── 0015_auto__del_field_oaidatasource_limit.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templatetags │ │ ├── __init__.py │ │ └── datasource_tags.py │ ├── transform.py │ ├── urls.py │ └── views.py └── vendor │ ├── __init__.py │ ├── friends │ ├── README │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── importer.py │ ├── management.py │ ├── models.py │ ├── templates │ │ └── notification │ │ │ ├── friends_accept │ │ │ ├── full.txt │ │ │ └── notice.html │ │ │ ├── friends_accept_sent │ │ │ ├── full.txt │ │ │ └── notice.html │ │ │ ├── friends_invite │ │ │ ├── full.txt │ │ │ └── notice.html │ │ │ ├── friends_invite_sent │ │ │ ├── full.txt │ │ │ └── notice.html │ │ │ ├── friends_otherconnect │ │ │ ├── full.txt │ │ │ └── notice.html │ │ │ └── join_accept │ │ │ ├── full.txt │ │ │ └── notice.html │ └── views.py │ └── notification │ ├── README │ ├── __init__.py │ ├── admin.py │ ├── atomformat.py │ ├── context_processors.py │ ├── decorators.py │ ├── engine.py │ ├── feeds.py │ ├── lockfile.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── emit_notices.py │ ├── migrations │ ├── 0001_pinax_0_7.py │ ├── 0002_django_notification_0_2.py │ └── __init__.py │ ├── models.py │ ├── templates │ └── notification │ │ ├── email_body.txt │ │ ├── email_subject.txt │ │ ├── full.html │ │ ├── full.txt │ │ ├── notice.html │ │ └── short.txt │ ├── templatetags │ ├── __init__.py │ └── notification_utils.py │ ├── urls.py │ └── views.py ├── fixtures ├── curated_exhibit_collections.json └── organization_types.json ├── settings.py ├── static ├── collection_catalog │ ├── css │ │ └── catalog.css │ ├── img │ │ └── default.png │ └── js │ │ └── catalog_schema.json ├── data │ ├── db_sample.json │ ├── search_sample.json │ ├── ss_sample.xls │ └── xml_sample.xml ├── images │ ├── arrow-next.png │ ├── arrow-prev.png │ ├── bar-animated.gif │ ├── bullet.png │ ├── dataset-24.png │ ├── dataset-32.png │ ├── dataset-96.png │ ├── fade-arrow-bg.png │ ├── fade-arrow.png │ ├── header-background.png │ ├── home.png │ ├── info.png │ ├── key-24.png │ ├── key-32.png │ ├── lc-logo.png │ ├── loaderbar.gif │ ├── loading.gif │ ├── lock.png │ ├── login_bg.png │ ├── login_icon.png │ ├── login_request_bg.png │ ├── new-bullet.png │ ├── notice-32.png │ ├── palette-112.png │ ├── palette-128.png │ ├── palette-24.png │ ├── palette-36.png │ ├── palette-48.png │ ├── palette-96.png │ ├── person-24.png │ ├── person-96.png │ ├── settings-icon.png │ ├── settings_bg.png │ ├── shadow.gif │ ├── shadowAlpha.png │ ├── slide_holder.png │ ├── unlock.png │ ├── user-128.png │ ├── user-32.png │ ├── user-96.png │ ├── user.png │ └── view.png ├── profiles │ └── css │ │ ├── profile_friends.css │ │ └── profile_users.css ├── registration │ └── js │ │ └── registration_form.js ├── share │ └── js │ │ ├── share_dialog.js │ │ └── shared_exhibit.js ├── support │ └── js │ │ ├── base.js │ │ ├── ignored_fields.js │ │ └── load.js ├── upload │ ├── css │ │ ├── json-upload.css │ │ └── upload.css │ ├── img │ │ ├── computer.png │ │ ├── contentdm.png │ │ ├── help-browser.png │ │ ├── json-file.png │ │ ├── oai.png │ │ ├── spreadsheet.png │ │ ├── web.png │ │ └── xml-file.png │ └── js │ │ ├── json-upload.js │ │ └── oai_form.js └── viewshare │ ├── css │ ├── base.css │ ├── bootstrap-responsive.css │ ├── bootstrap.css │ ├── font-awesome.min.css │ ├── home-page.css │ ├── lc.css │ ├── login.css │ ├── settings.css │ └── style.css │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff │ ├── img │ ├── background.gif │ ├── content-bg-gradient.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── pagination.png │ ├── viewshare-logo-fp.png │ └── viewshare-logo.png │ └── js │ ├── compatible.js │ └── ui.js ├── templates ├── 404.html ├── 500.html ├── about │ ├── screencast.html │ └── tos.html ├── account │ ├── base.html │ ├── confirm_email.html │ ├── disclaimer.txt │ ├── email.html │ ├── email_confirmation_message.txt │ ├── email_confirmation_subject.txt │ ├── language_change.html │ ├── login.html │ ├── logout.html │ ├── password_change.html │ ├── password_reset.html │ ├── password_reset_done.html │ ├── password_reset_from_key.html │ ├── password_reset_key_message.txt │ ├── password_set.html │ ├── signup.html │ ├── timezone_change.html │ └── verification_sent.html ├── admin │ └── base_site.html ├── announcements │ ├── announcement_detail.html │ └── announcement_list.html ├── base.html ├── connections │ ├── connection_list.html │ ├── connection_list_by_user.html │ ├── exhibit_list_by_user_connections.html │ └── invitations.html ├── error.html ├── feeds │ ├── data_atom_description.html │ ├── data_description.html │ ├── latest_data_atom_description.html │ ├── latest_data_description.html │ ├── latest_views_atom_description.html │ ├── latest_views_description.html │ ├── views_atom_description.html │ └── views_description.html ├── front_page.html ├── messages │ └── base.html ├── notification │ ├── base.html │ ├── friends_accept │ │ ├── full.txt │ │ └── notice.html │ ├── friends_accept_sent │ │ ├── full.txt │ │ └── notice.html │ ├── friends_invite │ │ ├── full.txt │ │ └── notice.html │ ├── friends_invite_sent │ │ ├── full.txt │ │ └── notice.html │ ├── friends_otherconnect │ │ ├── full.txt │ │ └── notice.html │ ├── notice_settings.html │ ├── notices.html │ ├── noticesview.html │ ├── notification_summary_list.html │ └── single.html ├── profiles │ ├── base.html │ ├── profile.html │ ├── profile_edit.html │ ├── profile_edit_facebox.html │ ├── profile_form.html │ ├── profile_item.html │ ├── profile_right_panel.html │ ├── profiles.html │ └── user_counts.html ├── registration │ ├── activate.html │ ├── activation_complete.html │ ├── activation_email.txt │ ├── activation_email_subject.txt │ ├── admin_approval.html │ ├── approval_email.txt │ ├── approval_email_subject.txt │ ├── registration_closed.html │ ├── registration_complete.html │ └── registration_form.html ├── robots.txt ├── share │ ├── create_success.html │ ├── exhibit_display.html │ ├── shared_key_delete_dialog.html │ ├── shared_key_form.html │ └── shared_key_metadata.html ├── site_base.html ├── support │ ├── augmentation_description.html │ ├── create_issue.html │ ├── description.html │ ├── ignored_field_description.html │ ├── ignored_field_issue.html │ ├── issue_create_error.html │ ├── issue_response.html │ ├── redmine_issue_response.html │ ├── upload_description.html │ ├── upload_issue.html │ ├── uservoice │ │ ├── login.html │ │ ├── options.js │ │ └── redirect.html │ └── uservoice_issue_response.html └── upload │ ├── cdm_datasource_form.html │ ├── cdm_datasource_item.html │ ├── datasource_form.html │ ├── datasource_list_item.html │ ├── file_datasource_form.html │ ├── file_datasource_item.html │ ├── jsonfile_datasource_form.html │ ├── jsonfile_datasource_item.html │ ├── jsonurl_datasource_form.html │ ├── jsonurl_datasource_item.html │ ├── modsfile_datasource_form.html │ ├── modsfile_datasource_item.html │ ├── modsurl_datasource_form.html │ ├── modsurl_datasource_item.html │ ├── oai_datasource_form.html │ ├── oai_datasource_item.html │ ├── reference_datasource_form.html │ ├── reference_datasource_item.html │ ├── supported.html │ ├── transaction_status.html │ ├── upload.html │ ├── url_datasource_form.html │ └── url_datasource_item.html ├── urls.py └── utilities ├── __init__.py ├── context_processors.py ├── feeds.py ├── models.py ├── templatetags ├── __init__.py └── viewshare_helpers.py └── views.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/README -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/ecosystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/docs/ecosystem.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/docs/make.bat -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/manage.py -------------------------------------------------------------------------------- /requirements/deploy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/requirements/deploy.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/setup.py -------------------------------------------------------------------------------- /viewshare/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "5.0.1" 2 | -------------------------------------------------------------------------------- /viewshare/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/account/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/admin.py -------------------------------------------------------------------------------- /viewshare/apps/account/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/forms.py -------------------------------------------------------------------------------- /viewshare/apps/account/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/account/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/account/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/models.py -------------------------------------------------------------------------------- /viewshare/apps/account/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/urls.py -------------------------------------------------------------------------------- /viewshare/apps/account/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/utils.py -------------------------------------------------------------------------------- /viewshare/apps/account/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/account/views.py -------------------------------------------------------------------------------- /viewshare/apps/augment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/augment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/admin.py -------------------------------------------------------------------------------- /viewshare/apps/augment/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/conf.py -------------------------------------------------------------------------------- /viewshare/apps/augment/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/fixtures/initial_data.json -------------------------------------------------------------------------------- /viewshare/apps/augment/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/forms.py -------------------------------------------------------------------------------- /viewshare/apps/augment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/augment/migrations/0002_force_fixture_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/migrations/0002_force_fixture_load.py -------------------------------------------------------------------------------- /viewshare/apps/augment/migrations/0003_add_error_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/migrations/0003_add_error_codes.py -------------------------------------------------------------------------------- /viewshare/apps/augment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/augment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/models.py -------------------------------------------------------------------------------- /viewshare/apps/augment/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/tasks.py -------------------------------------------------------------------------------- /viewshare/apps/augment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/urls.py -------------------------------------------------------------------------------- /viewshare/apps/augment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/augment/views.py -------------------------------------------------------------------------------- /viewshare/apps/connections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/connections/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/connections/context_processors.py -------------------------------------------------------------------------------- /viewshare/apps/connections/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/connections/models.py -------------------------------------------------------------------------------- /viewshare/apps/connections/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/connections/templatetags/connection_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/connections/templatetags/connection_helpers.py -------------------------------------------------------------------------------- /viewshare/apps/connections/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/connections/urls.py -------------------------------------------------------------------------------- /viewshare/apps/connections/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/connections/views.py -------------------------------------------------------------------------------- /viewshare/apps/discover/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/discover/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/discover/admin.py -------------------------------------------------------------------------------- /viewshare/apps/discover/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/discover/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/discover/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/discover/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/discover/models.py -------------------------------------------------------------------------------- /viewshare/apps/discover/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/discover/tests.py -------------------------------------------------------------------------------- /viewshare/apps/discover/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/discover/views.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/admin.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/conf.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/fixtures/canvases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/fixtures/canvases.json -------------------------------------------------------------------------------- /viewshare/apps/exhibit/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/forms.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0002_nullable_dataset_for_exhibit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0002_nullable_dataset_for_exhibit.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0003_views_metadata_to_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0003_views_metadata_to_property.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0004_register_lenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0004_register_lenses.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0005_remove_themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0005_remove_themes.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0006_inline_lenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0006_inline_lenses.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0007_public_and_draft_exhibit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0007_public_and_draft_exhibit.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0008_migrate_publication_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0008_migrate_publication_info.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0014_populate_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0014_populate_profile.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0015_drop_dataset_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0015_drop_dataset_reference.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0016_exhibit_base_owner_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0016_exhibit_base_owner_slug.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0017_migrate_owner_slug_to_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0017_migrate_owner_slug_to_base.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0018_drop_owner_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0018_drop_owner_slug.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0019_rename_temp_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0019_rename_temp_fields.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0020_property_data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0020_property_data_model.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0021_migrate_property_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0021_migrate_property_data.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0022_remove_full_data_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0022_remove_full_data_file.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0023_create_id_and_label_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0023_create_id_and_label_properties.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0025_auto__add_datatransaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0025_auto__add_datatransaction.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0027_auto__del_datatransaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0027_auto__del_datatransaction.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0029_ensure_default_lens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0029_ensure_default_lens.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/0030_piechart_modification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/migrations/0030_piechart_modification.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/models.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/permissions.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/serializers.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/apps/editor-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/apps/editor-app.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/models/editor/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/models/editor/property.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/observer.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/templates/editor/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/templates/editor/editor.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/templates/editor/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/templates/editor/modal.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/templates/editor/property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/templates/editor/property.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/templates/editor/record.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/templates/editor/record.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/views/editor/editor-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/views/editor/editor-view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/views/editor/modal-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/views/editor/modal-view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/views/editor/property-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/views/editor/property-view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/views/editor/record-nav-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/views/editor/record-nav-view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/views/editor/record-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/views/editor/record-view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/dataset/js/views/editor/view-interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/dataset/js/views/editor/view-interface.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/editor-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/editor-build.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/editor-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/editor-main.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/embed-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/embed-build.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/embed-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/embed-main.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/exhibit-display-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/exhibit-display-build.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/exhibit-display-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/exhibit-display-main.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/exhibit-layout-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/exhibit-layout-build.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/exhibit-layout-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/exhibit-layout-main.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/canvas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/canvas.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/editor.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/embed-code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/embed-code.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/embed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/embed.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/exhibit_display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/exhibit_display.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/exhibit_edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/exhibit_edit.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/exhibit_inspect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/exhibit_inspect.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/inspector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/inspector.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/layout.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/multiselect.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/patch_exhibit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/patch_exhibit.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/css/views.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/css/views.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/cloud-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/cloud-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/facet-both-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/facet-both-s.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/facet-left-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/facet-left-s.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/facet-right-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/facet-right-s.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/facet-top-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/facet-top-s.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/form-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/form-shadow.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/gallery.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/icon_edit_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/icon_edit_green.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/image-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/image-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/list-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/list-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/list-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/list-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/logo-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/logo-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/map-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/map-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/numeric-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/numeric-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/orange-fade-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/orange-fade-arrow.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/orange-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/orange-fade.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/piechart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/piechart-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/scatterplot-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/scatterplot-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/search-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/search-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/slider-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/slider-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/table-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/table-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/text-facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/text-facet.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/img/timeline-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/img/timeline-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/detail.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/display.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/exhibit-html-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/exhibit-html-view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/list.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/logo.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/numeric.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/registry.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/search.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/slider.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/tagcloud.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/facets/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/facets/text.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/lenses/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/lenses/base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/lenses/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/lenses/list.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/lenses/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/lenses/registry.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/lenses/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/lenses/thumbnail.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/barchart.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/list.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/map.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/piechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/piechart.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/registry.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/scatterplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/scatterplot.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/table.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/thumbnail.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/display/views/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/display/views/timeline.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/embed/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/embed/display.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/exhibit_utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/exhibit_utilities.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/freemix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/freemix.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/cancel_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/cancel_button.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/edit_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/edit_button.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/editor.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/container.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/list.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/logo.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/numeric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/numeric.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/search.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/slider.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/tagcloud.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/facets/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/facets/text.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/lenses/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/lenses/base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/lenses/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/lenses/list.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/lenses/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/lenses/thumbnail.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/modallinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/modallinks.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/patch_exhibit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/patch_exhibit.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/save_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/save_button.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/barchart.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/container.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/list.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/map.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/piechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/piechart.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/scatterplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/scatterplot.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/table.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/thumbnail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/thumbnail.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/views/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/views/timeline.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/widget.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/layout/widget_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/layout/widget_editor.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/bootstrap.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/bootstrap.min.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/creole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/creole.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/handlebars.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/hoverIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/hoverIntent.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery-sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery-sortable.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery-ui.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.bgiframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.bgiframe.min.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.cookie.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.csrf.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.dataTables.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.form.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.json.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.slides.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/jquery.uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/jquery.uuid.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/lightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/lightbox.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/multiselect.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/require.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/lib/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/lib/text.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/patch_exhibit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/patch_exhibit.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/templates/exhibit-wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/templates/exhibit-wrapper.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/templates/layout/view-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/templates/layout/view-menu.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/freemix/js/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/freemix/js/widget.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/README -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/content/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/content/history.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-bottom-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-bottom-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-bottom.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-top-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-top-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/bubble-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/bubble-top.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/close-button.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/copy.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/message-bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/message-bottom-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/message-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/message-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/message-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/message-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/message-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/message-top-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/images/message-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/images/message-top-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/styles/graphics-ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/styles/graphics-ie6.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/styles/graphics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/styles/graphics.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/ajax/styles/simile-ajax-bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/ajax/styles/simile-ajax-bundle.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/exhibit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/exhibit.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/lib/almond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/lib/almond.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/lib/require.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/scripts/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/scripts/dom.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/scripts/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/scripts/set.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/simile-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/simile-ajax.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/ajax/api/styles/main.css: -------------------------------------------------------------------------------- 1 | @import url("graphics.css"); 2 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/es/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Discute" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/fr/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Discute" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/it/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Discuti" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/nl/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Discussieer" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/pl/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Dyskusja" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/pt-br/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Discutir" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/ru/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "обсудите" 3 | }); 4 | 5 | 6 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/ext/timeline/api/nls/tr/timeline.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "wikiLinkLabel": "Tartış" 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/extensions/flot/nls/locale.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "root": true 3 | }); 4 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/extensions/map/styles/main.css: -------------------------------------------------------------------------------- 1 | @import url("map-view.css"); 2 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/extensions/time/styles/main.css: -------------------------------------------------------------------------------- 1 | @import url("timeline-view.css"); 2 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/arrow-left.gif -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/arrow-right.gif -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/black-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/black-check.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/blank-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/blank-16x16.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bookmark-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bookmark-icon.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bubble-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bubble-bottom.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bubble-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bubble-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bubble-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bubble-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bubble-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bubble-top-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bubble-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bubble-top-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/bubble-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/bubble-top.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/close-button.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/collapse.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/copy.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/down-arrow.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/expand.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/gray-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/gray-check.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/left-arrow.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/message-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/message-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/message-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/message-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/message-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/message-top-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/no-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/no-check.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/option-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/option-check.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/option.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/progress-running.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/progress-running.gif -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/right-arrow.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/slider-handle.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/slider-handle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/slider-handle2.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/up-arrow.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/images/week-selector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/images/week-selector.gif -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/almond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/almond.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/async.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/base64.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/i18n.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.history.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.history.shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.history.shim.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.nouislider.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.simile.bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.simile.bubble.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.simile.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/jquery.simile.dom.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/json2.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/polyfill.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/require.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/sprintf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/sprintf.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/lib/xrayquire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/lib/xrayquire.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/de/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/de/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/es/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/es/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/fr/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/fr/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/nl/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/nl/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/no/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/no/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/pt-br/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/pt-br/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/root/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/root/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/nls/sv/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/nls/sv/locale.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/bc/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/bc/attributes.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/bc/bc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/bc/bc.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/data/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/data/collection.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/data/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/data/database.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/data/exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/data/exporter.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/data/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/data/expression.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/data/importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/data/importer.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/exhibit-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/exhibit-base.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/exhibit-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/exhibit-core.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/exhibit-impl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/exhibit-impl.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/registry.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/coders/coder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/coders/coder.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/control-panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/control-panel.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/coordinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/coordinator.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/facets/facet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/facets/facet.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/format-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/format-parser.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/formatter.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/lens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/lens.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/ui-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/ui-context.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/ui.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/views/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/ui/views/view.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/accessors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/accessors.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/bookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/bookmark.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/coders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/coders.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/database.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/date-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/date-time.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/debug.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/entities.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/facets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/facets.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/histogram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/histogram.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/history.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/importers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/importers.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/localizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/localizer.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/set.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/settings.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/ui.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/units.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/util.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/scripts/util/views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/scripts/util/views.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/exhibit/styles/exhibit-bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/exhibit/styles/exhibit-bundle.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/blue-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/blue-circle.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/bubble-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/bubble-bottom.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/bubble-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/bubble-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/bubble-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/bubble-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/bubble-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/bubble-top.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/close-button.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/copyright.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/gray-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/gray-circle.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/green-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/green-circle.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/message-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/message-left.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/message-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/message-right.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/red-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/red-circle.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/images/top-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/images/top-bubble.png -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/band.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/decorators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/decorators.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/ethers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/ethers.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/event-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/event-utils.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/labellers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/labellers.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/sources.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/themes.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/scripts/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/scripts/timeline.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/styles/ethers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/styles/ethers.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/styles/events.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/styles/events.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/styles/timeline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/styles/timeline.css -------------------------------------------------------------------------------- /viewshare/apps/exhibit/static/simile/timeline/timeline-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/static/simile/timeline/timeline-api.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/base.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/detail/exhibit_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/detail/exhibit_metadata.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/edit/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/edit/base.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/edit/property-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/edit/property-editor.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/edit/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/edit/success.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/embed/show.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/embed/show.js -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/exhibit_delete_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/exhibit_delete_dialog.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/exhibit_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/exhibit_detail.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/exhibit_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/exhibit_display.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/exhibit_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/exhibit_list.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/exhibit_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/exhibit_list_item.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/exhibit_update.html: -------------------------------------------------------------------------------- 1 | {% extends "exhibit/edit/base.html" %} 2 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/list/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/list/base.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/list/exhibit_list_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/list/exhibit_list_all.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/exhibit/widget_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/exhibit/widget_js.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/freemix/js_include/jquery_ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/freemix/js_include/jquery_ui.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templates/simile/js/exhibit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templates/simile/js/exhibit.html -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templatetags/embed_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templatetags/embed_tags.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/templatetags/exhibit_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/templatetags/exhibit_tags.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/urls.py -------------------------------------------------------------------------------- /viewshare/apps/exhibit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/exhibit/views.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'dfeeney' 2 | -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0001_initial_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0001_initial_models.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0002_null_datasource_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0002_null_datasource_owner.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0004_source_key_reversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0004_source_key_reversal.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0005_delete_dataset_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0005_delete_dataset_source.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0007_add_property_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0007_add_property_cache.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0008_add_json_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0008_add_json_models.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0009_migrate_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0009_migrate_json.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0010_remove_json_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0010_remove_json_fields.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0014_ds_reference_exhibit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0014_ds_reference_exhibit.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/0016_remove_dataset_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/legacy/dataset/migrations/0016_remove_dataset_models.py -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/legacy/dataset/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/moderated_registration/admin.py -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/moderated_registration/forms.py -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/moderated_registration/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/moderated_registration/models.py -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/moderated_registration/urls.py -------------------------------------------------------------------------------- /viewshare/apps/moderated_registration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/moderated_registration/views.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/profiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/admin.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/forms.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/migrations/0002_add_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/migrations/0002_add_organization.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/migrations/0003_remove_name_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/migrations/0003_remove_name_field.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/profiles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/models.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/profiles/templatetags/profile_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/templatetags/profile_tags.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/urls.py -------------------------------------------------------------------------------- /viewshare/apps/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/profiles/views.py -------------------------------------------------------------------------------- /viewshare/apps/share/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/share/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/admin.py -------------------------------------------------------------------------------- /viewshare/apps/share/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/forms.py -------------------------------------------------------------------------------- /viewshare/apps/share/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/share/migrations/0002_add_time_stamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/migrations/0002_add_time_stamps.py -------------------------------------------------------------------------------- /viewshare/apps/share/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/share/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/models.py -------------------------------------------------------------------------------- /viewshare/apps/share/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/urls.py -------------------------------------------------------------------------------- /viewshare/apps/share/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/share/views.py -------------------------------------------------------------------------------- /viewshare/apps/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/support/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/admin.py -------------------------------------------------------------------------------- /viewshare/apps/support/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/backends/__init__.py -------------------------------------------------------------------------------- /viewshare/apps/support/backends/redmine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/backends/redmine.py -------------------------------------------------------------------------------- /viewshare/apps/support/backends/uservoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/backends/uservoice.py -------------------------------------------------------------------------------- /viewshare/apps/support/fixtures/augmentation_errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/fixtures/augmentation_errors.json -------------------------------------------------------------------------------- /viewshare/apps/support/fixtures/support_picklists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/fixtures/support_picklists.json -------------------------------------------------------------------------------- /viewshare/apps/support/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/forms.py -------------------------------------------------------------------------------- /viewshare/apps/support/migrations/0001_add_pick_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/migrations/0001_add_pick_lists.py -------------------------------------------------------------------------------- /viewshare/apps/support/migrations/0002_add_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/migrations/0002_add_data_source.py -------------------------------------------------------------------------------- /viewshare/apps/support/migrations/0003_load_augmentation_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/migrations/0003_load_augmentation_errors.py -------------------------------------------------------------------------------- /viewshare/apps/support/migrations/0004_load_support_picklists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/migrations/0004_load_support_picklists.py -------------------------------------------------------------------------------- /viewshare/apps/support/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/support/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/models.py -------------------------------------------------------------------------------- /viewshare/apps/support/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/urls.py -------------------------------------------------------------------------------- /viewshare/apps/support/uservoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/support/uservoice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/uservoice/urls.py -------------------------------------------------------------------------------- /viewshare/apps/support/uservoice/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/uservoice/views.py -------------------------------------------------------------------------------- /viewshare/apps/support/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/support/views.py -------------------------------------------------------------------------------- /viewshare/apps/upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/upload/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/admin.py -------------------------------------------------------------------------------- /viewshare/apps/upload/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/conf.py -------------------------------------------------------------------------------- /viewshare/apps/upload/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/forms.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0001_initial.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0002_add_oai_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0002_add_oai_datasource.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0003_add_jsondatasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0003_add_jsondatasource.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0004_auto__add_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0004_auto__add_datasource.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0005_auto__add_referencedatasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0005_auto__add_referencedatasource.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0006_create_reference_datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0006_create_reference_datasources.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0007_new_ds_ptr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0007_new_ds_ptr.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0008_migrate_datasources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0008_migrate_datasources.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0009_drop_dataset_datasource_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0009_drop_dataset_datasource_refs.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0012_auto__add_uploadtransaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0012_auto__add_uploadtransaction.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0013_auto__del_uploadtransaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0013_auto__del_uploadtransaction.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/0014_auto__add_uploadtransaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/migrations/0014_auto__add_uploadtransaction.py -------------------------------------------------------------------------------- /viewshare/apps/upload/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/upload/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/models.py -------------------------------------------------------------------------------- /viewshare/apps/upload/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/tasks.py -------------------------------------------------------------------------------- /viewshare/apps/upload/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/upload/templatetags/datasource_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/templatetags/datasource_tags.py -------------------------------------------------------------------------------- /viewshare/apps/upload/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/transform.py -------------------------------------------------------------------------------- /viewshare/apps/upload/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/urls.py -------------------------------------------------------------------------------- /viewshare/apps/upload/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/upload/views.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/friends/README -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/friends/admin.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/friends/forms.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/friends/importer.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/friends/management.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/friends/models.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/friends/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/README -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/__init__.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/admin.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/atomformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/atomformat.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/context_processors.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/decorators.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/engine.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/feeds.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/lockfile.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/management/commands/emit_notices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/management/commands/emit_notices.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/migrations/0001_pinax_0_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/migrations/0001_pinax_0_7.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/models.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/templates/notification/full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/templates/notification/full.html -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/templates/notification/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/templates/notification/full.txt -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/templates/notification/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/templates/notification/notice.html -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/templates/notification/short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/templates/notification/short.txt -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/templatetags/notification_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/templatetags/notification_utils.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/urls.py -------------------------------------------------------------------------------- /viewshare/apps/vendor/notification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/apps/vendor/notification/views.py -------------------------------------------------------------------------------- /viewshare/fixtures/curated_exhibit_collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/fixtures/curated_exhibit_collections.json -------------------------------------------------------------------------------- /viewshare/fixtures/organization_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/fixtures/organization_types.json -------------------------------------------------------------------------------- /viewshare/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/settings.py -------------------------------------------------------------------------------- /viewshare/static/collection_catalog/css/catalog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/collection_catalog/css/catalog.css -------------------------------------------------------------------------------- /viewshare/static/collection_catalog/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/collection_catalog/img/default.png -------------------------------------------------------------------------------- /viewshare/static/collection_catalog/js/catalog_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/collection_catalog/js/catalog_schema.json -------------------------------------------------------------------------------- /viewshare/static/data/db_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/data/db_sample.json -------------------------------------------------------------------------------- /viewshare/static/data/search_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/data/search_sample.json -------------------------------------------------------------------------------- /viewshare/static/data/ss_sample.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/data/ss_sample.xls -------------------------------------------------------------------------------- /viewshare/static/data/xml_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/data/xml_sample.xml -------------------------------------------------------------------------------- /viewshare/static/images/arrow-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/arrow-next.png -------------------------------------------------------------------------------- /viewshare/static/images/arrow-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/arrow-prev.png -------------------------------------------------------------------------------- /viewshare/static/images/bar-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/bar-animated.gif -------------------------------------------------------------------------------- /viewshare/static/images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/bullet.png -------------------------------------------------------------------------------- /viewshare/static/images/dataset-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/dataset-24.png -------------------------------------------------------------------------------- /viewshare/static/images/dataset-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/dataset-32.png -------------------------------------------------------------------------------- /viewshare/static/images/dataset-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/dataset-96.png -------------------------------------------------------------------------------- /viewshare/static/images/fade-arrow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/fade-arrow-bg.png -------------------------------------------------------------------------------- /viewshare/static/images/fade-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/fade-arrow.png -------------------------------------------------------------------------------- /viewshare/static/images/header-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/header-background.png -------------------------------------------------------------------------------- /viewshare/static/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/home.png -------------------------------------------------------------------------------- /viewshare/static/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/info.png -------------------------------------------------------------------------------- /viewshare/static/images/key-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/key-24.png -------------------------------------------------------------------------------- /viewshare/static/images/key-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/key-32.png -------------------------------------------------------------------------------- /viewshare/static/images/lc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/lc-logo.png -------------------------------------------------------------------------------- /viewshare/static/images/loaderbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/loaderbar.gif -------------------------------------------------------------------------------- /viewshare/static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/loading.gif -------------------------------------------------------------------------------- /viewshare/static/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/lock.png -------------------------------------------------------------------------------- /viewshare/static/images/login_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/login_bg.png -------------------------------------------------------------------------------- /viewshare/static/images/login_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/login_icon.png -------------------------------------------------------------------------------- /viewshare/static/images/login_request_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/login_request_bg.png -------------------------------------------------------------------------------- /viewshare/static/images/new-bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/new-bullet.png -------------------------------------------------------------------------------- /viewshare/static/images/notice-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/notice-32.png -------------------------------------------------------------------------------- /viewshare/static/images/palette-112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/palette-112.png -------------------------------------------------------------------------------- /viewshare/static/images/palette-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/palette-128.png -------------------------------------------------------------------------------- /viewshare/static/images/palette-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/palette-24.png -------------------------------------------------------------------------------- /viewshare/static/images/palette-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/palette-36.png -------------------------------------------------------------------------------- /viewshare/static/images/palette-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/palette-48.png -------------------------------------------------------------------------------- /viewshare/static/images/palette-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/palette-96.png -------------------------------------------------------------------------------- /viewshare/static/images/person-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/person-24.png -------------------------------------------------------------------------------- /viewshare/static/images/person-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/person-96.png -------------------------------------------------------------------------------- /viewshare/static/images/settings-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/settings-icon.png -------------------------------------------------------------------------------- /viewshare/static/images/settings_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/settings_bg.png -------------------------------------------------------------------------------- /viewshare/static/images/shadow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/shadow.gif -------------------------------------------------------------------------------- /viewshare/static/images/shadowAlpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/shadowAlpha.png -------------------------------------------------------------------------------- /viewshare/static/images/slide_holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/slide_holder.png -------------------------------------------------------------------------------- /viewshare/static/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/unlock.png -------------------------------------------------------------------------------- /viewshare/static/images/user-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/user-128.png -------------------------------------------------------------------------------- /viewshare/static/images/user-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/user-32.png -------------------------------------------------------------------------------- /viewshare/static/images/user-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/user-96.png -------------------------------------------------------------------------------- /viewshare/static/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/user.png -------------------------------------------------------------------------------- /viewshare/static/images/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/images/view.png -------------------------------------------------------------------------------- /viewshare/static/profiles/css/profile_friends.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/profiles/css/profile_friends.css -------------------------------------------------------------------------------- /viewshare/static/profiles/css/profile_users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/profiles/css/profile_users.css -------------------------------------------------------------------------------- /viewshare/static/registration/js/registration_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/registration/js/registration_form.js -------------------------------------------------------------------------------- /viewshare/static/share/js/share_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/share/js/share_dialog.js -------------------------------------------------------------------------------- /viewshare/static/share/js/shared_exhibit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/share/js/shared_exhibit.js -------------------------------------------------------------------------------- /viewshare/static/support/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/support/js/base.js -------------------------------------------------------------------------------- /viewshare/static/support/js/ignored_fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/support/js/ignored_fields.js -------------------------------------------------------------------------------- /viewshare/static/support/js/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/support/js/load.js -------------------------------------------------------------------------------- /viewshare/static/upload/css/json-upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/css/json-upload.css -------------------------------------------------------------------------------- /viewshare/static/upload/css/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/css/upload.css -------------------------------------------------------------------------------- /viewshare/static/upload/img/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/computer.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/contentdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/contentdm.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/help-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/help-browser.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/json-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/json-file.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/oai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/oai.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/spreadsheet.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/web.png -------------------------------------------------------------------------------- /viewshare/static/upload/img/xml-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/img/xml-file.png -------------------------------------------------------------------------------- /viewshare/static/upload/js/json-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/js/json-upload.js -------------------------------------------------------------------------------- /viewshare/static/upload/js/oai_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/upload/js/oai_form.js -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/base.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/bootstrap.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/font-awesome.min.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/home-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/home-page.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/lc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/lc.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/login.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/settings.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/css/style.css -------------------------------------------------------------------------------- /viewshare/static/viewshare/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /viewshare/static/viewshare/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /viewshare/static/viewshare/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /viewshare/static/viewshare/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /viewshare/static/viewshare/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/background.gif -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/content-bg-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/content-bg-gradient.png -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/pagination.png -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/viewshare-logo-fp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/viewshare-logo-fp.png -------------------------------------------------------------------------------- /viewshare/static/viewshare/img/viewshare-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/img/viewshare-logo.png -------------------------------------------------------------------------------- /viewshare/static/viewshare/js/compatible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/js/compatible.js -------------------------------------------------------------------------------- /viewshare/static/viewshare/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/static/viewshare/js/ui.js -------------------------------------------------------------------------------- /viewshare/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/404.html -------------------------------------------------------------------------------- /viewshare/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/500.html -------------------------------------------------------------------------------- /viewshare/templates/about/screencast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/about/screencast.html -------------------------------------------------------------------------------- /viewshare/templates/about/tos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/about/tos.html -------------------------------------------------------------------------------- /viewshare/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/base.html -------------------------------------------------------------------------------- /viewshare/templates/account/confirm_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/confirm_email.html -------------------------------------------------------------------------------- /viewshare/templates/account/disclaimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/disclaimer.txt -------------------------------------------------------------------------------- /viewshare/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/email.html -------------------------------------------------------------------------------- /viewshare/templates/account/email_confirmation_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/email_confirmation_message.txt -------------------------------------------------------------------------------- /viewshare/templates/account/email_confirmation_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/email_confirmation_subject.txt -------------------------------------------------------------------------------- /viewshare/templates/account/language_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/language_change.html -------------------------------------------------------------------------------- /viewshare/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/login.html -------------------------------------------------------------------------------- /viewshare/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/logout.html -------------------------------------------------------------------------------- /viewshare/templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/password_change.html -------------------------------------------------------------------------------- /viewshare/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/password_reset.html -------------------------------------------------------------------------------- /viewshare/templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /viewshare/templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /viewshare/templates/account/password_reset_key_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/password_reset_key_message.txt -------------------------------------------------------------------------------- /viewshare/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/password_set.html -------------------------------------------------------------------------------- /viewshare/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/signup.html -------------------------------------------------------------------------------- /viewshare/templates/account/timezone_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/timezone_change.html -------------------------------------------------------------------------------- /viewshare/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/account/verification_sent.html -------------------------------------------------------------------------------- /viewshare/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/admin/base_site.html -------------------------------------------------------------------------------- /viewshare/templates/announcements/announcement_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/announcements/announcement_detail.html -------------------------------------------------------------------------------- /viewshare/templates/announcements/announcement_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/announcements/announcement_list.html -------------------------------------------------------------------------------- /viewshare/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/base.html -------------------------------------------------------------------------------- /viewshare/templates/connections/connection_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/connections/connection_list.html -------------------------------------------------------------------------------- /viewshare/templates/connections/connection_list_by_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/connections/connection_list_by_user.html -------------------------------------------------------------------------------- /viewshare/templates/connections/exhibit_list_by_user_connections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/connections/exhibit_list_by_user_connections.html -------------------------------------------------------------------------------- /viewshare/templates/connections/invitations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/connections/invitations.html -------------------------------------------------------------------------------- /viewshare/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/error.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/data_atom_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/data_atom_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/data_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/data_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/latest_data_atom_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/latest_data_atom_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/latest_data_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/latest_data_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/latest_views_atom_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/latest_views_atom_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/latest_views_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/latest_views_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/views_atom_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/views_atom_description.html -------------------------------------------------------------------------------- /viewshare/templates/feeds/views_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/feeds/views_description.html -------------------------------------------------------------------------------- /viewshare/templates/front_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/front_page.html -------------------------------------------------------------------------------- /viewshare/templates/messages/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/messages/base.html -------------------------------------------------------------------------------- /viewshare/templates/notification/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/base.html -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_accept/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_accept/full.txt -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_accept/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_accept/notice.html -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_accept_sent/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_accept_sent/full.txt -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_accept_sent/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_accept_sent/notice.html -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_invite/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_invite/full.txt -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_invite/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_invite/notice.html -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_invite_sent/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_invite_sent/full.txt -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_invite_sent/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_invite_sent/notice.html -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_otherconnect/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_otherconnect/full.txt -------------------------------------------------------------------------------- /viewshare/templates/notification/friends_otherconnect/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/friends_otherconnect/notice.html -------------------------------------------------------------------------------- /viewshare/templates/notification/notice_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/notice_settings.html -------------------------------------------------------------------------------- /viewshare/templates/notification/notices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/notices.html -------------------------------------------------------------------------------- /viewshare/templates/notification/noticesview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/noticesview.html -------------------------------------------------------------------------------- /viewshare/templates/notification/notification_summary_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/notification_summary_list.html -------------------------------------------------------------------------------- /viewshare/templates/notification/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/notification/single.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/base.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profile.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profile_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profile_edit.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profile_edit_facebox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profile_edit_facebox.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profile_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profile_form.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profile_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profile_item.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profile_right_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profile_right_panel.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/profiles.html -------------------------------------------------------------------------------- /viewshare/templates/profiles/user_counts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/profiles/user_counts.html -------------------------------------------------------------------------------- /viewshare/templates/registration/activate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/activate.html -------------------------------------------------------------------------------- /viewshare/templates/registration/activation_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/activation_complete.html -------------------------------------------------------------------------------- /viewshare/templates/registration/activation_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/activation_email.txt -------------------------------------------------------------------------------- /viewshare/templates/registration/activation_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/activation_email_subject.txt -------------------------------------------------------------------------------- /viewshare/templates/registration/admin_approval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/admin_approval.html -------------------------------------------------------------------------------- /viewshare/templates/registration/approval_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/approval_email.txt -------------------------------------------------------------------------------- /viewshare/templates/registration/approval_email_subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/approval_email_subject.txt -------------------------------------------------------------------------------- /viewshare/templates/registration/registration_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/registration_closed.html -------------------------------------------------------------------------------- /viewshare/templates/registration/registration_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/registration_complete.html -------------------------------------------------------------------------------- /viewshare/templates/registration/registration_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/registration/registration_form.html -------------------------------------------------------------------------------- /viewshare/templates/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /viewshare/templates/share/create_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/share/create_success.html -------------------------------------------------------------------------------- /viewshare/templates/share/exhibit_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/share/exhibit_display.html -------------------------------------------------------------------------------- /viewshare/templates/share/shared_key_delete_dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/share/shared_key_delete_dialog.html -------------------------------------------------------------------------------- /viewshare/templates/share/shared_key_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/share/shared_key_form.html -------------------------------------------------------------------------------- /viewshare/templates/share/shared_key_metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/share/shared_key_metadata.html -------------------------------------------------------------------------------- /viewshare/templates/site_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/site_base.html -------------------------------------------------------------------------------- /viewshare/templates/support/augmentation_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/augmentation_description.html -------------------------------------------------------------------------------- /viewshare/templates/support/create_issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/create_issue.html -------------------------------------------------------------------------------- /viewshare/templates/support/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/description.html -------------------------------------------------------------------------------- /viewshare/templates/support/ignored_field_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/ignored_field_description.html -------------------------------------------------------------------------------- /viewshare/templates/support/ignored_field_issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/ignored_field_issue.html -------------------------------------------------------------------------------- /viewshare/templates/support/issue_create_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/issue_create_error.html -------------------------------------------------------------------------------- /viewshare/templates/support/issue_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/issue_response.html -------------------------------------------------------------------------------- /viewshare/templates/support/redmine_issue_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/redmine_issue_response.html -------------------------------------------------------------------------------- /viewshare/templates/support/upload_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/upload_description.html -------------------------------------------------------------------------------- /viewshare/templates/support/upload_issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/upload_issue.html -------------------------------------------------------------------------------- /viewshare/templates/support/uservoice/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/uservoice/login.html -------------------------------------------------------------------------------- /viewshare/templates/support/uservoice/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/uservoice/options.js -------------------------------------------------------------------------------- /viewshare/templates/support/uservoice/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/uservoice/redirect.html -------------------------------------------------------------------------------- /viewshare/templates/support/uservoice_issue_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/support/uservoice_issue_response.html -------------------------------------------------------------------------------- /viewshare/templates/upload/cdm_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/cdm_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/cdm_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/cdm_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/datasource_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/datasource_list_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/file_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/file_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/file_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/file_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/jsonfile_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/jsonfile_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/jsonfile_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/jsonfile_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/jsonurl_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/jsonurl_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/jsonurl_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/jsonurl_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/modsfile_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/modsfile_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/modsfile_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/modsfile_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/modsurl_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/modsurl_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/modsurl_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/modsurl_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/oai_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/oai_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/oai_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/oai_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/reference_datasource_form.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/templates/upload/reference_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/reference_datasource_item.html -------------------------------------------------------------------------------- /viewshare/templates/upload/supported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/supported.html -------------------------------------------------------------------------------- /viewshare/templates/upload/transaction_status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/transaction_status.html -------------------------------------------------------------------------------- /viewshare/templates/upload/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/upload.html -------------------------------------------------------------------------------- /viewshare/templates/upload/url_datasource_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/url_datasource_form.html -------------------------------------------------------------------------------- /viewshare/templates/upload/url_datasource_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/templates/upload/url_datasource_item.html -------------------------------------------------------------------------------- /viewshare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/urls.py -------------------------------------------------------------------------------- /viewshare/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/utilities/__init__.py -------------------------------------------------------------------------------- /viewshare/utilities/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/utilities/context_processors.py -------------------------------------------------------------------------------- /viewshare/utilities/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/utilities/feeds.py -------------------------------------------------------------------------------- /viewshare/utilities/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/utilities/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viewshare/utilities/templatetags/viewshare_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/utilities/templatetags/viewshare_helpers.py -------------------------------------------------------------------------------- /viewshare/utilities/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibraryOfCongress/viewshare/HEAD/viewshare/utilities/views.py --------------------------------------------------------------------------------