I've set up mercurial server and default mercurial web interface. I've set collapse
option to true
so I can see folder hierarchy when viewing repositories in web interface. I know that I can set name
, description
, contact
etc. for each repository and all that stuff will be shown in web interface. Is it possible to do the same for the folders?
Mercurial web interface readable folder names
107 views Asked by rpeshkov At
1
Found answer in mercurial sources.
Here you can see than
contact
anddescription
fields are always empty for directories:When you try to cheat and create empty
.hg
folder by yourself, mercurial will treat that folder as a mercurial repository and when you try to open this folder in web interface, you'll see repository overview instead of directory listing.So, I can't do what I want without modifying sources.