diff --git a/docs/api/network-manager-docs.xml b/docs/api/network-manager-docs.xml index a2fc76d7f..77b7e0177 100644 --- a/docs/api/network-manager-docs.xml +++ b/docs/api/network-manager-docs.xml @@ -9,7 +9,7 @@ for NetworkManager &version; The latest version of this documentation can be found on-line at - https://developer.gnome.org/NetworkManager/stable/. + https://networkmanager.dev/docs/api/latest/. diff --git a/docs/libnm/libnm-docs.xml b/docs/libnm/libnm-docs.xml index e9811c148..11a1b7301 100644 --- a/docs/libnm/libnm-docs.xml +++ b/docs/libnm/libnm-docs.xml @@ -10,7 +10,7 @@ for libnm &version; The latest version of this documentation can be found on-line at - https://developer.gnome.org/libnm/stable/. + https://networkmanager.dev/docs/libnm/latest/. @@ -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 - D-Bus API, + D-Bus API, allowing other tools to use the functionality provided by NetworkManager. @@ -103,7 +103,7 @@ An alternative to use of libnm is the use of the - D-Bus API + D-Bus API, 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 d52185141..9463ec689 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 cfb46de26..7c0d1f5cc 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 fe35fcc0b..618c66960 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 d84e01b2e..e52846bb6 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 bc8f1ea5d..52ee73b9b 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 a441e7e9b..b75d8b2eb 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 e6e1d5a65..74fed3fcf 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 811d10b43..036606c48 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 5ff0ac363..f8978ece3 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