Skip to content
This repository was archived by the owner on Sep 3, 2019. It is now read-only.

History / I want to upgrade Subversion. How do I do that

Revisions

  • More fixes after splitting the FAQ Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

    @dscho dscho committed Mar 29, 2014
  • Split the FAQ It is really hard to find things without a table of contents. GitHub's wiki engine cannot auto-generate a table of contents, so let's just use the FAQ page itself as a table of contents, and fan out into individual pages for the individual questions. This trick was performed by the command-line m=Frequently-Asked-Questions.md echo > $m.new p= for l in $(grep -n '^# ' $m | sed 's/:.*//'; wc -l < $m) do test -z "$p" || sed -n "$(($p+2)),$(($l-1))p" < $m > $file title="$(sed -n "${l}p" < $m)" title="${title#\# }" file="$(echo "$title" | tr ' ' - | tr -d "?\"':/").md" test -z "$title" || echo "# [$title](${file%.md})" >> $m.new p=$l done followed by minimal manual fixing. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

    @dscho dscho committed Mar 29, 2014