├── .bowerrc ├── .coveragerc ├── .gitignore ├── .tx └── config ├── README.md ├── babel.config ├── bower.json ├── cli ├── __init__.py ├── debug.py ├── odi │ ├── __init__.py │ ├── actions │ │ ├── __init__.py │ │ ├── populate.py │ │ └── prepare.py │ ├── commands.py │ └── services │ │ ├── __init__.py │ │ ├── config.py │ │ └── data.py └── setup.py ├── config_default.py ├── config_deploy.py ├── config_instance.example.py ├── content ├── belgium.md ├── bulgaria.md ├── burkina-faso.md ├── chile.md ├── china.md ├── czech-republic.md ├── data │ ├── datasets.csv │ ├── entries.csv │ ├── geo.json │ ├── places.csv │ ├── questions.csv │ └── summary.csv ├── denmark.md ├── egypt.md ├── extra │ └── CNAME ├── germany.md ├── israel.md ├── italy.md ├── kenya.md ├── malaysia.md ├── moldova.md ├── nepal.md ├── new-zealand.md ├── nigeria.md ├── oman.md ├── pages │ ├── about.md │ ├── chart.md │ ├── download.md │ ├── faq.md │ ├── home.md │ ├── insights.md │ ├── methodology.md │ ├── press │ │ ├── 2014 │ │ │ ├── danish.md │ │ │ ├── english.md │ │ │ ├── french.md │ │ │ ├── german.md │ │ │ ├── japanese.md │ │ │ ├── madarin.md │ │ │ ├── portuguese.md │ │ │ └── spanish.md │ │ └── index.md │ └── vis │ │ ├── embed │ │ └── map.md │ │ ├── index.md │ │ └── permalink │ │ └── map.md ├── paraguay.md └── rwanda.md ├── develop_server.sh ├── fabfile.py ├── plugins ├── datastore │ ├── __init__.py │ └── datastore.py ├── datastore_api │ ├── __init__.py │ └── datastore_api.py ├── datastore_assets │ ├── __init__.py │ └── datastore_assets.py └── i18n_subsites │ ├── README.rst │ ├── __init__.py │ ├── _regenerate_context_helpers.py │ ├── i18n_subsites.py │ ├── implementing_language_buttons.rst │ └── localizing_using_jinja2.rst ├── requirements.txt ├── scripts └── less.js ├── tests ├── __init__.py └── component │ └── test_filters.py ├── themes └── odi │ ├── static │ ├── css │ │ ├── _sexytables.css │ │ ├── map.css │ │ ├── ok_panel.css │ │ ├── site.css │ │ └── site.css.map │ ├── files │ │ └── 2014 │ │ │ └── GlobalOpenDataIndex2014_KeyThemesBriefing.pdf │ ├── images │ │ ├── favicon.ico │ │ ├── icon-tile.png │ │ ├── icon-tile_2x.png │ │ ├── logo-black.png │ │ ├── logo-embed.png │ │ ├── logo-full-black.png │ │ ├── logo-full-black_2x.png │ │ ├── logo.png │ │ ├── logo2.png │ │ ├── map-bg.png │ │ ├── map-bg_2x.png │ │ ├── map-infog-1100.png │ │ ├── map-infog-600.png │ │ ├── map-infog-800.png │ │ ├── okfn.png │ │ ├── pie-10.png │ │ ├── pie-10_2x.png │ │ ├── press │ │ │ ├── 2014 │ │ │ │ ├── OpenDataIceberg-400.png │ │ │ │ ├── OpenDataIceberg-600.png │ │ │ │ ├── OpenDataIceberg-800.png │ │ │ │ ├── OpenDataIceberg-mandarin.png │ │ │ │ ├── OpenKnowledge_CMYK.jpg │ │ │ │ ├── OpenKnowledge_RGB.png │ │ │ │ ├── details.jpg │ │ │ │ ├── map.jpg │ │ │ │ ├── places.jpg │ │ │ │ ├── spending-400.png │ │ │ │ ├── spending-600.png │ │ │ │ ├── spending-800.png │ │ │ │ ├── spending-print-300dpi.png │ │ │ │ └── spending-print.pdf │ │ │ └── 2015 │ │ │ │ ├── map-infog-1100.png │ │ │ │ ├── map-infog-600.png │ │ │ │ ├── map-infog-800.png │ │ │ │ ├── odi-1000.png │ │ │ │ ├── odi-400.png │ │ │ │ ├── odi-600.png │ │ │ │ └── odi-800.png │ │ └── stories │ │ │ └── 2014 │ │ │ ├── belgium.png │ │ │ ├── bulgaria.jpg │ │ │ ├── burkina-faso.png │ │ │ ├── chile.jpg │ │ │ ├── china.jpg │ │ │ ├── czech-republic.jpg │ │ │ ├── denmark.jpg │ │ │ ├── egypt.jpg │ │ │ ├── germany.jpg │ │ │ ├── israel.jpg │ │ │ ├── italy.jpg │ │ │ ├── kenya.png │ │ │ ├── kenya_1.jpg │ │ │ ├── kenya_10.jpg │ │ │ ├── kenya_11.jpg │ │ │ ├── kenya_2.jpg │ │ │ ├── kenya_3.jpg │ │ │ ├── kenya_4.jpg │ │ │ ├── kenya_5.jpg │ │ │ ├── kenya_6.jpg │ │ │ ├── kenya_7.jpg │ │ │ ├── kenya_8.jpg │ │ │ ├── kenya_9.jpg │ │ │ ├── malaysia.jpg │ │ │ ├── moldova.jpg │ │ │ ├── nepal.jpg │ │ │ ├── new-zealand.jpg │ │ │ ├── nigeria.png │ │ │ ├── oman.png │ │ │ ├── paraguay.png │ │ │ └── rwanda.png │ ├── less │ │ ├── _sexytables.less │ │ ├── map.less │ │ └── site.less │ ├── scripts │ │ ├── map.js │ │ ├── map │ │ │ ├── data.js │ │ │ ├── main.js │ │ │ └── ui.js │ │ ├── require.js │ │ ├── site.js │ │ └── site │ │ │ ├── main.js │ │ │ ├── place.js │ │ │ ├── table.js │ │ │ └── ui.js │ └── vendor │ │ ├── L.Control.ZoomMin.css │ │ ├── L.Control.ZoomMin.js │ │ ├── bootstrap │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── js │ │ │ └── bootstrap.min.js │ │ └── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── chroma.min.js │ │ ├── domReady.js │ │ ├── font-awesome │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── extras.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ ├── html5shiv.min.js │ │ ├── jquery.kinetic.min.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.sticky-kit.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── lato │ │ ├── .gitignore │ │ ├── font │ │ │ ├── lato-black.eot │ │ │ ├── lato-black.svg │ │ │ ├── lato-black.ttf │ │ │ ├── lato-black.woff │ │ │ ├── lato-blackitalic.eot │ │ │ ├── lato-blackitalic.svg │ │ │ ├── lato-blackitalic.ttf │ │ │ ├── lato-blackitalic.woff │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.svg │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.svg │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-hairline.eot │ │ │ ├── lato-hairline.svg │ │ │ ├── lato-hairline.ttf │ │ │ ├── lato-hairline.woff │ │ │ ├── lato-hairlineitalic.eot │ │ │ ├── lato-hairlineitalic.svg │ │ │ ├── lato-hairlineitalic.ttf │ │ │ ├── lato-hairlineitalic.woff │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.svg │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-light.eot │ │ │ ├── lato-light.svg │ │ │ ├── lato-light.ttf │ │ │ ├── lato-light.woff │ │ │ ├── lato-lightitalic.eot │ │ │ ├── lato-lightitalic.svg │ │ │ ├── lato-lightitalic.ttf │ │ │ ├── lato-lightitalic.woff │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.svg │ │ │ ├── lato-regular.ttf │ │ │ └── lato-regular.woff │ │ └── less │ │ │ ├── lato-black.less │ │ │ ├── lato-blackitalic.less │ │ │ ├── lato-bold.less │ │ │ ├── lato-bolditalic.less │ │ │ ├── lato-hairline.less │ │ │ ├── lato-hairlineitalic.less │ │ │ ├── lato-italic.less │ │ │ ├── lato-light.less │ │ │ ├── lato-lightitalic.less │ │ │ ├── lato-regular.less │ │ │ ├── lato.less │ │ │ └── variables.less │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ ├── leaflet.label.css │ │ ├── leaflet.label.js │ │ ├── lodash.compat.min.js │ │ ├── marked.js │ │ ├── normalize.css │ │ ├── proj4.js │ │ ├── proj4leaflet.js │ │ ├── pubsub.js │ │ └── sexytables-1.0.min.js │ ├── templates │ ├── _analytics.html │ ├── _scope.html │ ├── article.html │ ├── base.html │ ├── categories.html │ ├── category.html │ ├── chart.html │ ├── content │ │ ├── footer_meta.md │ │ ├── historical_intro.md │ │ └── table_slice_place_help.md │ ├── dataset.html │ ├── datasets.html │ ├── dataviews │ │ ├── alt_general_stat.html │ │ ├── alt_summary.html │ │ ├── embed_map.html │ │ ├── summary.html │ │ ├── table_datasets.html │ │ ├── table_key.html │ │ ├── table_places.html │ │ ├── table_slice_dataset.html │ │ ├── table_slice_place.html │ │ └── table_tools.html │ ├── download.html │ ├── embed.html │ ├── empty.html │ ├── gallery.html │ ├── home.html │ ├── index.html │ ├── macros.html │ ├── map.embed.html │ ├── map.permalink.html │ ├── na.html │ ├── page.html │ ├── place.html │ ├── place_dataset.html │ └── places.html │ └── translations │ ├── en │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ ├── es │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ └── messages.pot └── utilities ├── __init__.py └── filters.py /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/.tx/config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/README.md -------------------------------------------------------------------------------- /babel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/babel.config -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/bower.json -------------------------------------------------------------------------------- /cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli/debug.py: -------------------------------------------------------------------------------- 1 | from odi import cli 2 | 3 | 4 | cli() 5 | -------------------------------------------------------------------------------- /cli/odi/__init__.py: -------------------------------------------------------------------------------- 1 | from .commands import cli 2 | -------------------------------------------------------------------------------- /cli/odi/actions/__init__.py: -------------------------------------------------------------------------------- 1 | from . import populate, prepare 2 | -------------------------------------------------------------------------------- /cli/odi/actions/populate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/cli/odi/actions/populate.py -------------------------------------------------------------------------------- /cli/odi/actions/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/cli/odi/actions/prepare.py -------------------------------------------------------------------------------- /cli/odi/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/cli/odi/commands.py -------------------------------------------------------------------------------- /cli/odi/services/__init__.py: -------------------------------------------------------------------------------- 1 | from . import config, data 2 | -------------------------------------------------------------------------------- /cli/odi/services/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/cli/odi/services/config.py -------------------------------------------------------------------------------- /cli/odi/services/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/cli/odi/services/data.py -------------------------------------------------------------------------------- /cli/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/cli/setup.py -------------------------------------------------------------------------------- /config_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/config_default.py -------------------------------------------------------------------------------- /config_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/config_deploy.py -------------------------------------------------------------------------------- /config_instance.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/config_instance.example.py -------------------------------------------------------------------------------- /content/belgium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/belgium.md -------------------------------------------------------------------------------- /content/bulgaria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/bulgaria.md -------------------------------------------------------------------------------- /content/burkina-faso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/burkina-faso.md -------------------------------------------------------------------------------- /content/chile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/chile.md -------------------------------------------------------------------------------- /content/china.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/china.md -------------------------------------------------------------------------------- /content/czech-republic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/czech-republic.md -------------------------------------------------------------------------------- /content/data/datasets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/data/datasets.csv -------------------------------------------------------------------------------- /content/data/entries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/data/entries.csv -------------------------------------------------------------------------------- /content/data/geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/data/geo.json -------------------------------------------------------------------------------- /content/data/places.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/data/places.csv -------------------------------------------------------------------------------- /content/data/questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/data/questions.csv -------------------------------------------------------------------------------- /content/data/summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/data/summary.csv -------------------------------------------------------------------------------- /content/denmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/denmark.md -------------------------------------------------------------------------------- /content/egypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/egypt.md -------------------------------------------------------------------------------- /content/extra/CNAME: -------------------------------------------------------------------------------- 1 | index.okfn.org 2 | -------------------------------------------------------------------------------- /content/germany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/germany.md -------------------------------------------------------------------------------- /content/israel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/israel.md -------------------------------------------------------------------------------- /content/italy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/italy.md -------------------------------------------------------------------------------- /content/kenya.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/kenya.md -------------------------------------------------------------------------------- /content/malaysia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/malaysia.md -------------------------------------------------------------------------------- /content/moldova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/moldova.md -------------------------------------------------------------------------------- /content/nepal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/nepal.md -------------------------------------------------------------------------------- /content/new-zealand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/new-zealand.md -------------------------------------------------------------------------------- /content/nigeria.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/nigeria.md -------------------------------------------------------------------------------- /content/oman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/oman.md -------------------------------------------------------------------------------- /content/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/about.md -------------------------------------------------------------------------------- /content/pages/chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/chart.md -------------------------------------------------------------------------------- /content/pages/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/download.md -------------------------------------------------------------------------------- /content/pages/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/faq.md -------------------------------------------------------------------------------- /content/pages/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/home.md -------------------------------------------------------------------------------- /content/pages/insights.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/insights.md -------------------------------------------------------------------------------- /content/pages/methodology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/methodology.md -------------------------------------------------------------------------------- /content/pages/press/2014/danish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/danish.md -------------------------------------------------------------------------------- /content/pages/press/2014/english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/english.md -------------------------------------------------------------------------------- /content/pages/press/2014/french.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/french.md -------------------------------------------------------------------------------- /content/pages/press/2014/german.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/german.md -------------------------------------------------------------------------------- /content/pages/press/2014/japanese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/japanese.md -------------------------------------------------------------------------------- /content/pages/press/2014/madarin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/madarin.md -------------------------------------------------------------------------------- /content/pages/press/2014/portuguese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/portuguese.md -------------------------------------------------------------------------------- /content/pages/press/2014/spanish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/2014/spanish.md -------------------------------------------------------------------------------- /content/pages/press/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/press/index.md -------------------------------------------------------------------------------- /content/pages/vis/embed/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/vis/embed/map.md -------------------------------------------------------------------------------- /content/pages/vis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/vis/index.md -------------------------------------------------------------------------------- /content/pages/vis/permalink/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/pages/vis/permalink/map.md -------------------------------------------------------------------------------- /content/paraguay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/paraguay.md -------------------------------------------------------------------------------- /content/rwanda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/content/rwanda.md -------------------------------------------------------------------------------- /develop_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/develop_server.sh -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/fabfile.py -------------------------------------------------------------------------------- /plugins/datastore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/datastore/__init__.py -------------------------------------------------------------------------------- /plugins/datastore/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/datastore/datastore.py -------------------------------------------------------------------------------- /plugins/datastore_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/datastore_api/__init__.py -------------------------------------------------------------------------------- /plugins/datastore_api/datastore_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/datastore_api/datastore_api.py -------------------------------------------------------------------------------- /plugins/datastore_assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/datastore_assets/__init__.py -------------------------------------------------------------------------------- /plugins/datastore_assets/datastore_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/datastore_assets/datastore_assets.py -------------------------------------------------------------------------------- /plugins/i18n_subsites/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/i18n_subsites/README.rst -------------------------------------------------------------------------------- /plugins/i18n_subsites/__init__.py: -------------------------------------------------------------------------------- 1 | from .i18n_subsites import * 2 | -------------------------------------------------------------------------------- /plugins/i18n_subsites/_regenerate_context_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/i18n_subsites/_regenerate_context_helpers.py -------------------------------------------------------------------------------- /plugins/i18n_subsites/i18n_subsites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/i18n_subsites/i18n_subsites.py -------------------------------------------------------------------------------- /plugins/i18n_subsites/implementing_language_buttons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/i18n_subsites/implementing_language_buttons.rst -------------------------------------------------------------------------------- /plugins/i18n_subsites/localizing_using_jinja2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/plugins/i18n_subsites/localizing_using_jinja2.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/scripts/less.js -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/component/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/tests/component/test_filters.py -------------------------------------------------------------------------------- /themes/odi/static/css/_sexytables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/css/_sexytables.css -------------------------------------------------------------------------------- /themes/odi/static/css/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/css/map.css -------------------------------------------------------------------------------- /themes/odi/static/css/ok_panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/css/ok_panel.css -------------------------------------------------------------------------------- /themes/odi/static/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/css/site.css -------------------------------------------------------------------------------- /themes/odi/static/css/site.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/css/site.css.map -------------------------------------------------------------------------------- /themes/odi/static/files/2014/GlobalOpenDataIndex2014_KeyThemesBriefing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/files/2014/GlobalOpenDataIndex2014_KeyThemesBriefing.pdf -------------------------------------------------------------------------------- /themes/odi/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/favicon.ico -------------------------------------------------------------------------------- /themes/odi/static/images/icon-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/icon-tile.png -------------------------------------------------------------------------------- /themes/odi/static/images/icon-tile_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/icon-tile_2x.png -------------------------------------------------------------------------------- /themes/odi/static/images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/logo-black.png -------------------------------------------------------------------------------- /themes/odi/static/images/logo-embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/logo-embed.png -------------------------------------------------------------------------------- /themes/odi/static/images/logo-full-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/logo-full-black.png -------------------------------------------------------------------------------- /themes/odi/static/images/logo-full-black_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/logo-full-black_2x.png -------------------------------------------------------------------------------- /themes/odi/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/logo.png -------------------------------------------------------------------------------- /themes/odi/static/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/logo2.png -------------------------------------------------------------------------------- /themes/odi/static/images/map-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/map-bg.png -------------------------------------------------------------------------------- /themes/odi/static/images/map-bg_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/map-bg_2x.png -------------------------------------------------------------------------------- /themes/odi/static/images/map-infog-1100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/map-infog-1100.png -------------------------------------------------------------------------------- /themes/odi/static/images/map-infog-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/map-infog-600.png -------------------------------------------------------------------------------- /themes/odi/static/images/map-infog-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/map-infog-800.png -------------------------------------------------------------------------------- /themes/odi/static/images/okfn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/okfn.png -------------------------------------------------------------------------------- /themes/odi/static/images/pie-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/pie-10.png -------------------------------------------------------------------------------- /themes/odi/static/images/pie-10_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/pie-10_2x.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/OpenDataIceberg-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/OpenDataIceberg-400.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/OpenDataIceberg-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/OpenDataIceberg-600.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/OpenDataIceberg-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/OpenDataIceberg-800.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/OpenDataIceberg-mandarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/OpenDataIceberg-mandarin.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/OpenKnowledge_CMYK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/OpenKnowledge_CMYK.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/OpenKnowledge_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/OpenKnowledge_RGB.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/details.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/map.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/places.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/places.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/spending-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/spending-400.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/spending-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/spending-600.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/spending-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/spending-800.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/spending-print-300dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/spending-print-300dpi.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2014/spending-print.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2014/spending-print.pdf -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/map-infog-1100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/map-infog-1100.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/map-infog-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/map-infog-600.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/map-infog-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/map-infog-800.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/odi-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/odi-1000.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/odi-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/odi-400.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/odi-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/odi-600.png -------------------------------------------------------------------------------- /themes/odi/static/images/press/2015/odi-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/press/2015/odi-800.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/belgium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/belgium.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/bulgaria.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/bulgaria.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/burkina-faso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/burkina-faso.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/chile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/chile.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/china.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/china.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/czech-republic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/czech-republic.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/denmark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/denmark.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/egypt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/egypt.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/germany.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/germany.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/israel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/israel.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/italy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/italy.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_1.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_10.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_11.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_2.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_3.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_4.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_5.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_6.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_7.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_8.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/kenya_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/kenya_9.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/malaysia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/malaysia.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/moldova.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/moldova.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/nepal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/nepal.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/new-zealand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/new-zealand.jpg -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/nigeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/nigeria.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/oman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/oman.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/paraguay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/paraguay.png -------------------------------------------------------------------------------- /themes/odi/static/images/stories/2014/rwanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/images/stories/2014/rwanda.png -------------------------------------------------------------------------------- /themes/odi/static/less/_sexytables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/less/_sexytables.less -------------------------------------------------------------------------------- /themes/odi/static/less/map.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/less/map.less -------------------------------------------------------------------------------- /themes/odi/static/less/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/less/site.less -------------------------------------------------------------------------------- /themes/odi/static/scripts/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/map.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/map/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/map/data.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/map/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/map/main.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/map/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/map/ui.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/require.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/site.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/site/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/site/main.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/site/place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/site/place.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/site/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/site/table.js -------------------------------------------------------------------------------- /themes/odi/static/scripts/site/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/scripts/site/ui.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/L.Control.ZoomMin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/L.Control.ZoomMin.css -------------------------------------------------------------------------------- /themes/odi/static/vendor/L.Control.ZoomMin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/L.Control.ZoomMin.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/badges.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/close.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/code.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/forms.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/grid.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/labels.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/media.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/background-variant.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/border-radius.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/buttons.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/center-block.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/clearfix.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/gradients.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/grid-framework.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/hide-text.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/list-group.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/nav-divider.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/opacity.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/pagination.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/progress-bar.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/reset-filter.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/table-row.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/text-emphasis.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/text-overflow.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/modals.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/navs.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/pager.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/panels.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/print.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/responsive-embed.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/tables.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/theme.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/type.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/variables.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/bootstrap/less/wells.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/chroma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/chroma.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/domReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/domReady.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/core.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/extras.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/extras.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/icons.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/larger.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/list.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/path.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/font-awesome/less/variables.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/html5shiv.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/jquery.kinetic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/jquery.kinetic.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/jquery.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/jquery.min.map -------------------------------------------------------------------------------- /themes/odi/static/vendor/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .sass-cache 3 | -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-black.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-black.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-black.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-black.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-blackitalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-blackitalic.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-blackitalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-blackitalic.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-blackitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-blackitalic.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-blackitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-blackitalic.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bold.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bold.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bold.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bold.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bolditalic.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bolditalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bolditalic.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bolditalic.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-bolditalic.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairline.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairline.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairline.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairline.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairline.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairline.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairlineitalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairlineitalic.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairlineitalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairlineitalic.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairlineitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairlineitalic.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-hairlineitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-hairlineitalic.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-italic.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-italic.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-italic.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-italic.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-light.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-light.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-light.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-light.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-lightitalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-lightitalic.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-lightitalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-lightitalic.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-lightitalic.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-lightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-lightitalic.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-regular.eot -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-regular.svg -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-regular.ttf -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/font/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/font/lato-regular.woff -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-black.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-black.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-blackitalic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-blackitalic.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-bold.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-bold.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-bolditalic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-bolditalic.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-hairline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-hairline.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-hairlineitalic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-hairlineitalic.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-italic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-italic.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-light.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-light.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-lightitalic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-lightitalic.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato-regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato-regular.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/lato.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/lato.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/lato/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lato/less/variables.less -------------------------------------------------------------------------------- /themes/odi/static/vendor/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/leaflet.css -------------------------------------------------------------------------------- /themes/odi/static/vendor/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/leaflet.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/leaflet.label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/leaflet.label.css -------------------------------------------------------------------------------- /themes/odi/static/vendor/leaflet.label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/leaflet.label.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/lodash.compat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/lodash.compat.min.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/marked.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/normalize.css -------------------------------------------------------------------------------- /themes/odi/static/vendor/proj4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/proj4.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/proj4leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/proj4leaflet.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/pubsub.js -------------------------------------------------------------------------------- /themes/odi/static/vendor/sexytables-1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/static/vendor/sexytables-1.0.min.js -------------------------------------------------------------------------------- /themes/odi/templates/_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/_analytics.html -------------------------------------------------------------------------------- /themes/odi/templates/_scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/_scope.html -------------------------------------------------------------------------------- /themes/odi/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/article.html -------------------------------------------------------------------------------- /themes/odi/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/base.html -------------------------------------------------------------------------------- /themes/odi/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/categories.html -------------------------------------------------------------------------------- /themes/odi/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/category.html -------------------------------------------------------------------------------- /themes/odi/templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/chart.html -------------------------------------------------------------------------------- /themes/odi/templates/content/footer_meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/content/footer_meta.md -------------------------------------------------------------------------------- /themes/odi/templates/content/historical_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/content/historical_intro.md -------------------------------------------------------------------------------- /themes/odi/templates/content/table_slice_place_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/content/table_slice_place_help.md -------------------------------------------------------------------------------- /themes/odi/templates/dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataset.html -------------------------------------------------------------------------------- /themes/odi/templates/datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/datasets.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/alt_general_stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/alt_general_stat.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/alt_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/alt_summary.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/embed_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/embed_map.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/summary.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/table_datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/table_datasets.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/table_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/table_key.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/table_places.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/table_places.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/table_slice_dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/table_slice_dataset.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/table_slice_place.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/table_slice_place.html -------------------------------------------------------------------------------- /themes/odi/templates/dataviews/table_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/dataviews/table_tools.html -------------------------------------------------------------------------------- /themes/odi/templates/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/download.html -------------------------------------------------------------------------------- /themes/odi/templates/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/embed.html -------------------------------------------------------------------------------- /themes/odi/templates/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/empty.html -------------------------------------------------------------------------------- /themes/odi/templates/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/gallery.html -------------------------------------------------------------------------------- /themes/odi/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/home.html -------------------------------------------------------------------------------- /themes/odi/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/index.html -------------------------------------------------------------------------------- /themes/odi/templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/macros.html -------------------------------------------------------------------------------- /themes/odi/templates/map.embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/map.embed.html -------------------------------------------------------------------------------- /themes/odi/templates/map.permalink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/map.permalink.html -------------------------------------------------------------------------------- /themes/odi/templates/na.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/na.html -------------------------------------------------------------------------------- /themes/odi/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/page.html -------------------------------------------------------------------------------- /themes/odi/templates/place.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/place.html -------------------------------------------------------------------------------- /themes/odi/templates/place_dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/place_dataset.html -------------------------------------------------------------------------------- /themes/odi/templates/places.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/templates/places.html -------------------------------------------------------------------------------- /themes/odi/translations/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/translations/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /themes/odi/translations/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/translations/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /themes/odi/translations/es/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/translations/es/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /themes/odi/translations/es/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/translations/es/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /themes/odi/translations/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/themes/odi/translations/messages.pot -------------------------------------------------------------------------------- /utilities/__init__.py: -------------------------------------------------------------------------------- 1 | from . import filters 2 | -------------------------------------------------------------------------------- /utilities/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okfn/opendataindex/HEAD/utilities/filters.py --------------------------------------------------------------------------------