mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2E to HEAD
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
This commit is contained in:
@@ -675,7 +675,10 @@ public class NavigationBean implements Serializable
|
||||
{
|
||||
if (this.currentNodeId == null)
|
||||
{
|
||||
throw new AlfrescoRuntimeException("Cannot retrieve current Node if NodeId is null!");
|
||||
// handle the possibility that we have no current location
|
||||
// this is possible in cluster fail-over or due to a missing node
|
||||
// default back to the current toolbar root location
|
||||
this.processToolbarLocation(this.getToolbarLocation(), false);
|
||||
}
|
||||
|
||||
if (s_logger.isDebugEnabled())
|
||||
@@ -696,7 +699,7 @@ public class NavigationBean implements Serializable
|
||||
}
|
||||
catch (InvalidNodeRefException refErr)
|
||||
{
|
||||
FacesContext fc = FacesContext.getCurrentInstance();
|
||||
FacesContext fc = FacesContext.getCurrentInstance();
|
||||
Utils.addErrorMessage(MessageFormat.format(Application.getMessage(
|
||||
fc, ERROR_DELETED_FOLDER), new Object[] {this.currentNodeId}) );
|
||||
|
||||
@@ -715,10 +718,13 @@ public class NavigationBean implements Serializable
|
||||
SharedDeviceList shares = filesysConfig.getShares();
|
||||
Enumeration<SharedDevice> shareEnum = shares.enumerateShares();
|
||||
|
||||
while ( shareEnum.hasMoreElements() && diskShare == null) {
|
||||
SharedDevice curShare = shareEnum.nextElement();
|
||||
if ( curShare.getContext() instanceof ContentContext)
|
||||
diskShare = (DiskSharedDevice) curShare;
|
||||
while (shareEnum.hasMoreElements() && diskShare == null)
|
||||
{
|
||||
SharedDevice curShare = shareEnum.nextElement();
|
||||
if (curShare.getContext() instanceof ContentContext)
|
||||
{
|
||||
diskShare = (DiskSharedDevice)curShare;
|
||||
}
|
||||
}
|
||||
|
||||
if (diskShare != null)
|
||||
|
Reference in New Issue
Block a user