Mercurial > hg
view contrib/wix/locale.wxs @ 29387:6b77adc2c7b5
hgweb: highlight data of the current revision in annotate view
* Distinguish the /annotate/<revision>/<file>#<linenumber> link when it would
lead to the current page (i.e. <revision> is the current revision) (style it
gray and undecorated). This indicates more clearly that this is a "dead-end"
in blame navigation.
* Display lines changed in current revision in green.
author | Denis Laxalde <denis.laxalde@logilab.fr> |
---|---|
date | Thu, 02 Jun 2016 16:26:50 +0200 |
parents | bd9bc4123920 |
children | 14e8fef9158d |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <?include defines.wxi ?> <?define hglocales = da;de;el;fr;it;ja;pt_BR;sv;zh_CN;zh_TW ?> <Fragment> <ComponentGroup Id="localeFolder"> <?foreach LOC in $(var.hglocales) ?> <ComponentRef Id="hg.locale.$(var.LOC)"/> <?endforeach?> </ComponentGroup> </Fragment> <Fragment> <DirectoryRef Id="INSTALLDIR"> <Directory Id="localedir" Name="locale" FileSource="$(var.SourceDir)"> <?foreach LOC in $(var.hglocales) ?> <Directory Id="hg.locale.$(var.LOC)" Name="$(var.LOC)"> <Directory Id="hg.locale.$(var.LOC).LC_MESSAGES" Name="LC_MESSAGES"> <Component Id="hg.locale.$(var.LOC)" Guid="*" Win64='$(var.IsX64)'> <File Id="hg.mo.$(var.LOC)" Name="hg.mo" KeyPath="yes" /> </Component> </Directory> </Directory> <?endforeach?> </Directory> </DirectoryRef> </Fragment> </Wix>