Subversion Repositories bacoAlunos

Rev

Blame | Compare with Previous | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="UTF-8"?>

<!--<!DOCTYPE struts-config PUBLIC-->
        <!--"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"-->
        <!--"http://struts.apache.org/dtds/struts-config_1_3.dtd">-->

<struts-config>

    <form-beans>
        <form-bean type="pt.estgp.estgweb.web.form.commons.SearchForm" name="SearchForm"/>
    </form-beans>

    <global-exceptions>

    </global-exceptions>

    <global-forwards>

    </global-forwards>


    <action-mappings>
        <action path="/startSearch" name="SearchForm" scope="request" forward="page.search.form"/>
        <action path="/search"
               type="pt.estgp.estgweb.web.controllers.commons.CommonsController"
               name="SearchForm"
               scope="request"
               parameter="dispatch"
               input="page.search.form"
               validate="false">
            <forward name="searchResults" path="page.search.results"/>
            <forward name="searchModule" path="page.search.module"/>
            <forward name="noresults" path="page.search.noresults"/>
        </action>
    </action-mappings>

</struts-config>