svn commit: r928460 - /ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r928460 - /ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl

adrianc
Author: adrianc
Date: Sun Mar 28 17:46:45 2010
New Revision: 928460

URL: http://svn.apache.org/viewvc?rev=928460&view=rev
Log:
Revert 928451.

Modified:
    ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl

Modified: ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl?rev=928460&r1=928459&r2=928460&view=diff
==============================================================================
--- ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl (original)
+++ ofbiz/trunk/framework/widget/templates/htmlScreenMacroLibrary.ftl Sun Mar 28 17:46:45 2010
@@ -66,10 +66,47 @@ under the License.
   <#if text?has_content>
     <#-- Label is considered block level element in screen widget. There is not reason to render text outside of any html element. Use of style element has set pattern and we'll use style
        to determine appropriate html element to use -->
-    <#if "h1~h2~h3~h4~h5~h6"?contains(style)>
-      <${style}<#if id?has_content> id="${id}"</#if>>${text}</${style}>
+    <#if style?has_content>
+      <#if style=="h1">
+        <h1
+      <#elseif style=="h2">
+        <h2
+      <#elseif style=="h3">
+        <h3
+      <#elseif style=="h4">
+        <h4
+      <#elseif style=="h5">
+        <h5
+      <#elseif style=="h6">
+        <h6
+      <#else>
+        <p class="${style}"
+      </#if>
     <#else>
-      <p<#if style?has_content> class="${style}"</#if><#if id?has_content> id="${id}"</#if>>${text}</p>
+      <p
+    </#if>
+    <#if id?has_content >
+        <#if id?has_content> id="${id}"</#if>
+    </#if>
+        >${text}
+    <#if style?has_content>
+      <#if style=="h1">
+        </h1>
+      <#elseif style=="h2">
+        </h2>
+      <#elseif style=="h3">
+        </h3>
+      <#elseif style=="h4">
+        </h4>
+      <#elseif style=="h5">
+        </h5>
+      <#elseif style=="h6">
+        </h6>
+      <#else>
+        </p>
+      </#if>
+    <#else>
+      </p>
     </#if>
   </#if>
 </#macro>