  Copyright (C) 2011 Appora contributors.
  Licenced under CC BY-SA 3.0
  (see <http://creativecommons.org/licenses/by-sa/3.0/>)

IniConfigLoader reads a ini file to instanciate modules. This ini file use the
same syntax as the php.ini file. That is for the main things:

-Line begining with a ; are comments:
; this is a comment line

-Line between [] is a section, the sections are described in next files:
[name_of_the_section]

-Key values pairs are on separated lines. Values are between "":
key_name = "value"

Some keys can have multiple values according to locale. This keys are explicitly
marked as localized in the documentation. These keys are suffixed by the locale
identifier with a colon:
key_name:locale = "value"
When the locale is not specified, the default locale is assumed.

To make a working configuration you must provide the following sections :
[server]
[status]
[locales]
[descriptors_module]
[data_module]
[logger_module]
Each of these sections are described in ther respective directory with a choice
in modules to setup the one that fits your wishes.
Each module section has a type key. You must set the value of that key to the
name of the module you want to use. The other keys of the module section are
described in each module documentation.

Some examples are located in the samples directory.
