You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2009/10/19 10:30:38 UTC

svn commit: r826605 - /ofbiz/trunk/applications/content/template/HelpTemplate.ftl

Author: hansbak
Date: Mon Oct 19 08:30:38 2009
New Revision: 826605

URL: http://svn.apache.org/viewvc?rev=826605&view=rev
Log:
cleanup the help template file

Modified:
    ofbiz/trunk/applications/content/template/HelpTemplate.ftl

Modified: ofbiz/trunk/applications/content/template/HelpTemplate.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/HelpTemplate.ftl?rev=826605&r1=826604&r2=826605&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/template/HelpTemplate.ftl (original)
+++ ofbiz/trunk/applications/content/template/HelpTemplate.ftl Mon Oct 19 08:30:38 2009
@@ -22,8 +22,6 @@
 under the License.
 -->
 
-<#if layoutSettings.VT_NAME[0] == "FLAT_GREY">
-<#------------------------------------------->
 <#macro para para>
 <p>
   <#list para?children as child>
@@ -62,44 +60,3 @@
   </div>
 </div>
 
-<#else><#-- other templates  -->          
-<#----------------------------->
-<#macro para para>
-<p>
-  <#list para?children as child>
-    <#if child?node_type = "text">
-  ${child}
-    <#elseif child?node_type = 'element' && child?node_name = "link">
-  <a href="${child["@xl:href"]}">${child}</a>
-    </#if>
-  </#list>
-  <br/>              
-</p>
-</#macro>
-
-<#macro section inSection first="no">
-  <#list inSection.* as subSection>
-    <#if subSection?node_name = "title">
-      <#if first = "yes"> 
-        <h1>${subSection}</h1>
-      <#else>
-        <h2>${subSection}</h2>
-      </#if>
-    <#elseif subSection?node_name = "para">
-        <@para para=subSection/>
-    <#elseif subSection?node_name = "section">
-        <@section inSection=subSection/>
-    </#if>
-  </#list>
-  <br/><br/>
-</#macro>
-
-<div class="contentarea">
-  <div id="column-container">
-    <div id="content-main-section">
-    <@section inSection=doc.section first="yes"/>
-    </div>
-  </div>
-</div>
-
-</#if>
\ No newline at end of file