|
The following URLs are supported in Vibe, and might appear in the table above.
|
|
Permalinks
|
Permalinks are URLs that remain constant over time, and are used to reference individual workspaces, folders and entries. You can use them as bookmarks, or e-mail them to others. Copy and paste them as needed.
|
|
E-mail Addresses
|
If the folder owner has set up an e-mail address for this folder, then you can add entries directly into the folder via e-mail.
|
|
WebDAV URL
|
Use the WebDAV URL to access a folder directly as a file directory. Applications such as Windows Explorer and Microsoft Office can use a WebDAV URL to directly access the files stored in a Vibe folder.
|
|
iCal URL
|
You can use this URL to synchronize Vibe task and calendar folders to your desktop calendar application.
|
|
RSS URL
|
Folders can also be accessed using an RSS or ATOM Feed Reader or directly from the file system. Copy the RSS URL below and paste it into your RSS reader to access this folder as an RSS feed.
|
Currently in Teaming 2.1 (or earlier) there isn't a way to do this through the UI.
However, I think the following might work...
Edit the file "ssf/WEB-INF/jsp/forum/login_please.jsp".
Add the following code at the top of the jsp:
<%@ page import="org.kablink.teaming.util.NLT" %>
<%@ include file="/WEB-INF/jsp/common/common.jsp" %>
<%
org.kablink.teaming.domain.Binder topBinder = null;
org.kablink.teaming.module.workspace.WorkspaceModule workspaceModule = (org.kablink.teaming.module.workspace.WorkspaceModule)org.kablink.teaming.util.SpringContextUtil.getBean("workspaceModule");
try {
topBinder = workspaceModule.getTopWorkspace();
} catch(java.lang.Exception e) {}
%>
<c:set var="ssBinder" value="<%= topBinder %>" scope="request"/>
This change requires that you make the top workspace visible to the "guest" user account. Be careful when doing this. You will probably have to change the ACLs of the 3 workspaces just below the top workspace so that they don't inherit their access controls fro their parent. Otherwise, you might be opening up more binders to the guest account than you want.
I haven't tried this, but it should work.