mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
. Fix for Alfresco logo image on About page
. Manage Deleted Items action moved from browse header area to User Console screen git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5015 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -156,13 +156,10 @@ public final class AuthenticationHelper
|
||||
|
||||
// store the User object in the Session - the authentication servlet will then proceed
|
||||
session.setAttribute(AuthenticationHelper.AUTHENTICATION_USER, user);
|
||||
|
||||
|
||||
// Set the current locale
|
||||
I18NUtil.setLocale(Application.getLanguage(httpRequest.getSession()));
|
||||
|
||||
// remove the session invalidated flag
|
||||
session.removeAttribute(AuthenticationHelper.SESSION_INVALIDATED);
|
||||
|
||||
// remove the session invalidated flag
|
||||
session.removeAttribute(AuthenticationHelper.SESSION_INVALIDATED);
|
||||
|
||||
@@ -220,10 +217,10 @@ public final class AuthenticationHelper
|
||||
// Set the current locale
|
||||
I18NUtil.setLocale(Application.getLanguage(httpRequest.getSession()));
|
||||
|
||||
/* setup face context */
|
||||
// setup faces context
|
||||
FacesHelper.getFacesContext(httpRequest, httpResponse, context);
|
||||
|
||||
if (loginBean != null && (loginBean.getUserPreferencesBean() != null) )
|
||||
if (loginBean != null && (loginBean.getUserPreferencesBean() != null))
|
||||
{
|
||||
String contentFilterLanguageStr = loginBean.getUserPreferencesBean().getContentFilterLanguage();
|
||||
if (contentFilterLanguageStr != null)
|
||||
|
BIN
source/web/images/logo/AlfrescoLogo32_bluebg.gif
Normal file
BIN
source/web/images/logo/AlfrescoLogo32_bluebg.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
@@ -67,7 +67,7 @@
|
||||
<table cellspacing="4" cellpadding="0" width="100%">
|
||||
<tr>
|
||||
<td width=32>
|
||||
<h:graphicImage id="logo" url="/images/logo/AlfrescoLogo32.gif" width="32" height="32" />
|
||||
<h:graphicImage id="logo" url="/images/logo/AlfrescoLogo32_bluebg.gif" width="32" height="32" />
|
||||
</td>
|
||||
<td>
|
||||
<div class="mainTitle"><h:outputText value="#{msg.title_about}" /></div>
|
||||
|
@@ -132,13 +132,9 @@
|
||||
<%-- context for current user is setup on entry to user console --%>
|
||||
<a:actionLink id="change-password" value="#{msg.change_password}" action="dialog:changePassword" image="/images/icons/change_password.gif" rendered="#{NavigationBean.isGuest == false}" />
|
||||
</a:panel>
|
||||
|
||||
<div style="padding:4px"></div>
|
||||
|
||||
<%--<h:panelGroup id="pref-panel-facets">
|
||||
<f:facet name="title">
|
||||
<a:actionLink value="#{msg.modify}" action="" showLink="false" image="/images/icons/Change_details.gif" rendered="#{NavigationBean.isGuest == false}" />
|
||||
</f:facet>
|
||||
</h:panelGroup>--%>
|
||||
<a:panel label="#{msg.general_pref}" id="pref-panel" rendered="#{NavigationBean.isGuest == false}"
|
||||
border="white" bgcolor="white" titleBorder="lbgrey" expandedTitleBorder="dotted" titleBgcolor="white">
|
||||
<table cellspacing=2 cellpadding=2 border=0>
|
||||
@@ -177,6 +173,19 @@
|
||||
</tr>
|
||||
</table>
|
||||
</a:panel>
|
||||
|
||||
<div style="padding:4px"></div>
|
||||
|
||||
<a:panel label="#{msg.user_management}" id="man-panel" rendered="#{NavigationBean.isGuest == false}"
|
||||
border="white" bgcolor="white" titleBorder="lbgrey" expandedTitleBorder="dotted" titleBgcolor="white">
|
||||
<table cellspacing=2 cellpadding=2 border=0>
|
||||
<tr>
|
||||
<td>
|
||||
<a:actionLink id="manage-deleted-items" value="#{msg.manage_deleted_items}" action="dialog:manageDeletedItems" image="/images/icons/trashcan.gif" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</a:panel>
|
||||
</td>
|
||||
|
||||
<td valign="top">
|
||||
|
Reference in New Issue
Block a user