summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2021-06-18 22:50:01 +0200
committerJens Georg <mail@jensge.org>2021-06-19 13:25:32 +0200
commita0f09c05b5ba27b35cdfe48fadfe28e62da7e4ff (patch)
tree4675a1b40ecd03c41ed44dff4d504975a2939019
parent1b23f9be9aace4ddb044ed428aa35d033d59a9ce (diff)
downloadgssdp-a0f09c05b5ba27b35cdfe48fadfe28e62da7e4ff.tar.gz
doc: Add links to dependencies
-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/' ],
+]