Skip to content

Commit 57b6301

Browse files
committed
Update docs after the spliting of pywps.response.__init__
1 parent 9a80234 commit 57b6301

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Request and response objects
9595
A MultiDict object containing input values sent by the client.
9696

9797

98-
.. autoclass:: pywps.response.WPSResponse
98+
.. autoclass:: pywps.response.basic.WPSResponse
9999
:members:
100100

101101
.. attribute:: status

docs/process.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The instance of a *Process* needs following attributes to be configured:
5353
:outputs:
5454
list of process outputs
5555
:handler:
56-
method which recieves :class:`pywps.app.WPSRequest` and :class:`pywps.response.WPSResponse` as inputs.
56+
method which recieves :class:`pywps.app.WPSRequest` and :class:`pywps.response.basic.WPSResponse` as inputs.
5757

5858
Example vector buffer process
5959
=============================
@@ -118,12 +118,12 @@ Next we create a new list variables for inputs and outputs.
118118

119119
Next we define the *handler* method. In it, *geospatial analysis
120120
may happen*. The method gets a :class:`pywps.app.WPSRequest` and a
121-
:class:`pywps.response.WPSResponse` object as parameters. In our case, we
121+
:class:`pywps.response.basic.WPSResponse` object as parameters. In our case, we
122122
calculate the buffer around each vector feature using
123123
`GDAL/OGR library <https://gdal.org>`_. We will not got much into the details,
124124
what you should note is how to get input data from the
125125
:class:`pywps.app.WPSRequest` object and how to set data as outputs in the
126-
:class:`pywps.response.WPSResponse` object.
126+
:class:`pywps.response.basic.WPSResponse` object.
127127

128128
.. literalinclude:: demobuffer.py
129129
:language: python

0 commit comments

Comments
 (0)