mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V2.1-A to HEAD
8241: Implemented location based breadcrumb mode Default switched to 'path' git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8281 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -63,6 +63,7 @@ public class ClientElementReader implements ConfigElementReader
|
||||
public static final String ELEMENT_SIMPLESEARCHADDITIONALATTRSQNAME = "qname";
|
||||
public static final String ELEMENT_MINUSERNAMELENGTH = "username-min-length";
|
||||
public static final String ELEMENT_MINPASSWORDLENGTH = "password-min-length";
|
||||
public static final String ELEMENT_BREADCRUMB_MODE = "breadcrumb-mode";
|
||||
public static final String ELEMENT_CIFSURLSUFFIX = "cifs-url-suffix";
|
||||
|
||||
/**
|
||||
@@ -246,6 +247,13 @@ public class ClientElementReader implements ConfigElementReader
|
||||
configElement.setMinPasswordLength(Integer.parseInt(minPassword.getTextTrim()));
|
||||
}
|
||||
|
||||
// get the breadcrumb mode
|
||||
Element breadcrumbMode = element.element(ELEMENT_BREADCRUMB_MODE);
|
||||
if (breadcrumbMode != null)
|
||||
{
|
||||
configElement.setBreadcrumbMode(breadcrumbMode.getTextTrim());
|
||||
}
|
||||
|
||||
// Get the CIFS URL suffix
|
||||
Element cifsSuffix = element.element(ELEMENT_CIFSURLSUFFIX);
|
||||
if ( cifsSuffix != null)
|
||||
|
Reference in New Issue
Block a user