cancel
Showing results for 
Search instead for 
Did you mean: 

CIFS - customisation

gsoalheiro
Champ in-the-making
Champ in-the-making
Hi

I am building a custom web client using the Surf framework to interact with the Alfresco repository. However there is a need for some users to interact directly with the repository using something like CIFS. When we enable CIFS, some interactions like view content details, redirect the user to the 'old' Alfresco Explorer interface.

We'd rather they were not exposed to Explorer at all. How can we get around this? Any pointers in the right direction would be appreciated.

Cheers
1 REPLY 1

zaizi
Champ in-the-making
Champ in-the-making
You'll need to change the URL in tomcat/webapps/alfresco/WEB-INF/classes/alfresco/desktop/showDetails.js.

It looks like;

// Main action

function runAction()
{
  var urlStr = webURL + "navigate/showDocDetails/workspace/SpacesStore/" + deskParams.getTarget(0).getNode().getId() +
    "?ticket=" + deskParams.getTicket();

  return urlStr;
}

var response = "7," + runAction();
response;