From: Pieter Lexis Date: Wed, 26 Nov 2014 20:51:43 +0000 (+0100) Subject: fix some ugly pages and fix <> issues X-Git-Tag: rec-3.7.0-rc1~160^2^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=76305274701b7ae28804bce2ddca0becc0728afc;p=pdns fix some ugly pages and fix <> issues --- diff --git a/pdns/docs/markdown/authoritative/backend-remote.md b/pdns/docs/markdown/authoritative/backend-remote.md index 510dc6d07..0ec5f5cad 100644 --- a/pdns/docs/markdown/authoritative/backend-remote.md +++ b/pdns/docs/markdown/authoritative/backend-remote.md @@ -362,7 +362,7 @@ Coefficient: 6S0vhIQITWzqfQSLj+wwRzs6qCvJckHb1+SD1XpwYjSgMTEUlZhf96m8WiaE1/fIt4Z Adds key into local storage. See [`getDomainKeys`](#getdomainkeys) for more information. * Mandatory: No -* Parameters: name, key=`<flags,active,content>` +* Parameters: name, key=`` * Reply: true for success, false for failure #### Example JSON/RPC diff --git a/pdns/docs/markdown/changelog.md b/pdns/docs/markdown/changelog.md index d9888bbcd..64828e102 100644 --- a/pdns/docs/markdown/changelog.md +++ b/pdns/docs/markdown/changelog.md @@ -11,7 +11,7 @@ A list of changes since 3.6.1 follows. - [commit 42025be](https://github.com/PowerDNS/pdns/commit/42025be): PowerDNS now polls the security status of a release at startup and periodically. More detail on this feature, and how to turn it off, can be found in [Security polling](common/security.md#security-polling). - [commit 5027429](https://github.com/PowerDNS/pdns/commit/5027429): We did not transmit the right 'local' socket address to Lua for TCP/IP queries in the recursor. In addition, we would attempt to lookup a filedescriptor that wasn't there in an unlocked map which could conceivably lead to crashes. Closes [ticket 1828](https://github.com/PowerDNS/pdns/issues/1828), thanks Winfried for reporting - [commit 752756c](https://github.com/PowerDNS/pdns/commit/752756c): Sync embedded yahttp copy. API: Replace HTTP Basic auth with static key in custom header -- [commit 6fdd40d](https://github.com/PowerDNS/pdns/commit/6fdd40d): add missing \#include \ to rec-channel.hh (this fixes building on OS X). +- [commit 6fdd40d](https://github.com/PowerDNS/pdns/commit/6fdd40d): add missing `#include ` to rec-channel.hh (this fixes building on OS X). # PowerDNS Authoritative Server 3.4.1 diff --git a/pdns/docs/markdown/common/logging.md b/pdns/docs/markdown/common/logging.md index 3b69d3480..86afeddc3 100644 --- a/pdns/docs/markdown/common/logging.md +++ b/pdns/docs/markdown/common/logging.md @@ -38,7 +38,7 @@ To launch the internal webserver, add a [`webserver`](../authoritative/settings. ## Via init.d commands As mentioned before, the init.d commands **dump**, **show** and **mrtg** fetch data from a running PDNS process. Especially **mrtg** is powerful - it outputs data in a format that is ready for processing by the MRTG graphing tool. -MRTG can make insightful graphics on the performance of your nameserver, enabling the operator to easily spot trends. MRTG can be found on +MRTG can make insightful graphics on the performance of your nameserver, enabling the operator to easily spot trends. MRTG can be found on the (MRTG website)[http://people.ee.ethz.ch/~oetiker/webtools/mrtg/mrtg.html] A sample mrtg.conf: diff --git a/pdns/docs/markdown/recursor/index.md b/pdns/docs/markdown/recursor/index.md index 40da86c27..1fbfebc22 100644 --- a/pdns/docs/markdown/recursor/index.md +++ b/pdns/docs/markdown/recursor/index.md @@ -24,45 +24,9 @@ At startup, the recursing nameserver reads the file `recursor.conf` from the con A switch can be set to on simply by passing it, like '--daemon', and turned off explicitly by '--daemon=off' or '--daemon=no'. All settings can be found [here](settings.md) -2. pdns\_recursor command line - -[Prev](built-in-recursor.html)  - -Chapter 18. PowerDNS Recursor: a high performance resolving nameserver - - [Next](rec-control.html) - -* * * * * - -2. pdns\_recursor command line ------------------------------- +# `pdns_recursor` command line All configuration settings from the previous section can also be passed on the command line, and will override the configuration file. In addition, the following options make sense on the command line: ---config -Emit a default configuration file. - ---help -Output all configuration settings and command line flags. - -* * * * * - - ----- - - - - - - -
Prev  -Up - NextChapter 18. PowerDNS Recursor: a high performance resolving nameserver  -Home - 3. Controlling and querying the recursor
- - +* --config: Emit a default configuration file. +* --help: Output all configuration settings and command line flags. diff --git a/pdns/docs/process-md.sh b/pdns/docs/process-md.sh index f5c15e0a1..0160da8cd 100755 --- a/pdns/docs/process-md.sh +++ b/pdns/docs/process-md.sh @@ -7,7 +7,10 @@ pre() { } post() { - find html-new -type f -name '*.html' -exec sed -i 's//
/' {} + + find html-new -type f -name '*.html' -exec sed -i \ + -e 's/
/
/' \ + -e 's/\\&\(gt\|lt\)/\&\1/' \ + {} + } $1