mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
17429: Fixed ETHREEOH-2319 "Share - Sticky image or videos in web view" 17435: Fixed EETHREEOH-3325 "Add group button is disabled on Admin Console - New User page" 17445: Fixed ETHREEOH-3306 "Large number of root groups causes Groups admin tool to lockup the sever and Share" - Search panel is now the default panel and the loading of root groups only occurs if you click the "Browse" button and change to the browse panel 17446: Fix for unreported issue where the InMemoryTicketComponent did not check for null value from ticketsCache. Can occur on tomcat sesson expire and caused NPE to be logged. 17449: Merged V3.1 to V3.2 17257: *RECORD ONLY* Merged V3.2 to V3.1 13685: ACT 8490 - TinyMCE fails if told to load unsupported language (interim fix only) (ETHREEOH-1615) 17372: First part of fix for ETHREEOH-2519. 17448: Merged DEV-TEMPORARY to V3.1 17390: ETHREEOH-1619: Letters and special symbols can be typed in Date value of property while creation of Content Rule and it leads to error 17391: ETHREEOH-1058: It is possible to send invite email message with no subject from Web Project Wizard Step Seven - Email Users page ETHREEOH-1060: It is possible to send empty invitation email from Web Project Wizard Step Seven - Email users page 17452: Fixed ETHREEOH-3306 "Large number of root groups causes Groups admin tool to lockup the sever and Share" part 2 - A "no result"-message was displayed to the user even though no search had been performed, now replaced by a usage message 17453: Fixed ETHREEOH-2329 " Search doesn't work correctly on Groups page" 17454: Fix for ETHREEOH-3084 - Error message appears in My Web Files part of My Alfresco Dashboard after configuring of the dashboard. - added new JavaScript and Template APIs to retrieve child nodes of a specific type - using fast direct DB NodeService call. 17455: Fixed ETHREEOH-2329 " Search doesn't work correctly on Groups page" part 2 - Added the prefix "*" to admin console group search as well to make it consistent git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18122 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
105 lines
4.4 KiB
Plaintext
105 lines
4.4 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="/WEB-INF/alfresco.tld" prefix="a" %>
|
|
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
|
|
|
|
<%@ page buffer="32kb" contentType="text/html;charset=UTF-8" %>
|
|
<%@ page isELIgnored="false" %>
|
|
|
|
<f:verbatim>
|
|
<script type="text/javascript">
|
|
|
|
window.onload = pageLoaded;
|
|
var okEnabled;
|
|
var notifyEnabled = false;
|
|
|
|
function pageLoaded()
|
|
{
|
|
document.getElementById("wizard:wizard-body:subject").focus();
|
|
okEnabled = !document.getElementById("wizard:finish-button").disabled;
|
|
var radio = document.forms[0].elements["wizard:wizard-body:notify"];
|
|
notifyEnabled = radio[0].checked;
|
|
checkButtonState();
|
|
}
|
|
|
|
function checkButtonState()
|
|
{
|
|
if (okEnabled)
|
|
{
|
|
if (document.getElementById("wizard:wizard-body:subject").value.length > 0 ||
|
|
!notifyEnabled)
|
|
{
|
|
document.getElementById("wizard:finish-button").disabled = false;
|
|
document.getElementById("wizard:next-button").disabled = false;
|
|
}
|
|
else
|
|
{
|
|
document.getElementById("wizard:finish-button").disabled = true;
|
|
document.getElementById("wizard:next-button").disabled = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
function checkNotify(notify)
|
|
{
|
|
notifyEnabled = notify.value == "yes";
|
|
checkButtonState();
|
|
}
|
|
|
|
</script>
|
|
</f:verbatim>
|
|
|
|
<h:panelGrid style="padding-bottom:12px" columns="1" cellpadding="2" cellspacing="2" border="0" width="100%">
|
|
<h:outputText value="#{msg.send_email}" />
|
|
<h:selectOneRadio id="notify" value="#{InviteWebsiteUsersWizard.notify}" onclick="javascript:checkNotify(this);">
|
|
<f:selectItem itemValue="yes" itemLabel="#{msg.yes}" />
|
|
<f:selectItem itemValue="no" itemLabel="#{msg.no}" />
|
|
</h:selectOneRadio>
|
|
</h:panelGrid>
|
|
|
|
<h:outputText value="#{msg.email_message}" styleClass="mainSubTitle" />
|
|
<h:panelGrid columns="2" cellpadding="2" cellspacing="2" border="0" width="100%">
|
|
<h:outputText value="#{msg.subject}:" />
|
|
<h:panelGroup>
|
|
<h:inputText id="subject" value="#{InviteWebsiteUsersWizard.mailHelper.subject}" size="75" maxlength="1024" onkeyup="javascript:checkButtonState();" />
|
|
<f:verbatim> *</f:verbatim>
|
|
</h:panelGroup>
|
|
|
|
<f:verbatim></f:verbatim>
|
|
<h:panelGrid columns="4" cellspacing="1" cellpadding="1" border="0">
|
|
<h:outputText value="#{msg.action_mail_template}:" />
|
|
<h:selectOneMenu value="#{InviteWebsiteUsersWizard.mailHelper.template}">
|
|
<f:selectItems value="#{InviteWebsiteUsersWizard.emailTemplates}" />
|
|
</h:selectOneMenu>
|
|
<h:commandButton value="#{msg.insert_template}" actionListener="#{InviteWebsiteUsersWizard.mailHelper.insertTemplate}" styleClass="wizardButton" />
|
|
<h:commandButton value="#{msg.discard_template}" actionListener="#{InviteWebsiteUsersWizard.mailHelper.discardTemplate}" styleClass="wizardButton" disabled="#{InviteWebsiteUsersWizard.mailHelper.usingTemplate == null}" />
|
|
</h:panelGrid>
|
|
|
|
<h:outputText value="#{msg.message}:"/>
|
|
<h:inputTextarea value="#{InviteWebsiteUsersWizard.mailHelper.body}" rows="4" cols="75" disabled="#{InviteWebsiteUsersWizard.mailHelper.usingTemplate != null}" />
|
|
</h:panelGrid>
|