You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by he...@apache.org on 2006/11/15 20:32:32 UTC

svn commit: r475375 - /struts/struts2/trunk/apps/blank/src/main/webapp/example/HelloWorld.jsp

Author: hermanns
Date: Wed Nov 15 11:32:30 2006
New Revision: 475375

URL: http://svn.apache.org/viewvc?view=rev&rev=475375
Log:
struts2-blank app
o fixing action tags to not include context

Issue Number: WW-1483

Modified:
    struts/struts2/trunk/apps/blank/src/main/webapp/example/HelloWorld.jsp

Modified: struts/struts2/trunk/apps/blank/src/main/webapp/example/HelloWorld.jsp
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/apps/blank/src/main/webapp/example/HelloWorld.jsp?view=diff&rev=475375&r1=475374&r2=475375
==============================================================================
--- struts/struts2/trunk/apps/blank/src/main/webapp/example/HelloWorld.jsp (original)
+++ struts/struts2/trunk/apps/blank/src/main/webapp/example/HelloWorld.jsp Wed Nov 15 11:32:30 2006
@@ -11,13 +11,13 @@
 <h3>Languages</h3>
 <ul>
     <li>
-        <s:url id="url" action="HelloWorld">
+        <s:url id="url" action="HelloWorld" includeContext="false">
             <s:param name="request_locale">en</s:param>
         </s:url>
         <s:a href="%{url}">English</s:a>
     </li>
     <li>
-        <s:url id="url" action="HelloWorld">
+        <s:url id="url" action="HelloWorld" includeContext="false">
             <s:param name="request_locale">es</s:param>
         </s:url>
         <s:a href="%{url}">Espanol</s:a>