From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 21 Oct 2024 18:46:28 +0000 (-0400) Subject: spelling: case-insensitive X-Git-Tag: rec-5.2.0-alpha1~6^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ab75b4194f8b5c7fc7f6363ec0a6291005b8c13;p=thirdparty%2Fpdns.git spelling: case-insensitive Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/docs/appendices/backend-writers-guide.rst b/docs/appendices/backend-writers-guide.rst index bd1aa293f5..963dd0e432 100644 --- a/docs/appendices/backend-writers-guide.rst +++ b/docs/appendices/backend-writers-guide.rst @@ -366,7 +366,7 @@ Methods on who is asking. Note that **qdomain** can be of any case and that your backend should - make sure it is in effect case insensitive. Furthermore, the case of the + make sure it is in effect case-insensitive. Furthermore, the case of the original question should be retained in answers returned by ``get()``! Finally, the domain_id might also be passed indicating that only diff --git a/docs/changelog/4.0.rst b/docs/changelog/4.0.rst index 330f3fb139..84e3c94f45 100644 --- a/docs/changelog/4.0.rst +++ b/docs/changelog/4.0.rst @@ -136,7 +136,7 @@ Bug fixes `#5091 `__ (shantikulkarni) - `#5289 `__: Sort NSEC - record case insensitive (Kees Monshouwer) + record case-insensitive (Kees Monshouwer) - `#5378 `__: Make sure NSEC ordernames are always lower case - `#4781 `__: API: diff --git a/docs/changelog/pre-4.0.rst b/docs/changelog/pre-4.0.rst index 6c24e472f5..92a07e6d42 100644 --- a/docs/changelog/pre-4.0.rst +++ b/docs/changelog/pre-4.0.rst @@ -303,7 +303,7 @@ Improvements: Bug fixes: - `commit 88c52fe `__: - make makeRelative() case insensitive (Kees Monshouwer) + make makeRelative() case-insensitive (Kees Monshouwer) DNSSEC improvements: @@ -528,7 +528,7 @@ Improvements: - `commit 73004f1 `__: implement CORS for the HTTP API - `commit 4d9c289 `__: - qtype is now case insensitive in API and database + qtype is now case-insensitive in API and database - `commit 13af5d8 `__, `commit 223373a `__, `commit 1d5a68d `__, @@ -955,7 +955,7 @@ Other changes - `commit 3613a51 `__: Show built-in features in ^^version output - `commit 4bd7d35 `__: - make domainmetadata queries case insensitive + make domainmetadata queries case-insensitive - `commit 088c334 `__: output warning message when no to be notified NS's are found - `commit 5631b44 `__: @@ -1072,7 +1072,7 @@ Changes since 3.3 - `commit 213ec4a `__: add constraints for name to pg schema - `commit f104427 `__: - make domainmetadata queries case insensitive + make domainmetadata queries case-insensitive - `commit 78fc378 `__: no label compression for name in TSIG records - `commit 15d6ffb `__: @@ -5491,7 +5491,7 @@ New features Enhancements ^^^^^^^^^^^^ -- Packet Cache is now case insensitive, leading to a higher hitrate +- Packet Cache is now case-insensitive, leading to a higher hitrate because identical queries only differing in case now both match. Care is taken to restore the proper case in the answer sent out. - Packet Cache stores packets more efficiently now, savings are diff --git a/pdns/dnsdistdist/docs/reference/selectors.rst b/pdns/dnsdistdist/docs/reference/selectors.rst index b2098b8969..e0eeaa37a1 100644 --- a/pdns/dnsdistdist/docs/reference/selectors.rst +++ b/pdns/dnsdistdist/docs/reference/selectors.rst @@ -303,7 +303,7 @@ Selectors can be combined via :func:`AndRule`, :func:`OrRule` and :func:`NotRule The second rule drops anything with more than 4 consecutive digits within a .EXAMPLE domain. Note that the query name is presented without a trailing dot to the regex. - The regex is applied case insensitively. + The regex is applied case-insensitively. :param string regex: A regular expression to match the traffic on diff --git a/pdns/dnsdistdist/docs/rules-actions.rst b/pdns/dnsdistdist/docs/rules-actions.rst index aa6129bc72..8918ccc74e 100644 --- a/pdns/dnsdistdist/docs/rules-actions.rst +++ b/pdns/dnsdistdist/docs/rules-actions.rst @@ -73,7 +73,7 @@ This delays any query for a domain name with 5 or more consecutive digits in it. The second rule drops anything with more than 4 consecutive digits within a .example domain. Note that the query name is presented without a trailing dot to the regex. -The regex is applied case insensitively. +The regex is applied case-insensitively. Alternatively, if compiled in, :func:`RE2Rule` provides similar functionality, but against libre2. diff --git a/pdns/recursordist/docs/appendices/internals.rst b/pdns/recursordist/docs/appendices/internals.rst index 371ac1970f..74be0e31a6 100644 --- a/pdns/recursordist/docs/appendices/internals.rst +++ b/pdns/recursordist/docs/appendices/internals.rst @@ -199,7 +199,7 @@ with a compound key on the name and type of a record. Furthermore, the cache is sequenced, each time a record is accessed it is moved to the end of the list. When cleanup is performed, we start at the beginning. New records also get inserted at the end. For DNS correctness, the sort -order of the cache is case insensitive. +order of the cache is case-insensitive. The multi index container appears in other parts of PowerDNS, and MTasker as well. diff --git a/regression-tests/tests/nsecx-upcase/description b/regression-tests/tests/nsecx-upcase/description index 436cb7fc84..69402ebde7 100644 --- a/regression-tests/tests/nsecx-upcase/description +++ b/regression-tests/tests/nsecx-upcase/description @@ -1 +1 @@ -Make sure NSEC(3) generation is case insensitive. +Make sure NSEC(3) generation is case-insensitive.