Subversion Repositories bacoAlunos

Rev

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