mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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
<#-- 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>