Merge "Updated the documentation's rst markup"

This commit is contained in:
Zuul 2019-08-20 14:59:57 +00:00 committed by Gerrit Code Review
commit 05050a4b22
2 changed files with 10 additions and 10 deletions

View File

@ -28,7 +28,7 @@ List available modules
List available rating modules:
.. code:: console
.. code-block:: console
$ cloudkitty module list
+-----------+---------+----------+
@ -44,7 +44,7 @@ Enable or disable module
Enable the hashmap rating module:
.. code:: console
.. code-block:: console
$ cloudkitty module enable hashmap
+---------+---------+----------+
@ -55,7 +55,7 @@ Enable the hashmap rating module:
Disable the pyscripts rating module:
.. code:: console
.. code-block:: console
$ cloudkitty module disable pyscripts
+-----------+---------+----------+
@ -69,7 +69,7 @@ Set priority
Set the hashmap rating module priority to 100:
.. code:: console
.. code-block:: console
$ cloudkitty module set priority hashmap 100
+---------+---------+----------+

View File

@ -15,7 +15,7 @@ Custom module example
Price definitions
-----------------
.. code:: python
.. code-block:: python
import decimal
@ -36,7 +36,7 @@ Price definitions
Price calculation functions
---------------------------
.. code:: python
.. code-block:: python
# These functions return the price of a service usage on a collect period.
# The price is always equivalent to the price per unit multiplied by
@ -71,7 +71,7 @@ Price calculation functions
Processing the data
-------------------
.. code:: python
.. code-block:: python
def process(data):
# The 'data' parameter is a list of dictionaries containing a
@ -100,9 +100,9 @@ Using your Script for rating
Enabling the PyScripts module
-----------------------------
To use you script for rating, you will need to enable the pyscripts module
To use your script for rating, you will need to enable the pyscripts module
.. code:: raw
.. code-block:: console
$ cloudkitty module enable pyscripts
+-----------+---------+----------+
@ -116,7 +116,7 @@ Adding the script to CloudKitty
Create the script and specify its name.
.. code:: raw
.. code-block:: console
$ cloudkitty pyscript create my_awesome_script script.py
+-------------------+--------------------------------------+------------------------------------------+---------------------------------------+