summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2021-09-24 14:33:17 +0200
committerThomas Haller <thaller@redhat.com>2021-09-24 14:41:35 +0200
commit4521e2aa897985ddd105b4d3fbda720d23f3df69 (patch)
tree43db330b89e1d22144cbfae4186b1fd45b529ffa
parent70a077e4d8ae0ee08b4ed723686e6347deb81baf (diff)
downloadNetworkManager-4521e2aa897985ddd105b4d3fbda720d23f3df69.tar.gz
docs: update URL for latest online documentation
-rw-r--r--docs/api/network-manager-docs.xml2
-rw-r--r--docs/libnm/libnm-docs.xml6
-rwxr-xr-xexamples/python/dbus/add-connection-compat.py2
-rwxr-xr-xexamples/python/dbus/add-connection.py2
-rwxr-xr-xexamples/python/dbus/create-bond.py2
-rwxr-xr-xexamples/python/dbus/update-ip4-method.py2
-rwxr-xr-xexamples/python/dbus/wifi-active-ap.py2
-rwxr-xr-xexamples/python/dbus/wifi-hotspot.py2
-rwxr-xr-xexamples/python/gi/add_connection.py2
-rwxr-xr-xexamples/python/gi/update-ip4-method.py2
-rwxr-xr-xexamples/ruby/add-connection.rb2
11 files changed, 13 insertions, 13 deletions
diff --git a/docs/api/network-manager-docs.xml b/docs/api/network-manager-docs.xml
index a2fc76d7ff..77b7e0177c 100644
--- a/docs/api/network-manager-docs.xml
+++ b/docs/api/network-manager-docs.xml
@@ -9,7 +9,7 @@
<releaseinfo>
for NetworkManager &version;
The latest version of this documentation can be found on-line at
- <ulink url="https://developer.gnome.org/NetworkManager/stable/">https://developer.gnome.org/NetworkManager/stable/</ulink>.
+ <ulink url="https://networkmanager.dev/docs/api/latest/">https://networkmanager.dev/docs/api/latest/</ulink>.
</releaseinfo>
<copyright>
diff --git a/docs/libnm/libnm-docs.xml b/docs/libnm/libnm-docs.xml
index e9811c1485..11a1b73011 100644
--- a/docs/libnm/libnm-docs.xml
+++ b/docs/libnm/libnm-docs.xml
@@ -10,7 +10,7 @@
<releaseinfo>
for libnm &version;
The latest version of this documentation can be found on-line at
- <ulink url="https://developer.gnome.org/libnm/stable/">https://developer.gnome.org/libnm/stable/</ulink>.
+ <ulink url="https://networkmanager.dev/docs/libnm/latest/">https://networkmanager.dev/docs/libnm/latest/</ulink>.
</releaseinfo>
<copyright>
@@ -56,7 +56,7 @@
management service. NetworkManager supports a wide variety of network
configuration scenarios, hardware devices and protocol families. Most of
the functionality is exposed on a
- <ulink url="https://developer.gnome.org/NetworkManager/stable/spec.html">D-Bus API</ulink>,
+ <ulink url="https://networkmanager.dev/docs/api/latest/spec.html">D-Bus API</ulink>,
allowing other tools to use the functionality provided by NetworkManager.
</para>
<para>
@@ -103,7 +103,7 @@
</para>
<para>
An alternative to use of libnm is the use of the
- <ulink url="https://developer.gnome.org/NetworkManager/stable/spec.html">D-Bus API</ulink>
+ <ulink url="https://networkmanager.dev/docs/api/latest/spec.html">D-Bus API</ulink>,
directly. This gives you larger flexibility and reduces the overhead of linking
with the libnm library. This makes sense if your task is simple and you have a good
D-Bus library at your disposal. Activating a particular connection profile
diff --git a/examples/python/dbus/add-connection-compat.py b/examples/python/dbus/add-connection-compat.py
index d521851410..9463ec689d 100755
--- a/examples/python/dbus/add-connection-compat.py
+++ b/examples/python/dbus/add-connection-compat.py
@@ -11,7 +11,7 @@
# add-connection.py, which only supports NM 1.0 and later.
#
# Configuration settings are described at
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import socket, struct, dbus, uuid
diff --git a/examples/python/dbus/add-connection.py b/examples/python/dbus/add-connection.py
index cfb46de26d..7c0d1f5cc7 100755
--- a/examples/python/dbus/add-connection.py
+++ b/examples/python/dbus/add-connection.py
@@ -12,7 +12,7 @@
# NetworkManager as well.
#
# Configuration settings are described at
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import dbus, uuid
diff --git a/examples/python/dbus/create-bond.py b/examples/python/dbus/create-bond.py
index fe35fcc0ba..618c669602 100755
--- a/examples/python/dbus/create-bond.py
+++ b/examples/python/dbus/create-bond.py
@@ -8,7 +8,7 @@
# This example configures a Bond from ethernet devices and activates it
#
# NetworkManager D-Bus API:
-# https://developer.gnome.org/NetworkManager/stable/spec.html
+# https://networkmanager.dev/docs/api/latest/spec.html
#
import dbus, sys, uuid
diff --git a/examples/python/dbus/update-ip4-method.py b/examples/python/dbus/update-ip4-method.py
index d84e01b2ea..e52846bb6f 100755
--- a/examples/python/dbus/update-ip4-method.py
+++ b/examples/python/dbus/update-ip4-method.py
@@ -11,7 +11,7 @@
# for a similar example using the backward-compatible properties
#
# Configuration settings are described at
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import dbus, sys
diff --git a/examples/python/dbus/wifi-active-ap.py b/examples/python/dbus/wifi-active-ap.py
index bc8f1ea5d4..52ee73b9bd 100755
--- a/examples/python/dbus/wifi-active-ap.py
+++ b/examples/python/dbus/wifi-active-ap.py
@@ -8,7 +8,7 @@
# This example prints the current wifi access point
#
# Configuration settings are described at
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import dbus, sys
diff --git a/examples/python/dbus/wifi-hotspot.py b/examples/python/dbus/wifi-hotspot.py
index a441e7e9b2..b75d8b2ebc 100755
--- a/examples/python/dbus/wifi-hotspot.py
+++ b/examples/python/dbus/wifi-hotspot.py
@@ -8,7 +8,7 @@
# This example starts or stops a wifi hotspot
#
# Configuration settings are described at
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import dbus, sys, time
diff --git a/examples/python/gi/add_connection.py b/examples/python/gi/add_connection.py
index e6e1d5a650..74fed3fcf2 100755
--- a/examples/python/gi/add_connection.py
+++ b/examples/python/gi/add_connection.py
@@ -10,7 +10,7 @@
#
# Documentation links:
# https://developer.gnome.org/libnm/1.0/
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import gi
diff --git a/examples/python/gi/update-ip4-method.py b/examples/python/gi/update-ip4-method.py
index 811d10b431..036606c487 100755
--- a/examples/python/gi/update-ip4-method.py
+++ b/examples/python/gi/update-ip4-method.py
@@ -9,7 +9,7 @@
# using the libnm GObject-based convenience APIs.
#
# Configuration settings are described at
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
import gi
diff --git a/examples/ruby/add-connection.rb b/examples/ruby/add-connection.rb
index 5ff0ac3632..f8978ece35 100755
--- a/examples/ruby/add-connection.rb
+++ b/examples/ruby/add-connection.rb
@@ -18,7 +18,7 @@ require 'ipaddr'
# details
#
# Configuration settings are described here:
-# https://developer.gnome.org/NetworkManager/1.0/ref-settings.html
+# https://networkmanager.dev/docs/api/latest/ref-settings.html
#
# Helper functions