├── .gitignore ├── API.md ├── LICENSE ├── README.txt ├── conflate ├── fcode │ ├── README.txt │ ├── analyze_fcodes.py │ ├── extract_fcodes.sql │ ├── fcode.sql │ ├── fcode_map.csv │ ├── fixed_missing_fcode.txt │ └── matches.sql ├── gazetteer.sql ├── geonames │ ├── find_partners.sql │ ├── geonameplanet.py │ ├── geonames.sql │ └── geonames_alt.sql ├── geoplanet │ ├── geoplanet.py │ ├── geoplanet.sql │ └── geoplanet_concordance.py ├── merge │ ├── compute_mad.py │ ├── concord_to_csv.py │ ├── concordance.sql │ ├── create_gaz_dups.sql │ ├── geoname_osm_best.sql │ └── geoname_osm_match.sql ├── ngram.py ├── osmium │ ├── buildings.js │ ├── dump.js │ ├── namely.js │ ├── osm_csv.sql │ └── osm_to_csv.py ├── parsers │ ├── commands_for_import │ ├── parse_flickr.py │ ├── parse_geonames.py │ └── parse_geoplanet.py ├── psql_history.txt └── simplify_historical.py ├── data ├── batch_import1.csv ├── batch_import2.csv ├── batch_import3.csv ├── dump.json ├── featureCodes_en.txt ├── gazetteer.00001.json ├── gazetteer_results_nypl_church.csv ├── test_places.fixture.geojson ├── test_states.fixture.geojson ├── warper_layer.json ├── warper_layer_sample.json └── warper_maps.json ├── elasticsearch └── scripts │ ├── sort-date-or-from.mvel │ ├── sort-date-or-to.mvel │ ├── sort-date-within-from.mvel │ ├── sort-date-within-to.mvel │ ├── sort-name.mvel │ └── sort-uri.mvel ├── etl ├── mapping │ ├── history.json │ └── place.json ├── osm2pgsql │ ├── README.txt │ ├── ec2-notes.txt │ ├── ec2-runtime.txt │ ├── osm2gazetteer.sql │ ├── osm_to_csv.py │ ├── place.style │ ├── postgresql.conf │ ├── server.log │ └── sysctl.conf ├── parser │ ├── __init__.py │ ├── admin_0_1_natearth.py │ ├── core.py │ ├── digitizer_shapefile.py │ ├── feature_type_maps │ │ ├── __init__.py │ │ └── digitizer_types.py │ ├── geonames.py │ ├── history.py │ ├── hmdb.py │ ├── lc_auth.py │ ├── lc_auth │ │ ├── Makefile │ │ ├── README │ │ ├── construct_objects.py │ │ └── extract_ntriples.cpp │ ├── nhgis.py │ ├── nhgis │ │ ├── README.txt │ │ ├── extract.sql │ │ └── view.sql │ ├── nrhp.py │ ├── nyc_brooklyn_digitizer.py │ ├── nyc_buildings2010_shp.py │ ├── nyc_hist_counties_shapefile.py │ ├── nyc_hist_states_shapefile.py │ ├── nyc_landmarks_polygons.py │ ├── nyc_landmarks_shapefile.py │ ├── nyc_nrhp_csv.py │ ├── nyc_perris_digitizer_csv.py │ ├── nyc_perris_digitizer_csv_done.py │ ├── nyc_queens_digitizer.py │ ├── nyc_tax_block.py │ ├── nyc_tax_lot.py │ ├── nyc_township_shapefile_1990.py │ ├── nyc_township_shapefile_2000.py │ ├── nyc_township_shapefile_2010.py │ ├── osm.py │ ├── osm_types.py │ └── tiger_line.py ├── ranking │ ├── README.md │ ├── extract_coordinates.py │ ├── hadoop-cdh.properties │ ├── launch.sh │ ├── summer.py │ └── wikistats.py ├── requirements.txt └── scripts │ ├── README.txt │ ├── admin_assign.sh │ ├── gazetteer_import.sh │ ├── history_generate.sh │ ├── history_import.sh │ ├── import_maps.py │ └── sample_query.json ├── fabfile.py ├── gazetteer ├── __init__.py ├── admin.py ├── admin_extract.py ├── admin_place_assign.py ├── admin_states_conflation.py ├── api_urls.py ├── api_views.py ├── context_processors.py ├── fixtures │ ├── origins_loc.json │ └── origins_nypl.json ├── helpers.py ├── instance_settings.py ├── local_instance_settings.py.sample ├── local_settings.py.sample ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── build_js.py ├── media │ ├── batch_uploads │ │ └── uploaded_csv_files_are_here │ └── robots.txt ├── middleware │ ├── __init__.py │ ├── errors.py │ └── permissions.py ├── models.py ├── place.py ├── settings.py ├── shortcuts.py ├── templates │ ├── admin │ │ └── base_site.html │ ├── backbone.html │ ├── base.html │ ├── detail.html │ ├── edit_place.html │ ├── index.html │ ├── instance_templates │ │ ├── default │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── welcome.html │ │ ├── loc │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── welcome.html │ │ └── nypl │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ └── welcome.html │ ├── new.html │ └── registration │ │ ├── login.html │ │ └── logout.html ├── templatetags │ ├── __init__.py │ └── detail_extras.py ├── test_settings.py ├── tests.py ├── urls.py ├── views.py └── wsgi.py ├── log └── empty.txt ├── manage.py ├── prototype ├── README ├── __init__.py ├── __init__.pyc ├── gazetteer_models.png ├── local_settings.py.sample ├── manage.py ├── places │ ├── __init__.py │ ├── __init__.pyc │ ├── admin.py │ ├── admin.pyc │ ├── context_processors.py │ ├── forms.py │ ├── imports.py │ ├── imports.pyc │ ├── lookups.py │ ├── models.py │ ├── models.pyc │ ├── static │ │ ├── css │ │ │ ├── feature_admin.css │ │ │ ├── gaz_admin.css │ │ │ ├── iconic.css │ │ │ ├── jquery.autocomplete.css │ │ │ ├── main.css │ │ │ └── reset.css │ │ ├── images │ │ │ ├── loading-indicator.gif │ │ │ └── logo-loc.png │ │ ├── js │ │ │ ├── auth_record_admin.js │ │ │ ├── feature_admin.js │ │ │ ├── feature_detail.js │ │ │ ├── gazetteer.js │ │ │ ├── jquery.autocomplete.min.js │ │ │ ├── jquery.js │ │ │ ├── openlayers │ │ │ │ ├── OpenLayers.js │ │ │ │ ├── img │ │ │ │ │ ├── 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 │ │ │ │ └── theme │ │ │ │ │ └── default │ │ │ │ │ ├── framedCloud.css │ │ │ │ │ ├── google.css │ │ │ │ │ ├── ie6-style.css │ │ │ │ │ ├── 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 │ │ │ │ │ └── style.css │ │ │ └── time_frame_admin.js │ │ └── leaflet │ │ │ ├── TileLayer.Bing.js │ │ │ ├── images │ │ │ ├── draw-circle.png │ │ │ ├── draw-marker-icon.png │ │ │ ├── draw-polygon.png │ │ │ ├── draw-polyline.png │ │ │ ├── draw-rectangle.png │ │ │ ├── layers.png │ │ │ ├── marker-icon.png │ │ │ ├── marker-shadow.png │ │ │ ├── zoom-in.png │ │ │ └── zoom-out.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ ├── leaflet.draw.css │ │ │ ├── leaflet.draw.js │ │ │ ├── leaflet.ie.css │ │ │ └── leaflet.js │ ├── templates │ │ ├── base.html │ │ ├── feature.html │ │ ├── search.html │ │ └── search_related.html │ ├── tests.py │ ├── views.py │ └── views.pyc ├── places_models.png ├── settings.py ├── settings.pyc ├── templates │ ├── admin │ │ ├── base_site.html │ │ └── places │ │ │ ├── authorityrecord │ │ │ └── change_form.html │ │ │ ├── feature │ │ │ └── change_form.html │ │ │ ├── relationship │ │ │ └── change_form.html │ │ │ └── timeframe │ │ │ └── change_form.html │ └── gis │ │ └── admin │ │ ├── google.html │ │ └── google.js ├── urls.py ├── urls.pyc └── wsgi │ └── django.wsgi ├── requirements.txt ├── static ├── css │ ├── admin_override.css │ ├── default.css │ ├── detail.css │ ├── gazetteer.css │ ├── home.css │ ├── index.css │ ├── lightbox.css │ ├── loc.css │ ├── main.css │ ├── nypl.css │ ├── reset.css │ └── slider.css ├── font │ ├── Lato │ │ ├── Lato-Bol-webfont.eot │ │ ├── Lato-Bol-webfont.svg │ │ ├── Lato-Bol-webfont.ttf │ │ ├── Lato-Bol-webfont.woff │ │ ├── Lato-Reg-webfont.eot │ │ ├── Lato-Reg-webfont.svg │ │ ├── Lato-Reg-webfont.ttf │ │ ├── Lato-Reg-webfont.woff │ │ ├── Lato-RegIta-webfont.eot │ │ ├── Lato-RegIta-webfont.svg │ │ ├── Lato-RegIta-webfont.ttf │ │ └── Lato-RegIta-webfont.woff │ ├── icomoon.dev.svg │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── images │ ├── ajax-loader.gif │ ├── favicon.ico │ ├── loader-initial.gif │ ├── loading-search-gazetteer.gif │ ├── loc │ │ └── logo-loc.png │ ├── logo-topomancy.jpg │ └── nypl │ │ ├── logo-national-humanities.png │ │ ├── logo-nypl.png │ │ ├── nypl-bar-logo.png │ │ └── nypl_logo_tiny.png ├── js │ ├── app.build.js │ ├── app │ │ ├── app.js │ │ ├── backbone_app.js │ │ ├── collections │ │ │ ├── admin_boundaries.js │ │ │ ├── alternate_names.js │ │ │ ├── existing_relations.js │ │ │ ├── feature_codes.js │ │ │ ├── layers.js │ │ │ ├── origins.js │ │ │ ├── places.js │ │ │ ├── recentplaces.js │ │ │ ├── revisions.js │ │ │ ├── search_relations.js │ │ │ ├── selectedplaces.js │ │ │ └── similar_places.js │ │ ├── core │ │ │ ├── controller.js │ │ │ ├── mediator.js │ │ │ └── router.js │ │ ├── helpers │ │ │ ├── ajax.js │ │ │ ├── autocomplete.js │ │ │ ├── modal.js │ │ │ ├── place.js │ │ │ └── search.js │ │ ├── models │ │ │ ├── admin_boundary.js │ │ │ ├── alternate_name.js │ │ │ ├── existing_relation.js │ │ │ ├── feature_code.js │ │ │ ├── layer.js │ │ │ ├── origin.js │ │ │ ├── place.js │ │ │ ├── revision.js │ │ │ └── search_relation.js │ │ ├── settings.js │ │ └── views │ │ │ ├── empty_selectedplaces.tpl │ │ │ ├── feature_code.js │ │ │ ├── feature_code.tpl │ │ │ ├── feature_codes.js │ │ │ ├── feature_codes.tpl │ │ │ ├── header.js │ │ │ ├── layouts │ │ │ ├── results.js │ │ │ ├── results.tpl │ │ │ ├── selectedplaces.js │ │ │ └── selectedplaces.tpl │ │ │ ├── map.js │ │ │ ├── map_popup.tpl │ │ │ ├── modals │ │ │ ├── delete_relation.js │ │ │ ├── delete_relation.tpl │ │ │ ├── error.js │ │ │ ├── error.tpl │ │ │ ├── login.js │ │ │ ├── login.tpl │ │ │ ├── logout.js │ │ │ ├── logout.tpl │ │ │ ├── new_place.js │ │ │ ├── new_place.tpl │ │ │ ├── relate_places.js │ │ │ ├── relate_places.tpl │ │ │ ├── revert_place.js │ │ │ ├── revert_place.tpl │ │ │ ├── save_place.js │ │ │ └── save_place.tpl │ │ │ ├── navigation.js │ │ │ ├── origin.js │ │ │ ├── origin.tpl │ │ │ ├── origins.js │ │ │ ├── origins.tpl │ │ │ ├── pagination.js │ │ │ ├── pagination.tpl │ │ │ ├── placedetail.js │ │ │ ├── placedetail.tpl │ │ │ ├── placesview.js │ │ │ ├── placesview.tpl │ │ │ ├── placeview.js │ │ │ ├── placeview.tpl │ │ │ ├── recentplace.js │ │ │ ├── recentplace.tpl │ │ │ ├── recentplaces.js │ │ │ ├── relating_from.js │ │ │ ├── relating_from.tpl │ │ │ ├── search.js │ │ │ ├── selectedplace.js │ │ │ ├── selectedplace.tpl │ │ │ ├── selectedplaces.js │ │ │ ├── selectedplaces.tpl │ │ │ └── tabs │ │ │ ├── admin_boundaries.js │ │ │ ├── admin_boundaries.tpl │ │ │ ├── altnames.js │ │ │ ├── altnames.tpl │ │ │ ├── altnames_layout.tpl │ │ │ ├── empty_relation.tpl │ │ │ ├── existing_relation.tpl │ │ │ ├── existing_relations.tpl │ │ │ ├── relations.js │ │ │ ├── relations.tpl │ │ │ ├── revisions.js │ │ │ ├── revisions.tpl │ │ │ ├── search_relation.tpl │ │ │ ├── similar_place.tpl │ │ │ ├── similar_places.js │ │ │ └── similar_places.tpl │ ├── detail.js │ ├── edit_place.js │ ├── gazetteer.js │ ├── libs │ │ ├── backbone-min.js │ │ ├── backbone-nested-v1.1.2.min.js │ │ ├── backbone-paginator-min.js │ │ ├── backbone.js │ │ ├── backbone.marionette.min.js │ │ ├── backbone.paginator.js │ │ ├── domReady.js │ │ ├── jasmine-1.3.1 │ │ │ ├── MIT.LICENSE │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine-require.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ ├── jquery-1.8.2.min.js │ │ ├── jquery-1.8.3.min.js │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon-2x.png │ │ │ │ ├── marker-icon.png │ │ │ │ ├── marker-shadow.png │ │ │ │ └── spritesheet.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ ├── leaflet.draw.css │ │ │ ├── leaflet.draw.js │ │ │ ├── leaflet.ie.css │ │ │ └── leaflet.js │ │ ├── moment.min.js │ │ ├── nouislider │ │ │ ├── jquery.nouislider.min.js │ │ │ ├── nouislider.fox.css │ │ │ └── nouislider.space.css │ │ ├── require.js │ │ ├── select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.js │ │ │ ├── select2.min.js │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ ├── text.js │ │ ├── underscore-min.js │ │ └── underscore.js │ ├── main.js │ ├── new.js │ ├── search.js │ └── tests │ │ ├── SpecRunner.js │ │ ├── index.html │ │ └── spec │ │ └── collections │ │ └── PlacesSpec.js └── select2 │ ├── select2.css │ ├── select2.js │ ├── select2.min.js │ ├── select2.png │ ├── select2x2.png │ └── spinner.gif └── wsgi └── django.wsgi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/API.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/README.txt -------------------------------------------------------------------------------- /conflate/fcode/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/README.txt -------------------------------------------------------------------------------- /conflate/fcode/analyze_fcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/analyze_fcodes.py -------------------------------------------------------------------------------- /conflate/fcode/extract_fcodes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/extract_fcodes.sql -------------------------------------------------------------------------------- /conflate/fcode/fcode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/fcode.sql -------------------------------------------------------------------------------- /conflate/fcode/fcode_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/fcode_map.csv -------------------------------------------------------------------------------- /conflate/fcode/fixed_missing_fcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/fixed_missing_fcode.txt -------------------------------------------------------------------------------- /conflate/fcode/matches.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/fcode/matches.sql -------------------------------------------------------------------------------- /conflate/gazetteer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/gazetteer.sql -------------------------------------------------------------------------------- /conflate/geonames/find_partners.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geonames/find_partners.sql -------------------------------------------------------------------------------- /conflate/geonames/geonameplanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geonames/geonameplanet.py -------------------------------------------------------------------------------- /conflate/geonames/geonames.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geonames/geonames.sql -------------------------------------------------------------------------------- /conflate/geonames/geonames_alt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geonames/geonames_alt.sql -------------------------------------------------------------------------------- /conflate/geoplanet/geoplanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geoplanet/geoplanet.py -------------------------------------------------------------------------------- /conflate/geoplanet/geoplanet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geoplanet/geoplanet.sql -------------------------------------------------------------------------------- /conflate/geoplanet/geoplanet_concordance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/geoplanet/geoplanet_concordance.py -------------------------------------------------------------------------------- /conflate/merge/compute_mad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/merge/compute_mad.py -------------------------------------------------------------------------------- /conflate/merge/concord_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/merge/concord_to_csv.py -------------------------------------------------------------------------------- /conflate/merge/concordance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/merge/concordance.sql -------------------------------------------------------------------------------- /conflate/merge/create_gaz_dups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/merge/create_gaz_dups.sql -------------------------------------------------------------------------------- /conflate/merge/geoname_osm_best.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/merge/geoname_osm_best.sql -------------------------------------------------------------------------------- /conflate/merge/geoname_osm_match.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/merge/geoname_osm_match.sql -------------------------------------------------------------------------------- /conflate/ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/ngram.py -------------------------------------------------------------------------------- /conflate/osmium/buildings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/osmium/buildings.js -------------------------------------------------------------------------------- /conflate/osmium/dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/osmium/dump.js -------------------------------------------------------------------------------- /conflate/osmium/namely.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/osmium/namely.js -------------------------------------------------------------------------------- /conflate/osmium/osm_csv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/osmium/osm_csv.sql -------------------------------------------------------------------------------- /conflate/osmium/osm_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/osmium/osm_to_csv.py -------------------------------------------------------------------------------- /conflate/parsers/commands_for_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/parsers/commands_for_import -------------------------------------------------------------------------------- /conflate/parsers/parse_flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/parsers/parse_flickr.py -------------------------------------------------------------------------------- /conflate/parsers/parse_geonames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/parsers/parse_geonames.py -------------------------------------------------------------------------------- /conflate/parsers/parse_geoplanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/parsers/parse_geoplanet.py -------------------------------------------------------------------------------- /conflate/psql_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/psql_history.txt -------------------------------------------------------------------------------- /conflate/simplify_historical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/conflate/simplify_historical.py -------------------------------------------------------------------------------- /data/batch_import1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/batch_import1.csv -------------------------------------------------------------------------------- /data/batch_import2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/batch_import2.csv -------------------------------------------------------------------------------- /data/batch_import3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/batch_import3.csv -------------------------------------------------------------------------------- /data/dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/dump.json -------------------------------------------------------------------------------- /data/featureCodes_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/featureCodes_en.txt -------------------------------------------------------------------------------- /data/gazetteer.00001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/gazetteer.00001.json -------------------------------------------------------------------------------- /data/gazetteer_results_nypl_church.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/gazetteer_results_nypl_church.csv -------------------------------------------------------------------------------- /data/test_places.fixture.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/test_places.fixture.geojson -------------------------------------------------------------------------------- /data/test_states.fixture.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/test_states.fixture.geojson -------------------------------------------------------------------------------- /data/warper_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/warper_layer.json -------------------------------------------------------------------------------- /data/warper_layer_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/warper_layer_sample.json -------------------------------------------------------------------------------- /data/warper_maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/data/warper_maps.json -------------------------------------------------------------------------------- /elasticsearch/scripts/sort-date-or-from.mvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/elasticsearch/scripts/sort-date-or-from.mvel -------------------------------------------------------------------------------- /elasticsearch/scripts/sort-date-or-to.mvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/elasticsearch/scripts/sort-date-or-to.mvel -------------------------------------------------------------------------------- /elasticsearch/scripts/sort-date-within-from.mvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/elasticsearch/scripts/sort-date-within-from.mvel -------------------------------------------------------------------------------- /elasticsearch/scripts/sort-date-within-to.mvel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/elasticsearch/scripts/sort-date-within-to.mvel -------------------------------------------------------------------------------- /elasticsearch/scripts/sort-name.mvel: -------------------------------------------------------------------------------- 1 | _source.name 2 | -------------------------------------------------------------------------------- /elasticsearch/scripts/sort-uri.mvel: -------------------------------------------------------------------------------- 1 | doc['uris'].values[0] 2 | -------------------------------------------------------------------------------- /etl/mapping/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/mapping/history.json -------------------------------------------------------------------------------- /etl/mapping/place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/mapping/place.json -------------------------------------------------------------------------------- /etl/osm2pgsql/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/README.txt -------------------------------------------------------------------------------- /etl/osm2pgsql/ec2-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/ec2-notes.txt -------------------------------------------------------------------------------- /etl/osm2pgsql/ec2-runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/ec2-runtime.txt -------------------------------------------------------------------------------- /etl/osm2pgsql/osm2gazetteer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/osm2gazetteer.sql -------------------------------------------------------------------------------- /etl/osm2pgsql/osm_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/osm_to_csv.py -------------------------------------------------------------------------------- /etl/osm2pgsql/place.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/place.style -------------------------------------------------------------------------------- /etl/osm2pgsql/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/postgresql.conf -------------------------------------------------------------------------------- /etl/osm2pgsql/server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/server.log -------------------------------------------------------------------------------- /etl/osm2pgsql/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/osm2pgsql/sysctl.conf -------------------------------------------------------------------------------- /etl/parser/__init__.py: -------------------------------------------------------------------------------- 1 | from core import * 2 | -------------------------------------------------------------------------------- /etl/parser/admin_0_1_natearth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/admin_0_1_natearth.py -------------------------------------------------------------------------------- /etl/parser/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/core.py -------------------------------------------------------------------------------- /etl/parser/digitizer_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/digitizer_shapefile.py -------------------------------------------------------------------------------- /etl/parser/feature_type_maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etl/parser/feature_type_maps/digitizer_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/feature_type_maps/digitizer_types.py -------------------------------------------------------------------------------- /etl/parser/geonames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/geonames.py -------------------------------------------------------------------------------- /etl/parser/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/history.py -------------------------------------------------------------------------------- /etl/parser/hmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/hmdb.py -------------------------------------------------------------------------------- /etl/parser/lc_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/lc_auth.py -------------------------------------------------------------------------------- /etl/parser/lc_auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/lc_auth/Makefile -------------------------------------------------------------------------------- /etl/parser/lc_auth/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/lc_auth/README -------------------------------------------------------------------------------- /etl/parser/lc_auth/construct_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/lc_auth/construct_objects.py -------------------------------------------------------------------------------- /etl/parser/lc_auth/extract_ntriples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/lc_auth/extract_ntriples.cpp -------------------------------------------------------------------------------- /etl/parser/nhgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nhgis.py -------------------------------------------------------------------------------- /etl/parser/nhgis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nhgis/README.txt -------------------------------------------------------------------------------- /etl/parser/nhgis/extract.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nhgis/extract.sql -------------------------------------------------------------------------------- /etl/parser/nhgis/view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nhgis/view.sql -------------------------------------------------------------------------------- /etl/parser/nrhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nrhp.py -------------------------------------------------------------------------------- /etl/parser/nyc_brooklyn_digitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_brooklyn_digitizer.py -------------------------------------------------------------------------------- /etl/parser/nyc_buildings2010_shp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_buildings2010_shp.py -------------------------------------------------------------------------------- /etl/parser/nyc_hist_counties_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_hist_counties_shapefile.py -------------------------------------------------------------------------------- /etl/parser/nyc_hist_states_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_hist_states_shapefile.py -------------------------------------------------------------------------------- /etl/parser/nyc_landmarks_polygons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_landmarks_polygons.py -------------------------------------------------------------------------------- /etl/parser/nyc_landmarks_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_landmarks_shapefile.py -------------------------------------------------------------------------------- /etl/parser/nyc_nrhp_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_nrhp_csv.py -------------------------------------------------------------------------------- /etl/parser/nyc_perris_digitizer_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_perris_digitizer_csv.py -------------------------------------------------------------------------------- /etl/parser/nyc_perris_digitizer_csv_done.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_perris_digitizer_csv_done.py -------------------------------------------------------------------------------- /etl/parser/nyc_queens_digitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_queens_digitizer.py -------------------------------------------------------------------------------- /etl/parser/nyc_tax_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_tax_block.py -------------------------------------------------------------------------------- /etl/parser/nyc_tax_lot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_tax_lot.py -------------------------------------------------------------------------------- /etl/parser/nyc_township_shapefile_1990.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_township_shapefile_1990.py -------------------------------------------------------------------------------- /etl/parser/nyc_township_shapefile_2000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_township_shapefile_2000.py -------------------------------------------------------------------------------- /etl/parser/nyc_township_shapefile_2010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/nyc_township_shapefile_2010.py -------------------------------------------------------------------------------- /etl/parser/osm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/osm.py -------------------------------------------------------------------------------- /etl/parser/osm_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/osm_types.py -------------------------------------------------------------------------------- /etl/parser/tiger_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/parser/tiger_line.py -------------------------------------------------------------------------------- /etl/ranking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/ranking/README.md -------------------------------------------------------------------------------- /etl/ranking/extract_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/ranking/extract_coordinates.py -------------------------------------------------------------------------------- /etl/ranking/hadoop-cdh.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/ranking/hadoop-cdh.properties -------------------------------------------------------------------------------- /etl/ranking/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/ranking/launch.sh -------------------------------------------------------------------------------- /etl/ranking/summer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/ranking/summer.py -------------------------------------------------------------------------------- /etl/ranking/wikistats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/ranking/wikistats.py -------------------------------------------------------------------------------- /etl/requirements.txt: -------------------------------------------------------------------------------- 1 | Levenshtein 2 | unidecode 3 | -------------------------------------------------------------------------------- /etl/scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/README.txt -------------------------------------------------------------------------------- /etl/scripts/admin_assign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/admin_assign.sh -------------------------------------------------------------------------------- /etl/scripts/gazetteer_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/gazetteer_import.sh -------------------------------------------------------------------------------- /etl/scripts/history_generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/history_generate.sh -------------------------------------------------------------------------------- /etl/scripts/history_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/history_import.sh -------------------------------------------------------------------------------- /etl/scripts/import_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/import_maps.py -------------------------------------------------------------------------------- /etl/scripts/sample_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/etl/scripts/sample_query.json -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/fabfile.py -------------------------------------------------------------------------------- /gazetteer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/admin.py -------------------------------------------------------------------------------- /gazetteer/admin_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/admin_extract.py -------------------------------------------------------------------------------- /gazetteer/admin_place_assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/admin_place_assign.py -------------------------------------------------------------------------------- /gazetteer/admin_states_conflation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/admin_states_conflation.py -------------------------------------------------------------------------------- /gazetteer/api_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/api_urls.py -------------------------------------------------------------------------------- /gazetteer/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/api_views.py -------------------------------------------------------------------------------- /gazetteer/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/context_processors.py -------------------------------------------------------------------------------- /gazetteer/fixtures/origins_loc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/fixtures/origins_loc.json -------------------------------------------------------------------------------- /gazetteer/fixtures/origins_nypl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/fixtures/origins_nypl.json -------------------------------------------------------------------------------- /gazetteer/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/helpers.py -------------------------------------------------------------------------------- /gazetteer/instance_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/instance_settings.py -------------------------------------------------------------------------------- /gazetteer/local_instance_settings.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/local_instance_settings.py.sample -------------------------------------------------------------------------------- /gazetteer/local_settings.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/local_settings.py.sample -------------------------------------------------------------------------------- /gazetteer/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/management/commands/build_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/management/commands/build_js.py -------------------------------------------------------------------------------- /gazetteer/media/batch_uploads/uploaded_csv_files_are_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/media/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /gazetteer/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/middleware/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/middleware/errors.py -------------------------------------------------------------------------------- /gazetteer/middleware/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/middleware/permissions.py -------------------------------------------------------------------------------- /gazetteer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/models.py -------------------------------------------------------------------------------- /gazetteer/place.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/place.py -------------------------------------------------------------------------------- /gazetteer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/settings.py -------------------------------------------------------------------------------- /gazetteer/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/shortcuts.py -------------------------------------------------------------------------------- /gazetteer/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/admin/base_site.html -------------------------------------------------------------------------------- /gazetteer/templates/backbone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/backbone.html -------------------------------------------------------------------------------- /gazetteer/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/base.html -------------------------------------------------------------------------------- /gazetteer/templates/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/detail.html -------------------------------------------------------------------------------- /gazetteer/templates/edit_place.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/edit_place.html -------------------------------------------------------------------------------- /gazetteer/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/index.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/default/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/default/footer.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/default/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/default/header.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/default/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/default/welcome.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/loc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/loc/footer.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/loc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/loc/header.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/loc/welcome.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/nypl/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/nypl/footer.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/nypl/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/nypl/header.html -------------------------------------------------------------------------------- /gazetteer/templates/instance_templates/nypl/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/instance_templates/nypl/welcome.html -------------------------------------------------------------------------------- /gazetteer/templates/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/new.html -------------------------------------------------------------------------------- /gazetteer/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/registration/login.html -------------------------------------------------------------------------------- /gazetteer/templates/registration/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templates/registration/logout.html -------------------------------------------------------------------------------- /gazetteer/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gazetteer/templatetags/detail_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/templatetags/detail_extras.py -------------------------------------------------------------------------------- /gazetteer/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/test_settings.py -------------------------------------------------------------------------------- /gazetteer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/tests.py -------------------------------------------------------------------------------- /gazetteer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/urls.py -------------------------------------------------------------------------------- /gazetteer/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/views.py -------------------------------------------------------------------------------- /gazetteer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/gazetteer/wsgi.py -------------------------------------------------------------------------------- /log/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/manage.py -------------------------------------------------------------------------------- /prototype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/README -------------------------------------------------------------------------------- /prototype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prototype/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/__init__.pyc -------------------------------------------------------------------------------- /prototype/gazetteer_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/gazetteer_models.png -------------------------------------------------------------------------------- /prototype/local_settings.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/local_settings.py.sample -------------------------------------------------------------------------------- /prototype/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/manage.py -------------------------------------------------------------------------------- /prototype/places/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prototype/places/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/__init__.pyc -------------------------------------------------------------------------------- /prototype/places/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/admin.py -------------------------------------------------------------------------------- /prototype/places/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/admin.pyc -------------------------------------------------------------------------------- /prototype/places/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/context_processors.py -------------------------------------------------------------------------------- /prototype/places/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/forms.py -------------------------------------------------------------------------------- /prototype/places/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/imports.py -------------------------------------------------------------------------------- /prototype/places/imports.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/imports.pyc -------------------------------------------------------------------------------- /prototype/places/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/lookups.py -------------------------------------------------------------------------------- /prototype/places/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/models.py -------------------------------------------------------------------------------- /prototype/places/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/models.pyc -------------------------------------------------------------------------------- /prototype/places/static/css/feature_admin.css: -------------------------------------------------------------------------------- 1 | .customTable { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /prototype/places/static/css/gaz_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/css/gaz_admin.css -------------------------------------------------------------------------------- /prototype/places/static/css/iconic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/css/iconic.css -------------------------------------------------------------------------------- /prototype/places/static/css/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/css/jquery.autocomplete.css -------------------------------------------------------------------------------- /prototype/places/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/css/main.css -------------------------------------------------------------------------------- /prototype/places/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/css/reset.css -------------------------------------------------------------------------------- /prototype/places/static/images/loading-indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/images/loading-indicator.gif -------------------------------------------------------------------------------- /prototype/places/static/images/logo-loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/images/logo-loc.png -------------------------------------------------------------------------------- /prototype/places/static/js/auth_record_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/auth_record_admin.js -------------------------------------------------------------------------------- /prototype/places/static/js/feature_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/feature_admin.js -------------------------------------------------------------------------------- /prototype/places/static/js/feature_detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/feature_detail.js -------------------------------------------------------------------------------- /prototype/places/static/js/gazetteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/gazetteer.js -------------------------------------------------------------------------------- /prototype/places/static/js/jquery.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/jquery.autocomplete.min.js -------------------------------------------------------------------------------- /prototype/places/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/jquery.js -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/OpenLayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/OpenLayers.js -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/blank.gif -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/cloud-popup-relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/cloud-popup-relative.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/east-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/east-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/layer-switcher-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/layer-switcher-maximize.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/layer-switcher-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/layer-switcher-minimize.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/marker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/marker-blue.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/marker-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/marker-gold.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/marker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/marker-green.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/marker.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/measuring-stick-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/measuring-stick-off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/measuring-stick-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/measuring-stick-on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/north-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/north-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/panning-hand-off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/panning-hand-on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/slider.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/south-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/south-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/west-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/west-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/zoom-minus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/zoom-minus-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/zoom-plus-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/zoom-plus-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/zoom-world-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/zoom-world-mini.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/img/zoombar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/img/zoombar.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/framedCloud.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/google.css -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/ie6-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/ie6-style.css -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/blank.gif -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/close.gif -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/navigation_history.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/ruler.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/save_features_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /prototype/places/static/js/openlayers/theme/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/openlayers/theme/default/style.css -------------------------------------------------------------------------------- /prototype/places/static/js/time_frame_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/js/time_frame_admin.js -------------------------------------------------------------------------------- /prototype/places/static/leaflet/TileLayer.Bing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/TileLayer.Bing.js -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/draw-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/draw-circle.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/draw-marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/draw-marker-icon.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/draw-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/draw-polygon.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/draw-polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/draw-polyline.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/draw-rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/draw-rectangle.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/layers.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/zoom-in.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/images/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/images/zoom-out.png -------------------------------------------------------------------------------- /prototype/places/static/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /prototype/places/static/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/leaflet.css -------------------------------------------------------------------------------- /prototype/places/static/leaflet/leaflet.draw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/leaflet.draw.css -------------------------------------------------------------------------------- /prototype/places/static/leaflet/leaflet.draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/leaflet.draw.js -------------------------------------------------------------------------------- /prototype/places/static/leaflet/leaflet.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/leaflet.ie.css -------------------------------------------------------------------------------- /prototype/places/static/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/static/leaflet/leaflet.js -------------------------------------------------------------------------------- /prototype/places/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/templates/base.html -------------------------------------------------------------------------------- /prototype/places/templates/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/templates/feature.html -------------------------------------------------------------------------------- /prototype/places/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/templates/search.html -------------------------------------------------------------------------------- /prototype/places/templates/search_related.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/templates/search_related.html -------------------------------------------------------------------------------- /prototype/places/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/tests.py -------------------------------------------------------------------------------- /prototype/places/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/views.py -------------------------------------------------------------------------------- /prototype/places/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places/views.pyc -------------------------------------------------------------------------------- /prototype/places_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/places_models.png -------------------------------------------------------------------------------- /prototype/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/settings.py -------------------------------------------------------------------------------- /prototype/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/settings.pyc -------------------------------------------------------------------------------- /prototype/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/admin/base_site.html -------------------------------------------------------------------------------- /prototype/templates/admin/places/authorityrecord/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/admin/places/authorityrecord/change_form.html -------------------------------------------------------------------------------- /prototype/templates/admin/places/feature/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/admin/places/feature/change_form.html -------------------------------------------------------------------------------- /prototype/templates/admin/places/relationship/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/admin/places/relationship/change_form.html -------------------------------------------------------------------------------- /prototype/templates/admin/places/timeframe/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/admin/places/timeframe/change_form.html -------------------------------------------------------------------------------- /prototype/templates/gis/admin/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/gis/admin/google.html -------------------------------------------------------------------------------- /prototype/templates/gis/admin/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/templates/gis/admin/google.js -------------------------------------------------------------------------------- /prototype/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/urls.py -------------------------------------------------------------------------------- /prototype/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/urls.pyc -------------------------------------------------------------------------------- /prototype/wsgi/django.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/prototype/wsgi/django.wsgi -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/admin_override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/admin_override.css -------------------------------------------------------------------------------- /static/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/default.css -------------------------------------------------------------------------------- /static/css/detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/detail.css -------------------------------------------------------------------------------- /static/css/gazetteer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/gazetteer.css -------------------------------------------------------------------------------- /static/css/home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/lightbox.css -------------------------------------------------------------------------------- /static/css/loc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/loc.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/nypl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/nypl.css -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/css/slider.css -------------------------------------------------------------------------------- /static/font/Lato/Lato-Bol-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Bol-webfont.eot -------------------------------------------------------------------------------- /static/font/Lato/Lato-Bol-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Bol-webfont.svg -------------------------------------------------------------------------------- /static/font/Lato/Lato-Bol-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Bol-webfont.ttf -------------------------------------------------------------------------------- /static/font/Lato/Lato-Bol-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Bol-webfont.woff -------------------------------------------------------------------------------- /static/font/Lato/Lato-Reg-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Reg-webfont.eot -------------------------------------------------------------------------------- /static/font/Lato/Lato-Reg-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Reg-webfont.svg -------------------------------------------------------------------------------- /static/font/Lato/Lato-Reg-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Reg-webfont.ttf -------------------------------------------------------------------------------- /static/font/Lato/Lato-Reg-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-Reg-webfont.woff -------------------------------------------------------------------------------- /static/font/Lato/Lato-RegIta-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-RegIta-webfont.eot -------------------------------------------------------------------------------- /static/font/Lato/Lato-RegIta-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-RegIta-webfont.svg -------------------------------------------------------------------------------- /static/font/Lato/Lato-RegIta-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-RegIta-webfont.ttf -------------------------------------------------------------------------------- /static/font/Lato/Lato-RegIta-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/Lato/Lato-RegIta-webfont.woff -------------------------------------------------------------------------------- /static/font/icomoon.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/icomoon.dev.svg -------------------------------------------------------------------------------- /static/font/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/icomoon.eot -------------------------------------------------------------------------------- /static/font/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/icomoon.svg -------------------------------------------------------------------------------- /static/font/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/icomoon.ttf -------------------------------------------------------------------------------- /static/font/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/font/icomoon.woff -------------------------------------------------------------------------------- /static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/loader-initial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/loader-initial.gif -------------------------------------------------------------------------------- /static/images/loading-search-gazetteer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/loading-search-gazetteer.gif -------------------------------------------------------------------------------- /static/images/loc/logo-loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/loc/logo-loc.png -------------------------------------------------------------------------------- /static/images/logo-topomancy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/logo-topomancy.jpg -------------------------------------------------------------------------------- /static/images/nypl/logo-national-humanities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/nypl/logo-national-humanities.png -------------------------------------------------------------------------------- /static/images/nypl/logo-nypl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/nypl/logo-nypl.png -------------------------------------------------------------------------------- /static/images/nypl/nypl-bar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/nypl/nypl-bar-logo.png -------------------------------------------------------------------------------- /static/images/nypl/nypl_logo_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/images/nypl/nypl_logo_tiny.png -------------------------------------------------------------------------------- /static/js/app.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app.build.js -------------------------------------------------------------------------------- /static/js/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/app.js -------------------------------------------------------------------------------- /static/js/app/backbone_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/backbone_app.js -------------------------------------------------------------------------------- /static/js/app/collections/admin_boundaries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/admin_boundaries.js -------------------------------------------------------------------------------- /static/js/app/collections/alternate_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/alternate_names.js -------------------------------------------------------------------------------- /static/js/app/collections/existing_relations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/existing_relations.js -------------------------------------------------------------------------------- /static/js/app/collections/feature_codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/feature_codes.js -------------------------------------------------------------------------------- /static/js/app/collections/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/layers.js -------------------------------------------------------------------------------- /static/js/app/collections/origins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/origins.js -------------------------------------------------------------------------------- /static/js/app/collections/places.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/places.js -------------------------------------------------------------------------------- /static/js/app/collections/recentplaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/recentplaces.js -------------------------------------------------------------------------------- /static/js/app/collections/revisions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/revisions.js -------------------------------------------------------------------------------- /static/js/app/collections/search_relations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/search_relations.js -------------------------------------------------------------------------------- /static/js/app/collections/selectedplaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/selectedplaces.js -------------------------------------------------------------------------------- /static/js/app/collections/similar_places.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/collections/similar_places.js -------------------------------------------------------------------------------- /static/js/app/core/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/core/controller.js -------------------------------------------------------------------------------- /static/js/app/core/mediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/core/mediator.js -------------------------------------------------------------------------------- /static/js/app/core/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/core/router.js -------------------------------------------------------------------------------- /static/js/app/helpers/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/helpers/ajax.js -------------------------------------------------------------------------------- /static/js/app/helpers/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/helpers/autocomplete.js -------------------------------------------------------------------------------- /static/js/app/helpers/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/helpers/modal.js -------------------------------------------------------------------------------- /static/js/app/helpers/place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/helpers/place.js -------------------------------------------------------------------------------- /static/js/app/helpers/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/helpers/search.js -------------------------------------------------------------------------------- /static/js/app/models/admin_boundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/admin_boundary.js -------------------------------------------------------------------------------- /static/js/app/models/alternate_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/alternate_name.js -------------------------------------------------------------------------------- /static/js/app/models/existing_relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/existing_relation.js -------------------------------------------------------------------------------- /static/js/app/models/feature_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/feature_code.js -------------------------------------------------------------------------------- /static/js/app/models/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/layer.js -------------------------------------------------------------------------------- /static/js/app/models/origin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/origin.js -------------------------------------------------------------------------------- /static/js/app/models/place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/place.js -------------------------------------------------------------------------------- /static/js/app/models/revision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/models/revision.js -------------------------------------------------------------------------------- /static/js/app/models/search_relation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/app/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/settings.js -------------------------------------------------------------------------------- /static/js/app/views/empty_selectedplaces.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/empty_selectedplaces.tpl -------------------------------------------------------------------------------- /static/js/app/views/feature_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/feature_code.js -------------------------------------------------------------------------------- /static/js/app/views/feature_code.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/feature_code.tpl -------------------------------------------------------------------------------- /static/js/app/views/feature_codes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/feature_codes.js -------------------------------------------------------------------------------- /static/js/app/views/feature_codes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/feature_codes.tpl -------------------------------------------------------------------------------- /static/js/app/views/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/header.js -------------------------------------------------------------------------------- /static/js/app/views/layouts/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/layouts/results.js -------------------------------------------------------------------------------- /static/js/app/views/layouts/results.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/layouts/results.tpl -------------------------------------------------------------------------------- /static/js/app/views/layouts/selectedplaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/layouts/selectedplaces.js -------------------------------------------------------------------------------- /static/js/app/views/layouts/selectedplaces.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/layouts/selectedplaces.tpl -------------------------------------------------------------------------------- /static/js/app/views/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/map.js -------------------------------------------------------------------------------- /static/js/app/views/map_popup.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/map_popup.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/delete_relation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/delete_relation.js -------------------------------------------------------------------------------- /static/js/app/views/modals/delete_relation.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/delete_relation.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/error.js -------------------------------------------------------------------------------- /static/js/app/views/modals/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/error.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/login.js -------------------------------------------------------------------------------- /static/js/app/views/modals/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/login.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/logout.js -------------------------------------------------------------------------------- /static/js/app/views/modals/logout.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/logout.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/new_place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/new_place.js -------------------------------------------------------------------------------- /static/js/app/views/modals/new_place.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/new_place.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/relate_places.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/relate_places.js -------------------------------------------------------------------------------- /static/js/app/views/modals/relate_places.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/relate_places.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/revert_place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/revert_place.js -------------------------------------------------------------------------------- /static/js/app/views/modals/revert_place.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/revert_place.tpl -------------------------------------------------------------------------------- /static/js/app/views/modals/save_place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/save_place.js -------------------------------------------------------------------------------- /static/js/app/views/modals/save_place.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/modals/save_place.tpl -------------------------------------------------------------------------------- /static/js/app/views/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/navigation.js -------------------------------------------------------------------------------- /static/js/app/views/origin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/origin.js -------------------------------------------------------------------------------- /static/js/app/views/origin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/origin.tpl -------------------------------------------------------------------------------- /static/js/app/views/origins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/origins.js -------------------------------------------------------------------------------- /static/js/app/views/origins.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/origins.tpl -------------------------------------------------------------------------------- /static/js/app/views/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/pagination.js -------------------------------------------------------------------------------- /static/js/app/views/pagination.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/pagination.tpl -------------------------------------------------------------------------------- /static/js/app/views/placedetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/placedetail.js -------------------------------------------------------------------------------- /static/js/app/views/placedetail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/placedetail.tpl -------------------------------------------------------------------------------- /static/js/app/views/placesview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/placesview.js -------------------------------------------------------------------------------- /static/js/app/views/placesview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/placesview.tpl -------------------------------------------------------------------------------- /static/js/app/views/placeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/placeview.js -------------------------------------------------------------------------------- /static/js/app/views/placeview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/placeview.tpl -------------------------------------------------------------------------------- /static/js/app/views/recentplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/recentplace.js -------------------------------------------------------------------------------- /static/js/app/views/recentplace.tpl: -------------------------------------------------------------------------------- 1 | <%= properties.name %> 2 | -------------------------------------------------------------------------------- /static/js/app/views/recentplaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/recentplaces.js -------------------------------------------------------------------------------- /static/js/app/views/relating_from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/relating_from.js -------------------------------------------------------------------------------- /static/js/app/views/relating_from.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/relating_from.tpl -------------------------------------------------------------------------------- /static/js/app/views/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/search.js -------------------------------------------------------------------------------- /static/js/app/views/selectedplace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/selectedplace.js -------------------------------------------------------------------------------- /static/js/app/views/selectedplace.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/selectedplace.tpl -------------------------------------------------------------------------------- /static/js/app/views/selectedplaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/selectedplaces.js -------------------------------------------------------------------------------- /static/js/app/views/selectedplaces.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/selectedplaces.tpl -------------------------------------------------------------------------------- /static/js/app/views/tabs/admin_boundaries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/tabs/admin_boundaries.js -------------------------------------------------------------------------------- /static/js/app/views/tabs/admin_boundaries.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/tabs/admin_boundaries.tpl -------------------------------------------------------------------------------- /static/js/app/views/tabs/altnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/tabs/altnames.js -------------------------------------------------------------------------------- /static/js/app/views/tabs/altnames.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/tabs/altnames.tpl -------------------------------------------------------------------------------- /static/js/app/views/tabs/altnames_layout.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topomancy/gazetteer/HEAD/static/js/app/views/tabs/altnames_layout.tpl -------------------------------------------------------------------------------- /static/js/app/views/tabs/empty_relation.tpl: -------------------------------------------------------------------------------- 1 |