I am looking at the old REPORTCENTER onet.xml file in SharePoint 2010's 14 hive (SharePoint Root). I noticed the following in this file:
<Configuration ID="1" Name="Blank">
<ExecuteUrl Url="_layouts/[%=System.Threading.Thread.CurrentThread.CurrentUICulture.LCID%]/settings.aspx" />
</Configuration>
The [%=%] syntax jumped out at me. I assume these are "dynamic" tokens used to access static properties/methods on public classes. The question is, are these run at provisioning time, or at runtime? Also, is this token syntax only available within the <ExecuteUrl> element, or is it available from other elements? Is there documentation on this syntax?