# HG changeset patch # User Patrick Mezard # Date 1329564624 -3600 # Node ID 461a59e2765a56878a479ffd1d6fc26173a74028 # Parent 6e4de55a41a47612a39707d6d7c0c0454a6a28b3 doc: minor fixes to [graph] section documentation diff -r 6e4de55a41a4 -r 461a59e2765a mercurial/help/config.txt --- a/mercurial/help/config.txt Sun Jan 22 19:35:26 2012 +0700 +++ b/mercurial/help/config.txt Sat Feb 18 12:30:24 2012 +0100 @@ -537,28 +537,30 @@ ``graph`` """"""""" -This section specifies line width and color to visually distinguish -"main branch" or trunk in central repository graph. +Web graph view configuration. This section let you change graph +elements display properties by branches, for instance to make the +``default`` branch stand out. -Format branch_name.attribute = value. +Each line has the following format:: + + . = -Example:: - [graph] - # 2px width - default.width = 2 - # red color - default.color = FF0000 +where ```` is the name of the branch being +customized. Example:: + + [graph] + # 2px width + default.width = 2 + # red color + default.color = FF0000 Supported arguments: ``width`` - Set width in px. Width is number 0-99. + Set branch edges width in pixels. ``color`` - Color is six hexadecimal digits RRGGBB. - -Known issues: - If line style doesn't change, try to clear browser cache. + Set branch edges color in hexadecimal RGB notation. ``merge-patterns`` """"""""""""""""""