. Added link to the associated Working Copy for a locked document to the Document Details page

. Improved performance of "locked" status check for a cached client Node object
. Adding missing method to the list of authenticated methods for the CheckoutCheckinService to public-services-security-context.xml

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2509 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-03-01 14:17:30 +00:00
parent 758c7c191b
commit 42d464cc82
7 changed files with 81 additions and 10 deletions

View File

@@ -662,7 +662,7 @@ public class BrowseBean implements IContextListener
results = this.searchService.query(
Repository.getStoreRef(),
"lucene", query, null, null);
SearchService.LANGUAGE_LUCENE, query, null, null);
if (logger.isDebugEnabled())
logger.debug("Search results returned: " + results.length());
@@ -777,7 +777,7 @@ public class BrowseBean implements IContextListener
public NodePropertyResolver resolverlocked = new NodePropertyResolver() {
public Object get(Node node) {
return Repository.isNodeLocked(node, lockService);
return node.isLocked();
}
};