Michal Nowak
8302469507
Fix broken links in documentation
...
Some detected links are not to be verified (127.*, dnssec-or-not.com)
and some I can't fix (flaticon, godaddy, icann), but they are not
crucial.
2025-01-24 12:07:36 +01:00
Tom Krizek
5893debf46
Remove trailing whitespace from all text files
...
I've used the following command to remove the trailing whitespace for
all tracked text files:
git grep -Il '' | xargs sed -i 's/[ \t]*$//'
2023-06-13 15:05:40 +02:00
Petr Špaček
137e0f4e0e
Remove manually defined anchors pointing to statement definitions
...
This is hopefully end of duplication. This batch did not cause clashes
in Sphinx but it was pointless nonetheless as we have auto-generated
anchors for all statements.
2022-10-05 11:36:22 +02:00
Petr Špaček
c3fed5ce40
Manually hyperlink algorithm, key, options, secret, and server
...
These statements/block are ambiguos because they occur in named.conf and
rndc.conf as well. All occurences now link link to the matching
definition.
2022-07-04 15:50:52 +02:00
Petr Špaček
d101490250
Add hyperlinks to all unique statement names
...
This shell script added hyperlinks to all unique statement names:
UNIQSTATEMENTS=$(\
sort \
<(git grep '.. namedconf:statement::' '*.rst' | sed -e 's/^.*:: //') \
<(git grep '.. rndcconf:statement::' '*.rst' | sed -e 's/^.*:: //') \
| uniq --unique)
ARMFILES=$(git ls-files 'doc/*.rst' | grep -v 'doc/man')
for STATEMENT in $UNIQSTATEMENTS; \
do sed -i -e "s/\`\`$STATEMENT\`\`/:any:\`$STATEMENT\`/g" $ARMFILES; \
done
This needs manual cleanup (see next commit) to fix syntax errors.
2022-07-04 15:50:50 +02:00
Ron Aitchison
7842a0ca8f
Restructure includes for chapter 9 Troubleshooting
2022-05-11 10:51:26 +02:00