Overview
Comment: | Fix issues formatting wiki documentation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
710e4a917a7a3a6cc8ffd447fafea3a7 |
User & Date: | rkeene on 2019-04-09 18:14:00 |
Other Links: | manifest | tags |
Context
2019-04-09
| ||
18:47 | Make extension filename more centralized check-in: 8e730964e5 user: rkeene tags: trunk | |
18:14 | Fix issues formatting wiki documentation check-in: 710e4a917a user: rkeene tags: trunk | |
18:13 | Document the "certificate" member of the dictionary returned by "tls::status" check-in: 3323193385 user: rkeene tags: trunk | |
Changes
Modified build/update-wiki-docs from [18ccdf9d95] to [05d1cbbcf4].
1 2 3 4 5 6 7 | #! /usr/bin/env bash version="$1" cd "$(dirname "$(which "$0")")/.." || exit 1 if [ -z "${version}" ]; then | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #! /usr/bin/env bash version="$1" cd "$(dirname "$(which "$0")")/.." || exit 1 if [ -z "${version}" ]; then version="$(cat configure.ac | grep AC_INIT | head -1 | sed 's@^AC_INIT([^,]*, *@@;s@,.*$@@;s@ *)$@@')" fi newBody="$(cat tls.htm | sed 's@\[@<nowiki>[</nowiki>@g' | sed '/<\/body>/,$ d;0,/<body[ >]/ d;/<!--/,/-->/ d' | sed 's/@@VERS@@/'"${version}"'/g' | grep -iv '^<!doctype')" oldBody="$(fossil wiki export 'Documentation')" if [ "${newBody}" != "${oldBody}" ]; then echo "${newBody}" | fossil wiki commit 'Documentation' fi |