You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jo...@apache.org on 2008/06/25 06:57:16 UTC

svn commit: r671427 - in /ofbiz/trunk/applications: ecommerce/webapp/ecommerce/blog/ ecommerce/webapp/ecommerce/cart/ ecommerce/webapp/ecommerce/catalog/ ecommerce/webapp/ecommerce/content/ ecommerce/webapp/ecommerce/customer/ ecommerce/webapp/ecommerc...

Author: jonesde
Date: Tue Jun 24 21:57:15 2008
New Revision: 671427

URL: http://svn.apache.org/viewvc?rev=671427&view=rev
Log:
Applied patch from Rob Schapper in jira issue OFBIZ-1849; did change ids to be more consistent with the name of the file they are in; thanks Rob

Modified:
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/blog/blogs.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/minipromotext.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/choosecatalog.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/miniassocprods.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastproductsearches.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedcategories.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedproducts.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minireorderprods.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/sidedeepcategory.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/content_categories.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/factoids.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/minipoll.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/recentlyviewed.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/miniSignUpForContactList.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/forum/forums.ftl
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/includes/language.ftl
    ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/minicart.ftl
    ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/keywordsearchbox.ftl

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/blog/blogs.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/blog/blogs.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/blog/blogs.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/blog/blogs.ftl Tue Jun 24 21:57:15 2008
@@ -17,7 +17,7 @@
 under the License.
 -->
 
-<div class="screenlet">
+<div id="browse-blogs" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductBrowseBlogs}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/minipromotext.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/minipromotext.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/minipromotext.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/cart/minipromotext.ftl Tue Jun 24 21:57:15 2008
@@ -18,7 +18,7 @@
 -->
 
 <#if showPromoText>
-<div class="screenlet">
+<div id="minipromotext" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.OrderSpecialOffers}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/choosecatalog.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/choosecatalog.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/choosecatalog.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/choosecatalog.ftl Tue Jun 24 21:57:15 2008
@@ -22,7 +22,7 @@
 
 <#-- Only show if there is more than 1 (one) catalog, no sense selecting when there is only one option... -->
 <#if (catalogCol?size > 1)>
-<div class="screenlet">
+<div id ="choosecatalog" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductChooseCatalog}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/miniassocprods.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/miniassocprods.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/miniassocprods.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/miniassocprods.ftl Tue Jun 24 21:57:15 2008
@@ -19,7 +19,7 @@
 
 <#assign associatedProducts = Static["org.ofbiz.order.shoppingcart.product.ProductDisplayWorker"].getRandomCartProductAssoc(request, true)?if_exists>
 <#if associatedProducts?has_content>
-<div class="screenlet">
+<div id="miniassocproducts" class="screenlet">
     <div class="screenlet-header">
         <div class='boxhead'><b>${uiLabelMap.EcommerceYouMightLike}...</b></div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastproductsearches.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastproductsearches.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastproductsearches.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastproductsearches.ftl Tue Jun 24 21:57:15 2008
@@ -21,7 +21,7 @@
 <#assign searchOptionsHistoryList = Static["org.ofbiz.product.product.ProductSearchSession"].getSearchOptionsHistoryList(session)?if_exists/>
 <#if searchOptionsHistoryList?has_content>
     <#if (searchOptionsHistoryList?size > maxToShow)><#assign limit=maxToShow/><#else><#assign limit=(searchOptionsHistoryList?size-1)/></#if>
-    <div class="screenlet">
+    <div id="minilastproductsearches" class="screenlet">
         <div class="screenlet-header">
             <div class="boxlink">
                 <a href="<@o...@ofbizUrl>" class="lightbuttontextsmall">[${uiLabelMap.CommonClear}]</a>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedcategories.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedcategories.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedcategories.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedcategories.ftl Tue Jun 24 21:57:15 2008
@@ -21,7 +21,7 @@
 <#assign lastViewedCategories = sessionAttributes.lastViewedCategories?if_exists/>
 <#if lastViewedCategories?has_content>
     <#if (lastViewedCategories?size > maxToShow)><#assign limit=maxToShow/><#else><#assign limit=(lastViewedCategories?size-1)/></#if>
-    <div class="screenlet">
+    <div id="minilastviewedcategories" class="screenlet">
         <div class="screenlet-header">
             <div class="boxlink">
                 <a href="<@o...@ofbizUrl>" class="lightbuttontextsmall">[${uiLabelMap.CommonClear}]</a>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedproducts.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedproducts.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedproducts.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minilastviewedproducts.ftl Tue Jun 24 21:57:15 2008
@@ -21,7 +21,7 @@
 <#assign lastViewedProducts = sessionAttributes.lastViewedProducts?if_exists/>
 <#if lastViewedProducts?has_content>
     <#if (lastViewedProducts?size > maxToShow)><#assign limit=maxToShow/><#else><#assign limit=(lastViewedProducts?size-1)/></#if>
