c2cgeoportal-geoportal 2.9rc82__py3-none-any.whl → 2.9rc83__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/Dockerfile +1 -1
- c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/env.project +4 -0
- c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/CONST_CHANGELOG.txt +37 -0
- c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/geoportal/CONST_vars.yaml +1 -2
- {c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/METADATA +1 -1
- {c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/RECORD +9 -9
- {c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/WHEEL +0 -0
- {c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/entry_points.txt +0 -0
- {c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/top_level.txt +0 -0
@@ -14,7 +14,7 @@ ENV CONFIG_VARS sqlalchemy.url sqlalchemy.pool_recycle sqlalchemy.pool_size sqla
|
|
14
14
|
dbsessions urllogin host_forward_host headers_whitelist headers_blacklist \
|
15
15
|
smtp c2c.base_path welcome_email \
|
16
16
|
lingva_extractor interfaces_config interfaces devserver_url api authentication intranet metrics pdfreport \
|
17
|
-
vector_tiles i18next main_ogc_server static_files
|
17
|
+
vector_tiles i18next main_ogc_server static_files http_options
|
18
18
|
|
19
19
|
COPY . /tmp/config/
|
20
20
|
|
@@ -40,6 +40,10 @@ TILEGENERATION_SQS_QUEUE=<queue_name>
|
|
40
40
|
TILEGENERATION_S3_BUCKET=<bucket_name>
|
41
41
|
TILEGENERATION_AZURE_CONTAINER=<container_name>
|
42
42
|
|
43
|
+
# Should be filed with a strong secret, with e.g. `pwgen --secure 16`
|
44
|
+
# TILECLOUD_CHAIN_SESSION_SECRET=
|
45
|
+
# TILECLOUD_CHAIN_SESSION_SALT=
|
46
|
+
|
43
47
|
# For production
|
44
48
|
# FRONT_INNER_PORT=80
|
45
49
|
# FRONT_CONFIG=haproxy
|
@@ -58,6 +58,43 @@ Information
|
|
58
58
|
role and when we have a reverse proxy with cache. Now it's always set to private for all the endpoints
|
59
59
|
that use the authentication.
|
60
60
|
|
61
|
+
Changes to apply
|
62
|
+
================
|
63
|
+
|
64
|
+
1. In the Scss file named `geoportal/geomapfish_geoportal/static-ngeo/js/apps/sass/<interface>.scss`
|
65
|
+
be sure that you import the `gmf/controller/<interface>.scss` at the top of the file, before you
|
66
|
+
can't use the variables.
|
67
|
+
|
68
|
+
2. The environment variable TILECLOUD_CHAIN_SESSION_SECRET and TILECLOUD_CHAIN_SESSION_SALT from the file
|
69
|
+
`env.project` should be uncomment and filled with a strong secret, e.g. with `pwgen --secure 16`.
|
70
|
+
|
71
|
+
3. Nginject migration:
|
72
|
+
the @ngInject annotation is no more used, you should pass an array in the function or use the $inject property.
|
73
|
+
e.g. before:
|
74
|
+
```javascript
|
75
|
+
class Controller {
|
76
|
+
/**
|
77
|
+
* ...
|
78
|
+
* @ngInject
|
79
|
+
*/
|
80
|
+
constructor($scope, $injector) {
|
81
|
+
...
|
82
|
+
}
|
83
|
+
}
|
84
|
+
```
|
85
|
+
e.g. after:
|
86
|
+
```javascript
|
87
|
+
class Controller {
|
88
|
+
/**
|
89
|
+
* ...
|
90
|
+
*/
|
91
|
+
constructor($scope, $injector) {
|
92
|
+
...
|
93
|
+
}
|
94
|
+
}
|
95
|
+
Controller.$inject = ['$scope', '$injector'];
|
96
|
+
```
|
97
|
+
|
61
98
|
|
62
99
|
=============
|
63
100
|
Version 2.8.0
|
{c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/RECORD
RENAMED
@@ -63,7 +63,7 @@ c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/.gitignore,sha2
|
|
63
63
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/.pre-commit-config.yaml,sha256=rW61ldm4Yhzj_8XSb2tZHQ10hlQ6avm-3WIv7yS5S64,774
|
64
64
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/.prettierignore,sha256=PcDfauWwzv1pnJgC9HR1zvv06Q01CwzGzzc0iLSNcZk,9
|
65
65
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/.prettierrc.yaml,sha256=WbjZCtw0hBlDB2FYJanFJzAvUsNTxgwn62YBZ-Xbwkw,43
|
66
|
-
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/Dockerfile,sha256=
|
66
|
+
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/Dockerfile,sha256=MzG4WCXX1dQ1nI-fyk6SPSgByEitKxyecQIIppzXXqg,3273
|
67
67
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/Makefile,sha256=0sXlZLYU2VRFwbaO4Dmw2J36m7JRoViJJhfgtXQc48k,3124
|
68
68
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/README.rst,sha256=QJcaUtT05atb5x8SJYflSt0YIJkbAz0Zh39_FYtyFks,423
|
69
69
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/build,sha256=CjYe1cIL-TsKPbdxy1zStTUEGguILXpyUC63X2_Cy8c,7010
|
@@ -73,7 +73,7 @@ c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/docker-compose-
|
|
73
73
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/docker-compose.override.sample.yaml,sha256=X5vtxQ0pvLy6FSrooVmt90j4C4YNxtkSKzbPDOb4uB8,2615
|
74
74
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/docker-compose.yaml,sha256=ZpQ33JhdBxkoUNBV9kB5f07p8DpqgvJ3-Mp0SzLnJ6w,2380
|
75
75
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/env.default,sha256=dy2HMaFVI72-sVvQdxMioXJnd8Kz5vAkdEJzQJoz8GU,3145
|
76
|
-
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/env.project,sha256=
|
76
|
+
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/env.project,sha256=dVxvb9Dji7FKDuh-60NKiy_UfHigc5LPyL901BSBrPU,2250
|
77
77
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/project.yaml,sha256=3tNtVcoIug5LNZoZsUpjm_YRCZQMAKzYWNL9ZdjkPC8,495
|
78
78
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/pyproject.toml,sha256=RnvMmtD40v3rju1HoIOX7pQfVHUKPptxaVDoZxuF7oU,107
|
79
79
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/run_alembic.sh,sha256=VcrDFPAGlrxXtn4N8RcPhI90uZ8shDrGowALuwx8gnM,235
|
@@ -137,11 +137,11 @@ c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/tests/test_app.
|
|
137
137
|
c2cgeoportal_geoportal/scaffolds/create/{{cookiecutter.project}}/tilegeneration/config.yaml.tmpl,sha256=EdoI4sfBw1Neq4Qwx7kSHCK_wcUCyBKNhJSclYKVW4o,6197
|
138
138
|
c2cgeoportal_geoportal/scaffolds/update/cookiecutter.json,sha256=x3FFn3b67GPGCsjg36iGXCudjaTSfwGHcwHS6HHVpPQ,539
|
139
139
|
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/.upgrade.yaml,sha256=8tPCziX4Wh6a2EOdjpLtvyqNtKcI7Rtjo8-bLQO8_Gg,2741
|
140
|
-
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/CONST_CHANGELOG.txt,sha256=
|
140
|
+
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/CONST_CHANGELOG.txt,sha256=yjofPpXBpDCHGojIkEqshwL7-vxQoVYKiBZMFURbnMs,11429
|
141
141
|
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/CONST_create_template/tests/test_testapp.py,sha256=FNZI6uMsZttVpWi0_TEmBgV6MjQDUmE5ar9be3FFkV8,1794
|
142
142
|
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/geoportal/.CONST_vars.yaml.swp,sha256=ZaB6IqVy0WDyGXRP7VQf8_LL_wjccSdthJtdIzw8FmE,16384
|
143
143
|
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/geoportal/CONST_config-schema.yaml,sha256=yGKWjxc_U50dOpgknUwdAUHg1HK0Txn4fhEC1KeKg9c,23603
|
144
|
-
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/geoportal/CONST_vars.yaml,sha256=
|
144
|
+
c2cgeoportal_geoportal/scaffolds/update/{{cookiecutter.project}}/geoportal/CONST_vars.yaml,sha256=NH78qJT6lnvALG6MhjuqAHu1-TEiEmssVHxLToPjjVk,49003
|
145
145
|
c2cgeoportal_geoportal/scripts/__init__.py,sha256=hHwjhQaM_T2EaupeFIyjl0N67Bcl3M99UMcCdYAjQlQ,2929
|
146
146
|
c2cgeoportal_geoportal/scripts/c2cupgrade.py,sha256=7smnq2yxs1hAF1CiyE9WfgAqNKjjtrtHevY321i-wio,36826
|
147
147
|
c2cgeoportal_geoportal/scripts/create_demo_theme.py,sha256=-SL-fvAPjgiJZEKYcbhXsZm713txhtWQB18X231k6xQ,3263
|
@@ -187,8 +187,8 @@ tests/test_mapserverproxy_route_predicate.py,sha256=SzILSSzIuilzIkUYVPZiVzLwW1du
|
|
187
187
|
tests/test_raster.py,sha256=82NJ2MXgZlMqs0ytN-VgNw376iURdk4PkAg__dyh5ns,11948
|
188
188
|
tests/test_wmstparsing.py,sha256=xjA8nJuXFl3H5Bfs4sJw_8qX8E8qvAALK7Hs2-DTP2A,9054
|
189
189
|
tests/xmlstr.py,sha256=rkTKSU4FGjupBKLx75H8o-goB0KbQrxDvdpc6xVX_uQ,5985
|
190
|
-
c2cgeoportal_geoportal-2.
|
191
|
-
c2cgeoportal_geoportal-2.
|
192
|
-
c2cgeoportal_geoportal-2.
|
193
|
-
c2cgeoportal_geoportal-2.
|
194
|
-
c2cgeoportal_geoportal-2.
|
190
|
+
c2cgeoportal_geoportal-2.9rc83.dist-info/METADATA,sha256=Z1dYk7Tdkg5zS0vgy3XHawVZnaTwVsJrHJ-uNoYrb8A,1886
|
191
|
+
c2cgeoportal_geoportal-2.9rc83.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
192
|
+
c2cgeoportal_geoportal-2.9rc83.dist-info/entry_points.txt,sha256=3dnX260FsLX_AubeNMdyeta_z1X4CxcD3steAlfPx2I,1414
|
193
|
+
c2cgeoportal_geoportal-2.9rc83.dist-info/top_level.txt,sha256=PJIbY7Nx51dDrJ052f5mDA7c6Tehm5aD-Gb32L_CtJA,29
|
194
|
+
c2cgeoportal_geoportal-2.9rc83.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{c2cgeoportal_geoportal-2.9rc82.dist-info → c2cgeoportal_geoportal-2.9rc83.dist-info}/top_level.txt
RENAMED
File without changes
|