07-24-2009 06:11 AM
07-28-2009 04:41 AM
<title>Alfresco RSS</title>
<copyright>Copyright © 2006 Alfresco Software, Inc. All rights reserved.</copyright>
<#assign hostname="http://localhost:8080/alfresco">
<#assign spaceref="${hostname}/navigate/browse/${space.nodeRef.storeRef.protocol}/${space.nodeRef.storeRef.identifier}/${space.nodeRef.id}">
<#assign datetimeformat="EEE, dd MMM yyyy HH:mm:ss zzz">
<link>${spaceref}</link>
<description>Recent Changes to '${space.name}'</description>
<language>en-us</language>
<lastBuildDate>${date?string(datetimeformat)}</lastBuildDate>
<pubDate>${date?string(datetimeformat)}</pubDate>
<ttl>120</ttl>
<generator>Alfresco 1.4</generator>
<image>
<title>${space.name}</title>
<width>32</width>
<height>32</height>
<link>${spaceref}</link>
<url>${hostname}${space.icon32}</url>
</image>
<#assign weekms=1000*60*60*24*7>
<#list space.childrenByXPath[".//*[subtypeOf('cm:content')]"] as child>
<#if (dateCompare(child.properties["cm:modified"], date, weekms) == 1) || (dateCompare(child.properties["cm:created"], date, weekms) == 1)>
<item>
<title>${child.properties.name}</title>
<link>${hostname}${child.url}</link>
<description>
${"<a href='${hostname}${child.url}'>"?xml}${child.properties.name}${"</a>"?xml}
<#if child.properties["cm:description"]?exists && child.properties["cm:description"] != "">
${child.properties["cm:description"]}
</#if>
</description>
<pubDate>${child.properties["cm:modified"]?string(datetimeformat)}</pubDate>
<guid isPermaLink="false">${hostname}${child.url}</guid>
</item>
</#if>
</#list>
07-29-2009 02:12 AM
<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>
<table>
<#– Get a list of all the property names for the document –>
<#assign props = document.properties?keys>
<#list props as t>
<#– If the property exists –>
<#if document.properties[t]?exists>
<#– If it is a date, format it accordingly–>
<#if document.properties[t]?is_date>
<tr><td>${t} = ${document.properties[t]?date}</td></tr>
<#– If it is a boolean, format it accordingly–>
<#elseif document.properties[t]?is_boolean>
<tr><td>${t} = ${document.properties[t]?string("yes", "no")}</td></tr>
<#– Otherwise treat it as a string –>
<#else>
<tr><td>${t} = ${document.properties[t]}</td></tr>
</#if>
</#if>
</#list>
</table>
<b>Name:</b> alta2222 de usuario.txt<br>
<b>Ref:</b> workspace://SpacesStore/3ba7e93f-d14f-4872-b6be-2704fdc81612<br>
<b>Type:</b> {http://www.alfresco.org/model/content/1.0}content<br>
<b>Content URL:</b> <a href="/alfresco/d/d/workspace/SpacesStore/3ba7e93f-d14f-4872-b6be-2704fdc81612/alta2222%20de%20usuario.txt">/alfresco/d/d/workspace/SpacesStore/3ba7e93f-d14f-4872-b6be-2704fdc81612/alta2222%20de%20usuario.txt</a><br>
<b>Locked:</b> No<br>
<b>Aspects:</b>
<table>
<tr><td>{http://www.alfresco.org/model/content/1.0}auditable</td></tr>
<tr><td>{http://www.alfresco.org/model/system/1.0}referenceable</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}titled</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}author</td></tr>
<tr><td>{http://www.alfresco.org/model/application/1.0}inlineeditable</td></tr>
</table>
<table>
<tr><td>{http://www.alfresco.org/model/content/1.0}name = alta2222 de usuario.txt</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}modified = 28-jul-2009</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}creator = admin</td></tr>
<tr><td>{http://www.alfresco.org/model/system/1.0}store-protocol = workspace</td></tr>
<tr><td>{http://www.alfresco.org/model/system/1.0}store-identifier = SpacesStore</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}created = 28-jul-2009</td></tr>
<tr><td>{http://www.alfresco.org/model/application/1.0}editInline = yes</td></tr>
<tr><td>{http://www.alfresco.org/model/system/1.0}node-dbid = 2.483</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}content = org.alfresco.repo.template.BaseContentNode$TemplateContentData@4fdeaf01</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}title = alta2222 de usuario.txt</td></tr>
<tr><td>{http://www.alfresco.org/model/system/1.0}node-uuid = 3ba7e93f-d14f-4872-b6be-2704fdc81612</td></tr>
<tr><td>{http://www.alfresco.org/model/content/1.0}modifier = admin</td></tr>
</table>
07-29-2009 05:42 AM
<aspect name="cm:titled">
<title>Titled</title>
<properties>
<property name="cm:title">
<title>Title</title>
<type>d:mltext</type>
</property>
<property name="cm:description">
<title>Description</title>
<type>d:mltext</type>
</property>
</properties>
</aspect>
07-29-2009 07:59 AM
Se ha producido un Error al procesar la plantilla 'Expected extended hash. documen$
at org.alfresco.repo.template.FreeMarkerProcessor.process(FreeMarkerProcessor.java:206)
07-30-2009 12:09 PM
02-22-2010 05:19 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.