- Added update status button to status area of links management report which now does an incremental report

- Re-Run report button now runs fresh report
- Generated files are now in a collapsable panel (closed by default)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5935 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2007-06-13 14:44:27 +00:00
parent 6bdd49ffc7
commit 1bbbb2b4ca
6 changed files with 128 additions and 18 deletions

View File

@@ -5,11 +5,13 @@ Alfresco.LinkValidationMonitor = function()
this.successMsg = '';
}
Alfresco.LinkValidationMonitor.prototype = {
Alfresco.LinkValidationMonitor.prototype =
{
url: null,
failedMsg: null,
successMsg: null,
retrieveLinkValidationStatus: function() {
retrieveLinkValidationStatus: function()
{
YAHOO.util.Connect.asyncRequest('GET', this.url,
{
success: this.processResults,
@@ -18,34 +20,42 @@ Alfresco.LinkValidationMonitor.prototype = {
},
null);
},
processResults: function(ajaxResponse) {
processResults: function(ajaxResponse)
{
var xml = ajaxResponse.responseXML.documentElement;
var finished = xml.getAttribute('finished');
var fileCount = xml.getAttribute('file-count');
var linkCount = xml.getAttribute('link-count');
var fileCountElem = document.getElementById('file-count');
if (fileCountElem != null) {
if (fileCountElem != null)
{
fileCountElem.innerHTML = fileCount;
}
var linkCountElem = document.getElementById('link-count');
if (linkCountElem != null) {
if (linkCountElem != null)
{
linkCountElem.innerHTML = linkCount;
}
if (finished == 'true') {
if (finished == 'true')
{
var linkOnclick = document.getElementById('validation-callback-link').onclick;
linkOnclick();
} else {
}
else
{
setTimeout('Alfresco.linkMonitor.retrieveLinkValidationStatus()', 2000);
}
},
handleError: function(ajaxResponse) {
handleError: function(ajaxResponse)
{
handleErrorYahoo(ajaxResponse.status + ' ' + ajaxResponse.statusText);
}
}
Alfresco.initLinkValidationMonitor = function() {
Alfresco.initLinkValidationMonitor = function()
{
Alfresco.linkMonitor = new Alfresco.LinkValidationMonitor();
Alfresco.linkMonitor.retrieveLinkValidationStatus();
}