comparison mercurial/help.py @ 9158:d6eecafaf12f

doc: use reStructuredText for man and HTML pages The Makefile now requires the rst2html and rst2man programs. Both can be found in Debian testing or downloaded from the Docutils homepage: http://docutils.sf.net/ http://docutils.sf.net/sandbox/manpage-writer/ The new HTML and man pages no longer contain huge amounts of un-wrapping literal blocks, thanks to how snippets of reStructuredText can easily be included inside other reStructuredText documents. The HTML pages now have anchors for all sections, including the help topics in hgrc.1 which were missing from the old HTML pages.
author Martin Geisler <mg@lazybytes.net>
date Thu, 16 Jul 2009 23:25:26 +0200
parents 9261667e9b82
children 81028d2db635
comparison
equal deleted inserted replaced
9157:9261667e9b82 9158:d6eecafaf12f
146 To use a plain path name without any pattern matching, start it with 146 To use a plain path name without any pattern matching, start it with
147 "path:". These path names must completely match starting at the current 147 "path:". These path names must completely match starting at the current
148 repository root. 148 repository root.
149 149
150 To use an extended glob, start a name with "glob:". Globs are rooted at 150 To use an extended glob, start a name with "glob:". Globs are rooted at
151 the current directory; a glob such as "*.c" will only match files in the 151 the current directory; a glob such as "``*.c``" will only match files in the
152 current directory ending with ".c". 152 current directory ending with ".c".
153 153
154 The supported glob syntax extensions are "**" to match any string across 154 The supported glob syntax extensions are "``**``" to match any string across
155 path separators and "{a,b}" to mean "a or b". 155 path separators and "{a,b}" to mean "a or b".
156 156
157 To use a Perl/Python regular expression, start a name with "re:". Regexp 157 To use a Perl/Python regular expression, start a name with "re:". Regexp
158 pattern matching is anchored at the root of the repository. 158 pattern matching is anchored at the root of the repository.
159 159