Addition of missing ui text

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2510 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-03-01 17:42:05 +00:00
parent 42d464cc82
commit f4d5717bd4
3 changed files with 5 additions and 7 deletions

View File

@@ -818,15 +818,13 @@ public class BrowseBean implements IContextListener
};
public NodePropertyResolver resolverWebdavUrl = new NodePropertyResolver() {
public Object get(Node node)
{
public Object get(Node node) {
return Utils.generateURL(FacesContext.getCurrentInstance(), node, URLMode.WEBDAV);
}
};
public NodePropertyResolver resolverCifsPath = new NodePropertyResolver() {
public Object get(Node node)
{
public Object get(Node node) {
return Utils.generateURL(FacesContext.getCurrentInstance(), node, URLMode.CIFS);
}
};
@@ -851,7 +849,7 @@ public class BrowseBean implements IContextListener
public NodePropertyResolver resolverDisplayPath = new NodePropertyResolver() {
public Object get(Node node) {
// TODO: replace this with a method that shows the full display name - not QNames
// TODO: replace this with a method that shows the full display name - not QNames?
return Repository.getDisplayPath( (Path)node.getProperties().get("path") );
}
};