├── .gitignore ├── AUTHORS ├── COPYING ├── README.textile ├── boundaries ├── __init__.py ├── apps │ ├── __init__.py │ └── demo │ │ ├── __init__.py │ │ ├── templates │ │ ├── _about.html │ │ ├── _api.html │ │ ├── _demo.html │ │ ├── _src.html │ │ ├── demo.js │ │ └── index.html │ │ ├── urls.py │ │ └── views.py ├── assets │ ├── css │ │ └── demo.css │ ├── js │ │ ├── json.js │ │ └── store.js │ ├── maintenance.html │ ├── reset.css │ └── scss │ │ └── demo.scss ├── configs │ ├── __init__.py │ ├── common │ │ ├── __init__.py │ │ ├── common.wsgi │ │ ├── manage.py │ │ ├── settings.py │ │ └── urls.py │ ├── production │ │ ├── __init__.py │ │ ├── apache │ │ ├── apache_maintenance │ │ ├── logging.conf │ │ ├── manage.py │ │ ├── production.wsgi │ │ └── settings.py │ └── staging │ │ ├── __init__.py │ │ ├── apache │ │ ├── apache_maintenance │ │ ├── logging.conf │ │ ├── manage.py │ │ ├── settings.py │ │ └── staging.wsgi ├── gzip │ └── assets │ │ └── temp └── templates │ ├── 404.html │ ├── 500.html │ └── base.html ├── data ├── psql │ └── finish_init.sql └── shapefiles │ ├── definitions.py │ ├── neighborhoods │ ├── Neighboorhoods.dbf │ ├── Neighboorhoods.prj │ ├── Neighboorhoods.sbn │ ├── Neighboorhoods.sbx │ ├── Neighboorhoods.shp │ └── Neighboorhoods.shx │ └── utils.py ├── fabfile.py ├── gzip_assets.py ├── manage ├── newsapps ├── __init__.py └── templatelib │ ├── __init__.py │ ├── templates │ └── newsapps │ │ ├── _analytics_footer.html │ │ ├── _analytics_header.html │ │ └── base.html │ └── templatetags │ ├── __init__.py │ └── newsappstags.py ├── requirements.txt └── s3exclude /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | .DS_Store 4 | *sass-cache 5 | local_settings.py -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/COPYING -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/README.textile -------------------------------------------------------------------------------- /boundaries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/apps/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/apps/demo/templates/_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/templates/_about.html -------------------------------------------------------------------------------- /boundaries/apps/demo/templates/_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/templates/_api.html -------------------------------------------------------------------------------- /boundaries/apps/demo/templates/_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/templates/_demo.html -------------------------------------------------------------------------------- /boundaries/apps/demo/templates/_src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/templates/_src.html -------------------------------------------------------------------------------- /boundaries/apps/demo/templates/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/templates/demo.js -------------------------------------------------------------------------------- /boundaries/apps/demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/templates/index.html -------------------------------------------------------------------------------- /boundaries/apps/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/urls.py -------------------------------------------------------------------------------- /boundaries/apps/demo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/apps/demo/views.py -------------------------------------------------------------------------------- /boundaries/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/assets/css/demo.css -------------------------------------------------------------------------------- /boundaries/assets/js/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/assets/js/json.js -------------------------------------------------------------------------------- /boundaries/assets/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/assets/js/store.js -------------------------------------------------------------------------------- /boundaries/assets/maintenance.html: -------------------------------------------------------------------------------- 1 | This site is down for maintenance. -------------------------------------------------------------------------------- /boundaries/assets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/assets/reset.css -------------------------------------------------------------------------------- /boundaries/assets/scss/demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/assets/scss/demo.scss -------------------------------------------------------------------------------- /boundaries/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/configs/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/configs/common/common.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/common/common.wsgi -------------------------------------------------------------------------------- /boundaries/configs/common/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/common/manage.py -------------------------------------------------------------------------------- /boundaries/configs/common/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/common/settings.py -------------------------------------------------------------------------------- /boundaries/configs/common/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/common/urls.py -------------------------------------------------------------------------------- /boundaries/configs/production/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/configs/production/apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/production/apache -------------------------------------------------------------------------------- /boundaries/configs/production/apache_maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/production/apache_maintenance -------------------------------------------------------------------------------- /boundaries/configs/production/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/production/logging.conf -------------------------------------------------------------------------------- /boundaries/configs/production/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/production/manage.py -------------------------------------------------------------------------------- /boundaries/configs/production/production.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/production/production.wsgi -------------------------------------------------------------------------------- /boundaries/configs/production/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/production/settings.py -------------------------------------------------------------------------------- /boundaries/configs/staging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/configs/staging/apache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/staging/apache -------------------------------------------------------------------------------- /boundaries/configs/staging/apache_maintenance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/staging/apache_maintenance -------------------------------------------------------------------------------- /boundaries/configs/staging/logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/staging/logging.conf -------------------------------------------------------------------------------- /boundaries/configs/staging/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/staging/manage.py -------------------------------------------------------------------------------- /boundaries/configs/staging/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/staging/settings.py -------------------------------------------------------------------------------- /boundaries/configs/staging/staging.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/configs/staging/staging.wsgi -------------------------------------------------------------------------------- /boundaries/gzip/assets/temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/gzip/assets/temp -------------------------------------------------------------------------------- /boundaries/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/templates/404.html -------------------------------------------------------------------------------- /boundaries/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/templates/500.html -------------------------------------------------------------------------------- /boundaries/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/boundaries/templates/base.html -------------------------------------------------------------------------------- /data/psql/finish_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/psql/finish_init.sql -------------------------------------------------------------------------------- /data/shapefiles/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/definitions.py -------------------------------------------------------------------------------- /data/shapefiles/neighborhoods/Neighboorhoods.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/neighborhoods/Neighboorhoods.dbf -------------------------------------------------------------------------------- /data/shapefiles/neighborhoods/Neighboorhoods.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/neighborhoods/Neighboorhoods.prj -------------------------------------------------------------------------------- /data/shapefiles/neighborhoods/Neighboorhoods.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/neighborhoods/Neighboorhoods.sbn -------------------------------------------------------------------------------- /data/shapefiles/neighborhoods/Neighboorhoods.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/neighborhoods/Neighboorhoods.sbx -------------------------------------------------------------------------------- /data/shapefiles/neighborhoods/Neighboorhoods.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/neighborhoods/Neighboorhoods.shp -------------------------------------------------------------------------------- /data/shapefiles/neighborhoods/Neighboorhoods.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/neighborhoods/Neighboorhoods.shx -------------------------------------------------------------------------------- /data/shapefiles/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/data/shapefiles/utils.py -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/fabfile.py -------------------------------------------------------------------------------- /gzip_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/gzip_assets.py -------------------------------------------------------------------------------- /manage: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | python ./boundaries/configs/${DEPLOYMENT_TARGET:="common"}/manage.py $* 3 | -------------------------------------------------------------------------------- /newsapps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsapps/templatelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsapps/templatelib/templates/newsapps/_analytics_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/newsapps/templatelib/templates/newsapps/_analytics_footer.html -------------------------------------------------------------------------------- /newsapps/templatelib/templates/newsapps/_analytics_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/newsapps/templatelib/templates/newsapps/_analytics_header.html -------------------------------------------------------------------------------- /newsapps/templatelib/templates/newsapps/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/newsapps/templatelib/templates/newsapps/base.html -------------------------------------------------------------------------------- /newsapps/templatelib/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newsapps/templatelib/templatetags/newsappstags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/newsapps/templatelib/templatetags/newsappstags.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newsapps/boundaryservice/HEAD/requirements.txt -------------------------------------------------------------------------------- /s3exclude: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------