svn commit: r932725 - in /ofbiz/trunk/specialpurpose: ebay/webapp/ebay/find/ ebaystore/webapp/ebaystore/feedback/ ebaystore/webapp/ebaystore/store/

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

svn commit: r932725 - in /ofbiz/trunk/specialpurpose: ebay/webapp/ebay/find/ ebaystore/webapp/ebaystore/feedback/ ebaystore/webapp/ebaystore/store/

buscob
Author: buscob
Date: Sat Apr 10 14:09:54 2010
New Revision: 932725

URL: http://svn.apache.org/viewvc?rev=932725&view=rev
Log:
A patch from Blas Rodriguez Somoza
OFBIZ-3613 - XHTML validation errors (specialpurpose_ebay)
https://issues.apache.org/jira/browse/OFBIZ-3613

XHTML validation errors

    * Unclosed INPUT
    * attributes without values (checked, selected, disabled, etc)
    * attribute values without "
    * Uppercase tags or attributes.
    * Unencoded ampersands in urls.

Modified:
    ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/EbayAdvancedSearch.ftl
    ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl
    ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/feedback/LeaveFeedback.ftl
    ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/StoreSetting.ftl
    ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/ebayApiKeywordSearch.ftl
    ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/productsearchExport.ftl
    ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/returnPolicy.ftl

Modified: ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/EbayAdvancedSearch.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/EbayAdvancedSearch.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/EbayAdvancedSearch.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/EbayAdvancedSearch.ftl Sat Apr 10 14:09:54 2010
@@ -73,7 +73,7 @@ under the License.
               <td valign="middle">
                 <div>
                   <b>"${(searchCategory.description)?if_exists}" [${(searchCategory.productCategoryId)?if_exists}]</b> ${uiLabelMap.ProductIncludeSubCategories}?
-                  ${uiLabelMap.CommonYes}<input type="radio" name="SEARCH_SUB_CATEGORIES" value="Y" checked/>
+                  ${uiLabelMap.CommonYes}<input type="radio" name="SEARCH_SUB_CATEGORIES" value="Y" checked="checked"/>
                   ${uiLabelMap.CommonNo}<input type="radio" name="SEARCH_SUB_CATEGORIES" value="N"/>
                 </div>
               </td>
@@ -176,8 +176,8 @@ under the License.
             <td valign="middle">
               <div>
                 <input type="text" name="SEARCH_STRING" size="40" value="${requestParameters.SEARCH_STRING?if_exists}" />&nbsp;
-                ${uiLabelMap.CommonAny}<input type="radio" name="SEARCH_OPERATOR" value="OR" <#if searchOperator == "OR">checked</#if> />
-                ${uiLabelMap.CommonAll}<input type="radio" name="SEARCH_OPERATOR" value="AND" <#if searchOperator == "AND">checked</#if> />
+                ${uiLabelMap.CommonAny}<input type="radio" name="SEARCH_OPERATOR" value="OR" <#if searchOperator == "OR">checked="checked"</#if> />
+                ${uiLabelMap.CommonAll}<input type="radio" name="SEARCH_OPERATOR" value="AND" <#if searchOperator == "AND">checked="checked"</#if> />
               </div>
             </td>
           </tr>
@@ -321,7 +321,7 @@ under the License.
                   <option value="SortProductPrice:MINIMUM_PRICE">${uiLabelMap.ProductMinimumPrice}</option>
                   <option value="SortProductPrice:MAXIMUM_PRICE">${uiLabelMap.ProductMaximumPrice}</option>
                 </select>
-                ${uiLabelMap.ProductLowToHigh}<input type="radio" name="sortAscending" value="Y" checked />
+                ${uiLabelMap.ProductLowToHigh}<input type="radio" name="sortAscending" value="Y" checked="checked" />
                 ${uiLabelMap.ProductHighToLow}<input type="radio" name="sortAscending" value="N" />
               </div>
             </td>

Modified: ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebay/webapp/ebay/find/productsExportToEbay.ftl Sat Apr 10 14:09:54 2010
@@ -40,7 +40,7 @@ under the License.
 </script>
 <div>
     <form id="ProductsExportToEbay" method="post" action="<@ofbizUrl>PostProductsToEbay</@ofbizUrl>" name="ProductsExportToEbay">
-        <input type="hidden" name="productStoreId" value="${productStoreId?if_exists}">
+        <input type="hidden" name="productStoreId" value="${productStoreId?if_exists}" />
         <table border="0" cellpadding="2" cellspacing="0">
              <tr>
                 <td align="right" class="label">${uiLabelMap.FormFieldTitle_ebayCategory}</td>
