├── .directory ├── .env.example ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── bug_report.md │ └── config.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── feature_request.md │ └── bug_report.md └── merge_request_templates │ └── default.md ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── apps ├── __init__.py ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ ├── 1_groups.json │ │ └── 2_superuser_accounts.json │ ├── locale │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ ├── support.py │ │ └── test_models.py │ └── views.py ├── data │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── data_db.json │ ├── helpers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20201126_1512.py │ │ ├── 0003_auto_20201126_1625.py │ │ ├── 0004_auto_20201126_1631.py │ │ ├── 0005_auto_20201201_1438.py │ │ ├── 0006_auto_20201222_1125.py │ │ ├── 0007_auto_20201222_1811.py │ │ └── __init__.py │ ├── models.py │ ├── routers.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ └── test_views.py │ ├── utils │ │ ├── edades.py │ │ ├── fechas.py │ │ ├── lugares.py │ │ └── strings.py │ └── views.py ├── entity │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── exceptions.py │ ├── fixtures │ │ ├── 1_entity.json │ │ ├── 2_initial_learning_models.json │ │ ├── 3_acts.json │ │ ├── 4_act_stats.json │ │ └── 5_occurrences.json │ ├── locale │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── management │ │ └── commands │ │ │ └── stats.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20200918_1856.py │ │ ├── 0003_learningmodel.py │ │ ├── 0004_learningmodel_name_subject.py │ │ ├── 0005_act_file.py │ │ ├── 0005_auto_20201008_1852.py │ │ ├── 0006_auto_20201013_2000.py │ │ ├── 0006_auto_20201014_1751.py │ │ ├── 0007_merge_20201014_2013.py │ │ ├── 0008_auto_20201105_1845.py │ │ ├── 0009_auto_20201106_1553.py │ │ ├── 0010_auto_20201120_1422.py │ │ ├── 0011_ocurrencyentity_text.py │ │ ├── 0012_auto_20201126_1739.py │ │ ├── 0013_ocurrencyentity_human_marked_ocurrency.py │ │ ├── 0014_act_offset_header.py │ │ ├── 0015_ocurrencyentity_human_delete_ocurrency.py │ │ ├── 0016_auto_20210223_1201.py │ │ ├── 0017_actstats.py │ │ ├── 0018_entity_enable_multiple_selection.py │ │ ├── 0019_actstats_extraction_time.py │ │ ├── 0020_actstats_review_time.py │ │ ├── 0021_actstats_begin_review_time.py │ │ ├── 0022_actstats_find_all_ocurrencies.py │ │ ├── 0023_act_hashtext.py │ │ ├── 0024_act_anonymous_file.py │ │ └── __init__.py │ ├── models.py │ ├── routers.py │ ├── serializers.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ ├── faker.py │ │ ├── fixtures.py │ │ ├── support.py │ │ ├── test_models.py │ │ └── test_views.py │ ├── utils │ │ ├── data_visualization.py │ │ ├── general.py │ │ ├── oodocument.py │ │ ├── publicador.py │ │ ├── spacy.py │ │ └── vistas.py │ ├── validator.py │ └── views.py └── i18n_switcher │ ├── __init__.py │ └── templatetags │ ├── __init__.py │ └── i18n_switcher.py ├── bin └── post_compile ├── custom_models └── .gitkeep ├── docker-compose.yml ├── docker-entrypoint.sh ├── docker-restart.sh ├── docker └── development │ ├── Dockerfile │ └── django-entrypoint.sh ├── ia2 ├── __init__.py ├── celery.py ├── router.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── static │ ├── css │ │ └── custom_admin.css │ └── images │ │ ├── flags │ │ ├── arg.png │ │ └── uk.png │ │ └── ia2-logo.png ├── templates │ └── admin │ │ └── base_site.html ├── urls.py └── wsgi.py ├── locale ├── en │ └── LC_MESSAGES │ │ └── django.po └── es │ └── LC_MESSAGES │ └── django.po ├── logs └── .gitkeep ├── manage.py ├── nginx ├── Dockerfile └── nginx.conf ├── pyproject.toml ├── requirements.txt └── requirements ├── base.txt ├── local.txt ├── production.txt └── testing.txt /.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.directory -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ ISSUE_TEMPLATE / feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.github/ ISSUE_TEMPLATE / feature_request.md -------------------------------------------------------------------------------- /.github/ ISSUE_TEMPLATE /bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.github/ ISSUE_TEMPLATE /bug_report.md -------------------------------------------------------------------------------- /.github/ ISSUE_TEMPLATE /config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/ feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.gitlab/issue_templates/ feature_request.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.gitlab/issue_templates/bug_report.md -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.gitlab/merge_request_templates/default.md -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: ./docker-entrypoint.sh 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/__init__.py -------------------------------------------------------------------------------- /apps/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/admin.py -------------------------------------------------------------------------------- /apps/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/apps.py -------------------------------------------------------------------------------- /apps/accounts/fixtures/1_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/fixtures/1_groups.json -------------------------------------------------------------------------------- /apps/accounts/fixtures/2_superuser_accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/fixtures/2_superuser_accounts.json -------------------------------------------------------------------------------- /apps/accounts/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /apps/accounts/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /apps/accounts/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/managers.py -------------------------------------------------------------------------------- /apps/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/models.py -------------------------------------------------------------------------------- /apps/accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/tests/factories.py -------------------------------------------------------------------------------- /apps/accounts/tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/tests/support.py -------------------------------------------------------------------------------- /apps/accounts/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/accounts/tests/test_models.py -------------------------------------------------------------------------------- /apps/accounts/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/data/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/admin.py -------------------------------------------------------------------------------- /apps/data/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/apps.py -------------------------------------------------------------------------------- /apps/data/fixtures/data_db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/fixtures/data_db.json -------------------------------------------------------------------------------- /apps/data/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/helpers.py -------------------------------------------------------------------------------- /apps/data/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/data/migrations/0002_auto_20201126_1512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0002_auto_20201126_1512.py -------------------------------------------------------------------------------- /apps/data/migrations/0003_auto_20201126_1625.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0003_auto_20201126_1625.py -------------------------------------------------------------------------------- /apps/data/migrations/0004_auto_20201126_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0004_auto_20201126_1631.py -------------------------------------------------------------------------------- /apps/data/migrations/0005_auto_20201201_1438.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0005_auto_20201201_1438.py -------------------------------------------------------------------------------- /apps/data/migrations/0006_auto_20201222_1125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0006_auto_20201222_1125.py -------------------------------------------------------------------------------- /apps/data/migrations/0007_auto_20201222_1811.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/migrations/0007_auto_20201222_1811.py -------------------------------------------------------------------------------- /apps/data/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/data/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/models.py -------------------------------------------------------------------------------- /apps/data/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/routers.py -------------------------------------------------------------------------------- /apps/data/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/serializers.py -------------------------------------------------------------------------------- /apps/data/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/data/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/tests/factories.py -------------------------------------------------------------------------------- /apps/data/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/tests/test_views.py -------------------------------------------------------------------------------- /apps/data/utils/edades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/utils/edades.py -------------------------------------------------------------------------------- /apps/data/utils/fechas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/utils/fechas.py -------------------------------------------------------------------------------- /apps/data/utils/lugares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/utils/lugares.py -------------------------------------------------------------------------------- /apps/data/utils/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/utils/strings.py -------------------------------------------------------------------------------- /apps/data/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/data/views.py -------------------------------------------------------------------------------- /apps/entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/entity/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/admin.py -------------------------------------------------------------------------------- /apps/entity/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/apps.py -------------------------------------------------------------------------------- /apps/entity/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/exceptions.py -------------------------------------------------------------------------------- /apps/entity/fixtures/1_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/fixtures/1_entity.json -------------------------------------------------------------------------------- /apps/entity/fixtures/2_initial_learning_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/fixtures/2_initial_learning_models.json -------------------------------------------------------------------------------- /apps/entity/fixtures/3_acts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/fixtures/3_acts.json -------------------------------------------------------------------------------- /apps/entity/fixtures/4_act_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/fixtures/4_act_stats.json -------------------------------------------------------------------------------- /apps/entity/fixtures/5_occurrences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/fixtures/5_occurrences.json -------------------------------------------------------------------------------- /apps/entity/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /apps/entity/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /apps/entity/management/commands/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/management/commands/stats.py -------------------------------------------------------------------------------- /apps/entity/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/entity/migrations/0002_auto_20200918_1856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0002_auto_20200918_1856.py -------------------------------------------------------------------------------- /apps/entity/migrations/0003_learningmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0003_learningmodel.py -------------------------------------------------------------------------------- /apps/entity/migrations/0004_learningmodel_name_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0004_learningmodel_name_subject.py -------------------------------------------------------------------------------- /apps/entity/migrations/0005_act_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0005_act_file.py -------------------------------------------------------------------------------- /apps/entity/migrations/0005_auto_20201008_1852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0005_auto_20201008_1852.py -------------------------------------------------------------------------------- /apps/entity/migrations/0006_auto_20201013_2000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0006_auto_20201013_2000.py -------------------------------------------------------------------------------- /apps/entity/migrations/0006_auto_20201014_1751.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0006_auto_20201014_1751.py -------------------------------------------------------------------------------- /apps/entity/migrations/0007_merge_20201014_2013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0007_merge_20201014_2013.py -------------------------------------------------------------------------------- /apps/entity/migrations/0008_auto_20201105_1845.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0008_auto_20201105_1845.py -------------------------------------------------------------------------------- /apps/entity/migrations/0009_auto_20201106_1553.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0009_auto_20201106_1553.py -------------------------------------------------------------------------------- /apps/entity/migrations/0010_auto_20201120_1422.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0010_auto_20201120_1422.py -------------------------------------------------------------------------------- /apps/entity/migrations/0011_ocurrencyentity_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0011_ocurrencyentity_text.py -------------------------------------------------------------------------------- /apps/entity/migrations/0012_auto_20201126_1739.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0012_auto_20201126_1739.py -------------------------------------------------------------------------------- /apps/entity/migrations/0013_ocurrencyentity_human_marked_ocurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0013_ocurrencyentity_human_marked_ocurrency.py -------------------------------------------------------------------------------- /apps/entity/migrations/0014_act_offset_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0014_act_offset_header.py -------------------------------------------------------------------------------- /apps/entity/migrations/0015_ocurrencyentity_human_delete_ocurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0015_ocurrencyentity_human_delete_ocurrency.py -------------------------------------------------------------------------------- /apps/entity/migrations/0016_auto_20210223_1201.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0016_auto_20210223_1201.py -------------------------------------------------------------------------------- /apps/entity/migrations/0017_actstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0017_actstats.py -------------------------------------------------------------------------------- /apps/entity/migrations/0018_entity_enable_multiple_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0018_entity_enable_multiple_selection.py -------------------------------------------------------------------------------- /apps/entity/migrations/0019_actstats_extraction_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0019_actstats_extraction_time.py -------------------------------------------------------------------------------- /apps/entity/migrations/0020_actstats_review_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0020_actstats_review_time.py -------------------------------------------------------------------------------- /apps/entity/migrations/0021_actstats_begin_review_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0021_actstats_begin_review_time.py -------------------------------------------------------------------------------- /apps/entity/migrations/0022_actstats_find_all_ocurrencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0022_actstats_find_all_ocurrencies.py -------------------------------------------------------------------------------- /apps/entity/migrations/0023_act_hashtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0023_act_hashtext.py -------------------------------------------------------------------------------- /apps/entity/migrations/0024_act_anonymous_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/migrations/0024_act_anonymous_file.py -------------------------------------------------------------------------------- /apps/entity/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/entity/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/models.py -------------------------------------------------------------------------------- /apps/entity/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/routers.py -------------------------------------------------------------------------------- /apps/entity/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/serializers.py -------------------------------------------------------------------------------- /apps/entity/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tasks.py -------------------------------------------------------------------------------- /apps/entity/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/entity/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tests/factories.py -------------------------------------------------------------------------------- /apps/entity/tests/faker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tests/faker.py -------------------------------------------------------------------------------- /apps/entity/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tests/fixtures.py -------------------------------------------------------------------------------- /apps/entity/tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tests/support.py -------------------------------------------------------------------------------- /apps/entity/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tests/test_models.py -------------------------------------------------------------------------------- /apps/entity/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/tests/test_views.py -------------------------------------------------------------------------------- /apps/entity/utils/data_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/utils/data_visualization.py -------------------------------------------------------------------------------- /apps/entity/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/utils/general.py -------------------------------------------------------------------------------- /apps/entity/utils/oodocument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/utils/oodocument.py -------------------------------------------------------------------------------- /apps/entity/utils/publicador.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/utils/publicador.py -------------------------------------------------------------------------------- /apps/entity/utils/spacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/utils/spacy.py -------------------------------------------------------------------------------- /apps/entity/utils/vistas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/utils/vistas.py -------------------------------------------------------------------------------- /apps/entity/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/validator.py -------------------------------------------------------------------------------- /apps/entity/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/entity/views.py -------------------------------------------------------------------------------- /apps/i18n_switcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/i18n_switcher/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/i18n_switcher/templatetags/i18n_switcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/apps/i18n_switcher/templatetags/i18n_switcher.py -------------------------------------------------------------------------------- /bin/post_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/bin/post_compile -------------------------------------------------------------------------------- /custom_models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker-restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/docker-restart.sh -------------------------------------------------------------------------------- /docker/development/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/docker/development/Dockerfile -------------------------------------------------------------------------------- /docker/development/django-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/docker/development/django-entrypoint.sh -------------------------------------------------------------------------------- /ia2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/__init__.py -------------------------------------------------------------------------------- /ia2/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/celery.py -------------------------------------------------------------------------------- /ia2/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/router.py -------------------------------------------------------------------------------- /ia2/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ia2/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/settings/base.py -------------------------------------------------------------------------------- /ia2/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/settings/local.py -------------------------------------------------------------------------------- /ia2/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/settings/production.py -------------------------------------------------------------------------------- /ia2/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/settings/test.py -------------------------------------------------------------------------------- /ia2/static/css/custom_admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/static/css/custom_admin.css -------------------------------------------------------------------------------- /ia2/static/images/flags/arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/static/images/flags/arg.png -------------------------------------------------------------------------------- /ia2/static/images/flags/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/static/images/flags/uk.png -------------------------------------------------------------------------------- /ia2/static/images/ia2-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/static/images/ia2-logo.png -------------------------------------------------------------------------------- /ia2/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/templates/admin/base_site.html -------------------------------------------------------------------------------- /ia2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/urls.py -------------------------------------------------------------------------------- /ia2/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/ia2/wsgi.py -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/manage.py -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements/production.txt -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instituciones-abiertas/ia2-server/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | 3 | gunicorn==19.9.0 4 | whitenoise==3.3.0 5 | sentry-sdk==0.10.2 6 | ${IA2_MODEL_FILE} 7 | -------------------------------------------------------------------------------- /requirements/testing.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | 3 | django-extensions==2.2.1 4 | factory-boy==3.2.0 5 | fpdf==1.7.2 6 | Werkzeug==0.15.6 7 | ${IA2_TEST_MODEL_FILE} 8 | --------------------------------------------------------------------------------