mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- Links management UI
- Made AJAX polling frequency configurable - Made connection and read timeout values configurable - Added panel around summary area - Removed use of shadowed panels for staging area and user sandboxes git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6061 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,15 +1,11 @@
|
||||
Alfresco.LinkValidationMonitor = function()
|
||||
{
|
||||
this.url = getContextPath() + '/ajax/invoke/LinkValidationProgressBean.getStatus';
|
||||
this.failedMsg = '';
|
||||
this.successMsg = '';
|
||||
}
|
||||
|
||||
Alfresco.LinkValidationMonitor.prototype =
|
||||
{
|
||||
url: null,
|
||||
failedMsg: null,
|
||||
successMsg: null,
|
||||
retrieveLinkValidationStatus: function()
|
||||
{
|
||||
YAHOO.util.Connect.asyncRequest('GET', this.url,
|
||||
@@ -45,7 +41,7 @@ Alfresco.LinkValidationMonitor.prototype =
|
||||
}
|
||||
else
|
||||
{
|
||||
setTimeout('Alfresco.linkMonitor.retrieveLinkValidationStatus()', 2000);
|
||||
setTimeout('Alfresco.linkMonitor.retrieveLinkValidationStatus()', Alfresco.linkMonitorPollFreq*1000);
|
||||
}
|
||||
},
|
||||
handleError: function(ajaxResponse)
|
||||
|
Reference in New Issue
Block a user