mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V2.2 to HEAD
7560: Better handling of exceptions in WCM File Picker when folder or search restriction values invalid 7567: Minor fix-up of incorrectly encoded text Fixed line endings on repository.properties 7568: Fixed AR-1812: Use hibernate.default_schema to control visibility of metadata queries git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8415 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1823,6 +1823,7 @@ error_shortcut_permissions=Unable to navigate to the item as it cannot be read b
|
|||||||
error_association=Failed to find association definition for association \"{0}\".
|
error_association=Failed to find association definition for association \"{0}\".
|
||||||
error_charset_null=Null characterset value
|
error_charset_null=Null characterset value
|
||||||
error_negative_quota=Quota cannot be negative: {0}
|
error_negative_quota=Quota cannot be negative: {0}
|
||||||
|
error_search_not_exist=Search does not exist with name: {0}
|
||||||
|
|
||||||
# Confirmations
|
# Confirmations
|
||||||
return_to_application=Return to application
|
return_to_application=Return to application
|
||||||
|
@@ -491,30 +491,39 @@ public class FilePickerBean implements Serializable
|
|||||||
.getWebappRelativePath(currentPath));
|
.getWebappRelativePath(currentPath));
|
||||||
}
|
}
|
||||||
currentNodeElement.setAttribute("type", "directory");
|
currentNodeElement.setAttribute("type", "directory");
|
||||||
|
|
||||||
// TODO (Glen): This was in Ariel's code. Is this the correct
|
|
||||||
// image to set?
|
|
||||||
currentNodeElement.setAttribute("image", "/images/icons/space_small.gif");
|
currentNodeElement.setAttribute("image", "/images/icons/space_small.gif");
|
||||||
|
|
||||||
filePickerDataElement.appendChild(currentNodeElement);
|
filePickerDataElement.appendChild(currentNodeElement);
|
||||||
|
|
||||||
// if configured search name supplied (i.e. not null),
|
// if configured search name supplied (i.e. neither null nor empty),
|
||||||
// then get configured search node matching given name
|
// then get configured search node matching given name
|
||||||
// and add the nodes from the search result to the file
|
// and add the nodes from the search result to the
|
||||||
// picker data
|
// file-picker-data element
|
||||||
if ((configSearchName != null) && (configSearchName.length() != 0))
|
if ((configSearchName != null) && (configSearchName.length() != 0))
|
||||||
{
|
{
|
||||||
// get node reference for named configured search
|
// get node reference for named configured search
|
||||||
NodeRef configuredSearchNodeRef = getConfiguredSearches(configSearchName);
|
NodeRef configuredSearchNodeRef = getConfiguredSearches(configSearchName);
|
||||||
|
|
||||||
// run search to get content nodes returned in search result
|
// if configured search node ref is null, then there is no
|
||||||
List<AVMNodeDescriptor> searchResultNodes = runConfiguredSearch(configuredSearchNodeRef);
|
// configured search matching the name in the 'config search name'
|
||||||
|
// parameter, so add error message as attribute to file-picker-data
|
||||||
// add elements for content nodes from search results as child nodes
|
// element
|
||||||
// of the file picker data element.
|
if (configuredSearchNodeRef == null)
|
||||||
addAVMNodesToElement(filePickerDataDoc, filePickerDataElement,
|
{
|
||||||
searchResultNodes, selectableTypes, facesContext);
|
filePickerDataElement.setAttribute("error", MessageFormat.format(
|
||||||
} else
|
Application.getMessage(facesContext, "error_search_not_exist"),
|
||||||
|
configSearchName));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
// else node ref for named configured search is not null, then
|
||||||
|
// add content nodes from search results as child elements of
|
||||||
|
// the file picker data element.
|
||||||
|
{
|
||||||
|
addSearchResultNodes(filePickerDataDoc, filePickerDataElement,
|
||||||
|
configuredSearchNodeRef, selectableTypes, facesContext);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
// add elements for child nodes of current path to file picker
|
// add elements for child nodes of current path to file picker
|
||||||
// data element if current path is not null
|
// data element if current path is not null
|
||||||
@@ -757,25 +766,31 @@ public class FilePickerBean implements Serializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add provided AVM node descriptors as child node elements to the provided
|
* Add result content nodes from configured search as
|
||||||
* parent element
|
* child node elements to the provided parent element
|
||||||
*
|
*
|
||||||
* @param doc
|
* @param doc
|
||||||
* XML document to which the parent node belongs
|
* XML document to which the supplied parent node belongs
|
||||||
* @param parent
|
* @param parent
|
||||||
* parent element to add given nodes as child elements
|
* parent element to which to add search result content nodes
|
||||||
* @param nodes
|
* as child elements
|
||||||
* nodes which to add as child elements to parent elements
|
* @param configuredSearchNodeRef
|
||||||
|
* configured search node reference for which result content nodes
|
||||||
|
* are added as child elements to the provided parent element
|
||||||
* @param selectableTypes
|
* @param selectableTypes
|
||||||
* AVM node types which must be marked as selectable
|
* node types which must be marked as selectable in the file
|
||||||
|
* picker
|
||||||
* @param facesContext
|
* @param facesContext
|
||||||
* faces context used to set image attribute on each child element
|
* faces context used to set image attribute on each child element
|
||||||
*/
|
*/
|
||||||
private void addAVMNodesToElement(org.w3c.dom.Document doc,
|
private void addSearchResultNodes(org.w3c.dom.Document doc,
|
||||||
org.w3c.dom.Element parent, List<AVMNodeDescriptor> nodes,
|
org.w3c.dom.Element parent, NodeRef configuredSearchNodeRef,
|
||||||
QName[] selectableTypes, FacesContext facesContext)
|
QName[] selectableTypes, FacesContext facesContext)
|
||||||
{
|
{
|
||||||
for (AVMNodeDescriptor node : nodes)
|
// run configured search to get content nodes returned in search result
|
||||||
|
List<AVMNodeDescriptor> searchResultNodes = runConfiguredSearch(configuredSearchNodeRef);
|
||||||
|
|
||||||
|
for (AVMNodeDescriptor node : searchResultNodes)
|
||||||
{
|
{
|
||||||
// create child element representing AVM node and add to file picker
|
// create child element representing AVM node and add to file picker
|
||||||
// data element
|
// data element
|
||||||
|
Reference in New Issue
Block a user