classref: Sync with current master branch (fc1c25d29)

This commit is contained in:
Rémi Verschelde
2022-11-07 14:06:01 +01:00
parent d09033677f
commit 263e4d6224
196 changed files with 5055 additions and 3075 deletions

View File

@@ -240,7 +240,7 @@ Returns ``true`` if the specified section-key pair exists.
Loads the config file specified as a parameter. The file's contents are parsed and loaded in the ``ConfigFile`` object which the method was called on.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----
@@ -250,7 +250,7 @@ Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK``
Loads the encrypted config file specified as a parameter, using the provided ``key`` to decrypt it. The file's contents are parsed and loaded in the ``ConfigFile`` object which the method was called on.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----
@@ -260,7 +260,7 @@ Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK``
Loads the encrypted config file specified as a parameter, using the provided ``password`` to decrypt it. The file's contents are parsed and loaded in the ``ConfigFile`` object which the method was called on.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----
@@ -270,7 +270,7 @@ Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK``
Parses the passed string as the contents of a config file. The string is parsed and loaded in the ConfigFile object which the method was called on.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----
@@ -280,7 +280,7 @@ Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK``
Saves the contents of the ``ConfigFile`` object to the file specified as a parameter. The output file uses an INI-style structure.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----
@@ -290,7 +290,7 @@ Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK``
Saves the contents of the ``ConfigFile`` object to the AES-256 encrypted file specified as a parameter, using the provided ``key`` to encrypt it. The output file uses an INI-style structure.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----
@@ -300,7 +300,7 @@ Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK``
Saves the contents of the ``ConfigFile`` object to the AES-256 encrypted file specified as a parameter, using the provided ``password`` to encrypt it. The output file uses an INI-style structure.
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (``OK`` on success).
Returns one of the :ref:`Error<enum_@GlobalScope_Error>` code constants (:ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` on success).
----