From: Vladimír Čunát Date: Mon, 17 Jul 2017 15:57:57 +0000 (+0200) Subject: fixup old gitlab URLs X-Git-Tag: v1.3.2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5737c442220acda2e8d480cb6173afbb62708d3;p=thirdparty%2Fknot-resolver.git fixup old gitlab URLs Almost all of them were getting redirected correctly, but why keep the old ones. Also update a couple nitpicks directly around. --- diff --git a/doc/build.rst b/doc/build.rst index 6b8275989..6ba6f5314 100644 --- a/doc/build.rst +++ b/doc/build.rst @@ -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/ diff --git a/lib/README.rst b/lib/README.rst index 3a49b1562..cb1e10584 100644 --- a/lib/README.rst +++ b/lib/README.rst @@ -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 ` 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 ` 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 ` 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 diff --git a/modules/cookies/README.rst b/modules/cookies/README.rst index 60aee7f5f..5db476cfc 100644 --- a/modules/cookies/README.rst +++ b/modules/cookies/README.rst @@ -51,4 +51,4 @@ Dependencies ^^^^^^^^^^^^ * `Nettle `_ required for HMAC-SHA256 -* development version of `libknot (master branch) `_ for DNS cookies handling + diff --git a/modules/dnstap/dnstap.c b/modules/dnstap/dnstap.c index 4f6e2f7d2..69d0cd6e4 100644 --- a/modules/dnstap/dnstap.c +++ b/modules/dnstap/dnstap.c @@ -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) {