From ee9c73a923909e23a649407be77e25235d769e25 Mon Sep 17 00:00:00 2001
From: Michael Biebl libnm-util Reference Manual
- for libnm-util 1.11.3
+ for libnm-util 1.10.8
The latest version of this documentation can be found on-line at
https://developer.gnome.org/libnm-util/stable/.
diff --git a/docs/libnm-util/meson.build b/docs/libnm-util/meson.build
deleted file mode 100644
index 7b06baf3..00000000
--- a/docs/libnm-util/meson.build
+++ /dev/null
@@ -1,32 +0,0 @@
-doc_module = libnm_util_name
-
-private_headers = [
- 'crypto.h',
- 'nm-utils-private.h',
- 'nm-setting-private.h',
- 'nm-param-spec-specialized.h',
- 'nm-test-utils.h',
- 'nm-version.h'
-]
-
-configure_file(
- input: version_xml + '.in',
- output: version_xml,
- configuration: version_conf
-)
-
-gnome.gtkdoc(
- doc_module,
- main_xml: doc_module + '-docs.sgml',
- src_dir: libnm_util_inc,
- dependencies: libnm_util_dep,
- scan_args: [
- '--rebuild-types',
- '--rebuild-sections',
- '--ignore-headers=' + ' '.join(private_headers)
- ],
- scanobjs_args: '--type-init-func="g_type_init();"',
- fixxref_args: '--html-dir=' + join_paths(nm_prefix, gnome.gtkdoc_html_dir(doc_module)),
- gobject_typesfile: doc_module + '.types',
- install: true
-)
diff --git a/docs/libnm-util/version.xml b/docs/libnm-util/version.xml
index 0a5af26d..3cc3669f 100644
--- a/docs/libnm-util/version.xml
+++ b/docs/libnm-util/version.xml
@@ -1 +1 @@
-1.11.3
+1.10.8
--
cgit 1.3.0-6-gf8a5
From 04bc9e1cd3544445d883ad29ea108c1645c8e7b7 Mon Sep 17 00:00:00 2001
From: Michael Biebl Registers an error quark for NMConnection if necessary. Creates a new NMConnection from a hash table describing the connection. See
hash the GHashTable describing
+ the GHashTable describing
the connection. the new NMConnection object, populated with settings created
-from the values in the hash table, or the new setting object, or the new setting object, or [transfer full]
-GQuark
+GQuark
nm_connection_error_quark ()
@@ -116,7 +116,7 @@
-gboolean
+gboolean
nm_connection_replace_settings ()
@@ -124,7 +124,7 @@
-gboolean
+gboolean
nm_connection_replace_settings_from_connection ()
@@ -132,7 +132,7 @@
-gboolean
+gboolean
nm_connection_compare ()
@@ -140,7 +140,7 @@
-gboolean
+gboolean
nm_connection_diff ()
@@ -148,7 +148,7 @@
-gboolean
+gboolean
nm_connection_verify ()
@@ -156,7 +156,7 @@
-gboolean
+gboolean
nm_connection_normalize ()
@@ -187,7 +187,7 @@
-gboolean
+gboolean
nm_connection_update_secrets ()
@@ -224,7 +224,7 @@
-gboolean
+gboolean
nm_connection_is_type ()
@@ -240,7 +240,7 @@
-GHashTable *
+GHashTable *
nm_connection_to_hash ()
@@ -256,7 +256,7 @@
-GType
+GType
nm_connection_lookup_setting_type ()
@@ -264,7 +264,7 @@
-GType
+GType
nm_connection_lookup_setting_type_by_quark ()
@@ -520,7 +520,7 @@
@@ -538,17 +538,17 @@
-gchar *
+gchar *
path
Read / Write / Construct
void
changed
-Run First
+Run First
void
secrets-cleared
-Run First
+Run First
void
secrets-updated
-Run First
+Run First
Object Hierarchy
GEnum
╰── NMConnectionError
- GObject
+ GObject
╰── NMConnection
Functions
nm_connection_error_quark ()
-GQuark
+
GQuark
nm_connection_error_quark (
void);void
nm_connection_new_from_hash ()
NMConnection *
-nm_connection_new_from_hash (
+nm_connection_new_from_hash (GHashTable *hash,
- GError **error);GHashTable *hash,
+ GError **error);
nm_connection_to_hash() for a description of the expected hash table.[element-type utf8 GLib.HashTable]
@@ -680,7 +680,7 @@ the connection.
Returns
NULL if the connection failed to
+from the values in the hash table, or NULL if the connection failed to
validateconst
Returns
-NULL if the setting name was unknown. NULL if the setting name was unknown.
void nm_connection_remove_setting (-NMConnection *connection, -GType setting_type);
Removes the NMSetting with the given GType from the NMConnection. This
+ GType setting_type);
+
Removes the NMSetting with the given GType from the NMConnection. This operation dereferences the NMSetting object.
setting_type
-the GType of the setting object to remove
the GType of the setting object to remove
NMSetting * nm_connection_get_setting (-NMConnection *connection, -GType setting_type);
Gets the NMSetting with the given GType, if one has been previously added
+ GType setting_type);
+
Gets the NMSetting with the given GType, if one has been previously added to the NMConnection.
setting_type
the GType of the setting object to return
the GType of the setting object to return
the NMSetting, or NULL if no setting of that type was previously
+
the NMSetting, or NULL if no setting of that type was previously
added to the NMConnection.
[transfer none]
the NMSetting, or NULL if no setting with that name was previously
+
the NMSetting, or NULL if no setting with that name was previously
added to the NMConnection.
[transfer none]
gboolean +gboolean nm_connection_replace_settings (+NMConnection *connection, -GHashTable *new_settings, -GError **error);GHashTable *new_settings, +GError **error);
Flags: Run First
+Flags: Run First