You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ma...@apache.org on 2009/04/07 13:17:48 UTC

svn commit: r762696 [1/3] - in /myfaces/trinidad/trunk/trinidad-impl/src: main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/ main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/ main/java/org/apache/myfaces/trinidadinterna...

Author: matzew
Date: Tue Apr  7 11:17:47 2009
New Revision: 762696

URL: http://svn.apache.org/viewvc?rev=762696&view=rev
Log:
TRINIDAD-1416 - In mobile browsers, inlineStyle attribute of <tr:train> is not working
TRINIDAD-1423 - Alignment issue in Blackberry 4.7, if <tr:selectBooleanRadio> is a child of <tr:panelFormLayout>
TRINIDAD-1425 - In mobile browsers, onClick event script not working for <tr:selectBooleanRadio>
TRINIDAD-1426 - In mobile browsers, a warning message is generated on using action facet in <tr:table>
TRINIDAD-1427 - In mobile browsers, date picker of <tr:inputDate> is rendered when it is not working.
TRINIDAD-1430 - Character encoding problem with Majorra introduced by issue TRINIDAD-1272

Thx to Mamallan Uthaman for all the patches

Modified:
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/PdaTableRenderer.java
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/MessageRenderer.java
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectBooleanRadioRenderer.java
    myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl.java
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalPPC-golden.xml
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalPPC-golden.xml
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalPPC-golden.xml
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-simple-minimalPPC-golden.xml
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/table-minimalPPC-golden.xml
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectMany-minimalPPC-golden.xml
    myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/tableSelectOne-minimalPPC-golden.xml

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/PdaTableRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/PdaTableRenderer.java?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/PdaTableRenderer.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/PdaTableRenderer.java Tue Apr  7 11:17:47 2009
@@ -105,18 +105,20 @@
 
       // start control bar row
       writer.startElement("tr", null);
-      writer.startElement("td", null);
-
       // start control bar
-      writer.startElement("div", null);
+      writer.startElement("td", null);
       renderStyleClass(context, arc,
                        SkinSelectors.AF_TABLE_CONTROL_BAR_TOP_STYLE);
 
       if (action != null)
       {
-        writer.startElement(XhtmlConstants.TABLE_DATA_ELEMENT, null);
         encodeChild(context, action);
-        writer.endElement(XhtmlConstants.TABLE_DATA_ELEMENT);
+        writer.endElement("td");
+        writer.endElement("tr");
+        writer.startElement("tr", null);
+        writer.startElement("td", null);
+        renderStyleClass(context, arc,
+            SkinSelectors.AF_TABLE_CONTROL_BAR_TOP_STYLE);
       }
 
       if ( hasNav)
@@ -136,8 +138,6 @@
         writer.endElement("div");
       }
 
-      writer.endElement("div");
-      
       // end control bar row
       writer.endElement("td");
       writer.endElement("tr");

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/pda/TrainRenderer.java Tue Apr  7 11:17:47 2009
@@ -101,9 +101,11 @@
         }
 
         ResponseWriter writer = context.getResponseWriter();
+        writer.startElement("span", null);
+        renderInlineStyle(context, arc, bean);
         String outputText = XhtmlUtils.getFormattedString(pattern, parameters); 
         writer.writeText(outputText, null);
-        
+        writer.endElement("span");
         process.setRowKey(oldPath);
       }
     }

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/MessageRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/MessageRenderer.java?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/MessageRenderer.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/MessageRenderer.java Tue Apr  7 11:17:47 2009
@@ -161,7 +161,8 @@
     }
 
     // Handle rendering the message text (or the empty placeholder)
