Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge remote-tracking branch 'origin/2.3' into 2.4 #4951

Merged
merged 11 commits into from
May 20, 2019
2 changes: 1 addition & 1 deletion commons/tests/validators_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class TestUrl():

@pytest.mark.parametrize("valid_url", [
'https://geomapfish.org',
'http://geomapfish.org',
'https://geomapfish.org/functionalities',
'geomapfish.org/functionalities',
'static://img/cadastre.jpeg',
Expand Down
3 changes: 3 additions & 0 deletions doc/integrator/raster.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ One may use GDAL/OGR to convert data to such a format.
We recommend to use a `vrt <https://www.gdal.org/gdal_vrttut.html>`_ file built with
`gdalbuildvrt <https://www.gdal.org/gdalbuildvrt.html>`_.

``nodata`` specifies the nodata value.
By default the nodata value is directly read from the source.

``round`` specifies how the result values should be rounded.
For instance '1': round to the unit, '0.01': round to the hundredth, etc.

Expand Down
2 changes: 1 addition & 1 deletion docker/build/bin/eval-templates
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ do
fi
done

find /app/*_geoportal/static-ngeo/build/ -name '*.js' -print | while read file
find /app/*_geoportal/static-ngeo/build/ \( -name '*.js' -or -name '*.css' -or -name '*.html' \) -print | while read file
do
echo "Evaluate: ${file}"
sed --in-place --expression="s#__ENTRY_POINT__#${VISIBLE_ENTRY_POINT}#g" "${file}"
Expand Down
1 change: 1 addition & 0 deletions geoportal/c2cgeoportal_geoportal/views/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ def _layer_included(tree_item):

def _get_ogc_servers(self, group, depth):
""" Recurse on all children to get unique identifier for each child. """

ogc_servers = set()

# escape loop
Expand Down