summaryrefslogtreecommitdiff
path: root/docs/website
diff options
context:
space:
mode:
Diffstat (limited to 'docs/website')
-rw-r--r--docs/website/goals.rst2
-rw-r--r--docs/website/writingbindableapis.rst4
-rw-r--r--docs/website/writingbindings/libgirepository.rst2
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/website/goals.rst b/docs/website/goals.rst
index a8ebe92e..7fb73d6b 100644
--- a/docs/website/goals.rst
+++ b/docs/website/goals.rst
@@ -23,7 +23,7 @@ application logic such as configuration, layout, dialogs, etc.
To achieve this goal you need to write your code using GObject convention.
For more information about that, see the `GObject tutorial
- <https://developer.gnome.org/gobject/stable/pt02.html>`__
+ <https://developer-old.gnome.org/gobject/stable/pt02.html>`__
Thus, one of the major goals of the GObject introspection project is to be a
convenient bridge between these two worlds, and allow you to choose the right
diff --git a/docs/website/writingbindableapis.rst b/docs/website/writingbindableapis.rst
index 70d3bbc7..b9b08941 100644
--- a/docs/website/writingbindableapis.rst
+++ b/docs/website/writingbindableapis.rst
@@ -10,12 +10,12 @@ Structures with custom memory management
Avoid creating C structures with custom memory management unless they are
registered as a `boxed type
-<https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html>`__.
+<https://developer-old.gnome.org/gobject/stable/gobject-Boxed-Types.html>`__.
If you don't register them as a boxed type bindings will fall back to
simple memory copying, which might not be what you want.
Also consider using a full `GObject
-<https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html>`__
+<https://developer-old.gnome.org/gobject/stable/gobject-The-Base-Object-Type.html>`__
as that allows bindings to better integrate those objects with the binding
language, like for example preserve user defined state across language
boundaries.
diff --git a/docs/website/writingbindings/libgirepository.rst b/docs/website/writingbindings/libgirepository.rst
index 86a3558d..408956fd 100644
--- a/docs/website/writingbindings/libgirepository.rst
+++ b/docs/website/writingbindings/libgirepository.rst
@@ -7,7 +7,7 @@ typelib data and for interacting with the corresponding GObject based
libraries.
For more information about libgirepository see the `API documentation
-<https://developer.gnome.org/gi/stable>`__.
+<https://developer-old.gnome.org/gi/stable>`__.
The following example shows how to call the ``g_assertion_message()`` function
from libglib-2.0: