%PDF- %PDF-
| Direktori : /data/old/home/stash/atlassian/stash/3.7.1/atlassian-stash/static/page/about/ |
| Current File : //data/old/home/stash/atlassian/stash/3.7.1/atlassian-stash/static/page/about/about.soy |
{namespace stash.page}
/**
* @param copyrightStartYear
* @param copyrightEndYear
* @param showLicenses
* @param? authors
*/
{template .about}
{webResourceManager_requireResourcesForContext('stash.page.about')}
{call stash.layout.entity}
{param windowTitle: getText('stash.web.about') /}
{param entityName: getText('stash.web.about') /}
{param content}
<div class="copyright">
<p>
{call .copyrightLine}
{param copyrightYearRange}
{if $copyrightStartYear == $copyrightEndYear}{$copyrightEndYear}{else}{$copyrightStartYear} - {$copyrightEndYear}{/if}
{/param}
{/call}
</p>
</div>
<div class="licenses">
<p>{getText('stash.web.about.license.line1')|noAutoescape}</p>
<p>{getText('stash.web.about.license.line2')|noAutoescape}</p>
<p>
{getText('stash.web.about.license.line3')}
// Ignore the licenses for development builds
{if $showLicenses}
//This function is in an auto-generated soy file derived from third-party-licensing/bom.csv
{call stash.page.about.lgplLibraries/}
{/if}
</p>
<p>{getText('stash.web.about.license.line4')}</p>
<p>{getText('stash.web.about.license.line5')}</p>
</div>
{if $authors and length($authors) > 0}
<div class="authors">
<p>{getText('stash.web.about.authors')}</p>
<ul>
{foreach $author in $authors}
<li>{$author}</li>
{/foreach}
</ul>
</div>
{/if}
{/param}
{/call}
{/template}
/**
* @param copyrightYearRange
*/
{template .copyrightLine}
{{getText('stash.web.about.copyright', $copyrightYearRange)}}
{/template}