Index: trunk/docs/services/index.txt
===================================================================
--- trunk/docs/services/index.txt	(revision 437)
+++ trunk/docs/services/index.txt	(revision 457)
@@ -12,4 +12,5 @@
    zcfg-reference
    howtos
+   status
    debug
    examples
Index: trunk/docs/services/status.txt
===================================================================
--- trunk/docs/services/status.txt	(revision 457)
+++ trunk/docs/services/status.txt	(revision 457)
@@ -0,0 +1,43 @@
+.. _services-status:
+
+How To Use ZOO Status Service
+===============================
+
+:Authors: Luca Delucchi
+:Last Updated: $Date: 2013-03-27 00:06:12 +0100 (Wed, 27 Mar 2013) $
+
+*ZOO Status Service* is a utility of ZOO-Project to return the
+completion percent of your service.
+
+Install ZOO Status Service
+-----------------------------
+
+To install the ``ZOO Status Service`` you have to move in 
+``/path/to/zoo/source/zoo-services/utils/status/`` and compile the source
+running the ``make`` command.
+If no errors are returned during compilation you can copy the content of ``cgi-env``
+to ``/usr/lib/cgi-bin/`` or where you have your ``zoo_loader.cgi`` working with this
+command (you need administration right):
+
+::
+
+   cp /path/to/zoo/source/zoo-services/utils/status/cgi-env/*{zcfg,zo,py} /usr/lib/cgi-bin
+
+With this command you copy the code to permit to ``ZOO Status Service`` and some
+example processes about how it works.
+
+Now you have to add these two lines to ``main.cfg`` :
+
+::
+
+  rewriteUrl=call
+  dataPath=/var/www/data
+
+Here you define the path where the service is able to find the xsl file, specified in the dataPath
+parameter. You also tell the ZOO Kernel that you want to use the `rewriteUrl <../kernel/install-debian.html#rewrite-rule-configuration>`_.
+
+The last operation is to copy the ``updateStatus.xsl`` to ``dataPath`` directory as follow:
+
+::
+
+   cp /path/to/zoo/source/zoo-services/utils/status/cgi-env/*{xsl} /var/www/data
