mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
7575: Permission changes for AVM. 7577: Incorporated most of the feedback provided by Kevin C earlier today 7578: Removed directory not removed by patch 7579: EmailServer bug fixes AR-1902: Double posts when emailing to a document AR-1904: Attachments via email should be allowed on forum posts AR-1903: (Partial Fix) Text attachments should be treated the same way as other attachments 7583: Fixed WCM-961 & WCM-962: Added confirm dialog for 'Delete All Deployment Reports' and 'Release Server' actions git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8434 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
78 lines
3.7 KiB
Plaintext
78 lines
3.7 KiB
Plaintext
<%--
|
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing
|
|
--%>
|
|
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
|
|
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
|
|
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
|
|
<%@ taglib uri="/WEB-INF/wcm.tld" prefix="w" %>
|
|
|
|
<%@ page buffer="32kb" contentType="text/html;charset=UTF-8" %>
|
|
<%@ page isELIgnored="false" %>
|
|
|
|
<w:deploymentReports value="#{DialogManager.bean.store}" attempt="#{DialogManager.bean.attempt}" />
|
|
|
|
<h:panelGroup id="panel-facets">
|
|
<f:facet name="title">
|
|
<a:actionLink id="back-to-last-report" value="#{msg.last_deploy_report}"
|
|
rendered="#{DialogManager.bean.attempt != null}"
|
|
image="/images/icons/deployment_report.gif"
|
|
actionListener="#{DialogManager.bean.showLastReport}" />
|
|
</f:facet>
|
|
</h:panelGroup>
|
|
|
|
<a:panel id="more-reports-panel" label="#{msg.more_deploy_reports}" progressive="true" facetsId="dialog-body:panel-facets"
|
|
styleClass="mainSubTitle" border="innerwhite" bgcolor="white" titleBgcolor="white"
|
|
expanded="#{DialogManager.bean.panelExpanded}" expandedActionListener="#{DialogManager.bean.panelToggled}">
|
|
|
|
<h:outputText value="<div class='deployMoreReportsPanel'>" escape="false" />
|
|
<h:panelGrid id="more-reports-filter" columns="2" styleClass="deployMoreReportsList" width="100%" columnClasses=",rightHandColumn">
|
|
<h:graphicImage value="/images/icons/filter.gif" />
|
|
<a:modeList id="more-reports-filter-list" itemSpacing="2" iconColumnWidth="0" horizontal="true"
|
|
selectedLinkStyle="font-weight:bold" value="#{DialogManager.bean.dateFilter}"
|
|
actionListener="#{DialogManager.bean.dateFilterChanged}">
|
|
<a:listItem id="f1" value="today" label="#{msg.date_filter_today}" />
|
|
<a:listItem id="f2" value="yesterday" label="#{msg.date_filter_yesterday}" />
|
|
<a:listItem id="f3" value="week" label="#{msg.date_filter_week}" />
|
|
<a:listItem id="f4" value="month" label="#{msg.date_filter_month}" />
|
|
<a:listItem id="f5" value="all" label="#{msg.date_filter_all}" />
|
|
</a:modeList>
|
|
</h:panelGrid>
|
|
|
|
<w:deploymentReports id="more-reports-list" value="#{DialogManager.bean.store}" showPrevious="true"
|
|
dateFilter="#{DialogManager.bean.dateFilter}" />
|
|
<h:outputText value="</div>" escape="false" />
|
|
|
|
</a:panel>
|
|
|
|
<h:outputText value="<div style='padding-top:10px;'></div>" escape="false" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|