mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19133 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
28 lines
927 B
Plaintext
28 lines
927 B
Plaintext
------------------------------------------------------------------------------
|
|
Document name: ${document.name}
|
|
------------------------------------------------------------------------------
|
|
|
|
<#if document.properties.title?exists>
|
|
Title: ${document.properties.title}
|
|
<#else>
|
|
Title: NONE
|
|
</#if>
|
|
<#if document.properties.description?exists>
|
|
Description: ${document.properties.description}
|
|
<#else>
|
|
Description: NONE
|
|
</#if>
|
|
Creator: ${document.properties.creator}
|
|
Created: ${document.properties.created?datetime}
|
|
Modifier: ${document.properties.modifier}
|
|
Modified: ${document.properties.modified?datetime}
|
|
Size: ${document.size / 1024} Kb
|
|
|
|
|
|
CONTENT LINKS
|
|
|
|
Content folder: ${contextUrl}/navigate/browse${document.parent.webdavUrl}
|
|
Content URL: ${contextUrl}${document.url}
|
|
Download URL: ${contextUrl}${document.downloadUrl}
|
|
WebDAV URL: ${contextUrl}${document.webdavUrl}
|