mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
.gitlab
.gitlab-ci
clutter
cogl
data
doc
man
reference
cally
clutter
cogl
cogl.toml.in
meson.build
urlmap.js
cogl-pango
meta
meson.build
code-overview.txt
compositor-control.txt
dialogs.txt
how-constraints-works.txt
how-to-get-focus-right.txt
monitor-configuration.md
rationales.txt
strut-and-related-updating.txt
meson
po
src
subprojects
tools
.gitignore
.gitlab-ci.yml
COPYING
HACKING.md
NEWS
README.md
check-style.py
config.h.meson
meson.build
meson_options.txt
mutter.doap

gtk-doc support was taken out about six years ago, but never replaced. Add support for the newer gi-docgen, which should hopefully encourage both C and GJS users of these libraries to improve the reference. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2248>
16 lines
623 B
JavaScript
16 lines
623 B
JavaScript
// SPDX-FileCopyrightText: 2021 GNOME Foundation
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
// A map between namespaces and base URLs for their online documentation
|
|
baseURLs = [
|
|
[ 'GLib', 'https://docs.gtk.org/glib/' ],
|
|
[ 'GObject', 'https://docs.gtk.org/gobject/' ],
|
|
[ 'Gio', 'https://docs.gtk.org/gio/' ],
|
|
[ 'Atk', 'https://docs.gtk.org/atk/' ],
|
|
[ 'Gdk', 'https://docs.gtk.org/gdk3/' ],
|
|
[ 'Gtk', 'https://docs.gtk.org/gtk3/' ],
|
|
[ 'Pango', 'https://docs.gtk.org/Pango/' ],
|
|
[ 'PangoCairo', 'https://docs.gtk.org/PangoCairo/' ],
|
|
[ 'GdkPixbuf', 'https://docs.gtk.org/gdk-pixbuf/' ],
|
|
]
|