Author: wsmoak
Date: Sun Sep 18 20:36:40 2005
New Revision: 290056

URL: http://svn.apache.org/viewcvs?rev=290056&view=rev
Log:
Changed order of attributes and removed hard-coded server name.  Submitted by 
Laurie Harper (laurie at holoweb.net).  Bugzilla # 36703

Modified:
    struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestBaseTag.jsp
    
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestFormTag1.jsp

Modified: 
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestBaseTag.jsp
URL: 
http://svn.apache.org/viewcvs/struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestBaseTag.jsp?rev=290056&r1=290055&r2=290056&view=diff
==============================================================================
--- 
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestBaseTag.jsp 
(original)
+++ 
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestBaseTag.jsp 
Sun Sep 18 20:36:40 2005
@@ -22,7 +22,7 @@
                <html:base/>
        </bean:define>
        <bean:define id="EXPECTED_RESULTS" toScope="page">
-               <base href="http://<%=server%><%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/htmlBaseTag.jsp">
+               <base href="http://<%=server%><%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/html/TestBaseTag.jsp">
        </bean:define>
 </logic:equal>
 
@@ -31,7 +31,7 @@
                <html:base target="My-Other-Frame"/>
        </bean:define>
        <bean:define id="EXPECTED_RESULTS" toScope="page">
-               <base href="http://<%=server%><%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/htmlBaseTag.jsp" 
target="My-Other-Frame">
+               <base href="http://<%=server%><%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/html/TestBaseTag.jsp" 
target="My-Other-Frame">
        </bean:define>
 </logic:equal>
 
@@ -49,7 +49,7 @@
                <html:base server="www.my-server-name.com"/>
        </bean:define>
        <bean:define id="EXPECTED_RESULTS" toScope="page">
-               <base href="http://www.my-server-name.com<%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/htmlBaseTag.jsp">
+               <base href="http://<%=server%><%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/html/TestBaseTag.jsp">
        </bean:define>
 </logic:equal>
 
@@ -58,7 +58,7 @@
                <html:base server="www.my-server-name.com" 
target="My-Other-Frame"/>
        </bean:define>
        <bean:define id="EXPECTED_RESULTS" toScope="page">
-               <base href="http://www.my-server-name.com<%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/htmlBaseTag.jsp" 
target="My-Other-Frame">
+               <base href="http://<%=server%><%=portString%><%= 
request.getContextPath()  %>/org/apache/struts/taglib/html/TestBaseTag.jsp" 
target="My-Other-Frame">
        </bean:define>
 </logic:equal>
 

Modified: 
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestFormTag1.jsp
URL: 
http://svn.apache.org/viewcvs/struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestFormTag1.jsp?rev=290056&r1=290055&r2=290056&view=diff
==============================================================================
--- 
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestFormTag1.jsp 
(original)
+++ 
struts/taglib/trunk/src/webapp/org/apache/struts/taglib/html/TestFormTag1.jsp 
Sun Sep 18 20:36:40 2005
@@ -201,7 +201,7 @@
                </html:form>
        </bean:define>
        <bean:define id="EXPECTED_RESULTS" toScope="page">
-               <form name="testFormBean" method="misc" 
action="<%=response.encodeURL( request.getContextPath() + "/testFormTag.do")%>" 
id="id.goes.here">
+               <form name="testFormBean" id="id.goes.here" method="misc" 
action="<%=response.encodeURL( request.getContextPath() + "/testFormTag.do")%>">
                </form>
        </bean:define>
 </logic:equal>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to