summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/gssdp.toml.in17
-rw-r--r--doc/urlmap.js4
2 files changed, 21 insertions, 0 deletions
diff --git a/doc/gssdp.toml.in b/doc/gssdp.toml.in
index 1b79a32..89bec9f 100644
--- a/doc/gssdp.toml.in
+++ b/doc/gssdp.toml.in
@@ -18,7 +18,24 @@ show_index_summary = true
[source-location]
base_url = "https://gitlab.gnome.org/GNOME/gssdp/-/blob/master"
+[dependencies."GObject-2.0"]
+name = "GObject"
+description = "The base type system library"
+docs_url = "https://developer.gnome.org/gobject/stable"
+
+[dependencies."Soup-2.4"]
+name = "Soup"
+description = "A HTTP handling library"
+docs_url = "https://developer.gnome.org/libsoup/stable"
+
+[dependencies."libxml2-2.0"]
+name = "LibXML2"
+description = "A XML handling library"
+docs_url = "http://www.xmlsoft.org/html/index.html"
+
[extra]
content_images = [
"images/gupnp-logo-short.svg"
]
+
+urlmap_file = "urlmap.js"
diff --git a/doc/urlmap.js b/doc/urlmap.js
new file mode 100644
index 0000000..4e19607
--- /dev/null
+++ b/doc/urlmap.js
@@ -0,0 +1,4 @@
+// A map between namespaces and base URLs for their online documentation
+baseURLs = [
+ [ 'GSSDP', 'https://gnome.pages.gitlab.gnome.org/gssdp/docs/' ],
+]