You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by gb...@apache.org on 2005/06/22 20:33:14 UTC

svn commit: r192971 - in /ibatis/trunk/cs/npetshop2: External-bin/Castle.MVC.Xml External-bin/Castle.MVC.dll NPetshop.Web/UserControls/Catalog/SearchProduct.ascx NPetshop.Web/Web.config

Author: gbayon
Date: Wed Jun 22 11:33:14 2005
New Revision: 192971

URL: http://svn.apache.org/viewcvs?rev=192971&view=rev
Log:
- Corrected bug in the search result

Modified:
    ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.Xml
    ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.dll
    ibatis/trunk/cs/npetshop2/NPetshop.Web/UserControls/Catalog/SearchProduct.ascx
    ibatis/trunk/cs/npetshop2/NPetshop.Web/Web.config

Modified: ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.Xml
URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.Xml?rev=192971&r1=192970&r2=192971&view=diff
==============================================================================
--- ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.Xml (original)
+++ ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.Xml Wed Jun 22 11:33:14 2005
@@ -230,22 +230,6 @@
             The navigator coordinates the interactions of views and controllers 
             </summary>
         </member>
-        <member name="T:Castle.MVC.Controllers.ControllerAttribute">
-            <summary>
-            Decorates a page which a controller.
-            </summary>
-        </member>
-        <member name="M:Castle.MVC.Controllers.ControllerAttribute.#ctor(System.Type)">
-            <summary>
-            Default constructor
-            </summary>
-            <param name="controllerType">A Controller Type</param>
-        </member>
-        <member name="P:Castle.MVC.Controllers.ControllerAttribute.ControllerType">
-            <summary>
-            The controller's Type
-            </summary>
-        </member>
         <member name="T:Castle.MVC.Navigation.DefaultNavigator">
             <summary>
             Description résumée de WebNavigator.

Modified: ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.dll
URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/npetshop2/External-bin/Castle.MVC.dll?rev=192971&r1=192970&r2=192971&view=diff
==============================================================================
Binary files - no diff available.

Modified: ibatis/trunk/cs/npetshop2/NPetshop.Web/UserControls/Catalog/SearchProduct.ascx
URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/npetshop2/NPetshop.Web/UserControls/Catalog/SearchProduct.ascx?rev=192971&r1=192970&r2=192971&view=diff
==============================================================================
--- ibatis/trunk/cs/npetshop2/NPetshop.Web/UserControls/Catalog/SearchProduct.ascx (original)
+++ ibatis/trunk/cs/npetshop2/NPetshop.Web/UserControls/Catalog/SearchProduct.ascx Wed Jun 22 11:33:14 2005
@@ -23,7 +23,7 @@
 				<TR class="gridItem">
 					<TD><%# ((NPetshop.Domain.Catalog.Product)Container.DataItem).Id %></TD>
 					<TD>
-						<asp:LinkButton id=LinkButtonProduct runat="server" CommandArgument="<%# ((NPetshop.Domain.Catalog.Product)Container.DataItem).Id %>" CommandName="showProduct" CausesValidation="False">
+						<asp:LinkButton id=LinkButtonProduct runat="server" CommandName="showProduct" CommandArgument="<%# ((NPetshop.Domain.Catalog.Product)Container.DataItem).Id %>" CausesValidation="False">
 							<%# ((NPetshop.Domain.Catalog.Product)Container.DataItem).Name %>
 						</asp:LinkButton></TD>
 					<TD><%# ((NPetshop.Domain.Catalog.Product)Container.DataItem).Description %></TD>

Modified: ibatis/trunk/cs/npetshop2/NPetshop.Web/Web.config
URL: http://svn.apache.org/viewcvs/ibatis/trunk/cs/npetshop2/NPetshop.Web/Web.config?rev=192971&r1=192970&r2=192971&view=diff
==============================================================================
--- ibatis/trunk/cs/npetshop2/NPetshop.Web/Web.config (original)
+++ ibatis/trunk/cs/npetshop2/NPetshop.Web/Web.config Wed Jun 22 11:33:14 2005
@@ -54,10 +54,11 @@
 				<commands view="Item">
 					<command id="addToCart" view="Cart" />
 				</commands>
-				
-				<commands view="SignIn">
+				<commands view="SignIn" />
+				<commands view="SearchProduct">
+					<command id="showProduct" view="Product" />
 				</commands>
-				
+								
 				<!-- Cart Actions -->
 				<commands view="Cart">
 					<command id="showItem" view="Item" />