Browse Source
Merge branch '3.1.x' into votacoes_nominais
pull/3783/head
cristian-longhi
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with
14 additions and
6 deletions
-
CHANGES.md
-
docker/docker-compose.yaml
-
sapl/base/receivers.py
-
sapl/settings.py
-
sapl/templates/base.html
-
setup.py
|
|
@ -1,4 +1,12 @@ |
|
|
|
|
|
|
|
3.1.164-RC1 / 2025-08-05 |
|
|
|
======================== |
|
|
|
|
|
|
|
* Adiciona botoes de impressao na pesquisa de doc adm |
|
|
|
* Fix: conserta erro em historico proposicao |
|
|
|
* Desabilita detalhe de Justificativa Ausência para acesso público |
|
|
|
* Adiciona homepage do parlamentar a perfil público |
|
|
|
|
|
|
|
3.1.164-RC0 / 2025-07-09 |
|
|
|
======================== |
|
|
|
|
|
|
|
|
|
@ -31,7 +31,7 @@ services: |
|
|
|
networks: |
|
|
|
- sapl-net |
|
|
|
sapl: |
|
|
|
image: interlegis/sapl:3.1.164-RC0 |
|
|
|
image: interlegis/sapl:3.1.164-RC1 |
|
|
|
# build: |
|
|
|
# context: ../ |
|
|
|
# dockerfile: ./docker/Dockerfile |
|
|
|
|
|
@ -225,7 +225,7 @@ def signed_files_extraction_function(sender, instance, **kwargs): |
|
|
|
issuer = cert.native['tbs_certificate']['issuer'] |
|
|
|
oname = issuer.get('organization_name', '') |
|
|
|
|
|
|
|
if oname == 'Gov-Br': |
|
|
|
if oname in ('Gov-Br', '1Doc'): |
|
|
|
nome = subject['common_name'].split(':')[0] |
|
|
|
continue |
|
|
|
|
|
|
@ -336,7 +336,7 @@ def signed_files_extraction_function(sender, instance, **kwargs): |
|
|
|
issuer = cert.native['tbs_certificate']['issuer'] |
|
|
|
oname = issuer.get('organization_name', '') |
|
|
|
|
|
|
|
if oname == 'Gov-Br': |
|
|
|
if oname in ('Gov-Br', '1Doc'): |
|
|
|
nome = subject['common_name'].split(':')[0] |
|
|
|
continue |
|
|
|
|
|
|
|
|
|
@ -41,7 +41,7 @@ ALLOWED_HOSTS = ['*'] |
|
|
|
LOGIN_REDIRECT_URL = '/' |
|
|
|
LOGIN_URL = '/login/?next=' |
|
|
|
|
|
|
|
SAPL_VERSION = '3.1.164-RC0' |
|
|
|
SAPL_VERSION = '3.1.164-RC1' |
|
|
|
|
|
|
|
if DEBUG: |
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' |
|
|
|
|
|
@ -200,7 +200,7 @@ |
|
|
|
<small> |
|
|
|
Desenvolvido pelo <a href="http://www.interlegis.leg.br/">Interlegis</a> em software livre e aberto. |
|
|
|
</small> |
|
|
|
<span>Release: 3.1.164-RC0</span> |
|
|
|
<span>Release: 3.1.164-RC1</span> |
|
|
|
</p> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
@ -38,7 +38,7 @@ install_requires = [ |
|
|
|
] |
|
|
|
setup( |
|
|
|
name='interlegis-sapl', |
|
|
|
version='3.1.164-RC0', |
|
|
|
version='3.1.164-RC1', |
|
|
|
packages=find_packages(), |
|
|
|
include_package_data=True, |
|
|
|
license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007', |
|
|
|