@@ -184,7 +184,7 @@ under the License.
             <tr>
                 <td colspan=2>&nbsp;</td>
                 <td>
-                    <input type="submit" value="${uiLabelMap.EbayExportToEbay}" name="submitButton" class="smallSubmit">
+                    <input type="submit" value="${uiLabelMap.EbayExportToEbay}" name="submitButton" class="smallSubmit" />
                 </td>
             </tr>
             </#if>

Modified: ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/feedback/LeaveFeedback.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/feedback/LeaveFeedback.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/feedback/LeaveFeedback.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/feedback/LeaveFeedback.ftl Sat Apr 10 14:09:54 2010
@@ -17,7 +17,7 @@ specific language governing permissions
 under the License.
 -->
 <#if results.itemsAwaitingFeedback?has_content>
-<script>
+<script type="text/javascript">
     var active = "";
     function overStar(obj){
         if(obj.src.match("starActive")){
@@ -84,7 +84,7 @@ under the License.
                     <tr class="${row}" style="border:#eeeeee solid thin">
                         <td valign="top">
                         ${leaveFeedback.itemID} - ${leaveFeedback.title}
-                        <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&transId=${leaveFeedback.transactionID}&ssPageName=STRK:MESOX:VPS&itemid=${leaveFeedback.itemID}">order details</a>
+                        <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&amp;transId=${leaveFeedback.transactionID}&amp;ssPageName=STRK:MESOX:VPS&amp;itemid=${leaveFeedback.itemID}">order details</a>
                         </td>
                         <td>
                             <input type="radio" name="commentType${feedbackCounter}" value="positive"
@@ -115,7 +115,7 @@ under the License.
                     <tr class="${row}"  style="border:#eeeeee solid thin">
                         <td valign="top">
                         ${leaveFeedback.itemID} - ${leaveFeedback.title}
-                        <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&transId=${leaveFeedback.transactionID}&ssPageName=STRK:MESOX:VPS&itemid=${leaveFeedback.itemID}">order details</a>
+                        <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&amp;transId=${leaveFeedback.transactionID}&amp;ssPageName=STRK:MESOX:VPS&amp;itemid=${leaveFeedback.itemID}">order details</a>
                         </td>
                         <td>
                         <input type="radio" name="commentType${feedbackCounter}" value="positive"
@@ -150,27 +150,27 @@ under the License.
                                         <table class="answers" width="100%" border="0" cellpadding="0" cellspacing="0">
                                             <tbody>
                                                 <tr>
-                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="5" type="radio">
+                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="5" type="radio" />
                                                     </td><td>Item was not received</td>
                                                 </tr>
                                                 <tr>
-                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="6" type="radio"></td>
+                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="6" type="radio" /></td>
                                                     <td>Quality did not match item description</td>
                                                 </tr>
                                                 <tr>
-                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="2" type="radio"></td>
+                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="2" type="radio" /></td>
                                                     <td>Item was damaged</td>
                                                 </tr>
                                                 <tr>
-                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="1" type="radio"></td>
+                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="1" type="radio" /></td>
                                                     <td>Item was a counterfeit, replica, or an unauthorized copy</td>
                                                 </tr>
                                                 <tr>
-                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="3" type="radio"></td>
+                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="3" type="radio" /></td>
                                                     <td>Wrong item</td>
                                                 </tr>
                                                 <tr>
-                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="4" type="radio" checked="checked"></td>
+                                                    <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="4" type="radio" checked="checked" /></td>
                                                     <td>Other</td>
                                                 </tr>
                                             </tbody>
@@ -241,7 +241,7 @@ under the License.
                 <tr class="${row}" style="border:#eeeeee solid thin">
                     <td valign="top">
                     ${leaveFeedback.itemID}]${leaveFeedback.title}
-                    <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&transId=${leaveFeedback.transactionID}&ssPageName=STRK:MESOX:VPS&itemid=${leaveFeedback.itemID}">order details</a>
+                    <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&amp;transId=${leaveFeedback.transactionID}&amp;ssPageName=STRK:MESOX:VPS&amp;itemid=${leaveFeedback.itemID}">order details</a>
                     </td>
                     <td>
                         <input type="radio" name="commentType${feedbackCounter}" value="positive"
@@ -274,7 +274,7 @@ under the License.
                 <tr class="${row}"  style="border:#eeeeee solid thin">
                     <td valign="top">
                     ${leaveFeedback.itemID} - ${leaveFeedback.title}
-                    <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&transId=${leaveFeedback.transactionID}&ssPageName=STRK:MESOX:VPS&itemid=${leaveFeedback.itemID}">order details</a>
+                    <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&amp;transId=${leaveFeedback.transactionID}&amp;ssPageName=STRK:MESOX:VPS&amp;itemid=${leaveFeedback.itemID}">order details</a>
                     </td>
                     <td>
                     <input type="radio" name="commentType${feedbackCounter}" value="positive"
@@ -309,27 +309,27 @@ under the License.
                                     <table class="answers" width="100%" border="0" cellpadding="0" cellspacing="0">
                                         <tbody>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="5" type="radio">
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="5" type="radio" />
                                                 </td><td>Item was not received</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="6" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="6" type="radio" /></td>
                                                 <td>Quality did not match item description</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="2" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="2" type="radio" /></td>
                                                 <td>Item was damaged</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="1" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="1" type="radio" /></td>
                                                 <td>Item was a counterfeit, replica, or an unauthorized copy</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="3" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="3" type="radio" /></td>
                                                 <td>Wrong item</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="4" type="radio" checked="checked"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="4" type="radio" checked="checked" /></td>
                                                 <td>Other</td>
                                             </tr>
                                         </tbody>
@@ -398,7 +398,7 @@ under the License.
             <tr class="${row}">
                 <td>
                 ${leaveFeedback.itemID} - ${leaveFeedback.title}
-                <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&transId=${leaveFeedback.transactionID}&ssPageName=STRK:MESOX:VPS&itemid=${leaveFeedback.itemID}">order details</a>
+                <a target="_blank" href="http://payments.sandbox.ebay.com/ws/eBayISAPI.dll?ViewPaymentStatus&amp;transId=${leaveFeedback.transactionID}&amp;ssPageName=STRK:MESOX:VPS&amp;itemid=${leaveFeedback.itemID}">order details</a>
                 </td>
                 <td>
                 <#if leaveFeedback.role == "seller">
@@ -441,27 +441,27 @@ under the License.
                                     <table class="answers" width="100%" border="0" cellpadding="0" cellspacing="0">
                                         <tbody>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="5" type="radio">
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="5" type="radio" />
                                                 </td><td>Item was not received</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="6" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="6" type="radio" /></td>
                                                 <td>Quality did not match item description</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="2" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="2" type="radio" /></td>
                                                 <td>Item was damaged</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="1" type="radio"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="1" type="radio" /></td>
                                                 <td>Item was a counterfeit, replica, or an unauthorized copy</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="3" type="radio"/></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="3" type="radio" /></td>
                                                 <td>Wrong item</td>
                                             </tr>
                                             <tr>
-                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="4" type="radio"  checked="checked"></td>
+                                                <td width="25"><input name="AqItemAsDescribedId${feedbackCounter}" value="4" type="radio" checked="checked" /></td>
                                                 <td>Other</td>
                                             </tr>
                                         </tbody>

Modified: ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/StoreSetting.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/StoreSetting.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/StoreSetting.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/StoreSetting.ftl Sat Apr 10 14:09:54 2010
@@ -26,7 +26,7 @@ under the License.
         }
     }
     function retrieveThemeColorSchemeByThemeId(url,themeId,productStoreId){
-    var pars = 'themeId='+themeId+'&productStoreId='+productStoreId;
+    var pars = 'themeId='+themeId+'&amp;productStoreId='+productStoreId;
     var myAjax = new Ajax.Request( url, {
         method: 'get',
         parameters: pars,
@@ -136,7 +136,7 @@ under the License.
               <td class="label" align="right" valign="middle">${uiLabelMap.EbayStoreStoreName} :</td>
               <td valign="middle">
                     <input type="text" name="storeName" value="${ebayStore.storeName?if_exists}" onKeyDown="countAreaChars(document.StoreSettingForm.storeName,35,document.getElementById('charsleft1'));"
-                    onKeyUp="countAreaChars(document.StoreSettingForm.storeName,35,document.getElementById('charsleft1'));">
+                    onKeyUp="countAreaChars(document.StoreSettingForm.storeName,35,document.getElementById('charsleft1'));" />
                     <div id="charsleft1"></div>
               </td>
             </tr>
@@ -165,8 +165,8 @@ under the License.
               <td class="label" align="right" valign="middle"></td>
               <td valign="middle">
                    <div onClick="javascript:switchTheme();">
-                   <input type="radio" name="storeThemeType" <#if themeType?if_exists == "Basic">checked</#if> value="Basic" default> Basic Theme
-                   <input type="radio"  name="storeThemeType" <#if themeType?if_exists == "Advanced">checked</#if> value="Advanced"> Advanced Theme
+                   <input type="radio" name="storeThemeType" <#if themeType?if_exists == "Basic">checked="checked"</#if> value="Basic" default="default" /> Basic Theme
+                   <input type="radio"  name="storeThemeType" <#if themeType?if_exists == "Advanced">checked="checked"</#if> value="Advanced" /> Advanced Theme
                    </div>
               </td>
             </tr>
@@ -443,7 +443,7 @@ under the License.
             <tr>
               <td class="label" align="right" valign="middle"></td>
               <td valign="middle">
-                    <input type="submit" value="${uiLabelMap.CommonSubmit}" name="submitButton" class="smallSubmit">
+                    <input type="submit" value="${uiLabelMap.CommonSubmit}" name="submitButton" class="smallSubmit" />
               </td>
             </tr>
        </table>

Modified: ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/ebayApiKeywordSearch.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/ebayApiKeywordSearch.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/ebayApiKeywordSearch.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/ebayApiKeywordSearch.ftl Sat Apr 10 14:09:54 2010
@@ -48,7 +48,7 @@ under the License.
   </div>
   <div class="screenlet-body">
     <form id="productSearchform" method="post" action="<@ofbizUrl>productsearch</@ofbizUrl>" style="margin: 0;">
-    <input type="hidden" name="productStoreId" value="${parameters.productStoreId?if_exists}">
+    <input type="hidden" name="productStoreId" value="${parameters.productStoreId?if_exists}" />
       <fieldset>
         <input type="hidden" name="VIEW_SIZE" value="25"/>
         <input type="hidden" name="PAGING" value="Y"/>

Modified: ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/productsearchExport.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/productsearchExport.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/productsearchExport.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/productsearchExport.ftl Sat Apr 10 14:09:54 2010
@@ -17,7 +17,7 @@ specific language governing permissions
 under the License.
 
 -->
-<style>
+<style type="text/css">
     #tabs{
         margin-left: 4px;
         padding: 0;
@@ -71,7 +71,7 @@ under the License.
         if (cateId.indexOf(':')!= -1) {
             cateId = cateId.substring(0,cateId.indexOf(':'));
         }
-        var pars = 'ebayCategoryId='+cateId+'&productStoreId='+productStoreId;
+        var pars = 'ebayCategoryId='+cateId+'&amp;productStoreId='+productStoreId;
         var myAjax = new Ajax.Request( url, {
         method: 'get',
         parameters: pars,
@@ -99,7 +99,7 @@ under the License.
     }
 
      function retrieveTemplateByTemGroupId(templateGroupId,productStoreId,pkCategoryId){
-        var pars = 'templateGroupId='+templateGroupId+'&productStoreId='+productStoreId+'&pkCategoryId='+pkCategoryId;
+        var pars = 'templateGroupId='+templateGroupId+'&amp;productStoreId='+productStoreId+'&amp;pkCategoryId='+pkCategoryId;
         var url = '<@ofbizUrl>ebayAdItemTemplate</@ofbizUrl>';
         var myAjax = new Ajax.Request( url, {
         method: 'get',
@@ -480,7 +480,7 @@ under the License.
                                                 <table align="left" width="60%"  height="100%" cellspacing="0">
                                                     <tr>
                                                         <td></td>
-                                                        <td><input type="checkbox" value="Y" onClick="javascript:enabledItemTemplate(this.value);" id="enabledTheme" name="enabledTheme"><b>Add a theme</b></checkbox></td>
+                                                        <td><input type="checkbox" value="Y" onClick="javascript:enabledItemTemplate(this.value);" id="enabledTheme" name="enabledTheme" /><b>Add a theme</b></checkbox></td>
                                                     </tr>
                                                     <tr>
                                                         <td class="label">Select Theme</td>
@@ -559,10 +559,10 @@ under the License.
                                                         <td>
                                                             <#if listingType.type?if_exists.equals("Chinese")>
                                                                 <input type="radio" name="listype" value="auction"/><b>${tabName?if_exists}</b>
-                                                                <#--<input type="checkbox" value="Y" name="enabledAuction_${id}"><b>${tabName?if_exists}</b></checkbox-->
+                                                                <#--<input type="checkbox" value="Y" name="enabledAuction_${id}" /><b>${tabName?if_exists}</b></checkbox-->
                                                             <#elseif listingType.type?if_exists == "FixedPriceItem">
                                                                 <input type="radio" name="listype" value="fixedprice"/><b>${tabName?if_exists}</b>
-                                                                <#--input type="checkbox" value="Y" name="enabledFixedPrice_${id}"><b>${tabName?if_exists}</b></checkbox-->
+                                                                <#--input type="checkbox" value="Y" name="enabledFixedPrice_${id}" /><b>${tabName?if_exists}</b></checkbox-->
                                                             </#if>
                                                         </td>
                                                         <td class="label">Duration</td>
@@ -615,13 +615,13 @@ under the License.
                                                             <td class="label">Start Price</td>
                                                             <td><input type="text" size="6" name="startPrice_${id}" value="${min?if_exists}" />${currencyUomId?if_exists}</td>
                                                             <td class="label">BIN Price</td>
-                                                            <td><input type="text"  size="6" name="buyItNowPrice_${id}" value="${max?if_exists}" <#if listingType.type?if_exists.equals("FixedPriceItem") >disabled</#if> />${currencyUomId?if_exists}</td>
+                                                            <td><input type="text"  size="6" name="buyItNowPrice_${id}" value="${max?if_exists}" <#if listingType.type?if_exists.equals("FixedPriceItem") >disabled="disabled"</#if> />${currencyUomId?if_exists}</td>
                                                         </#if>
                                                     </tr>
                                                     <#if !listingType.type?if_exists.equals("FixedPriceItem") >
                                                     <tr>
                                                         <td class="label">Reserve Price</td>
-                                                        <td><input type="text" size="6" name="reservePrice_${id}" <#if listingType.type?if_exists.equals("FixedPriceItem") >disabled</#if> />${currencyUomId?if_exists}</td>
+                                                        <td><input type="text" size="6" name="reservePrice_${id}" <#if listingType.type?if_exists.equals("FixedPriceItem") >disabled="disabled"</#if> />${currencyUomId?if_exists}</td>
                                                         <td class="label"></td>
                                                         <td></td>
                                                     </tr>
@@ -677,7 +677,7 @@ under the License.
                                                                         <#if paymentMethod.compareTo(buyerPayMethCode_PAY_PAL?if_exists) == 0 >
                                                                                 <#assign is_payPal = true>
                                                                         </#if>
-                                                                        <td valign="top"><input type="checkbox" value="true" name="Payments_${paymentMethod.value()?if_exists}"></td>
+                                                                        <td valign="top"><input type="checkbox" value="true" name="Payments_${paymentMethod.value()?if_exists}" /></td>
                                                                         <td align="left"><b>${paymentMethod.value()?if_exists}</b></td>
                                                                         <#if j == 3>
                                                                              </tr>
@@ -752,7 +752,7 @@ under the License.
                                                     <#list shippingLocationDetails as shippingLocationDetail>
                                                         <#assign shippingLocation = shippingLocationDetail.getShippingLocation()?if_exists>
                                                         <#if j==0><tr></#if>
-                                                          <td vAlign="top"><input type="checkbox" value="true" name="Shipping_${shippingLocation?if_exists}"></td>
+                                                          <td valign="top"><input type="checkbox" value="true" name="Shipping_${shippingLocation?if_exists}" /></td>
                                                           <td align="left"><b>${shippingLocationDetail.getDescription()?if_exists}</b></td>
                                                         <#if j==3></tr><#assign j=0><#else><#assign j=j+1></#if>
                                                     </#list>

Modified: ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/returnPolicy.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/returnPolicy.ftl?rev=932725&r1=932724&r2=932725&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/returnPolicy.ftl (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/webapp/ebaystore/store/returnPolicy.ftl Sat Apr 10 14:09:54 2010
@@ -27,7 +27,7 @@ under the License.
 
 <form name="APIForm" id="APIForm" method="post" action="ReturnPolicyServlet" >
   <table align="center"  border="0">
-    <tr><td><img src="ebay.gif"></td></tr>
+    <tr><td><img src="ebay.gif" alt="" /></td></tr>
     <tr><td>${title?if_exists}</td></tr>
     <tr>
          <td>&nbsp;</td>
@@ -138,7 +138,7 @@ under the License.
         </tr>
         <tr>
             <td>
-                <font size="2" face="Verdana,Geneva,Arial,Helvetica" color="#666666" style="font-size:11px">- Specify a return policy. <A target=_new HREF="http://pages.ebay.com/help/sell/contextual/return-policy.html" onClick="if(window.openContextualHelpWindow){return openContextualHelpWindow(this.href)}" target="helpwin">Learn More</A>.</font>
+                <font size="2" face="Verdana,Geneva,Arial,Helvetica" color="#666666" style="font-size:11px">- Specify a return policy. <a target=_new HREF="http://pages.ebay.com/help/sell/contextual/return-policy.html" onClick="if(window.openContextualHelpWindow){return openContextualHelpWindow(this.href)}" target="helpwin">Learn More</a>.</font>
             </td>
         </tr>
     </#if>