# HG changeset patch # User Thomas Arendsen Hein # Date 1125470455 -7200 # Node ID bc9695f1f872e906ec3af77785639d2aa90be05f # Parent 3f30a5e7e15baaa00702f00e20a85f456d0567d3# Parent a425bb927ede0088f895f51f3ef001edd8f44722 Merged changes. diff -r 3f30a5e7e15b -r bc9695f1f872 doc/hgrc.5.txt --- a/doc/hgrc.5.txt Wed Aug 31 08:38:34 2005 +0200 +++ b/doc/hgrc.5.txt Wed Aug 31 08:40:55 2005 +0200 @@ -64,14 +64,14 @@ hooks:: Commands that get automatically executed by various actions such as starting or finishing a commit. + changegroup;; + Run after a changegroup has been added via push or pull. + commit;; + Run after a changeset has been created. Passed the ID of the newly + created changeset. precommit;; Run before starting a commit. Exit status 0 allows the commit to proceed. Non-zero status will cause the commit to fail. - commit;; - Run after a changeset has been created. Passed the ID of the newly - created changeset. - changegroup;; - Run after a changegroup has been added via push or pull. http_proxy:: Used to access web-based Mercurial repositories through a HTTP @@ -79,13 +79,13 @@ host;; Host name and (optional) port of the proxy server, for example "myproxy:8000". - user;; - Optional. User name to authenticate with at the proxy server. - passwd;; - Optional. Password to authenticate with at the proxy server. no;; Optional. Comma-separated list of host names that should bypass the proxy. + passwd;; + Optional. Password to authenticate with at the proxy server. + user;; + Optional. User name to authenticate with at the proxy server. paths:: Assigns symbolic names to repositories. The left side is the @@ -105,50 +105,53 @@ Default is "hgmerge". quiet;; Reduce the amount of output printed. True or False. Default is False. + remotecmd;; + remote command to use for clone/push/pull operations. Default is 'hg'. + ssh;; + command to use for SSH connections. Default is 'ssh'. username;; The committer of a changeset created when running "commit". Typically a person's name and email address, e.g. "Fred Widget ". Default is $EMAIL or username@hostname. verbose;; Increase the amount of output printed. True or False. Default is False. - ssh;; - command to use for SSH connections. Default is 'ssh'. - remotecmd;; - remote command to use for clone/push/pull operations. Default is 'hg'. web:: Web interface configuration. - name;; - Repository name to use in the web interface. Default is current - working directory. - address;; - Interface address to bind to. Default is all. - port;; - Port to listen on. Default is 8000. - ipv6;; - Whether to use IPv6. Default is false. accesslog;; Where to output the access log. Default is stdout. - errorlog;; - Where to output the error log. Default is stderr. - templates;; - Where to find the HTML templates. Default is install path. - style;; - Which template map style to use. - maxchanges;; - Maximum number of changes to list on the changelog. Default is 10. - maxfiles;; - Maximum number of files to list per changeset. Default is 10. + address;; + Interface address to bind to. Default is all. + allowbz2;; + Whether to allow .tar.bz2 downloading of repo revisions. Default is false. + allowgz;; + Whether to allow .tar.gz downloading of repo revisions. Default is false. allowpull;; Whether to allow pulling from the repository. Default is true. allowzip;; Whether to allow .zip downloading of repo revisions. Default is false. This feature creates temporary files. - allowgz;; - Whether to allow .tar.gz downloading of repo revisions. Default is false. - allowbz2;; - Whether to allow .tar.bz2 downloading of repo revisions. Default is false. + description;; + Textual description of the repository's purpose or contents. + Default is "unknown". + errorlog;; + Where to output the error log. Default is stderr. + ipv6;; + Whether to use IPv6. Default is false. + name;; + Repository name to use in the web interface. Default is current + working directory. + maxchanges;; + Maximum number of changes to list on the changelog. Default is 10. + maxfiles;; + Maximum number of files to list per changeset. Default is 10. + port;; + Port to listen on. Default is 8000. + style;; + Which template map style to use. + templates;; + Where to find the HTML templates. Default is install path. AUTHOR