Subversion Repositories bacoAlunos

Rev

Rev 1694 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1814 jmachado 1
<%@ page import="pt.estgp.estgweb.utils.Globals" %>
249 jmachado 2
<%@ page import="pt.estgp.estgweb.web.WebProxy" %>
1020 jmachado 3
<%@ page import="java.math.BigDecimal" %>
4
<%@ page import="pt.estgp.estgweb.domain.dao.DaoFactory" %>
1485 jmachado 5
<%@ page import="pt.estgp.estgweb.utils.ConfigProperties" %>
214 jmachado 6
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
7
<%@ taglib uri="/WEB-INF/tlds/baco.tld" prefix="baco" %>
8
<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html" %>
9
<%@ taglib uri="/WEB-INF/tlds/struts-nested.tld" prefix="nested" %>
10
<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic" %>
11
<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean" %>
12
<%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles" %>
13
<jsp:useBean id="CourseView" type="pt.estgp.estgweb.domain.views.CourseView" scope="request"/>
14
 
15
<div class="seccao">
1694 jmachado 16
    <h2>${CourseView.name} (${CourseView.code})</h2>
214 jmachado 17
 
641 jmachado 18
 
669 jmachado 19
    <logic:notEmpty name="CourseView" property="formatedDescription"><p>${CourseView.formatedDescription}</p></logic:notEmpty>
656 jmachado 20
    <logic:notEmpty name="CourseView" property="externalSitePath">
648 jmachado 21
        <%
22
            WebProxy.processHttpRequestService(out, CourseView.getExternalSiteServer(), CourseView.getExternalSitePath());
23
        %>
641 jmachado 24
    </logic:notEmpty>
648 jmachado 25
 
26
 
27
    <%--<logic:notEmpty name="CourseView" property="cacheWebDocument">--%>
28
    <%--<h3><bean:message key="course.studies.plan"/></h3>--%>
29
    <%--<bean:write name="CourseView" property="cacheWebDocument" filter="no"/>--%>
30
    <%--</logic:notEmpty>--%>
669 jmachado 31
 
32
 
249 jmachado 33
</div>
214 jmachado 34