Subversion Repositories bacoAlunos

Rev

Rev 506 | Rev 648 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
214 jmachado 1
<?xml version="1.0" encoding="UTF-8"?>
2
 
3
<!--<!DOCTYPE struts-config PUBLIC-->
4
<!--"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"-->
5
<!--"http://struts.apache.org/dtds/struts-config_1_3.dtd">-->
6
 
7
<struts-config>
8
 
9
    <form-beans>
10
        <form-bean type="pt.estgp.estgweb.web.form.courses.CourseForm" name="CourseForm"/>
11
    </form-beans>
12
 
13
    <global-exceptions>
14
 
15
    </global-exceptions>
16
 
17
    <global-forwards>
18
 
19
    </global-forwards>
20
 
21
 
22
    <action-mappings>
23
 
249 jmachado 24
        <action path="/courses" forward="page.courses"/>
25
 
417 jmachado 26
        <action path="/coursesFromStudentPortal" forward="page.alunosInformacaoAcademicaPortalMenu.courses"/>
27
 
28
 
641 jmachado 29
        <action path="/startLoadCourseSeparators" forward="/courseController.do?dispatch=loadSeparators"/>
30
 
31
        <!--ESTE E O LINK DO PROGRAMA CURRICULAR-->
32
 
214 jmachado 33
        <action path="/startLoadCourse" forward="/courseController.do?dispatch=load"/>
34
        <action path="/courseController"
35
                type="pt.estgp.estgweb.web.controllers.courses.CoursesController"
36
                name="CourseForm"
37
                scope="request"
38
                parameter="dispatch"
39
                validate="false"
40
                input="page.welcome">
41
            <forward name="load" path="page.load.course"/>
641 jmachado 42
            <forward name="loadSeparators" path="page.load.course.separators"/>
214 jmachado 43
        </action>
44
 
506 jmachado 45
        <action path="/user/startLoadCoursesProgramsFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=loadCoursesPrograms&amp;fromDispatch=loadCoursesPrograms&amp;from=ServiceZone&amp;area="/>
347 jmachado 46
        <action path="/user/startLoadDirectedCoordinatedCoursesFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=loadDirectedCoordininatedCourses&amp;fromDispatch=loadDirectedCoordininatedCourses&amp;from=ServiceZone"/>
214 jmachado 47
        <action path="/user/startSelectCourseFromServiceZone" forward="page.select.course.from.service.zone"/>
48
        <action path="/user/startEditCourseFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=edit&amp;from=ServiceZone"/>
49
        <action path="/user/startNewCourseFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=startNew&amp;from=ServiceZone"/>
50
        <action path="/user/startSubmitCourseFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=submit&amp;from=ServiceZone"/>
51
        <action path="/user/courseControllerFromServiceZone"
52
                type="pt.estgp.estgweb.web.controllers.courses.CoursesController"
53
                name="CourseForm"
54
                scope="request"
55
                parameter="dispatch"
56
                validate="false"
57
                input="page.separators.serviceZone">
58
            <forward name="submit" path="page.submit.course.from.service.zone"/>
345 jmachado 59
            <forward name="load.courses.programs" path="page.courses.programs.from.service.zone"/>
60
            <forward name="load.directed.coordinated.courses" path="page.directed.coordinated.courses.from.service.zone"/>
61
            <forward name="confirm.courses.programs" path="page.separators.serviceZone"/>
214 jmachado 62
        </action>
63
 
506 jmachado 64
        <action path="/user/startLoadCoursesProgramsFromHome" forward="/user/courseControllerFromHome.do?dispatch=loadCoursesPrograms&amp;fromDispatch=loadCoursesPrograms&amp;from=Home&amp;area="/>
345 jmachado 65
        <action path="/user/startLoadDirectedCoordinatedCoursesFromHome" forward="/user/courseControllerFromHome.do?dispatch=loadDirectedCoordininatedCourses&amp;fromDispatch=loadDirectedCoordininatedCourses&amp;from=Home"/>
343 jmachado 66
        <action path="/user/courseControllerFromHome"
67
                type="pt.estgp.estgweb.web.controllers.courses.CoursesController"
68
                name="CourseForm"
69
                scope="request"
70
                parameter="dispatch"
71
                validate="false"
72
                input="page.separators.serviceZone">
344 jmachado 73
            <forward name="load.courses.programs" path="page.courses.programs.from.home"/>
343 jmachado 74
            <forward name="load.directed.coordinated.courses" path="page.directed.coordinated.courses.from.home"/>
345 jmachado 75
            <forward name="confirm.courses.programs" path="page.separators.home"/>
343 jmachado 76
        </action>
77
 
214 jmachado 78
 
345 jmachado 79
 
80
 
81
 
214 jmachado 82
    </action-mappings>
83
 
84
</struts-config>