Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
jinja2<3.1
sphinx==2.4.3
sphinx_rtd_theme==0.4.3
readthedocs-sphinx-ext==1.0.1
m2r==0.2.1
mistune==2.0.3
sphinxcontrib-httpdomain==1.7.0
sphinxcontrib-openapi==0.7.0
jinja2
sphinx
sphinx_rtd_theme
readthedocs-sphinx-ext
m2r
mistune
sphinxcontrib-httpdomain
sphinxcontrib-openapi
geopandas
seaborn
requests
Expand Down
5 changes: 3 additions & 2 deletions geo/Geoserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -2611,7 +2611,7 @@ def publish_featurestore_sqlview(
GeoserverException
If there is an issue publishing the SQL view.

Notes
Notes
-----
With regards to SQL view parameters, it is advised to read the relevant section from the geoserver docs:
https://docs.geoserver.org/main/en/user/data/database/sqlview.html#parameterizing-sql-views
Expand All @@ -2623,13 +2623,14 @@ def publish_featurestore_sqlview(

The `parameters` iterable must contain dictionaries with this structure:

```
```json
{
"name": "<name of parameter (required)>"
"regexpValidator": "<string containing regex validator> (optional)"
"defaultValue" : "<default value of parameter if not specified (required only for non-string parameters)>"
}
```

"""
if workspace is None:
workspace = "default"
Expand Down
Loading