mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-23 18:05:32 +00:00
- Bootstrap updated & patch created - Applied to Web Scripts folders - Fixed Importer bug found with above import patch files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6102 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 htmlFilename = "readme.html"/> <#assign ftlFilename = "readme.ftl"/> <#if space?exists> <#if space.childByNamePath["${htmlFilename}"]?exists> ${space.childByNamePath[htmlFilename].content} </#if> <#if space.childByNamePath["${ftlFilename}"]?exists> <#include space.childByNamePath["${ftlFilename}"].nodeRef> </#if> </#if>