]> granicus.if.org Git - pdns/commitdiff
fix some ugly pages and fix <> issues
authorPieter Lexis <pieter@plexis.eu>
Wed, 26 Nov 2014 20:51:43 +0000 (21:51 +0100)
committerPieter Lexis <pieter@plexis.eu>
Wed, 26 Nov 2014 20:51:43 +0000 (21:51 +0100)
pdns/docs/markdown/authoritative/backend-remote.md
pdns/docs/markdown/changelog.md
pdns/docs/markdown/common/logging.md
pdns/docs/markdown/recursor/index.md
pdns/docs/process-md.sh

index 510dc6d071aa64404beffdc5014b9eba8f656366..0ec5f5cad11d32debedd675814f210bf7699b114 100644 (file)
@@ -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=`&lt;flags,active,content&gt;`
+* Parameters: name, key=`<flags,active,content>`
 * Reply: true for success, false for failure
 
 #### Example JSON/RPC
index d9888bbcdfa253865aecca513fc074c8eb81f1ee..64828e1027687b40f3eace68e6631a5207493301 100644 (file)
@@ -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 \<pthread.h\> to rec-channel.hh (this fixes building on OS X).
+-   [commit 6fdd40d](https://github.com/PowerDNS/pdns/commit/6fdd40d): add missing `#include <pthread.h>` to rec-channel.hh (this fixes building on OS X).
 
 # PowerDNS Authoritative Server 3.4.1
 
index 3b69d3480d7d985dd8123375611c7c3e5783b0e2..86afeddc3d5280b992cc65ea5a69529c30b38641 100644 (file)
@@ -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 <http://people.ee.ethz.ch/~oetiker/webtools/mrtg/mrtg.html>
+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:
 
index 40da86c27b3b78d1363d59a0b24974b27ce099d4..1fbfebc22e08dfbc41dd90cfa29c1c7189830b08 100644 (file)
@@ -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.
-
-* * * * *
-
-<table>
-<colgroup>
-<col width="33%" />
-<col width="33%" />
-<col width="33%" />
-</colgroup>
-<tbody>
-<tr class="odd">
-<td align="left"><a href="built-in-recursor.html">Prev</a> 
-<a href="built-in-recursor.html">Up</a>
- <a href="rec-control.html">Next</a></td>
-<td align="left">Chapter 18. PowerDNS Recursor: a high performance resolving nameserver 
-<a href="index.html">Home</a>
- 3. Controlling and querying the recursor</td>
-</tr>
-</tbody>
-</table>
-
-
+* --config: Emit a default configuration file.
+* --help: Output all configuration settings and command line flags.
index f5c15e0a1b2feba88146d197623ac10b14df127f..0160da8cd8cf5cdbfcad6d49345bf20174765283 100755 (executable)
@@ -7,7 +7,10 @@ pre() {
 }
 
 post() {
-  find html-new -type f -name '*.html' -exec sed -i 's/<table>/<table class="table-bordered">/' {} +
+  find html-new -type f -name '*.html' -exec sed -i \
+    -e 's/<table>/<table class="table-bordered">/' \
+    -e 's/\\&\(gt\|lt\)/\&\1/' \
+    {} +
 }
 
 $1