Subversion Repositories bacoAlunos

Rev

Rev 1830 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1830 Rev 1848
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
 
2
 
3
<!--<!DOCTYPE struts-config PUBLIC-->
3
<!--<!DOCTYPE struts-config PUBLIC-->
4
        <!--"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"-->
4
        <!--"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"-->
5
        <!--"http://struts.apache.org/dtds/struts-config_1_3.dtd">-->
5
        <!--"http://struts.apache.org/dtds/struts-config_1_3.dtd">-->
6
 
6
 
7
<struts-config>
7
<struts-config>
8
 
8
 
9
 
9
 
10
    <form-beans>
10
    <form-beans>
11
 
11
 
12
    </form-beans>
12
    </form-beans>
13
 
13
 
14
    <global-exceptions>
14
    <global-exceptions>
15
 
15
 
16
    </global-exceptions>
16
    </global-exceptions>
17
 
17
 
18
    <global-forwards>
18
    <global-forwards>
19
        <forward name="welcomePedagogicSurvey" path="/WelcomePedagogicSurvey.do"/>
19
        <forward name="welcomePedagogicSurvey" path="/WelcomePedagogicSurvey.do"/>
20
 
20
 
21
    </global-forwards>
21
    </global-forwards>
22
 
22
 
23
 
23
 
24
    <action-mappings>
24
    <action-mappings>
25
 
25
 
26
 
26
 
27
 
27
 
28
 
28
 
29
        <!-- Start Pages -->
29
        <!-- Start Pages -->
30
 
30
 
31
        <action path="/WelcomePedagogicSurvey" forward="page.welcome.pae"/>
31
        <action path="/WelcomePedagogicSurvey" forward="page.welcome.pae"/>
32
 
32
 
33
        <action path="/user/ChangePassword" forward="page.change.password.pae"/>
33
        <action path="/user/ChangePassword" forward="page.change.password.pae"/>
34
        <action path="/requestChangePassword" forward="page.request.change.password.pae"/>
34
        <action path="/nofilter/requestChangePassword" forward="page.request.change.password.pae"/>
35
        <action path="/user/changeMyPassword"
35
        <action path="/user/changeMyPassword"
36
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
36
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
37
                name="EmptyForm"
37
                name="EmptyForm"
38
                scope="request"
38
                scope="request"
39
                parameter="dispatch"
39
                parameter="dispatch"
40
                validate="false"
40
                validate="false"
41
                input="page.change.password.pae">
41
                input="page.change.password.pae">
42
            <forward name="success" path="page.pae.separators.home"/>
42
            <forward name="success" path="page.pae.separators.home"/>
43
            <forward name="fail.change.pass" path="page.change.password.pae"/>
43
            <forward name="fail.change.pass" path="page.change.password.pae"/>
44
        </action>
44
        </action>
45
        <action path="/requestChangeMyPassword"
45
        <action path="/auth/requestChangeMyPassword"
46
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
46
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
47
                name="EmptyForm"
47
                name="EmptyForm"
48
                scope="request"
48
                scope="request"
49
                parameter="dispatch"
49
                parameter="dispatch"
50
                validate="false"
50
                validate="false"
51
                input="page.change.password.pae">
51
                input="page.change.password.pae">
52
            <forward name="success" path="request.change.pass.response"/>
52
            <forward name="success" path="request.change.pass.response"/>
53
        </action>
53
        </action>
54
 
54
 
55
 
55
 
56
        <!--Authentication-->
56
        <!--Authentication-->
57
        <action path="/authenticatePae"
57
        <action path="/authenticatePae"
58
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
58
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
59
                name="EmptyForm"
59
                name="EmptyForm"
60
                scope="request"
60
                scope="request"
61
                parameter="dispatch"
61
                parameter="dispatch"
62
                validate="false"
62
                validate="false"
63
                input="page.welcome.pae">
63
                input="page.welcome.pae">
64
            <forward name="success" path="page.pae.separators.home"/>
64
            <forward name="success" path="page.pae.separators.home"/>
65
            <forward name="logout" path="page.welcome.pae"/>
65
            <forward name="logout" path="page.welcome.pae"/>
66
            <forward name="firstTimeAuthenticate" path="page.pae.separators.home"/>
66
            <forward name="firstTimeAuthenticate" path="page.pae.separators.home"/>
67
        </action>
67
        </action>
68
 
68
 
69
        <action path="/user/homePae" forward="page.pae.separators.home"/>
69
        <action path="/user/homePae" forward="page.pae.separators.home"/>
70
 
70
 
71
        <action path="/LogoutPae" forward="/authenticatePae.do?dispatch=logout"/>
71
        <action path="/LogoutPae" forward="/authenticatePae.do?dispatch=logout"/>
72
 
72
 
73
 
73
 
74
 
74
 
75
        <!--Authentication-->
75
        <!--Authentication-->
76
        <action path="/authenticateWidget"
76
        <action path="/authenticateWidget"
77
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
77
                type="pt.estgp.estgweb.web.controllers.authenticate.AuthenticateController"
78
                name="WidgetModelForm"
78
                name="WidgetModelForm"
79
                scope="request"
79
                scope="request"
80
                parameter="dispatch"
80
                parameter="dispatch"
81
                validate="true"
81
                validate="true"
82
                input="page.widget.json.fail.validations">
82
                input="page.widget.json.fail.validations">
83
        </action>
83
        </action>
84
 
84
 
85
 
85
 
86
    </action-mappings>
86
    </action-mappings>
87
 
87
 
88
</struts-config>
88
</struts-config>