├── .coveragerc ├── .gitignore ├── .travis.yml ├── .tx └── config ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.rst ├── Vagrantfile ├── colab ├── __init__.py ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backends.py │ ├── context_processors.py │ ├── filters.py │ ├── fixtures │ │ └── test_user.json │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_needs_update.py │ │ ├── 0003_auto_20141218_1755.py │ │ ├── 0004_auto_20150311_1818.py │ │ ├── 0005_auto_20150312_1454.py │ │ ├── 0006_auto_20150828_1719.py │ │ ├── 0007_auto_20151105_0120.py │ │ └── __init__.py │ ├── models.py │ ├── signals.py │ ├── tasks.py │ ├── templates │ │ ├── accounts │ │ │ ├── emails │ │ │ │ └── email_verification.txt │ │ │ ├── manage_subscriptions.html │ │ │ ├── user_create_form.html │ │ │ ├── user_detail.html │ │ │ └── user_update_form.html │ │ ├── emails │ │ │ └── create_list_confirmation.txt │ │ ├── registration │ │ │ ├── login.html │ │ │ ├── password_change_form_custom.html │ │ │ ├── password_reset_complete_custom.html │ │ │ ├── password_reset_confirm_custom.html │ │ │ ├── password_reset_done_custom.html │ │ │ ├── password_reset_email_custom.html │ │ │ └── password_reset_form_custom.html │ │ ├── search │ │ │ ├── indexes │ │ │ │ └── accounts │ │ │ │ │ └── user_text.txt │ │ │ └── user_search_preview.html │ │ └── widgets │ │ │ ├── collaboration_chart.html │ │ │ └── latest_contributions.html │ ├── templatetags │ │ ├── __init__.py │ │ └── gravatar.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_context_processor.py │ │ ├── test_email_validation.py │ │ ├── test_forms.py │ │ ├── test_request.py │ │ ├── test_tasks.py │ │ ├── test_user.py │ │ ├── test_utils_validators.py │ │ ├── test_view_signup.py │ │ └── utils.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── email.py │ │ └── validators.py │ ├── views.py │ └── widgets │ │ ├── __init__.py │ │ ├── collaboration_chart.py │ │ └── latest_contributions.py ├── celery.py ├── conf │ ├── __init__.py │ └── plugin_template │ │ ├── setup.py │ │ ├── src │ │ └── app_name │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── data_importer.py │ │ │ ├── diazo.xml │ │ │ ├── models.py │ │ │ ├── search_indexes.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ └── tests │ │ ├── __init__.py │ │ ├── colab_settings.py │ │ ├── plugins.d │ │ └── app_name.py │ │ ├── runtests.py │ │ └── test_plugin.py ├── exceptions.py ├── home │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── context_processors.py │ ├── models.py │ ├── tests.py │ └── views.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── celery.py │ │ ├── initconfig.py │ │ ├── initdb.py │ │ ├── initwidgetsconfig.py │ │ └── startplugin.py │ └── tests │ │ ├── __init__.py │ │ ├── test_celery_command.py │ │ ├── test_initconfig_command.py │ │ └── test_startplugin.py ├── middlewares │ ├── __init__.py │ ├── cookie_middleware.py │ ├── models.py │ ├── redirect_login.py │ └── tests │ │ ├── __init__.py │ │ ├── test_cookie_middleware.py │ │ └── test_redirect_login.py ├── plugins │ ├── __init__.py │ ├── apps.py │ ├── conf.py │ ├── context_processors.py │ ├── data │ │ ├── __init__.py │ │ ├── base_importer.py │ │ └── tasks.py │ ├── exceptions.py │ ├── fixtures │ │ └── sample_user_plugin.json │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160106_1843.py │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── templates │ │ └── plugins │ │ │ └── menu_template.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── plugins.py │ │ └── set_var.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_context_processors.py │ │ ├── test_helpers.py │ │ ├── test_tasks.py │ │ ├── test_templatetags.py │ │ ├── test_timestamp.py │ │ └── test_views.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── collaborations.py │ │ ├── filters_importer.py │ │ ├── menu.py │ │ ├── models.py │ │ ├── signals.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_apps.py │ │ │ ├── test_collaboration.py │ │ │ └── test_signals.py │ └── views.py ├── queue │ ├── __init__.py │ └── command.py ├── rss │ ├── __init__.py │ ├── feeds.py │ └── urls.py ├── search │ ├── __init__.py │ ├── admin.py │ ├── base_indexes.py │ ├── fixtures │ │ ├── __init__.py │ │ └── test_data.json │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── message-preview.html │ │ ├── search-base.html │ │ └── search │ │ │ ├── includes │ │ │ └── search_filters.html │ │ │ ├── search-user-preview.html │ │ │ └── search.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── get_operations.py │ │ ├── search_get.py │ │ └── search_preview_templates.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_base_index.py │ │ ├── test_search_view.py │ │ └── test_templatetags.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ └── url.py │ └── views.py ├── settings.py ├── signals │ ├── __init__.py │ ├── exceptions.py │ ├── signals.py │ └── tests │ │ ├── __init__.py │ │ └── test_signals.py ├── static │ ├── css │ │ ├── footer.css │ │ ├── header.css │ │ └── screen.css │ ├── img │ │ ├── COPYRIGHT │ │ ├── cc_by_sa.png │ │ ├── fav.ico │ │ ├── logo.svg │ │ ├── plus.png │ │ ├── rss.png │ │ ├── user.png │ │ └── x.png │ └── third-party │ │ ├── bootstrap-datetimepicker │ │ ├── README │ │ ├── css │ │ │ └── bootstrap-datetimepicker.min.css │ │ └── js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ └── bootstrap-datetimepicker.pt-BR.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.min.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ └── bootstrap.min.js │ │ ├── chartjs │ │ └── js │ │ │ └── Chart.min.js │ │ ├── chroma │ │ └── js │ │ │ └── chroma.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome-ie7.min.css │ │ │ └── font-awesome.min.css │ │ └── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── highcharts │ │ └── js │ │ │ └── highcharts.js │ │ ├── jquery-2.0.3.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.debouncedresize.js │ │ └── ribbon │ │ ├── gh-fork-ribbon.css │ │ └── gh-fork-ribbon.ie.css ├── super_archives │ └── tests │ │ └── test_utils_collaborations.py ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base.html │ ├── doughnut-chart.html │ ├── footer.html │ ├── header-slim.html │ ├── header.html │ ├── home.html │ ├── includes │ │ └── google_analytics.html │ └── pizza-chart.html ├── tz │ ├── __init__.py │ ├── middleware.py │ ├── templates │ │ └── tz │ │ │ └── set_utc_offset.html │ └── tests │ │ ├── __init__.py │ │ └── test_middleware.py ├── urls.py ├── utils │ ├── __init__.py │ ├── conf.py │ ├── highlighting.py │ ├── runner.py │ └── tests │ │ ├── __init__.py │ │ ├── colab_settings.py │ │ ├── plugins.d │ │ ├── gitlab.py │ │ ├── noosfero.py │ │ ├── plugin_test │ │ └── spb.py │ │ └── test_conf.py ├── widgets │ ├── __init__.py │ ├── admin.py │ ├── dashboard │ │ ├── __init__.py │ │ ├── dashboard_collaboration_graph.py │ │ └── dashboard_latest_collaborations.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── profile_widget.py │ ├── templates │ │ └── widgets │ │ │ ├── dashboard_collaboration_graph.html │ │ │ └── dashboard_latest_collaborations.html │ ├── templatetags │ │ ├── __init__.py │ │ └── widgets_tag.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_profile_widget.py │ │ ├── test_widget_manager.py │ │ └── test_widgets.py │ ├── views.py │ └── widget_manager.py └── wsgi.py ├── diagrama_classes.asta ├── docker-compose.yml ├── docs ├── Makefile └── source │ ├── conf.py │ ├── dev.rst │ ├── index.rst │ ├── plugindev.rst │ ├── static │ └── colab-basics.jpg │ └── user.rst ├── features ├── environment.py ├── home_redirect.feature ├── profile_edition.feature ├── steps │ ├── user_steps.py │ └── web_steps.py ├── user_sign_in.feature └── user_sign_up.feature ├── misc ├── etc │ ├── colab │ │ ├── gunicorn.py │ │ ├── plugins.d │ │ │ ├── audiencias.py │ │ │ ├── discourse.py │ │ │ ├── edemocracia.py │ │ │ ├── tos.py │ │ │ └── wikilegis.py │ │ ├── settings.d │ │ │ ├── 01-database.py │ │ │ ├── 02-memcached.py │ │ │ └── 03-logging.py │ │ ├── settings.py │ │ └── widgets.d │ │ │ ├── audiencias_widgets.py │ │ │ ├── discourse_widgets.py │ │ │ └── wikilegis_widgets.py │ ├── cron.d │ │ ├── colab-audiencias │ │ └── colab-wikilegis │ └── nginx │ │ └── conf.d │ │ └── colab.conf └── lib │ └── systemd │ └── system │ ├── celerybeat.service │ ├── celeryd.service │ └── colab.service ├── scripts ├── remove-all-containers.sh ├── remove-all-volumes.sh └── stop-all-containers.sh ├── setup.cfg ├── setup.py ├── start-colab.sh ├── tests ├── __init__.py ├── colab_settings.py ├── run.py ├── settings.d │ └── settings.py ├── test_data.json └── widgets.d │ ├── charts_widget.py │ └── dashboard_widget.py └── vagrant ├── bootstrap.sh ├── centos.sh ├── misc └── etc │ ├── default │ ├── celerybeat │ └── celeryd │ └── init.d │ ├── celerybeat │ ├── celeryd │ └── solr ├── provision.sh ├── solr └── start.sh └── ubuntu.sh /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/.tx/config -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/README.rst -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/Vagrantfile -------------------------------------------------------------------------------- /colab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/__init__.py -------------------------------------------------------------------------------- /colab/accounts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/__init__.py -------------------------------------------------------------------------------- /colab/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/admin.py -------------------------------------------------------------------------------- /colab/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/apps.py -------------------------------------------------------------------------------- /colab/accounts/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/backends.py -------------------------------------------------------------------------------- /colab/accounts/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/context_processors.py -------------------------------------------------------------------------------- /colab/accounts/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/filters.py -------------------------------------------------------------------------------- /colab/accounts/fixtures/test_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/fixtures/test_user.json -------------------------------------------------------------------------------- /colab/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/forms.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0002_user_needs_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0002_user_needs_update.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0003_auto_20141218_1755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0003_auto_20141218_1755.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0004_auto_20150311_1818.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0004_auto_20150311_1818.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0005_auto_20150312_1454.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0005_auto_20150312_1454.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0006_auto_20150828_1719.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0006_auto_20150828_1719.py -------------------------------------------------------------------------------- /colab/accounts/migrations/0007_auto_20151105_0120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/migrations/0007_auto_20151105_0120.py -------------------------------------------------------------------------------- /colab/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/models.py -------------------------------------------------------------------------------- /colab/accounts/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/signals.py -------------------------------------------------------------------------------- /colab/accounts/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tasks.py -------------------------------------------------------------------------------- /colab/accounts/templates/accounts/emails/email_verification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/accounts/emails/email_verification.txt -------------------------------------------------------------------------------- /colab/accounts/templates/accounts/manage_subscriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/accounts/manage_subscriptions.html -------------------------------------------------------------------------------- /colab/accounts/templates/accounts/user_create_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/accounts/user_create_form.html -------------------------------------------------------------------------------- /colab/accounts/templates/accounts/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/accounts/user_detail.html -------------------------------------------------------------------------------- /colab/accounts/templates/accounts/user_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/accounts/user_update_form.html -------------------------------------------------------------------------------- /colab/accounts/templates/emails/create_list_confirmation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/emails/create_list_confirmation.txt -------------------------------------------------------------------------------- /colab/accounts/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/login.html -------------------------------------------------------------------------------- /colab/accounts/templates/registration/password_change_form_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/password_change_form_custom.html -------------------------------------------------------------------------------- /colab/accounts/templates/registration/password_reset_complete_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/password_reset_complete_custom.html -------------------------------------------------------------------------------- /colab/accounts/templates/registration/password_reset_confirm_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/password_reset_confirm_custom.html -------------------------------------------------------------------------------- /colab/accounts/templates/registration/password_reset_done_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/password_reset_done_custom.html -------------------------------------------------------------------------------- /colab/accounts/templates/registration/password_reset_email_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/password_reset_email_custom.html -------------------------------------------------------------------------------- /colab/accounts/templates/registration/password_reset_form_custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/registration/password_reset_form_custom.html -------------------------------------------------------------------------------- /colab/accounts/templates/search/indexes/accounts/user_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/search/indexes/accounts/user_text.txt -------------------------------------------------------------------------------- /colab/accounts/templates/search/user_search_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/search/user_search_preview.html -------------------------------------------------------------------------------- /colab/accounts/templates/widgets/collaboration_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/widgets/collaboration_chart.html -------------------------------------------------------------------------------- /colab/accounts/templates/widgets/latest_contributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templates/widgets/latest_contributions.html -------------------------------------------------------------------------------- /colab/accounts/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/accounts/templatetags/gravatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/templatetags/gravatar.py -------------------------------------------------------------------------------- /colab/accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/accounts/tests/test_context_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_context_processor.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_email_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_email_validation.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_forms.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_request.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_tasks.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_user.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_utils_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_utils_validators.py -------------------------------------------------------------------------------- /colab/accounts/tests/test_view_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/test_view_signup.py -------------------------------------------------------------------------------- /colab/accounts/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/tests/utils.py -------------------------------------------------------------------------------- /colab/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/urls.py -------------------------------------------------------------------------------- /colab/accounts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/accounts/utils/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/utils/email.py -------------------------------------------------------------------------------- /colab/accounts/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/utils/validators.py -------------------------------------------------------------------------------- /colab/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/views.py -------------------------------------------------------------------------------- /colab/accounts/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/accounts/widgets/collaboration_chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/widgets/collaboration_chart.py -------------------------------------------------------------------------------- /colab/accounts/widgets/latest_contributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/accounts/widgets/latest_contributions.py -------------------------------------------------------------------------------- /colab/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/celery.py -------------------------------------------------------------------------------- /colab/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/conf/plugin_template/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/setup.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/__init__.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/apps.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/data_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/data_importer.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/diazo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/diazo.xml -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/models.py: -------------------------------------------------------------------------------- 1 | # Your models here. 2 | -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/search_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/search_indexes.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/urls.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/src/app_name/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/src/app_name/views.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/conf/plugin_template/tests/colab_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/tests/colab_settings.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/tests/plugins.d/app_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/tests/plugins.d/app_name.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/tests/runtests.py -------------------------------------------------------------------------------- /colab/conf/plugin_template/tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/conf/plugin_template/tests/test_plugin.py -------------------------------------------------------------------------------- /colab/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/exceptions.py -------------------------------------------------------------------------------- /colab/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/__init__.py -------------------------------------------------------------------------------- /colab/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/admin.py -------------------------------------------------------------------------------- /colab/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/apps.py -------------------------------------------------------------------------------- /colab/home/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/context_processors.py -------------------------------------------------------------------------------- /colab/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/models.py -------------------------------------------------------------------------------- /colab/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/tests.py -------------------------------------------------------------------------------- /colab/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/home/views.py -------------------------------------------------------------------------------- /colab/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /colab/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /colab/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /colab/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /colab/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/management/commands/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/commands/celery.py -------------------------------------------------------------------------------- /colab/management/commands/initconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/commands/initconfig.py -------------------------------------------------------------------------------- /colab/management/commands/initdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/commands/initdb.py -------------------------------------------------------------------------------- /colab/management/commands/initwidgetsconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/commands/initwidgetsconfig.py -------------------------------------------------------------------------------- /colab/management/commands/startplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/commands/startplugin.py -------------------------------------------------------------------------------- /colab/management/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/management/tests/test_celery_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/tests/test_celery_command.py -------------------------------------------------------------------------------- /colab/management/tests/test_initconfig_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/tests/test_initconfig_command.py -------------------------------------------------------------------------------- /colab/management/tests/test_startplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/management/tests/test_startplugin.py -------------------------------------------------------------------------------- /colab/middlewares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/middlewares/cookie_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/middlewares/cookie_middleware.py -------------------------------------------------------------------------------- /colab/middlewares/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/middlewares/redirect_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/middlewares/redirect_login.py -------------------------------------------------------------------------------- /colab/middlewares/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/middlewares/tests/test_cookie_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/middlewares/tests/test_cookie_middleware.py -------------------------------------------------------------------------------- /colab/middlewares/tests/test_redirect_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/middlewares/tests/test_redirect_login.py -------------------------------------------------------------------------------- /colab/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/__init__.py -------------------------------------------------------------------------------- /colab/plugins/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/apps.py -------------------------------------------------------------------------------- /colab/plugins/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/conf.py -------------------------------------------------------------------------------- /colab/plugins/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/context_processors.py -------------------------------------------------------------------------------- /colab/plugins/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/data/__init__.py -------------------------------------------------------------------------------- /colab/plugins/data/base_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/data/base_importer.py -------------------------------------------------------------------------------- /colab/plugins/data/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/data/tasks.py -------------------------------------------------------------------------------- /colab/plugins/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/exceptions.py -------------------------------------------------------------------------------- /colab/plugins/fixtures/sample_user_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/fixtures/sample_user_plugin.json -------------------------------------------------------------------------------- /colab/plugins/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/helpers.py -------------------------------------------------------------------------------- /colab/plugins/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/migrations/0001_initial.py -------------------------------------------------------------------------------- /colab/plugins/migrations/0002_auto_20160106_1843.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/migrations/0002_auto_20160106_1843.py -------------------------------------------------------------------------------- /colab/plugins/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/plugins/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/models.py -------------------------------------------------------------------------------- /colab/plugins/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tasks.py -------------------------------------------------------------------------------- /colab/plugins/templates/plugins/menu_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/templates/plugins/menu_template.html -------------------------------------------------------------------------------- /colab/plugins/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/plugins/templatetags/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/templatetags/plugins.py -------------------------------------------------------------------------------- /colab/plugins/templatetags/set_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/templatetags/set_var.py -------------------------------------------------------------------------------- /colab/plugins/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/plugins/tests/test_context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tests/test_context_processors.py -------------------------------------------------------------------------------- /colab/plugins/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tests/test_helpers.py -------------------------------------------------------------------------------- /colab/plugins/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tests/test_tasks.py -------------------------------------------------------------------------------- /colab/plugins/tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tests/test_templatetags.py -------------------------------------------------------------------------------- /colab/plugins/tests/test_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tests/test_timestamp.py -------------------------------------------------------------------------------- /colab/plugins/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/tests/test_views.py -------------------------------------------------------------------------------- /colab/plugins/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/urls.py -------------------------------------------------------------------------------- /colab/plugins/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/plugins/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/apps.py -------------------------------------------------------------------------------- /colab/plugins/utils/collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/collaborations.py -------------------------------------------------------------------------------- /colab/plugins/utils/filters_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/filters_importer.py -------------------------------------------------------------------------------- /colab/plugins/utils/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/menu.py -------------------------------------------------------------------------------- /colab/plugins/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/models.py -------------------------------------------------------------------------------- /colab/plugins/utils/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/signals.py -------------------------------------------------------------------------------- /colab/plugins/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/plugins/utils/tests/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/tests/test_apps.py -------------------------------------------------------------------------------- /colab/plugins/utils/tests/test_collaboration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/tests/test_collaboration.py -------------------------------------------------------------------------------- /colab/plugins/utils/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/utils/tests/test_signals.py -------------------------------------------------------------------------------- /colab/plugins/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/plugins/views.py -------------------------------------------------------------------------------- /colab/queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/queue/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/queue/command.py -------------------------------------------------------------------------------- /colab/rss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/rss/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/rss/feeds.py -------------------------------------------------------------------------------- /colab/rss/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/rss/urls.py -------------------------------------------------------------------------------- /colab/search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/admin.py -------------------------------------------------------------------------------- /colab/search/base_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/base_indexes.py -------------------------------------------------------------------------------- /colab/search/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/search/fixtures/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/fixtures/test_data.json -------------------------------------------------------------------------------- /colab/search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/forms.py -------------------------------------------------------------------------------- /colab/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/models.py -------------------------------------------------------------------------------- /colab/search/templates/message-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templates/message-preview.html -------------------------------------------------------------------------------- /colab/search/templates/search-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templates/search-base.html -------------------------------------------------------------------------------- /colab/search/templates/search/includes/search_filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templates/search/includes/search_filters.html -------------------------------------------------------------------------------- /colab/search/templates/search/search-user-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templates/search/search-user-preview.html -------------------------------------------------------------------------------- /colab/search/templates/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templates/search/search.html -------------------------------------------------------------------------------- /colab/search/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/search/templatetags/get_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templatetags/get_operations.py -------------------------------------------------------------------------------- /colab/search/templatetags/search_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templatetags/search_get.py -------------------------------------------------------------------------------- /colab/search/templatetags/search_preview_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/templatetags/search_preview_templates.py -------------------------------------------------------------------------------- /colab/search/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/search/tests/test_base_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/tests/test_base_index.py -------------------------------------------------------------------------------- /colab/search/tests/test_search_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/tests/test_search_view.py -------------------------------------------------------------------------------- /colab/search/tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/tests/test_templatetags.py -------------------------------------------------------------------------------- /colab/search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/urls.py -------------------------------------------------------------------------------- /colab/search/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/search/utils/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/utils/url.py -------------------------------------------------------------------------------- /colab/search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/search/views.py -------------------------------------------------------------------------------- /colab/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/settings.py -------------------------------------------------------------------------------- /colab/signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/signals/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/signals/exceptions.py -------------------------------------------------------------------------------- /colab/signals/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/signals/signals.py -------------------------------------------------------------------------------- /colab/signals/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/signals/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/signals/tests/test_signals.py -------------------------------------------------------------------------------- /colab/static/css/footer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/static/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/css/header.css -------------------------------------------------------------------------------- /colab/static/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/css/screen.css -------------------------------------------------------------------------------- /colab/static/img/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/COPYRIGHT -------------------------------------------------------------------------------- /colab/static/img/cc_by_sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/cc_by_sa.png -------------------------------------------------------------------------------- /colab/static/img/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/fav.ico -------------------------------------------------------------------------------- /colab/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/logo.svg -------------------------------------------------------------------------------- /colab/static/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/plus.png -------------------------------------------------------------------------------- /colab/static/img/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/rss.png -------------------------------------------------------------------------------- /colab/static/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/user.png -------------------------------------------------------------------------------- /colab/static/img/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/img/x.png -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap-datetimepicker/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap-datetimepicker/README -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.es.js -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.pt-BR.js -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /colab/static/third-party/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /colab/static/third-party/chartjs/js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/chartjs/js/Chart.min.js -------------------------------------------------------------------------------- /colab/static/third-party/chroma/js/chroma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/chroma/js/chroma.min.js -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/css/font-awesome-ie7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/css/font-awesome-ie7.min.css -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /colab/static/third-party/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /colab/static/third-party/highcharts/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/highcharts/js/highcharts.js -------------------------------------------------------------------------------- /colab/static/third-party/jquery-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/jquery-2.0.3.min.js -------------------------------------------------------------------------------- /colab/static/third-party/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/jquery.cookie.js -------------------------------------------------------------------------------- /colab/static/third-party/jquery.debouncedresize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/jquery.debouncedresize.js -------------------------------------------------------------------------------- /colab/static/third-party/ribbon/gh-fork-ribbon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/ribbon/gh-fork-ribbon.css -------------------------------------------------------------------------------- /colab/static/third-party/ribbon/gh-fork-ribbon.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/static/third-party/ribbon/gh-fork-ribbon.ie.css -------------------------------------------------------------------------------- /colab/super_archives/tests/test_utils_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/super_archives/tests/test_utils_collaborations.py -------------------------------------------------------------------------------- /colab/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/403.html -------------------------------------------------------------------------------- /colab/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/404.html -------------------------------------------------------------------------------- /colab/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/500.html -------------------------------------------------------------------------------- /colab/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/base.html -------------------------------------------------------------------------------- /colab/templates/doughnut-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/doughnut-chart.html -------------------------------------------------------------------------------- /colab/templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/footer.html -------------------------------------------------------------------------------- /colab/templates/header-slim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/header-slim.html -------------------------------------------------------------------------------- /colab/templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/header.html -------------------------------------------------------------------------------- /colab/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/home.html -------------------------------------------------------------------------------- /colab/templates/includes/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/includes/google_analytics.html -------------------------------------------------------------------------------- /colab/templates/pizza-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/templates/pizza-chart.html -------------------------------------------------------------------------------- /colab/tz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/tz/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/tz/middleware.py -------------------------------------------------------------------------------- /colab/tz/templates/tz/set_utc_offset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/tz/templates/tz/set_utc_offset.html -------------------------------------------------------------------------------- /colab/tz/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/tz/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/tz/tests/test_middleware.py -------------------------------------------------------------------------------- /colab/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/urls.py -------------------------------------------------------------------------------- /colab/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/utils/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/conf.py -------------------------------------------------------------------------------- /colab/utils/highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/highlighting.py -------------------------------------------------------------------------------- /colab/utils/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/runner.py -------------------------------------------------------------------------------- /colab/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/utils/tests/colab_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/tests/colab_settings.py -------------------------------------------------------------------------------- /colab/utils/tests/plugins.d/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/tests/plugins.d/gitlab.py -------------------------------------------------------------------------------- /colab/utils/tests/plugins.d/noosfero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/tests/plugins.d/noosfero.py -------------------------------------------------------------------------------- /colab/utils/tests/plugins.d/plugin_test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/utils/tests/plugins.d/spb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/tests/plugins.d/spb.py -------------------------------------------------------------------------------- /colab/utils/tests/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/utils/tests/test_conf.py -------------------------------------------------------------------------------- /colab/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/widgets/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/admin.py -------------------------------------------------------------------------------- /colab/widgets/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/widgets/dashboard/dashboard_collaboration_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/dashboard/dashboard_collaboration_graph.py -------------------------------------------------------------------------------- /colab/widgets/dashboard/dashboard_latest_collaborations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/dashboard/dashboard_latest_collaborations.py -------------------------------------------------------------------------------- /colab/widgets/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/widgets/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/models.py -------------------------------------------------------------------------------- /colab/widgets/profile_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/profile_widget.py -------------------------------------------------------------------------------- /colab/widgets/templates/widgets/dashboard_collaboration_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/templates/widgets/dashboard_collaboration_graph.html -------------------------------------------------------------------------------- /colab/widgets/templates/widgets/dashboard_latest_collaborations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/templates/widgets/dashboard_latest_collaborations.html -------------------------------------------------------------------------------- /colab/widgets/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/widgets/templatetags/widgets_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/templatetags/widgets_tag.py -------------------------------------------------------------------------------- /colab/widgets/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /colab/widgets/tests/test_profile_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/tests/test_profile_widget.py -------------------------------------------------------------------------------- /colab/widgets/tests/test_widget_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/tests/test_widget_manager.py -------------------------------------------------------------------------------- /colab/widgets/tests/test_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/tests/test_widgets.py -------------------------------------------------------------------------------- /colab/widgets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/views.py -------------------------------------------------------------------------------- /colab/widgets/widget_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/widgets/widget_manager.py -------------------------------------------------------------------------------- /colab/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/colab/wsgi.py -------------------------------------------------------------------------------- /diagrama_classes.asta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/diagrama_classes.asta -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/source/dev.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/plugindev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/source/plugindev.rst -------------------------------------------------------------------------------- /docs/source/static/colab-basics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/source/static/colab-basics.jpg -------------------------------------------------------------------------------- /docs/source/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/docs/source/user.rst -------------------------------------------------------------------------------- /features/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/environment.py -------------------------------------------------------------------------------- /features/home_redirect.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/home_redirect.feature -------------------------------------------------------------------------------- /features/profile_edition.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/profile_edition.feature -------------------------------------------------------------------------------- /features/steps/user_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/steps/user_steps.py -------------------------------------------------------------------------------- /features/steps/web_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/steps/web_steps.py -------------------------------------------------------------------------------- /features/user_sign_in.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/user_sign_in.feature -------------------------------------------------------------------------------- /features/user_sign_up.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/features/user_sign_up.feature -------------------------------------------------------------------------------- /misc/etc/colab/gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/gunicorn.py -------------------------------------------------------------------------------- /misc/etc/colab/plugins.d/audiencias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/plugins.d/audiencias.py -------------------------------------------------------------------------------- /misc/etc/colab/plugins.d/discourse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/plugins.d/discourse.py -------------------------------------------------------------------------------- /misc/etc/colab/plugins.d/edemocracia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/plugins.d/edemocracia.py -------------------------------------------------------------------------------- /misc/etc/colab/plugins.d/tos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/plugins.d/tos.py -------------------------------------------------------------------------------- /misc/etc/colab/plugins.d/wikilegis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/plugins.d/wikilegis.py -------------------------------------------------------------------------------- /misc/etc/colab/settings.d/01-database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/settings.d/01-database.py -------------------------------------------------------------------------------- /misc/etc/colab/settings.d/02-memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/settings.d/02-memcached.py -------------------------------------------------------------------------------- /misc/etc/colab/settings.d/03-logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/settings.d/03-logging.py -------------------------------------------------------------------------------- /misc/etc/colab/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/settings.py -------------------------------------------------------------------------------- /misc/etc/colab/widgets.d/audiencias_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/widgets.d/audiencias_widgets.py -------------------------------------------------------------------------------- /misc/etc/colab/widgets.d/discourse_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/widgets.d/discourse_widgets.py -------------------------------------------------------------------------------- /misc/etc/colab/widgets.d/wikilegis_widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/colab/widgets.d/wikilegis_widgets.py -------------------------------------------------------------------------------- /misc/etc/cron.d/colab-audiencias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/cron.d/colab-audiencias -------------------------------------------------------------------------------- /misc/etc/cron.d/colab-wikilegis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/cron.d/colab-wikilegis -------------------------------------------------------------------------------- /misc/etc/nginx/conf.d/colab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/etc/nginx/conf.d/colab.conf -------------------------------------------------------------------------------- /misc/lib/systemd/system/celerybeat.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/lib/systemd/system/celerybeat.service -------------------------------------------------------------------------------- /misc/lib/systemd/system/celeryd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/lib/systemd/system/celeryd.service -------------------------------------------------------------------------------- /misc/lib/systemd/system/colab.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/misc/lib/systemd/system/colab.service -------------------------------------------------------------------------------- /scripts/remove-all-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/scripts/remove-all-containers.sh -------------------------------------------------------------------------------- /scripts/remove-all-volumes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/scripts/remove-all-volumes.sh -------------------------------------------------------------------------------- /scripts/stop-all-containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/scripts/stop-all-containers.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/setup.py -------------------------------------------------------------------------------- /start-colab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/start-colab.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/colab_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/tests/colab_settings.py -------------------------------------------------------------------------------- /tests/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/tests/run.py -------------------------------------------------------------------------------- /tests/settings.d/settings.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/tests/test_data.json -------------------------------------------------------------------------------- /tests/widgets.d/charts_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/tests/widgets.d/charts_widget.py -------------------------------------------------------------------------------- /tests/widgets.d/dashboard_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/tests/widgets.d/dashboard_widget.py -------------------------------------------------------------------------------- /vagrant/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/bootstrap.sh -------------------------------------------------------------------------------- /vagrant/centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/centos.sh -------------------------------------------------------------------------------- /vagrant/misc/etc/default/celerybeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/misc/etc/default/celerybeat -------------------------------------------------------------------------------- /vagrant/misc/etc/default/celeryd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/misc/etc/default/celeryd -------------------------------------------------------------------------------- /vagrant/misc/etc/init.d/celerybeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/misc/etc/init.d/celerybeat -------------------------------------------------------------------------------- /vagrant/misc/etc/init.d/celeryd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/misc/etc/init.d/celeryd -------------------------------------------------------------------------------- /vagrant/misc/etc/init.d/solr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/misc/etc/init.d/solr -------------------------------------------------------------------------------- /vagrant/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/provision.sh -------------------------------------------------------------------------------- /vagrant/solr/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/solr/start.sh -------------------------------------------------------------------------------- /vagrant/ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labhackercd/edemocracia-colab/HEAD/vagrant/ubuntu.sh --------------------------------------------------------------------------------