Files
alfresco-community-repo/config/alfresco/templates
Will Abson c717551907 Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
79326: Merged EOL to HEAD-BUG-FIX (5.0/Cloud)
      79090: ACE-2013 EOL JCR, JCR-RMI, etc in 5.0
         - Removed references to http://www.jcp.org/jcr (left in web-scripts-application-context.xml
           and multiple versions of opencmis-gnamefilter-context.xml)
      78990: ACE-2013 EOL JCR, JCR-RMI, etc in 5.0
         - Removing references to "jcr-xpath" - Biggest changes were to: DocumentNavigator, NodeServiceXPath and NodeSearcher
         - SearcherComponentTest has a lot of tests removed that appeared to be JCR specific
         - There are still a lot of namespace references in XML files to http://www.jcp.org/jcr/1.0 etc.
         - Left a few  references to "JSR 170" and JCR in java classes as they looked like they might be common with other bits.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@82708 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2014-09-03 15:21:53 +00:00
..
2011-06-06 12:59:26 +00:00
2011-04-11 19:26:26 +00:00
2010-01-26 12:33:55 +00:00

<#-- Displays the contents of readme.html and/or the evaluated readme.ftl if they exist in the current space. -->
<#assign filename = "readme"/>
<#assign htmlExt = "html"/>
<#assign suffix = .lang />
<#assign ftlExt = "ftl"/>
<#assign htmlLangFilename = "${filename}_${suffix}.${htmlExt}"/>
<#assign htmlFilename = "${filename}.${htmlExt}"/>
<#assign ftlFilename = "${filename}.${ftlExt}"/>
<#assign messageError="Readme file does not exist!"/>
<#assign found = false>

<#if space?exists>
    <#if space.childByNamePath["${htmlLangFilename}"]?exists>
        ${space.childByNamePath[htmlLangFilename].content}
    <#elseif space.childByNamePath["${htmlFilename}"]?exists>
        ${space.childByNamePath[htmlFilename].content}
    <#elseif space.childByNamePath["${ftlFilename}"]?exists>
        <#include space.childByNamePath["${ftlFilename}"].nodeRef> 
    <#else>
        ${messageError}
    </#if>
</#if>