02-04-2008 09:08 AM
02-04-2008 11:30 AM
<#ftl ns_prefixes={"D", "http://www.alfresco.org/training"}>
It did solve the problem with Alfresco 2.1.1E02-05-2008 01:28 AM
02-05-2008 06:25 AM
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:trn="http://www.alfresco.org/training"
targetNamespace="http://www.alfresco.org/training"
elementFormDefault="qualified">
Denis
02-05-2008 06:46 AM
02-05-2008 04:22 PM
02-06-2008 01:04 AM
<#ftl ns_prefixes={"si":"http://www.alfresco.org/alfresco/pressrelease"}>
<#assign pressrelease = .vars["si:pressrelease"]>
<html>
<body>
${pressrelease["si:CustomerName"]}
${pressrelease["si:E-mail"]}
${pressrelease["si:city"]}
${pressrelease["si:CompanyName"]}
${pressrelease["si:Processor"]}
${pressrelease["si:Ram"]}
${pressrelease["si:ScreenSize"]}
${pressrelease["si:HardDisk"]}
${pressrelease["si:DVDWriter"]}
${pressrelease["si:ExtraFeatures"]}
</body>
</html>
02-06-2008 03:39 AM
<#ftl ns_prefixes={"D":"http://www.alfresco.org/alfresco/pr"}>
where the "D" stands for Freemarker Default namespace I think, and should not be changed.02-06-2008 04:12 AM
<#ftl ns_prefixes={"D":"http://www.alfresco.org/alfresco/pressrelease"}>
<html>
<body>
${CustomerName.string}
${E-mail.string}
${city.string}
${CompanyName.string}
${Processor.string}
${Ram.string}
${ScreenSize.string}
${HardDisk.string}
${DVDWriter.string}
${ExtraFeatures.string}
</body>
</html>
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="Laptop6Feb.xsl"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:pr="http://www.alfresco.org/alfresco/pr"
targetNamespace="http://www.alfresco.org/alfresco/pr"
elementFormDefault="qualified">
<xs:simpleType name="Processor">
<xs:restriction base="xs:normalizedString">
<xs:enumeration value="Pentium4"/>
<xs:enumeration value="celeron"/>
<xs:enumeration value="AMDAthlon"/>
<xs:enumeration value="DualCore"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="pressrelease">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerName" type="xs:normalizedString"/>
<xs:element name="E-mail" type="xs:normalizedString"/>
<xs:element name="city" type="xs:normalizedString"/>
<xs:element name="CompanyName" type="xs:normalizedString"/>
<xs:element name="Processor" type="pr:Processor"/>
<xs:element name="Ram" type="xs:normalizedString"/>
<xs:element name="ScreenSize" type="xs:normalizedString"/>
<xs:element name="HardDisk" type="xs:normalizedString"/>
<xs:element name="DVDWriter" type="xs:normalizedString"/>
<xs:element name="ExtraFeatures" type="xs:normalizedString"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
02-06-2008 05:00 AM
<#ftl ns_prefixes={"D":"http://www.alfresco.org/alfresco/pr"}>
<html>
<body>
${pressrelease.CustomerName}
${pressrelease.E-mail}
…
Denis
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.