]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
fixup old gitlab URLs
authorVladimír Čunát <vladimir.cunat@nic.cz>
Mon, 17 Jul 2017 15:57:57 +0000 (17:57 +0200)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Mon, 17 Jul 2017 15:58:49 +0000 (17:58 +0200)
Almost all of them were getting redirected correctly, but why keep the
old ones.  Also update a couple nitpicks directly around.

doc/build.rst
lib/README.rst
modules/cookies/README.rst
modules/dnstap/dnstap.c

index 6b8275989bb83a283208e9868182287d67fa1743..6ba6f531419e2f4a9adc983c1bf2b5af7ba3b7d5 100644 (file)
@@ -290,7 +290,7 @@ You can hack on the container by changing the container entrypoint to shell like
 .. _sphinx_rtd_theme: https://pypi.python.org/pypi/sphinx_rtd_theme
 .. _GNU Make: https://www.gnu.org/software/make/
 .. _pkg-config: https://www.freedesktop.org/wiki/Software/pkg-config/
-.. _libknot: https://gitlab.labs.nic.cz/labs/knot
+.. _libknot: https://gitlab.labs.nic.cz/knot/knot-dns
 .. _cmocka: https://cmocka.org/
 .. _Python: https://www.python.org/
 .. _luasec: https://luarocks.org/modules/brunoos/luasec
@@ -300,7 +300,7 @@ You can hack on the container by changing the container entrypoint to shell like
 .. _boot2docker: http://boot2docker.io/
 
 .. _deckard: https://gitlab.labs.nic.cz/knot/deckard
-.. _deckard_doc: https://gitlab.labs.nic.cz/knot/resolver/blob/master/tests/README.rst
+.. _deckard_doc: https://gitlab.labs.nic.cz/knot/knot-resolver/blob/master/tests/README.rst
 
 .. _libsystemd: https://www.freedesktop.org/wiki/Software/systemd/
 .. _dnstap: http://dnstap.info/
index 3a49b156270e2e80bc99b24f79c1558600286281..cb1e10584803104b1f1c5e683237d1310f9fce24 100644 (file)
@@ -76,7 +76,9 @@ it means that it yielded before and now it is resumed. This is useful in a situa
 Writing layers
 ==============
 
-The resolver :ref:`library <lib_index>` leverages the `processing API`_ from the libknot to separate packet processing code into layers.
+.. warning::  FIXME: this dev-docs section is outdated!  Better see comments in files instead, for now.
+
+The resolver :ref:`library <lib_index>` leverages the processing API from the libknot to separate packet processing code into layers.
 
 .. note:: This is only crash-course in the library internals, see the resolver :ref:`library <lib_index>` documentation for the complete overview of the services.
 
@@ -272,8 +274,7 @@ As described in the layers, you can not only retrieve information about current
                req:pop(qry)
 
 
-.. _libknot: https://gitlab.labs.nic.cz/labs/knot/tree/master/src/libknot
-.. _`processing API`: https://gitlab.labs.nic.cz/labs/knot/tree/master/src/libknot/processing
-.. _bindings: https://gitlab.labs.nic.cz/knot/resolver/blob/master/daemon/lua/kres.lua#L361
+.. _libknot:  https://gitlab.labs.nic.cz/knot/knot-dns/tree/master/src/libknot
+.. _bindings: https://gitlab.labs.nic.cz/knot/knot-resolver/blob/master/daemon/lua/kres.lua.in
 
 .. |---| unicode:: U+02014 .. em dash
index 60aee7f5f9691c92d3fda303c0f7ed059b90652f..5db476cfc9c6634560248835301485575410c03b 100644 (file)
@@ -51,4 +51,4 @@ Dependencies
 ^^^^^^^^^^^^
 
 * `Nettle <https://www.lysator.liu.se/~nisse/nettle/>`_ required for HMAC-SHA256
-* development version of `libknot (master branch) <https://gitlab.labs.nic.cz/labs/knot/tree/master>`_ for DNS cookies handling
+
index 4f6e2f7d2490f4729da2cc8c40d74c4a83067767..69d0cd6e431b7eec2344b0186ff87261d1d1f5f1 100644 (file)
@@ -44,7 +44,7 @@ struct dnstap_data {
 
 /*
  * dt_pack packs the dnstap message for transport
- * https://gitlab.labs.nic.cz/labs/knot/blob/master/src/contrib/dnstap/dnstap.c#L24
+ * https://gitlab.labs.nic.cz/knot/knot-dns/blob/master/src/contrib/dnstap/dnstap.c#L24
  * */
 uint8_t* dt_pack(const Dnstap__Dnstap *d, uint8_t **buf, size_t *sz)
 {
@@ -65,7 +65,7 @@ uint8_t* dt_pack(const Dnstap__Dnstap *d, uint8_t **buf, size_t *sz)
 }
 
 /* set_address fills in address detail in dnstap_message
- * https://gitlab.labs.nic.cz/labs/knot/blob/master/src/contrib/dnstap/message.c#L28
+ * https://gitlab.labs.nic.cz/knot/knot-dns/blob/master/src/contrib/dnstap/message.c#L28
  */
 static void set_address(const struct sockaddr *sockaddr,
                ProtobufCBinaryData   *addr,
@@ -236,7 +236,7 @@ int dnstap_deinit(struct kr_module *module) {
 }
 
 /* dnstap_unix_writer returns a unix fstream writer
- * https://gitlab.labs.nic.cz/labs/knot/blob/master/src/knot/modules/dnstap.c#L159
+ * https://gitlab.labs.nic.cz/knot/knot-dns/blob/master/src/knot/modules/dnstap.c#L159
  */
 static struct fstrm_writer* dnstap_unix_writer(const char *path) {