-    if (hasMessage || isInline)
+    // Skip if there is no message for PDA
+    if (hasMessage || (isInline && !isPDA(arc)))
     {
 
       // Write the root level element for the help

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleInputDateRenderer.java Tue Apr  7 11:17:47 2009
@@ -451,6 +451,12 @@
   @Override
   protected String getButtonIconName()
   {
+    // Currently, date picker is not working for any PDA devices. An issue
+    // (TRINIDAD-1203) was created to fix this problem, so until it is fixed  
+    // let's skip date picker rendering for PDA. 
+    if (isPDA(RenderingContext.getCurrentInstance()))
+      return null;
+       
     return SkinSelectors.AF_SELECT_INPUT_DATE_LAUNCH_ICON_NAME;
   }
 

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectBooleanRadioRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectBooleanRadioRenderer.java?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectBooleanRadioRenderer.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/renderkit/core/xhtml/SimpleSelectBooleanRadioRenderer.java Tue Apr  7 11:17:47 2009
@@ -198,17 +198,31 @@
     FacesBean    bean) throws IOException
   {
     ResponseWriter writer = context.getResponseWriter();
-    
+    String onClick = getOnclick(bean); 
+     
     //PH: this condition is needed to set onclick on radio rather than on 
     // enclosing span in an IE Mobile and PIE since these browsers don't have 
     // onclick support on a span. 
     if(isPDA(RenderingContext.getCurrentInstance()))
-    {
+    { 
       if ( isAutoSubmit(bean))
-        writer.writeAttribute("onclick", getAutoSubmitScript(bean) , null);
+      { 
+        String auto = getAutoSubmitScript(bean);
+      
+        if (onClick == null)
+        {
+          onClick = auto;
+        }
+        else
+        {
+          // Since we have both onClick script and autosubmit script to execute,  
+          // we need to chain the execution of these scripts.
+          onClick = XhtmlUtils.getChainedJS(onClick, auto, true);
+        }
+      }
     }
-    
-    writer.writeAttribute("onclick", getOnclick(bean),  "onclick");
+   
+    writer.writeAttribute("onclick", onClick, "onclick");
     writer.writeAttribute("onblur", getOnblur(bean),  "onblur");
     writer.writeAttribute("onfocus", getOnfocus(bean),  "onfocus");
     writer.writeAttribute("onchange", getOnchange(bean),  "onchange");

Modified: myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl.java?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl.java (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/main/java/org/apache/myfaces/trinidadinternal/webapp/TrinidadFilterImpl.java Tue Apr  7 11:17:47 2009
@@ -122,15 +122,6 @@
     ServletResponse response,
     FilterChain     chain) throws IOException, ServletException
   {
-    String noJavaScript = request.getParameter(XhtmlConstants.NON_JS_BROWSER);
-    
-    //Wrap the request only for Non-javaScript browsers
-    if(noJavaScript != null &&
-               XhtmlConstants.NON_JS_BROWSER_TRUE.equals(noJavaScript))
-    {
-      request = new BasicHTMLBrowserRequestWrapper((HttpServletRequest)request);
-    }    
-    
     //Execute the filter services
     if (!_filters.isEmpty())
       chain = new FilterListChain(_filters, chain);
@@ -143,6 +134,15 @@
     GlobalConfiguratorImpl config = GlobalConfiguratorImpl.getInstance();
     config.beginRequest(externalContext);
     
+    String noJavaScript = request.getParameter(XhtmlConstants.NON_JS_BROWSER);
+        
+    // Wrap the request only for Non-javaScript browsers
+    if(noJavaScript != null &&
+              XhtmlConstants.NON_JS_BROWSER_TRUE.equals(noJavaScript))
+    {
+      request = new BasicHTMLBrowserRequestWrapper((HttpServletRequest)request);
+    } 
+    
     //To maintain backward compatibilty, wrap the request at the filter level
     Map<String, String[]> addedParams = FileUploadConfiguratorImpl.getAddedParameters(externalContext);
     

Modified: myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalPPC-golden.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalPPC-golden.xml?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalPPC-golden.xml (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/columnGroup-minimalPPC-golden.xml Tue Apr  7 11:17:47 2009
@@ -16,101 +16,97 @@
               >
             
             <td
+                 class="af_table_control-bar-top"
                 >
               
               <div
-                   class="af_table_control-bar-top"
+                   valign="middle"
                   >
                 
                 <div
-                     valign="middle"
+                     id="mainId-nb"
                     >
                   
-                  <div
-                       id="mainId-nb"
+                  <table
+                       border="0"
+                       cellpadding="0"
+                       cellspacing="0"
+                       summary=""
                       >
                     
-                    <table
-                         border="0"
-                         cellpadding="0"
-                         cellspacing="0"
-                         summary=""
+                    <tr
                         >
                       
-                      <tr
+                      <td
+                           nowrap="nowrap"
+                           valign="middle"
                           >
                         
-                        <td
-                             nowrap="nowrap"
-                             valign="middle"
+                        <span
+                             class="OraNavBarInactiveLink"
                             >
-                          
-                          <span
-                               class="OraNavBarInactiveLink"
-                              >
-                            Previous
-                          </span>
-                        </td>
-                        <td
-                            >
-                          &#xa0;
-                        </td>
-                        <td
-                             nowrap="nowrap"
-                             valign="middle"
+                          Previous
+                        </span>
+                      </td>
+                      <td
+                          >
+                        &#xa0;
+                      </td>
+                      <td
+                           nowrap="nowrap"
+                           valign="middle"
+                          >
+                        
+                        <select
+                             class="AFFieldText"
+                             id="mainId-nb__xc_c"
+                             onchange="_navChoiceSubmit(this, 'formId','goto','mainId',1)"
+                             onfocus="this._lastValue = this.selectedIndex"
+                             title="Select record set"
                             >
                           
-                          <select
-                               class="AFFieldText"
-                               id="mainId-nb__xc_c"
-                               onchange="_navChoiceSubmit(this, 'formId','goto','mainId',1)"
-                               onfocus="this._lastValue = this.selectedIndex"
-                               title="Select record set"
+                          <option
+                               value="all"
                               >
-                            
-                            <option
-                                 value="all"
-                                >
-                              Show All 6
-                            </option>
-                            <option
-                                 selected="selected"
-                                 value="1"
-                                >
-                              1-5 of 6
-                            </option>
-                            <option
-                                 value="6"
-                                >
-                              6-6 of 6
-                            </option>
-                          </select>
-                          <script
-                               type="text/javascript"
+                            Show All 6
+                          </option>
+                          <option
+                               selected="selected"
+                               value="1"
                               >
-                            _setSelectIndexById("mainId-nb__xc_c",1)
-                          </script>
-                        </td>
-                        <td
+                            1-5 of 6
+                          </option>
+                          <option
+                               value="6"
+                              >
+                            6-6 of 6
+                          </option>
+                        </select>
+                        <script
+                             type="text/javascript"
                             >
-                          &#xa0;
-                        </td>
-                        <td
-                             nowrap="nowrap"
-                             valign="middle"
+                          _setSelectIndexById("mainId-nb__xc_c",1)
+                        </script>
+                      </td>
+                      <td
+                          >
+                        &#xa0;
+                      </td>
+                      <td
+                           nowrap="nowrap"
+                           valign="middle"
+                          >
+                        
+                        <a
+                             class="OraNavBarActiveLink"
+                             onclick="_navSubmit('formId', 'goto', 'mainId',1,'6');return false"
+                             href="uri-attr:#"
                             >
-                          
-                          <a
-                               class="OraNavBarActiveLink"
-                               onclick="_navSubmit('formId', 'goto', 'mainId',1,'6');return false"
-                               href="uri-attr:#"
-                              >
-                            Next 1
-                          </a>
-                        </td>
-                      </tr>
-                    </table>
-                  </div>
+                          Next 1
+                        </a>
+                      </td>
+                    </tr>
+                  </table>
                 </div>
               </div>
             </td>

Modified: myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalPPC-golden.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalPPC-golden.xml?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalPPC-golden.xml (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/editableTable-minimalPPC-golden.xml Tue Apr  7 11:17:47 2009
@@ -16,101 +16,97 @@
               >
             
             <td
+                 class="af_table_control-bar-top"
                 >
               
               <div
-                   class="af_table_control-bar-top"
+                   valign="middle"
                   >
                 
                 <div
-                     valign="middle"
+                     id="mainId-nb"
                     >
                   
-                  <div
-                       id="mainId-nb"
+                  <table
+                       border="0"
+                       cellpadding="0"
+                       cellspacing="0"
+                       summary=""
                       >
                     
-                    <table
-                         border="0"
-                         cellpadding="0"
-                         cellspacing="0"
-                         summary=""
+                    <tr
                         >
                       
-                      <tr
+                      <td
+                           nowrap="nowrap"
+                           valign="middle"
                           >
                         
-                        <td
-                             nowrap="nowrap"
-                             valign="middle"
+                        <span
+                             class="OraNavBarInactiveLink"
                             >
-                          
-                          <span
-                               class="OraNavBarInactiveLink"
-                              >
-                            Previous
-                          </span>
-                        </td>
-                        <td
-                            >
-                          &#xa0;
-                        </td>
-                        <td
-                             nowrap="nowrap"
-                             valign="middle"
+                          Previous
+                        </span>
+                      </td>
+                      <td
+                          >
+                        &#xa0;
+                      </td>
+                      <td
+                           nowrap="nowrap"
+                           valign="middle"
+                          >
+                        
+                        <select
+                             class="AFFieldText"
+                             id="mainId-nb__xc_c"
+                             onchange="_navChoiceSubmit(this, 'formId','goto','mainId',1)"
+                             onfocus="this._lastValue = this.selectedIndex"
+                             title="Select record set"
                             >
                           
-                          <select
-                               class="AFFieldText"
-                               id="mainId-nb__xc_c"
-                               onchange="_navChoiceSubmit(this, 'formId','goto','mainId',1)"
-                               onfocus="this._lastValue = this.selectedIndex"
-                               title="Select record set"
+                          <option
+                               value="all"
                               >
-                            
-                            <option
-                                 value="all"
-                                >
-                              Show All 6
-                            </option>
-                            <option
-                                 selected="selected"
-                                 value="1"
-                                >
-                              1-5 of 6
-                            </option>
-                            <option
-                                 value="6"
-                                >
-                              6-6 of 6
-                            </option>
-                          </select>
-                          <script
-                               type="text/javascript"
+                            Show All 6
+                          </option>
+                          <option
+                               selected="selected"
+                               value="1"
                               >
-                            _setSelectIndexById("mainId-nb__xc_c",1)
-                          </script>
-                        </td>
-                        <td
+                            1-5 of 6
+                          </option>
+                          <option
+                               value="6"
+                              >
+                            6-6 of 6
+                          </option>
+                        </select>
+                        <script
+                             type="text/javascript"
                             >
-                          &#xa0;
-                        </td>
-                        <td
-                             nowrap="nowrap"
-                             valign="middle"
+                          _setSelectIndexById("mainId-nb__xc_c",1)
+                        </script>
+                      </td>
+                      <td
+                          >
+                        &#xa0;
+                      </td>
+                      <td
+                           nowrap="nowrap"
+                           valign="middle"
+                          >
+                        
+                        <a
+                             class="OraNavBarActiveLink"
+                             onclick="_navSubmit('formId', 'goto', 'mainId',1,'6');return false"
+                             href="uri-attr:#"
                             >
-                          
-                          <a
-                               class="OraNavBarActiveLink"
-                               onclick="_navSubmit('formId', 'goto', 'mainId',1,'6');return false"
-                               href="uri-attr:#"
-                              >
-                            Next 1
-                          </a>
-                        </td>
-                      </tr>
-                    </table>
-                  </div>
+                          Next 1
+                        </a>
+                      </td>
+                    </tr>
+                  </table>
                 </div>
               </div>
             </td>

Modified: myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalPPC-golden.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalPPC-golden.xml?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalPPC-golden.xml (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-minimalPPC-golden.xml Tue Apr  7 11:17:47 2009
@@ -40,23 +40,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -171,23 +154,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -302,23 +268,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -377,23 +326,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -498,23 +430,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -579,23 +494,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -654,23 +552,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -729,23 +610,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -810,23 +674,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -891,23 +738,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -972,23 +802,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1053,23 +866,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1128,23 +924,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'test-id',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1204,23 +983,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1281,23 +1043,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1356,23 +1101,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1431,23 +1159,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1507,23 +1218,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1583,23 +1277,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1659,23 +1336,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1735,23 +1395,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1811,23 +1454,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1887,23 +1513,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -1963,23 +1572,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -2039,23 +1631,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -2115,23 +1690,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               
@@ -2191,23 +1749,6 @@
                 >
               
             </img>
-            <a
-                 onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-                 href="uri-attr:#"
-                >
-              
-              <img
-                   align="middle"
-                   alt="Select to access date picker"
-                   border="0"
-                   height="18"
-                   title="Select to access date picker"
-                   width="17"
-                   src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-                  >
-                
-              </img>
-            </a>
             <div
                 >
               

Modified: myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-simple-minimalPPC-golden.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-simple-minimalPPC-golden.xml?rev=762696&r1=762695&r2=762696&view=diff
==============================================================================
--- myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-simple-minimalPPC-golden.xml (original)
+++ myfaces/trinidad/trunk/trinidad-impl/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/inputDate-simple-minimalPPC-golden.xml Tue Apr  7 11:17:47 2009
@@ -21,23 +21,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[chooseId,null]-->
 
@@ -86,23 +69,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[disabled,true]-->
 
@@ -146,23 +112,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[readOnly,false]-->
 
@@ -188,23 +137,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[readOnly,true]-->
 
@@ -243,23 +175,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'test-id',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[inlineStyle,background-color:red]-->
 
@@ -286,23 +201,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[shortDesc,null]-->
 
@@ -329,23 +227,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[styleClass,null]-->
 
@@ -371,23 +252,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onblur,null]-->
 
@@ -413,23 +277,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onchange,null]-->
 
@@ -456,23 +303,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[ondblclick,null]-->
 
@@ -499,23 +329,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onfocus,null]-->
 
@@ -542,23 +355,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onkeydown,null]-->
 
@@ -585,23 +381,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onkeypress,null]-->
 
@@ -628,23 +407,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onmousedown,null]-->
 
@@ -671,23 +433,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onmousemove,null]-->
 
@@ -714,23 +459,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onmouseout,null]-->
 
@@ -757,23 +485,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onmouseover,null]-->
 
@@ -800,23 +511,6 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 <!--AttributeTest[onmouseup,null]-->
 
@@ -843,22 +537,5 @@
             >
           
         </img>
-        <a
-             onclick="submitForm('formId',0,{source:'mainId',part:'b'});return false;"
-             href="uri-attr:#"
-            >
-          
-          <img
-               align="middle"
-               alt="Select to access date picker"
-               border="0"
-               height="18"
-               title="Select to access date picker"
-               width="17"
-               src="uri-attr:encoded-resource-url:/test-context-path/adf/images/dp.gif"
-              >
-            
-          </img>
-        </a>
       </span>
 </results>