. 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:
Kevin Roast
2006-01-12 13:40:20 +00:00
parent 5d9576883d
commit 2652d33f08
21 changed files with 1202 additions and 90 deletions

View File

@@ -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.