");
+
+ out.write("
");
+
+ // render the summary area with a surrounding panel
+ PanelGenerator.generatePanelStart(out, context.getExternalContext().getRequestContextPath(),
+ "innerwhite", "white");
+
+ out.write("
");
out.write(bundle.getString("summary"));
- out.write("
");
+ out.write("");
out.write("");
out.write(bundle.getString("initial_check"));
out.write(": | ");
@@ -122,7 +129,13 @@ public class UILinkValidationSummary extends AbstractLinkValidationReportCompone
out.write(" ");
Utils.encodeRecursive(context, updateStatusAction);
out.write(" |
");
- out.write("
");
+ out.write("
");
+
+ // finish the surrounding panel
+ PanelGenerator.generatePanelEnd(out, context.getExternalContext().getRequestContextPath(),
+ "innerwhite");
+
+ out.write("
");
}
}
else
diff --git a/source/java/org/alfresco/web/ui/wcm/component/UIUserSandboxes.java b/source/java/org/alfresco/web/ui/wcm/component/UIUserSandboxes.java
index 80cc5b98f9..60e5d583de 100644
--- a/source/java/org/alfresco/web/ui/wcm/component/UIUserSandboxes.java
+++ b/source/java/org/alfresco/web/ui/wcm/component/UIUserSandboxes.java
@@ -344,7 +344,7 @@ public class UIUserSandboxes extends SelfRenderingComponent
// for each user sandbox, generate an outer panel table
PanelGenerator.generatePanelStart(out,
context.getExternalContext().getRequestContextPath(),
- "white",
+ "innerwhite",
"white");
// components for the current username, preview, browse and modified items inner list
@@ -481,7 +481,7 @@ public class UIUserSandboxes extends SelfRenderingComponent
// end the outer panel for this sandbox
PanelGenerator.generatePanelEnd(out,
context.getExternalContext().getRequestContextPath(),
- "white");
+ "innerwhite");
// spacer row
if (index++ < userInfoRefs.size() - 1)
diff --git a/source/web/jsp/wcm/browse-website.jsp b/source/web/jsp/wcm/browse-website.jsp
index 5610c1bb84..12235414e4 100644
--- a/source/web/jsp/wcm/browse-website.jsp
+++ b/source/web/jsp/wcm/browse-website.jsp
@@ -130,7 +130,7 @@
<%-- Staging Sandbox Info --%>
- <% PanelGenerator.generatePanelStart(out, request.getContextPath(), "lbgrey", "white"); %>
+ <% PanelGenerator.generatePanelStart(out, request.getContextPath(), "innerwhite", "white"); %>
- <% PanelGenerator.generatePanelEnd(out, request.getContextPath(), "lbgrey"); %>
+ <% PanelGenerator.generatePanelEnd(out, request.getContextPath(), "innerwhite"); %>
diff --git a/source/web/scripts/ajax/link-validation-progress.js b/source/web/scripts/ajax/link-validation-progress.js
index a6bf7871b5..601fdf8a9f 100644
--- a/source/web/scripts/ajax/link-validation-progress.js
+++ b/source/web/scripts/ajax/link-validation-progress.js
@@ -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)