Check-in [74424b0987]
Overview
Comment:Updated to be more aggressive in encoding wiki characters in man pages
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 74424b098761025a159f16a1ffcbc1f6ea50b2a4
User & Date: rkeene on 2014-12-29 04:39:06
Other Links: manifest | tags
Context
2015-07-29
14:28
Fixed compilation issues with no logging mode check-in: b4740ac3ab user: rkeene tags: trunk
2014-12-29
04:39
Updated to be more aggressive in encoding wiki characters in man pages check-in: 74424b0987 user: rkeene tags: trunk
2014-10-13
15:03
Post-release version increment check-in: 7ea9f63446 user: rkeene tags: trunk
Changes

Modified build/update-wiki from [4e17d94f35] to [c47eeaaa5c].

1
2
3
4
5
6
7
8
9
#! /bin/bash

(
	echo '<H2>NAME</H2>'
	man2html -H linux.die.net -M /man -p filed.1 | \
		sed '0,/<H2>NAME<\/H2>/ d;/<H2>Index<\/H2>/,$ d;s@<A HREF="../index.html">Return to Main Contents</A>@@;s@\[@\&#91;@;s@\]@\&#93;@' | \
		sed '$ d;/^ *$/ d' | \
		sed 's@\(http://linux.die.net/man/[^+]*\)+@\1/@'
) | fossil wiki commit Manual





|



1
2
3
4
5
6
7
8
9
#! /bin/bash

(
	echo '<H2>NAME</H2>'
	man2html -H linux.die.net -M /man -p filed.1 | \
		sed '0,/<H2>NAME<\/H2>/ d;/<H2>Index<\/H2>/,$ d;s@<A HREF="../index.html">Return to Main Contents</A>@@;s@\[@\&#91;@g;s@\]@\&#93;@g' | \
		sed '$ d;/^ *$/ d' | \
		sed 's@\(http://linux.die.net/man/[^+]*\)+@\1/@'
) | fossil wiki commit Manual