##// END OF EJS Templates
win32: read system rcpath from registry...
win32: read system rcpath from registry Using the module name was not always helpful. It breaks down when Mercurial is installed as source and when the Mercurial libs are used by external applications. This patch allows Mercurial installers to store the system wide rcpath in the registry, where it can always be found. HGRCPATH is a poor option for storing the system wide rcpath, since it overrides both the system and user rcpaths.

File last commit:

r5048:8db8e110 default
r5583:1b5b81d9 default
Show More
README
23 lines | 585 B | text/plain | TextLexer
mpm@selenic.com
Clarify doc/README a bit...
r453 Mercurial's documentation is currently kept in ASCIIDOC format, which
is a simple plain text format that's easy to read and edit. It's also
convertible to a variety of other formats including standard UNIX man
page format and HTML.
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 To do this, you'll need to install ASCIIDOC:
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 http://www.methods.co.nz/asciidoc/
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 To generate the man page:
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 asciidoc -d manpage -b docbook hg.1.txt
xmlto man hg.1.xml
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 To display:
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 groff -mandoc -Tascii hg.1 | more
jake@edge2.net
adding doc directory and files
r177
mpm@selenic.com
Clarify doc/README a bit...
r453 To create the html page (without stylesheets):
jake@edge2.net
adding doc directory and files
r177
Brendan Cully
Update asciidoc instructions to suggest html4 for newer versions
r5048 asciidoc -b html4 hg.1.txt
(older asciidoc may want html instead of html4 above)