Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/hgweb_mod.py @ 4745:e21a0e12ff10
hgweb: use lrwxrwxrwx as the permissions of a symlink
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Tue, 03 Jul 2007 03:06:40 -0300 |
parents | ecea4de3104e |
children | 439e2f2fde42 8be7ba425621 |
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py Tue Jul 03 03:06:40 2007 -0300 +++ b/mercurial/hgweb/hgweb_mod.py Tue Jul 03 03:06:40 2007 -0300 @@ -404,7 +404,7 @@ parent=self.siblings(fctx.parents()), child=self.siblings(fctx.children()), rename=self.renamelink(fl, n), - permissions=fctx.manifest().execf(f)) + permissions=fctx.manifest().flags(f)) def fileannotate(self, fctx): f = fctx.path() @@ -440,7 +440,7 @@ rename=self.renamelink(fl, n), parent=self.siblings(fctx.parents()), child=self.siblings(fctx.children()), - permissions=fctx.manifest().execf(f)) + permissions=fctx.manifest().flags(f)) def manifest(self, ctx, path): mf = ctx.manifest() @@ -477,7 +477,7 @@ "parity": parity.next(), "basename": f, "size": ctx.filectx(full).size(), - "permissions": mf.execf(full)} + "permissions": mf.flags(full)} def dirlist(**map): fl = files.keys()