Skip to content

Commit 2bcc806

Browse files
committed
Fix broken gnome/gtk doc links
1 parent 3561ccf commit 2bcc806

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

gio/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Rust GIO bindings
22

3-
__Rust__ bindings and wrappers for [GIO](https://developer.gnome.org/gio/), part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core).
3+
__Rust__ bindings and wrappers for [GIO](https://docs.gtk.org/gio/), part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core).
44

55
GIO __2.48__ is the lowest supported version for the underlying library.
66

@@ -12,7 +12,7 @@ Currently, the minimum supported Rust version is `1.57.0`.
1212

1313
* [Rust API - Stable](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/gio/)
1414
* [Rust API - Development](https://gtk-rs.org/gtk-rs-core/git/docs/gio)
15-
* [C API](https://developer.gnome.org/gio/stable/)
15+
* [C API](https://docs.gtk.org/gio/)
1616
* [GTK Installation instructions](https://www.gtk.org/docs/installations/)
1717

1818
## Using

glib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Rust GLib and GObject bindings
22

3-
__Rust__ bindings and wrappers for [GLib](https://developer.gnome.org/glib/), part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core).
3+
__Rust__ bindings and wrappers for [GLib](https://docs.gtk.org/glib/), part of [gtk-rs-core](https://github.com/gtk-rs/gtk-rs-core).
44

55
GLib __2.48__ is the lowest supported version for the underlying library.
66

@@ -72,7 +72,7 @@ wrappers) and their FFI counterparts.
7272

7373
* [Rust API - Stable](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/glib/)
7474
* [Rust API - Development](https://gtk-rs.org/gtk-rs-core/git/docs/glib)
75-
* [C API](https://developer.gnome.org/glib/stable/)
75+
* [C API](https://docs.gtk.org/glib/)
7676
* [GTK Installation instructions](https://www.gtk.org/docs/installations/)
7777

7878
## Using

glib/src/log.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ macro_rules! g_log_inner {
383383
// rustdoc-stripper-ignore-next
384384
/// Macro used to log using GLib logging system. It uses [g_log].
385385
///
386-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
386+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
387387
///
388388
/// Example:
389389
///
@@ -436,7 +436,7 @@ macro_rules! g_log {
436436
// rustdoc-stripper-ignore-next
437437
/// Macro used to log using GLib logging system. It uses [g_log].
438438
///
439-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
439+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
440440
///
441441
/// It is the same as calling the [`g_log!`] macro with [`LogLevel::Error`].
442442
///
@@ -473,7 +473,7 @@ macro_rules! g_error {
473473
// rustdoc-stripper-ignore-next
474474
/// Macro used to log using GLib logging system. It uses [g_log].
475475
///
476-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
476+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
477477
///
478478
/// It is the same as calling the [`g_log!`] macro with [`LogLevel::Critical`].
479479
///
@@ -510,7 +510,7 @@ macro_rules! g_critical {
510510
// rustdoc-stripper-ignore-next
511511
/// Macro used to log using GLib logging system. It uses [g_log].
512512
///
513-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
513+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
514514
///
515515
/// It is the same as calling the [`g_log!`] macro with [`LogLevel::Warning`].
516516
///
@@ -547,7 +547,7 @@ macro_rules! g_warning {
547547
// rustdoc-stripper-ignore-next
548548
/// Macro used to log using GLib logging system. It uses [g_log].
549549
///
550-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
550+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
551551
///
552552
/// It is the same as calling the [`g_log!`] macro with [`LogLevel::Message`].
553553
///
@@ -584,7 +584,7 @@ macro_rules! g_message {
584584
// rustdoc-stripper-ignore-next
585585
/// Macro used to log using GLib logging system. It uses [g_log].
586586
///
587-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
587+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
588588
///
589589
/// It is the same as calling the [`g_log!`] macro with [`LogLevel::Info`].
590590
///
@@ -621,7 +621,7 @@ macro_rules! g_info {
621621
// rustdoc-stripper-ignore-next
622622
/// Macro used to log using GLib logging system. It uses [g_log].
623623
///
624-
/// [g_log]: https://developer.gnome.org/glib/stable/glib-Message-Logging.html#g-log
624+
/// [g_log]: https://docs.gtk.org/glib/func.log.html
625625
///
626626
/// It is the same as calling the [`g_log!`] macro with [`LogLevel::Debug`].
627627
///
@@ -706,7 +706,7 @@ macro_rules! g_print_inner {
706706
// rustdoc-stripper-ignore-next
707707
/// Macro used to print messages. It uses [g_print].
708708
///
709-
/// [g_print]: https://developer.gnome.org/glib/stable/glib-Warnings-and-Assertions.html#g-print
709+
/// [g_print]: https://docs.gtk.org/glib/func.print.html
710710
///
711711
/// Example:
712712
///
@@ -733,7 +733,7 @@ macro_rules! g_print {
733733
// rustdoc-stripper-ignore-next
734734
/// Macro used to print error messages. It uses [g_printerr].
735735
///
736-
/// [g_printerr]: https://developer.gnome.org/glib/stable/glib-Warnings-and-Assertions.html#g-printerr
736+
/// [g_printerr]: https://docs.gtk.org/glib/func.printerr.html
737737
///
738738
/// Example:
739739
///

glib/src/translate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
//! which are the only ones properly handled by the Rust bindings.
9898
//!
9999
//! For more information about floating references, please refer to the "Floating references" section
100-
//! of [the gobject reference](https://developer.gnome.org/gobject/stable/gobject-The-Base-Object-Type.html).
100+
//! of [the gobject reference](https://docs.gtk.org/gobject/floating-refs.html).
101101
//!
102102
//! ```ignore
103103
//! fn get_title(&self) -> Option<String> {

graphene/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Currently, the minimum supported Rust version is `1.57.0`.
1212

1313
* [Rust API - Stable](https://gtk-rs.org/gtk-rs-core/stable/latest/docs/graphene/)
1414
* [Rust API - Development](https://gtk-rs.org/gtk-rs-core/git/docs/graphene)
15-
* [C API](https://developer.gnome.org/graphene/stable/)
15+
* [C API](https://ebassi.github.io/graphene/docs/)
1616
* [GTK Installation instructions](https://www.gtk.org/docs/installations/)
1717

1818
## Using

0 commit comments

Comments
 (0)