├── themes └── centraldedados │ ├── static │ ├── js │ │ ├── put_js_here.txt │ │ ├── search.js │ │ ├── underscore-min.js │ │ └── jquery-3.0.0.min.js │ ├── fonts │ │ ├── put_fonts_here.txt │ │ └── CommeSans │ │ │ ├── Comme-Bold.ttf │ │ │ ├── Comme-Heavy.ttf │ │ │ ├── Comme-Light.ttf │ │ │ ├── Comme-Thin.ttf │ │ │ ├── Comme-Medium.ttf │ │ │ ├── Comme-Regular.ttf │ │ │ ├── Comme-SemiBold.ttf │ │ │ ├── Comme-ExtraBold.ttf │ │ │ ├── Comme-ExtraLight.ttf │ │ │ └── CommeMono-Regular.ttf │ ├── img │ │ ├── put_images_here.txt │ │ ├── okfn.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── okfn-pt.png │ │ ├── ajax-loader.gif │ │ ├── jplusplus.png │ │ ├── share-image.png │ │ ├── thackdaypt.png │ │ ├── datewithdata.png │ │ ├── thackdaypt_px.png │ │ ├── centraldedados.png │ │ └── centraldedados.svg │ ├── htaccess │ └── css │ │ └── main.css │ └── templates │ ├── page.html │ ├── contact.html │ ├── list.html │ ├── dataset.html │ └── base.html ├── .gitignore ├── requirements.txt ├── content ├── welcome_text.md └── pages │ └── about.md ├── Pipfile ├── settings.conf.sample ├── plugins └── ods.py ├── tests.py ├── utils.py ├── Makefile ├── README.md ├── Pipfile.lock └── datacentral.py /themes/centraldedados/static/js/put_js_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/put_fonts_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/centraldedados/static/img/put_images_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/centraldedados/static/img/okfn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/okfn.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/favicon.ico -------------------------------------------------------------------------------- /themes/centraldedados/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/favicon.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/okfn-pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/okfn-pt.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /themes/centraldedados/static/img/jplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/jplusplus.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/share-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/share-image.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/thackdaypt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/thackdaypt.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/datewithdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/datewithdata.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/thackdaypt_px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/thackdaypt_px.png -------------------------------------------------------------------------------- /themes/centraldedados/static/img/centraldedados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/img/centraldedados.png -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-Bold.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-Heavy.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-Light.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-Thin.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-Medium.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-Regular.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-SemiBold.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-ExtraBold.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/Comme-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/Comme-ExtraLight.ttf -------------------------------------------------------------------------------- /themes/centraldedados/static/fonts/CommeSans/CommeMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centraldedados/datacentral/HEAD/themes/centraldedados/static/fonts/CommeSans/CommeMono-Regular.ttf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # don't track the output dir 2 | _output/ 3 | # repos are automatically cloned 4 | repos/ 5 | # settings file is private 6 | settings.conf 7 | # virtualenv is local 8 | .env/ 9 | 10 | # cruft files 11 | *.pyc 12 | *.swp 13 | *~ 14 | *.orig 15 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse==1.4.0 2 | 3 | Click==7.0 4 | colorlog==4.0.2 5 | csvkit==1.0.3 6 | GitPython==2.1.11 7 | Jinja2==2.10 8 | livereload==2.6.0 9 | Markdown==3.0.1 10 | MarkupSafe==1.1.0 11 | nose==1.3.7 12 | requests==2.21.0 13 | zenlog==1.1 14 | -------------------------------------------------------------------------------- /content/welcome_text.md: -------------------------------------------------------------------------------- 1 | Hey -- You just got Datacentral working! 2 | 3 | If you haven't already, copy the `settings.conf.sample` file to `settings.conf`, and edit the new file to edit the datasets to be listed. 4 | 5 | This sidebar is a good place to tell your visitors what this site is about in a few paragraphs. You can edit this in `content/welcome_text.md`. 6 | 7 | Have fun with data! 8 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | name = "pypi" 3 | url = "https://pypi.org/simple" 4 | verify_ssl = true 5 | 6 | [dev-packages] 7 | 8 | [packages] 9 | argparse = "*" 10 | click = "*" 11 | colorlog = "*" 12 | zenlog = "*" 13 | livereload = "*" 14 | csvkit = "*" 15 | nose = "*" 16 | requests = "*" 17 | GitPython = "*" 18 | Jinja2 = "*" 19 | Markdown = "*" 20 | MarkupSafe = "*" 21 | 22 | [requires] 23 | python_version = "3.7" 24 | -------------------------------------------------------------------------------- /themes/centraldedados/templates/page.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block title %} 4 |
13 | Versão {{ datapkg.version }}
16 |Licença {{ datapkg.license }}
17 |Última atualização {{ datapkg.last_updated }}
18 | 19 |
18 |
19 |
29 |
33 | Central de Dados
34 |