- 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:
Gavin Cornwell
2007-06-21 22:19:13 +00:00
parent 228f72296c
commit 7a35bf3715
7 changed files with 93 additions and 16 deletions

View File

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