mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
. First pass of the Saved Searches functionality for the web-client
. Saved Searches bootstrap folder . Document details and Space details page now show a copy-and-paste NodeRef link . Minor bug fixes to Breadcrumb and ActionLink components git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2104 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -117,7 +117,7 @@ public class SpaceDetailsBean
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the id of the current document
|
||||
* Returns the id of the current space
|
||||
*
|
||||
* @return The id
|
||||
*/
|
||||
@@ -127,9 +127,9 @@ public class SpaceDetailsBean
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the name of the current document
|
||||
* Returns the name of the current space
|
||||
*
|
||||
* @return Name of the current document
|
||||
* @return Name of the current space
|
||||
*/
|
||||
public String getName()
|
||||
{
|
||||
@@ -137,7 +137,7 @@ public class SpaceDetailsBean
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the WebDAV URL for the current document
|
||||
* Returns the WebDAV URL for the current space
|
||||
*
|
||||
* @return The WebDAV url
|
||||
*/
|
||||
@@ -147,7 +147,7 @@ public class SpaceDetailsBean
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the URL to access the details page for the current document
|
||||
* Returns the URL to access the details page for the current space
|
||||
*
|
||||
* @return The bookmark URL
|
||||
*/
|
||||
@@ -157,7 +157,7 @@ public class SpaceDetailsBean
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the CIFS path for the current document
|
||||
* Returns the CIFS path for the current space
|
||||
*
|
||||
* @return The CIFS path
|
||||
*/
|
||||
@@ -165,6 +165,16 @@ public class SpaceDetailsBean
|
||||
{
|
||||
return Utils.generateURL(FacesContext.getCurrentInstance(), getSpace(), URLMode.CIFS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the Alfresco NodeRef URL for the current space
|
||||
*
|
||||
* @return the Alfresco NodeRef URL
|
||||
*/
|
||||
public String getNodeRefUrl()
|
||||
{
|
||||
return getSpace().getNodeRef().toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Returns the template Id.
|
||||
|
Reference in New Issue
Block a user