. Popup info panel now on by default

- Config element 'ajax-enabled' changed to 'node-summary-enabled' for now - with default of 'true'
. New popup info panel icon (from Linton)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5254 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2007-03-01 18:48:02 +00:00
parent a4aa830af2
commit 18a3f1a132
5 changed files with 21 additions and 21 deletions

View File

@@ -62,7 +62,7 @@ public class ClientConfigElement extends ConfigElementAdapter
private String helpUrl = null;
private String editLinkType = "http";
private String homeSpacePermission = null;
private boolean ajaxEnabled = false;
private boolean nodeSummaryEnabled = true;
private String initialLocation = "myalfresco";
private ExpiringValueCache<String> wcmDomain = new ExpiringValueCache<String>(1000*10L);
private ExpiringValueCache<String> wcmPort = new ExpiringValueCache<String>(1000*10L);
@@ -190,9 +190,9 @@ public class ClientConfigElement extends ConfigElementAdapter
combinedElement.setFromEmailAddress(newElement.getFromEmailAddress());
}
if (newElement.isAjaxEnabled() != combinedElement.isAjaxEnabled())
if (newElement.isNodeSummaryEnabled() != combinedElement.isNodeSummaryEnabled())
{
combinedElement.setAjaxEnabled(newElement.isAjaxEnabled());
combinedElement.setNodeSummaryEnabled(newElement.isNodeSummaryEnabled());
}
if (newElement.getInitialLocation() != null &&
@@ -466,19 +466,19 @@ public class ClientConfigElement extends ConfigElementAdapter
/**
* @return Returns whether AJAX support is enabled in the client
*/
public boolean isAjaxEnabled()
public boolean isNodeSummaryEnabled()
{
return this.ajaxEnabled;
return this.nodeSummaryEnabled;
}
/**
* Sets whether AJAX support is enabled in the client
*
* @param ajaxEnabled
* @param nodeSummaryEnabled
*/
/*package*/ void setAjaxEnabled(boolean ajaxEnabled)
/*package*/ void setNodeSummaryEnabled(boolean ajaxEnabled)
{
this.ajaxEnabled = ajaxEnabled;
this.nodeSummaryEnabled = ajaxEnabled;
}
/**