- Timestamp:
- Jun 30, 2015, 11:45:04 AM (9 years ago)
- Location:
- branches/PublicaMundi_David-devel/docs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PublicaMundi_David-devel/docs/intro.rst
r689 r697 9 9 ------------------- 10 10 11 `ZOO-Project <http://zoo-project.org>`__ is a WPS (Web Processing Service) implementation written in C, Python and JavaScript. It is an open source platform which implements the `WPS 1.0.0 <http://www.opengeospatial.org/standards/wps/>`_ and `WPS 2.0.0 <http://www.opengeospatial.org/standards/wps/>`_ standards edited by the `O GC <http://www.opengeospatial.org/>`__ (Open Geospatial Consortium).11 `ZOO-Project <http://zoo-project.org>`__ is a WPS (Web Processing Service) implementation written in C, Python and JavaScript. It is an open source platform which implements the `WPS 1.0.0 <http://www.opengeospatial.org/standards/wps/>`_ and `WPS 2.0.0 <http://www.opengeospatial.org/standards/wps/>`_ standards edited by the `Open Geospatial Consortium <http://www.opengeospatial.org/>`__ (OGC). 12 12 13 13 `ZOO-Project <http://zoo-project.org>`__ provides a developer-friendly framework for creating and chaining WPS compliant Web Services. Its main goal is to provide generic and standard-compliant methods for using existing open source librairies and algorithms as WPS. It also offers efficient tools for creating new innovative web services and applications. -
branches/PublicaMundi_David-devel/docs/kernel/configuration.rst
r696 r697 180 180 ............................... 181 181 182 [database] 183 dbname=zoo_project 184 port=5432 185 user=username 186 host=127.0.0.1 187 type=PG 188 schema=public 189 182 The database section allows to configure the ZOO-Kernel optional 183 databse support. 184 185 .. code-block:: guess 186 187 [database] 188 dbname=zoo_project 189 port=5432 190 user=username 191 host=127.0.0.1 192 type=PG 193 schema=public 190 194 191 195 192 196 .. rubric:: Footnotes 193 197 194 .. [#f1] If GET requests are passed through ``xlink:href`` to 195 the ZOO-Kernel , the latter will execute the request the first time and store the result on disk. The next time the same request is executed, the cached file will be used and this will make your process run much faster. If ``cachedir`` was not specified in the ``main.cfg`` then the ``tmpPath`` value will be used. 198 .. [#f1] If GET requests are passed through ``xlink:href`` to the ZOO-Kernel , the latter will execute the request the first time and store the result on disk. The next time the same request is executed, the cached file will be used and this will make your process run much faster. If ``cachedir`` was not specified in the ``main.cfg`` then the ``tmpPath`` value will be used. 196 199 .. [#f2] Usefull when the :ref:`kernel-mapserver` is activated (available since ZOO-Project version 1.3.0). 197 .. [#f3] ZOO-Kernel and MapServer are sharing the same metadata for 198 OGC Web Services if the :ref:`kernel-mapserver` is activated. 200 .. [#f3] ZOO-Kernel and MapServer are sharing the same metadata for OGC Web Services if the :ref:`kernel-mapserver` is activated. 199 201 200 202 -
branches/PublicaMundi_David-devel/docs/kernel/what.rst
r696 r697 26 26 * **Execute**: Launches computation and returns the output produced by a particular process. 27 27 28 ZOO-Kernel compliancy can be tested using tools such as the WPS Test Suite provided by the `OGC compliancy program <http://cite.opengeospatial.org/>`_ or `XMLint <http://xmlsoft.org/xmllint.html/>`_. 28 ZOO-Kernel compliancy and performances can be tested using the 29 following tools: 30 * `cptesting <https://github.com/WPS-Benchmarking/cptesting>`_ 31 * WPS Test Suite provided by the `OGC compliancy program <http://cite.opengeospatial.org/>`_ 32 * XML responses validity can also be simply tested using `XMLint <http://xmlsoft.org/xmllint.html/>`_. 29 33 30 34 Polyglot … … 63 67 input/output. 64 68 65 ...66 .67 69 70
Note: See TracChangeset
for help on using the changeset viewer.