Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 1597 → Rev 1598

/branches/v3/impl/conf/WEB-INF/tags/repositoryFile.tag
12,7 → 12,7
<%
if(repositoryStream != null && repositoryStream.length() > 0)
{
if(!transactional)
if(!transactional.booleanValue())
{
AbstractDao.getCurrentSession().beginTransaction();
}
101,7 → 101,7
}
}
 
if(!transactional)
if(!transactional.booleanValue())
{
AbstractDao.getCurrentSession().getTransaction().commit();
}
/branches/v3/impl/conf/WEB-INF/tags/reports/reportGroupPanel.tag
1,3 → 1,4
<%@ tag import="pt.estgp.estgweb.domain.QuestionarioReportFileGroup" %>
<%@tag description="Report Group Panel Tag" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/tlds/struts-nested.tld" prefix="nested" %>
6,11 → 7,13
<%@ taglib uri="/WEB-INF/tlds/struts-tiles.tld" prefix="tiles" %>
<%@ taglib uri="/WEB-INF/tlds/baco.tld" prefix="baco" %>
<%@ taglib uri="/WEB-INF/tlds/jomm.tld" prefix="jomm" %>
<%@taglib prefix="reports" tagdir="/WEB-INF/tags/reports" %>
<%@taglib prefix="bacoTags" tagdir="/WEB-INF/tags" %>
<%@attribute name="reportGroup" type="pt.estgp.estgweb.domain.QuestionarioReportFileGroup" required="true" %>
<%@attribute name="title" type="java.lang.String" required="true" %>
<%@taglib prefix="reports" tagdir="/WEB-INF/tags/reports" %>
<%@taglib prefix="bacoTags" tagdir="/WEB-INF/tags" %>
<jsp:useBean id="reportGroup" type="pt.estgp.estgweb.domain.QuestionarioReportFileGroup" scope="request"/>
 
 
<div class="panel panel-primary">
<div class="panel-heading">
${title}
18,6 → 21,7
</div>
<div class="panel-body">
<%
 
if(!reportGroup.isActive())
{
%>
/branches/v3/impl/src/web/user/questionarios/reports/panelShowReportGroup.jsp
File deleted
/branches/v3/impl/build.xml
356,6 → 356,11
<include name="**/*.jsp"/>
</fileset>
</delete>
<delete>
<fileset dir="${build.dir.war}/WEB-INF/tags">
<include name="**/*.jsp"/>
</fileset>
</delete>
</target>
 
<target name="war" depends="build.war">