return null;
}
public String selectRevision(Shell shell, ScmUrl scmUrl, String scmRevision) {
String svnUrl = getSvnUrl(scmUrl.getUrl());
ISVNRepositoryLocation location = SubclipseUtils.getRepositoryLocation(svnUrl);
if(location==null) {
// TODO ask if we should add new repository
return null;
}
String path = svnUrl.substring(location.getUrl().toString().length());
ISVNRemoteFolder remoteFolder = location.getRemoteFolder(path);
HistoryDialog dialog = new HistoryDialog(shell, remoteFolder);
// dialog.getShell().setSize(300, 200);
if(dialog.open() != Window.CANCEL) {