crusade-tracker/config/_notifications/win32/mute.ftl.dist

70 lines
2.3 KiB
Plaintext
Raw Normal View History

2021-01-18 20:27:50 +00:00
<#-- Uses FreeMarker template syntax, template guide can be found at http://freemarker.org/docs/dgui.html -->
<#macro testInfo tests>
<#-- @ftlvariable name="tests" type="java.util.List" -->
<#compress>
<#if tests?size == 1>
Test ${tests[0].name} is
<#else>
${tests?size} tests are
</#if>
</#compress>
</#macro>
<#macro inScope scopeBean>
<#-- @ftlvariable name="scopeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.MuteScopeBean" -->
<#compress>
<#if scopeBean.inProject>
in project ${scopeBean.project.fullName}
</#if>
<#if scopeBean.inBuildType>
in <#list scopeBean.buildTypes as bt>${bt.name}<#if bt_has_next>, </#if></#list>
(in ${scopeBean.buildTypesProject.fullName})
</#if>
<#if scopeBean.inBuild>
in build #${scopeBean.build.buildNumber}
</#if>
</#compress>
</#macro>
<#macro unmute unmuteModeBean>
<#-- @ftlvariable name="unmuteModeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.UnmuteModeBean" -->
<#compress>
<#if unmuteModeBean.manually>
The tests will not be unmuted automatically.
</#if>
<#if unmuteModeBean.whenFixed>
Each test will be unmuted automatically when passes successfully.
</#if>
<#if unmuteModeBean.byTime>
The tests will be unmuted automatically on ${unmuteModeBean.unmuteTime}.
</#if>
</#compress>
</#macro>
<#macro unmutedReason unmuteModeBean scopeBean>
<#-- @ftlvariable name="unmuteModeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.UnmuteModeBean" -->
<#-- @ftlvariable name="scopeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.MuteScopeBean" -->
<#compress>
<#if unmuteModeBean.user??>
Unmute reason: all tests are unmuted manually by ${unmuteModeBean.user.descriptiveName}.
<#else>
<#if unmuteModeBean.whenFixed>
Unmute reason: all tests passed successfully <@mute.inScope scopeBean/>.
</#if>
<#if unmuteModeBean.byTime>
Unmute reason: automatically on ${unmuteModeBean.unmuteTime}.
</#if>
</#if>
</#compress>
</#macro>
<#macro comment muteInfo>
<#-- @ftlvariable name="muteInfo" type="jetbrains.buildServer.serverSide.mute.MuteInfo" -->
<#compress>
<#if muteInfo.mutingComment??>
Comment: ${muteInfo.mutingComment?html}
</#if>
</#compress>
</#macro>