-    <div class="screenlet">
+    <div id="minilastviewedproducts" class="screenlet">
         <div class="screenlet-header">
             <div class="boxlink">
                 <a href="<@o...@ofbizUrl>" class="lightbuttontextsmall">[${uiLabelMap.CommonClear}]</a>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minireorderprods.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minireorderprods.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minireorderprods.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/minireorderprods.ftl Tue Jun 24 21:57:15 2008
@@ -17,7 +17,7 @@
 under the License.
 -->
 <#if reorderProducts?has_content>
-<div class="screenlet">
+<div id ="minireorderprods" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductQuickReorder}...</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/sidedeepcategory.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/sidedeepcategory.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/sidedeepcategory.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/catalog/sidedeepcategory.ftl Tue Jun 24 21:57:15 2008
@@ -41,7 +41,7 @@
       <#assign browseCategoryButtonClass = "browsecategorybutton">
   </#if>
   <#if wrapInBox == "Y">
-  <div class="screenlet">
+  <div  id="sidedeepcategory" class="screenlet">
     <div class="screenlet-header">
       <div class="boxhead"><#if categoryDescription?has_content>${categoryDescription}<#else>${categoryName?default("")}</#if></div>
     </div>
@@ -69,7 +69,7 @@
 </#macro>
 
 <#if topLevelList?has_content>
-<div class="screenlet">
+<div id="sidedeepcategory" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductBrowseCategories}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/content_categories.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/content_categories.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/content_categories.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/content_categories.ftl Tue Jun 24 21:57:15 2008
@@ -30,7 +30,7 @@
   </#if>
 </#if>
 
-<div class="screenlet">
+<div id="content_catagories" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductBrowseContent}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/factoids.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/factoids.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/factoids.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/factoids.ftl Tue Jun 24 21:57:15 2008
@@ -30,7 +30,7 @@
   </#if>
 </#if>
 
-<div class="screenlet">
+<div id="factoids" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.Factoids}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/minipoll.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/minipoll.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/minipoll.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/minipoll.ftl Tue Jun 24 21:57:15 2008
@@ -23,7 +23,7 @@
 </#if>
 
 <#if randomSurvey?has_content>
-<div class="screenlet">
+<div id="minipoll" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${randomSurvey.getSurveyName()?if_exists}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/recentlyviewed.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/recentlyviewed.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/recentlyviewed.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/content/recentlyviewed.ftl Tue Jun 24 21:57:15 2008
@@ -18,7 +18,7 @@
 -->
 
 <#if mrvList?has_content>
-    <div class="screenlet">
+    <div id="recentlyviewed" class="screenlet">
         <div class="screenlet-header">
             <div class="boxhead">${uiLabelMap.EcommerceLastContent}</div>
         </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/miniSignUpForContactList.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/miniSignUpForContactList.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/miniSignUpForContactList.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/miniSignUpForContactList.ftl Tue Jun 24 21:57:15 2008
@@ -27,7 +27,7 @@
     </select>
 </#macro>
 
-<div class="screenlet">
+<div id="miniSignUpForContactList" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.EcommerceSignUpForContactList}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/forum/forums.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/forum/forums.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/forum/forums.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/forum/forums.ftl Tue Jun 24 21:57:15 2008
@@ -17,7 +17,7 @@
 under the License.
 -->
 
-<div class="screenlet">
+<div id="browse-forums" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductBrowseForums}</div>
     </div>

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/includes/language.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/includes/language.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/includes/language.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/includes/language.ftl Tue Jun 24 21:57:15 2008
@@ -17,7 +17,7 @@
 under the License.
 -->
 
-<div class="screenlet">
+<div id="choose-language" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.CommonLanguageTitle}</div>
     </div>

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/minicart.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/minicart.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/minicart.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/minicart.ftl Tue Jun 24 21:57:15 2008
@@ -24,7 +24,7 @@
     <#assign shoppingCartSize = 0>
 </#if>
 
-<div class="screenlet">
+<div id="minicart" class="screenlet">
     <div class="screenlet-header">
         <div class='boxhead'><b>${uiLabelMap.OrderCartSummary}</b></div>
     </div>

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/keywordsearchbox.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/keywordsearchbox.ftl?rev=671427&r1=671426&r2=671427&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/keywordsearchbox.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/entry/catalog/keywordsearchbox.ftl Tue Jun 24 21:57:15 2008
@@ -17,7 +17,7 @@
 under the License.
 -->
 
-<div class="screenlet">
+<div id="keywordsearchbox" class="screenlet">
     <div class="screenlet-header">
         <div class="boxhead">${uiLabelMap.ProductSearchCatalog}</div>
     </div>