Subversion Repositories bacoAlunos

Rev

Rev 641 | Rev 649 | 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"/>
648 jmachado 34
 
35
 
214 jmachado 36
        <action path="/courseController"
37
                type="pt.estgp.estgweb.web.controllers.courses.CoursesController"
38
                name="CourseForm"
39
                scope="request"
40
                parameter="dispatch"
41
                validate="false"
42
                input="page.welcome">
43
            <forward name="load" path="page.load.course"/>
641 jmachado 44
            <forward name="loadSeparators" path="page.load.course.separators"/>
214 jmachado 45
        </action>
46
 
506 jmachado 47
        <action path="/user/startLoadCoursesProgramsFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=loadCoursesPrograms&amp;fromDispatch=loadCoursesPrograms&amp;from=ServiceZone&amp;area="/>
347 jmachado 48
        <action path="/user/startLoadDirectedCoordinatedCoursesFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=loadDirectedCoordininatedCourses&amp;fromDispatch=loadDirectedCoordininatedCourses&amp;from=ServiceZone"/>
214 jmachado 49
        <action path="/user/startSelectCourseFromServiceZone" forward="page.select.course.from.service.zone"/>
50
        <action path="/user/startEditCourseFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=edit&amp;from=ServiceZone"/>
51
        <action path="/user/startNewCourseFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=startNew&amp;from=ServiceZone"/>
52
        <action path="/user/startSubmitCourseFromServiceZone" forward="/user/courseControllerFromServiceZone.do?dispatch=submit&amp;from=ServiceZone"/>
53
        <action path="/user/courseControllerFromServiceZone"
54
                type="pt.estgp.estgweb.web.controllers.courses.CoursesController"
55
                name="CourseForm"
56
                scope="request"
57
                parameter="dispatch"
58
                validate="false"
59
                input="page.separators.serviceZone">
60
            <forward name="submit" path="page.submit.course.from.service.zone"/>
345 jmachado 61
            <forward name="load.courses.programs" path="page.courses.programs.from.service.zone"/>
62
            <forward name="load.directed.coordinated.courses" path="page.directed.coordinated.courses.from.service.zone"/>
63
            <forward name="confirm.courses.programs" path="page.separators.serviceZone"/>
214 jmachado 64
        </action>
65
 
506 jmachado 66
        <action path="/user/startLoadCoursesProgramsFromHome" forward="/user/courseControllerFromHome.do?dispatch=loadCoursesPrograms&amp;fromDispatch=loadCoursesPrograms&amp;from=Home&amp;area="/>
345 jmachado 67
        <action path="/user/startLoadDirectedCoordinatedCoursesFromHome" forward="/user/courseControllerFromHome.do?dispatch=loadDirectedCoordininatedCourses&amp;fromDispatch=loadDirectedCoordininatedCourses&amp;from=Home"/>
343 jmachado 68
        <action path="/user/courseControllerFromHome"
69
                type="pt.estgp.estgweb.web.controllers.courses.CoursesController"
70
                name="CourseForm"
71
                scope="request"
72
                parameter="dispatch"
73
                validate="false"
74
                input="page.separators.serviceZone">
344 jmachado 75
            <forward name="load.courses.programs" path="page.courses.programs.from.home"/>
343 jmachado 76
            <forward name="load.directed.coordinated.courses" path="page.directed.coordinated.courses.from.home"/>
345 jmachado 77
            <forward name="confirm.courses.programs" path="page.separators.home"/>
343 jmachado 78
        </action>
79
 
214 jmachado 80
 
345 jmachado 81
 
82
 
83
 
214 jmachado 84
    </action-mappings>
85
 
86
</struts-config>