mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Moving to root below branch label
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2005 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
20
config/alfresco/templates/content/examples/company_logos.ftl
Normal file
20
config/alfresco/templates/content/examples/company_logos.ftl
Normal file
@@ -0,0 +1,20 @@
|
||||
<#-- Table of the images found in a folder under Company Home called "Company Logos" -->
|
||||
<#-- Shows each image found as inline content -->
|
||||
<table>
|
||||
<#list companyhome.children as child>
|
||||
<#if child.isContainer && child.name = "Company Logos">
|
||||
<#list child.children as image>
|
||||
<#switch image.mimetype>
|
||||
<#case "image/jpeg">
|
||||
<#case "image/gif">
|
||||
<#case "image/png">
|
||||
<tr>
|
||||
<td><img src="/alfresco${image.url}"></td>
|
||||
</tr>
|
||||
<#break>
|
||||
<#default>
|
||||
</#switch>
|
||||
</#list>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
17
config/alfresco/templates/content/examples/doc_info.ftl
Normal file
17
config/alfresco/templates/content/examples/doc_info.ftl
Normal file
@@ -0,0 +1,17 @@
|
||||
<#-- Shows some general info about the current document, including NodeRef and aspects applied -->
|
||||
<h3>=====Template Start=====</h3>
|
||||
|
||||
<h4>Current Document Info:</h4>
|
||||
<b>Name:</b> ${document.name}<br>
|
||||
<b>Ref:</b> ${document.nodeRef}<br>
|
||||
<b>Type:</b> ${document.type}<br>
|
||||
<b>Content URL:</b> <a href="/alfresco${document.url}">/alfresco${document.url}</a><br>
|
||||
<b>Locked:</b> <#if document.isLocked>Yes<#else>No</#if><br>
|
||||
<b>Aspects:</b>
|
||||
<table>
|
||||
<#list document.aspects as aspect>
|
||||
<tr><td>${aspect}</td></tr>
|
||||
</#list>
|
||||
</table>
|
||||
|
||||
<h3>=====Template End=====</h3>
|
47
config/alfresco/templates/content/examples/example.ftl
Normal file
47
config/alfresco/templates/content/examples/example.ftl
Normal file
@@ -0,0 +1,47 @@
|
||||
<h3>=====Example Template Start=====</h3>
|
||||
|
||||
<b>Company Home Space:</b> ${companyhome.properties.name}
|
||||
<br>
|
||||
<b>My Home Space:</b> ${userhome.properties.name}
|
||||
<br>
|
||||
<b>Company Home children count:</b> ${companyhome.children?size}
|
||||
<br>
|
||||
<b>Company Home first child node name:</b> ${companyhome.children[0].properties.name}
|
||||
<br>
|
||||
<b>Current Document Name:</b> ${document.name}
|
||||
<br>
|
||||
<b>Current Space Name:</b> ${space.name}
|
||||
|
||||
<h4>List of child spaces in my Home Space:</h4>
|
||||
<table>
|
||||
<#list userhome.children as child>
|
||||
<#if child.isContainer>
|
||||
<tr>
|
||||
<td><img src="/alfresco${child.icon32}"></td>
|
||||
<td><b>${child.properties.name}</b> (${child.children?size})</td>
|
||||
<td><b>Path:</b> ${child.displayPath}</td>
|
||||
</tr>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
||||
|
||||
<h4>List of docs in my Home Space (text only content shown inline, JPG images shown as thumbnails):</h4>
|
||||
<table>
|
||||
<#list userhome.children as child>
|
||||
<#if child.isDocument>
|
||||
<tr><td><img src="/alfresco${child.icon16}"></td><td><a href="/alfresco${child.url}">${child.properties.name}</a></td></tr>
|
||||
<#if child.mimetype = "text/plain">
|
||||
<tr><td></td><td>${child.content}</td></tr>
|
||||
<#elseif child.mimetype = "image/jpeg">
|
||||
<tr><td></td><td><img width=100 height=65 src="/alfresco${child.url}"></td></tr>
|
||||
</#if>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
||||
|
||||
<h4>Assoc example:</h4>
|
||||
<#if userhome.children[0].assocs["cm:contains"]?exists>
|
||||
${userhome.children[0].assocs["cm:contains"][0].name}
|
||||
</#if>
|
||||
|
||||
<h3>=====Example Template End=====</h3>
|
10
config/alfresco/templates/content/examples/localizable.ftl
Normal file
10
config/alfresco/templates/content/examples/localizable.ftl
Normal file
@@ -0,0 +1,10 @@
|
||||
<#-- Shows if a document is localizable and the locale if set -->
|
||||
<b>Localisable:</b>
|
||||
<#if hasAspect(document, "cm:localizable") = 1>
|
||||
Yes<br>
|
||||
<#if document.properties.locale?exists>
|
||||
Locale: ${document.properties.locale.properties.name}
|
||||
</#if>
|
||||
<#else>
|
||||
No<br>
|
||||
</#if>
|
20
config/alfresco/templates/content/examples/my_docs.ftl
Normal file
20
config/alfresco/templates/content/examples/my_docs.ftl
Normal file
@@ -0,0 +1,20 @@
|
||||
<#-- Table of the documents in my Home Space -->
|
||||
<#-- Shows the Icon and link to the content for the doc, also the size in KB and lock status -->
|
||||
<table>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><b>Name</b></td>
|
||||
<td><b>Size</b></td>
|
||||
<td><b>Locked</b></td>
|
||||
</tr>
|
||||
<#list userhome.children as child>
|
||||
<#if child.isDocument>
|
||||
<tr>
|
||||
<td><a href="/alfresco${child.url}" target="new"><img src="/alfresco${child.icon16}" border=0></a></td>
|
||||
<td><a href="/alfresco${child.url}" target="new">${child.properties.name}</a></td>
|
||||
<td>${(child.size / 1000)?string("0.##")} KB</td>
|
||||
<td> <#if child.isLocked>Yes</#if></td>
|
||||
</tr>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
@@ -0,0 +1,22 @@
|
||||
<#-- Displays a table of all the documents from a "Press Releases" folder under Company Home -->
|
||||
<#-- Obviously this folder needs to exist and the docs in it should have the title and description fields set -->
|
||||
<table>
|
||||
<#list companyhome.children as child>
|
||||
<#if child.isContainer && child.name = "Press Releases">
|
||||
<#list child.children as doc>
|
||||
<#if doc.isDocument>
|
||||
<tr>
|
||||
<td><h3>${doc.properties.title}</h3></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-left:4px"><b>${doc.properties.description}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="padding-left:8px"><small>${doc.content}</small></td>
|
||||
</tr>
|
||||
<tr><td><div style="padding:6px"></div></td></tr>
|
||||
</#if>
|
||||
</#list>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
15
config/alfresco/templates/content/examples/my_spaces.ftl
Normal file
15
config/alfresco/templates/content/examples/my_spaces.ftl
Normal file
@@ -0,0 +1,15 @@
|
||||
<#-- Table of the Spaces in my Home Folder -->
|
||||
<#-- Shows the large 32x32 pixel icon, and generates an external access servlet URL to the space -->
|
||||
<table>
|
||||
<#list userhome.children as child>
|
||||
<#if child.isContainer>
|
||||
<tr>
|
||||
<td><img src="/alfresco${child.icon32}"></td>
|
||||
<#assign ref=child.nodeRef>
|
||||
<#assign workspace=ref[0..ref?index_of("://")-1]>
|
||||
<#assign storenode=ref[ref?index_of("://")+3..]>
|
||||
<td><a href="/alfresco/navigate/showSpaceDetails/${workspace}/${storenode}"><b>${child.properties.name}</b></a> (${child.children?size})</td>
|
||||
</tr>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
@@ -0,0 +1,8 @@
|
||||
<#-- Table of some summary details about the current user -->
|
||||
<table>
|
||||
<tr><td><b>Name:</b></td> <td>${person.properties.firstName} ${person.properties.lastName}</td></tr>
|
||||
<tr><td><b>User:</b></td> <td>${person.properties.userName}</td></tr>
|
||||
<tr><td><b>Home Space location:</b></td> <td>${userhome.displayPath}/${userhome.name}</td></tr>
|
||||
<tr><td><b>Items in Home Space:</b></td> <td>${userhome.children?size}</td></tr>
|
||||
<tr><td><b>Items in Company Space:</b></td> <td>${companyhome.children?size}</td></tr>
|
||||
</table>
|
12
config/alfresco/templates/content/examples/translatable.ftl
Normal file
12
config/alfresco/templates/content/examples/translatable.ftl
Normal file
@@ -0,0 +1,12 @@
|
||||
<#-- Shows the translations applied to a doc through the translatable aspect -->
|
||||
<b>Translatable:</b>
|
||||
<#if hasAspect(document, "cm:translatable") = 1>
|
||||
Yes<br>
|
||||
<table>
|
||||
<#list document.assocs["cm:translations"] as t>
|
||||
<tr><td>${t.content}</td></tr>
|
||||
</#list>
|
||||
</table>
|
||||
<#else>
|
||||
No<br>
|
||||
</#if>
|
15
config/alfresco/templates/content/examples/userhome_docs.ftl
Normal file
15
config/alfresco/templates/content/examples/userhome_docs.ftl
Normal file
@@ -0,0 +1,15 @@
|
||||
<#-- List of docs in the Home Space for current user -->
|
||||
<#-- If the doc mimetype is plain/text then the content is shown inline -->
|
||||
<#-- If the doc mimetype is JPEG then the image is shown inline as a small thumbnail image -->
|
||||
<table>
|
||||
<#list userhome.children as child>
|
||||
<#if child.isDocument>
|
||||
<tr><td>${child.properties.name}</td></tr>
|
||||
<#if child.mimetype = "text/plain">
|
||||
<tr><td style='padding-left:16px'>${child.content}</td></tr>
|
||||
<#elseif child.mimetype = "image/jpeg">
|
||||
<tr><td style='padding-left:16px'><img width=100 height=65 src="/alfresco${child.url}"><td></tr>
|
||||
</#if>
|
||||
</#if>
|
||||
</#list>
|
||||
</table>
|
213
config/alfresco/templates/content_template_examples.xml
Normal file
213
config/alfresco/templates/content_template_examples.xml
Normal file
@@ -0,0 +1,213 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0">
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:company_logos.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:00.103+01:00</cm:modified>
|
||||
<cm:description>company_logos.ftl</cm:description>
|
||||
<sys:node-uuid>8138e003-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/company_logos.ftl|mimetype=text/plain|size=690|encoding=UTF-8</cm:content>
|
||||
<cm:title>company_logos.ftl</cm:title>
|
||||
<cm:name>company_logos.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:10:59.509+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:doc_info.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:00.900+01:00</cm:modified>
|
||||
<cm:description>doc_info.ftl</cm:description>
|
||||
<sys:node-uuid>81d1768e-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/doc_info.ftl|mimetype=text/plain|size=577|encoding=UTF-8</cm:content>
|
||||
<cm:title>doc_info.ftl</cm:title>
|
||||
<cm:name>doc_info.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:00.446+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:example.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:01.759+01:00</cm:modified>
|
||||
<cm:description>example.ftl</cm:description>
|
||||
<sys:node-uuid>8243e77b-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/example.ftl|mimetype=text/plain|size=1577|encoding=UTF-8</cm:content>
|
||||
<cm:title>example.ftl</cm:title>
|
||||
<cm:name>example.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:01.196+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:localizable.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:02.743+01:00</cm:modified>
|
||||
<cm:description>localizable.ftl</cm:description>
|
||||
<sys:node-uuid>82d7c318-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/localizable.ftl|mimetype=text/plain|size=293|encoding=UTF-8</cm:content>
|
||||
<cm:title>localizable.ftl</cm:title>
|
||||
<cm:name>localizable.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:02.181+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:my_docs.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:03.587+01:00</cm:modified>
|
||||
<cm:description>my_docs.ftl</cm:description>
|
||||
<sys:node-uuid>83692db5-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/my_docs.ftl|mimetype=text/plain|size=750|encoding=UTF-8</cm:content>
|
||||
<cm:title>my_docs.ftl</cm:title>
|
||||
<cm:name>my_docs.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:03.118+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:my_pressreleases.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:04.337+01:00</cm:modified>
|
||||
<cm:description>my_pressreleases.ftl</cm:description>
|
||||
<sys:node-uuid>83db9ea2-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/my_pressreleases.ftl|mimetype=text/plain|size=910|encoding=UTF-8</cm:content>
|
||||
<cm:title>my_pressreleases.ftl</cm:title>
|
||||
<cm:name>my_pressreleases.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:03.868+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:my_spaces.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:05.150+01:00</cm:modified>
|
||||
<cm:description>my_spaces.ftl</cm:description>
|
||||
<sys:node-uuid>84553b7f-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/my_spaces.ftl|mimetype=text/plain|size=682|encoding=UTF-8</cm:content>
|
||||
<cm:title>my_spaces.ftl</cm:title>
|
||||
<cm:name>my_spaces.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:04.665+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:my_summary.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:05.994+01:00</cm:modified>
|
||||
<cm:description>my_summary.ftl</cm:description>
|
||||
<sys:node-uuid>84d3934c-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/my_summary.ftl|mimetype=text/plain|size=537|encoding=UTF-8</cm:content>
|
||||
<cm:title>my_summary.ftl</cm:title>
|
||||
<cm:name>my_summary.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:05.509+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:translatable.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:06.759+01:00</cm:modified>
|
||||
<cm:description>translatable.ftl</cm:description>
|
||||
<sys:node-uuid>854f7a19-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/translatable.ftl|mimetype=text/plain|size=322|encoding=UTF-8</cm:content>
|
||||
<cm:title>translatable.ftl</cm:title>
|
||||
<cm:name>translatable.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:06.306+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
<cm:content xmlns:alf="http://www.alfresco.org" xmlns:d="http://www.alfresco.org/model/dictionary/1.0" xmlns:view="http://www.alfresco.org/view/repository/1.0" xmlns:act="http://www.alfresco.org/model/action/1.0" xmlns:app="http://www.alfresco.org/model/application/1.0" xmlns:usr="http://www.alfresco.org/model/user/1.0" xmlns:ver="http://www.alfresco.org/model/versionstore/1.0" xmlns:cm="http://www.alfresco.org/model/content/1.0" xmlns:my="my.new.model" xmlns:sys="http://www.alfresco.org/model/system/1.0" xmlns:rule="http://www.alfresco.org/model/rule/1.0" xmlns:custom="custom.model" xmlns="" view:childName="cm:userhome_docs.ftl">
|
||||
<view:aspects>
|
||||
<cm:auditable></cm:auditable>
|
||||
<sys:referenceable></sys:referenceable>
|
||||
<app:uifacets></app:uifacets>
|
||||
</view:aspects>
|
||||
<view:properties>
|
||||
<cm:modifier>admin</cm:modifier>
|
||||
<cm:modified>2005-10-21T15:11:07.525+01:00</cm:modified>
|
||||
<cm:description>userhome_docs.ftl</cm:description>
|
||||
<sys:node-uuid>85c45b07-423c-11da-be9d-bb84ac6911f1</sys:node-uuid>
|
||||
<cm:creator>admin</cm:creator>
|
||||
<sys:store-protocol>workspace</sys:store-protocol>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/content/examples/userhome_docs.ftl|mimetype=text/plain|size=652|encoding=UTF-8</cm:content>
|
||||
<cm:title>userhome_docs.ftl</cm:title>
|
||||
<cm:name>userhome_docs.ftl</cm:name>
|
||||
<sys:store-identifier>SpacesStore</sys:store-identifier>
|
||||
<cm:created>2005-10-21T15:11:07.072+01:00</cm:created>
|
||||
</view:properties>
|
||||
<view:associations></view:associations>
|
||||
</cm:content>
|
||||
</view:view>
|
69
config/alfresco/templates/software_engineering_project.xml
Normal file
69
config/alfresco/templates/software_engineering_project.xml
Normal file
@@ -0,0 +1,69 @@
|
||||
<view:view xmlns:view="http://www.alfresco.org/view/repository/1.0"
|
||||
xmlns:cm="http://www.alfresco.org/model/content/1.0"
|
||||
xmlns:app="http://www.alfresco.org/model/application/1.0">
|
||||
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.project}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
<cm:contains>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.documentation}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
<cm:contains>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.drafts}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.pending_approval}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.published}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.samples}</cm:name>
|
||||
<app:icon>space-icon-doc</app:icon>
|
||||
<cm:contains>
|
||||
<cm:content>
|
||||
<app:uifacets/>
|
||||
<cm:title>${templates.document.system_overview.title}</cm:title>
|
||||
<cm:name>${templates.document.system_overview.name}</cm:name>
|
||||
<cm:description>${templates.document.system_overview.name}</cm:description>
|
||||
<cm:content>contentUrl=classpath:alfresco/templates/${templates.document.system_overview.name}|mimetype=text/html|size=|encoding=</cm:content>
|
||||
</cm:content>
|
||||
</cm:contains>
|
||||
</cm:folder>
|
||||
</cm:contains>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.discussions}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.ui_design}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.presentations}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
<cm:folder>
|
||||
<app:uifacets/>
|
||||
<cm:name>${templates.space.quality_assurance}</cm:name>
|
||||
<app:icon>space-icon-default</app:icon>
|
||||
</cm:folder>
|
||||
</cm:contains>
|
||||
</cm:folder>
|
||||
|
||||
</view:view>
|
18
config/alfresco/templates/system-overview.html
Normal file
18
config/alfresco/templates/system-overview.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>System Overview</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>System Overview</h1>
|
||||
<h2>Purpose</h2>
|
||||
In this section, give a brief summary of the purpose of the proposed system,
|
||||
including the target users and organisations.
|
||||
<h2>Aims and Objectives</h2>
|
||||
In this section, give a brief summary of the reasons for developing the
|
||||
proposed system.
|
||||
<h2>Prerequisites</h2>
|
||||
In this section give any prerequisites for the proposed system.
|
||||
<h2>Total Expected Effort</h2>
|
||||
In this section give a rough estimate in months of effort required.
|
||||
|
||||
|
Reference in New Issue
Block a user