├── .gitignore ├── Boxes └── .DS_Store ├── LICENSE ├── Netafilter-icons.ai ├── README.md ├── _config.yml ├── _includes ├── analytics.html ├── broswerupgrade.html ├── footer.html └── header.html ├── _layouts ├── default.html ├── home-item.html └── home.html ├── _posts └── 2016-01-11-welcome-to-jekyll.markdown ├── _sass ├── _layout.scss └── _mobile.scss ├── about.html ├── chart.html ├── css └── main.scss ├── data ├── myneta-loksabha.csv └── myneta-studio-style.json ├── home.md ├── img ├── assets-button.png ├── assets.png ├── background.jpg ├── close.png ├── criminal-cases-button.png ├── criminal-cases.png ├── education-button.png ├── education.png ├── github.png ├── helperImage1.png ├── helperImage2.png ├── info.png ├── liabilities.png ├── location.png └── party-logos │ ├── aap.png │ ├── aiadmk.png │ ├── ainrc.png │ ├── aitc.png │ ├── aiudf.png │ ├── apna-dal.png │ ├── bjd.png │ ├── bjp.png │ ├── cpi-m.png │ ├── cpi.png │ ├── inc.png │ ├── inld.png │ ├── iuml.png │ ├── jd-s.png │ ├── jdu.png │ ├── jkpdp.png │ ├── jmm.png │ ├── kcm.png │ ├── ljp.png │ ├── ncp.png │ ├── npf.png │ ├── npp.png │ ├── pmk.png │ ├── rjd.png │ ├── rlsp.png │ ├── rsp.png │ ├── sad.png │ ├── sdf.png │ ├── shs.png │ ├── sp.png │ ├── spp.png │ ├── tdp.png │ ├── trs.png │ └── ysr.png ├── index.html ├── js ├── .DS_Store ├── app.js ├── build.js ├── config.js ├── index.js ├── map-legend.js ├── map.js ├── mapbox-gl-utils │ ├── dataset.js │ ├── index.js │ ├── layers.js │ └── style.css └── vendor │ ├── nv.d3.css │ └── nv.d3.min.js ├── package.json ├── party-logos.ai └── robots.txt /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /Boxes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/Boxes/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/LICENSE -------------------------------------------------------------------------------- /Netafilter-icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/Netafilter-icons.ai -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/broswerupgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_includes/broswerupgrade.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/home-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_layouts/home-item.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_posts/2016-01-11-welcome-to-jekyll.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_posts/2016-01-11-welcome-to-jekyll.markdown -------------------------------------------------------------------------------- /_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_sass/_layout.scss -------------------------------------------------------------------------------- /_sass/_mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/_sass/_mobile.scss -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/about.html -------------------------------------------------------------------------------- /chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/chart.html -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/css/main.scss -------------------------------------------------------------------------------- /data/myneta-loksabha.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/data/myneta-loksabha.csv -------------------------------------------------------------------------------- /data/myneta-studio-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/data/myneta-studio-style.json -------------------------------------------------------------------------------- /home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/home.md -------------------------------------------------------------------------------- /img/assets-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/assets-button.png -------------------------------------------------------------------------------- /img/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/assets.png -------------------------------------------------------------------------------- /img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/background.jpg -------------------------------------------------------------------------------- /img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/close.png -------------------------------------------------------------------------------- /img/criminal-cases-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/criminal-cases-button.png -------------------------------------------------------------------------------- /img/criminal-cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/criminal-cases.png -------------------------------------------------------------------------------- /img/education-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/education-button.png -------------------------------------------------------------------------------- /img/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/education.png -------------------------------------------------------------------------------- /img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/github.png -------------------------------------------------------------------------------- /img/helperImage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/helperImage1.png -------------------------------------------------------------------------------- /img/helperImage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/helperImage2.png -------------------------------------------------------------------------------- /img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/info.png -------------------------------------------------------------------------------- /img/liabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/liabilities.png -------------------------------------------------------------------------------- /img/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/location.png -------------------------------------------------------------------------------- /img/party-logos/aap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/aap.png -------------------------------------------------------------------------------- /img/party-logos/aiadmk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/aiadmk.png -------------------------------------------------------------------------------- /img/party-logos/ainrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/ainrc.png -------------------------------------------------------------------------------- /img/party-logos/aitc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/aitc.png -------------------------------------------------------------------------------- /img/party-logos/aiudf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/aiudf.png -------------------------------------------------------------------------------- /img/party-logos/apna-dal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/apna-dal.png -------------------------------------------------------------------------------- /img/party-logos/bjd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/bjd.png -------------------------------------------------------------------------------- /img/party-logos/bjp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/bjp.png -------------------------------------------------------------------------------- /img/party-logos/cpi-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/cpi-m.png -------------------------------------------------------------------------------- /img/party-logos/cpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/cpi.png -------------------------------------------------------------------------------- /img/party-logos/inc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/inc.png -------------------------------------------------------------------------------- /img/party-logos/inld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/inld.png -------------------------------------------------------------------------------- /img/party-logos/iuml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/iuml.png -------------------------------------------------------------------------------- /img/party-logos/jd-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/jd-s.png -------------------------------------------------------------------------------- /img/party-logos/jdu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/jdu.png -------------------------------------------------------------------------------- /img/party-logos/jkpdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/jkpdp.png -------------------------------------------------------------------------------- /img/party-logos/jmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/jmm.png -------------------------------------------------------------------------------- /img/party-logos/kcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/kcm.png -------------------------------------------------------------------------------- /img/party-logos/ljp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/ljp.png -------------------------------------------------------------------------------- /img/party-logos/ncp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/ncp.png -------------------------------------------------------------------------------- /img/party-logos/npf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/npf.png -------------------------------------------------------------------------------- /img/party-logos/npp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/npp.png -------------------------------------------------------------------------------- /img/party-logos/pmk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/pmk.png -------------------------------------------------------------------------------- /img/party-logos/rjd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/rjd.png -------------------------------------------------------------------------------- /img/party-logos/rlsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/rlsp.png -------------------------------------------------------------------------------- /img/party-logos/rsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/rsp.png -------------------------------------------------------------------------------- /img/party-logos/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/sad.png -------------------------------------------------------------------------------- /img/party-logos/sdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/sdf.png -------------------------------------------------------------------------------- /img/party-logos/shs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/shs.png -------------------------------------------------------------------------------- /img/party-logos/sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/sp.png -------------------------------------------------------------------------------- /img/party-logos/spp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/spp.png -------------------------------------------------------------------------------- /img/party-logos/tdp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/tdp.png -------------------------------------------------------------------------------- /img/party-logos/trs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/trs.png -------------------------------------------------------------------------------- /img/party-logos/ysr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/img/party-logos/ysr.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/index.html -------------------------------------------------------------------------------- /js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/.DS_Store -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/app.js -------------------------------------------------------------------------------- /js/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/build.js -------------------------------------------------------------------------------- /js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/config.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/index.js -------------------------------------------------------------------------------- /js/map-legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/map-legend.js -------------------------------------------------------------------------------- /js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/map.js -------------------------------------------------------------------------------- /js/mapbox-gl-utils/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/mapbox-gl-utils/dataset.js -------------------------------------------------------------------------------- /js/mapbox-gl-utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/mapbox-gl-utils/index.js -------------------------------------------------------------------------------- /js/mapbox-gl-utils/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/mapbox-gl-utils/layers.js -------------------------------------------------------------------------------- /js/mapbox-gl-utils/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/vendor/nv.d3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/vendor/nv.d3.css -------------------------------------------------------------------------------- /js/vendor/nv.d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/js/vendor/nv.d3.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/package.json -------------------------------------------------------------------------------- /party-logos.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/party-logos.ai -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folography/netafilter/HEAD/robots.txt --------------------------------------------------------------------------------