Fixed bug in one of the newly converted dialogs (description has unresolved bundle parameter)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6851 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2007-09-21 12:43:39 +00:00
parent 403f7b3a04
commit ef2c905758
3 changed files with 63 additions and 38 deletions

View File

@@ -282,8 +282,7 @@
description-id="add_user_group_description"/>
<dialog name="removeContentUser" page="/jsp/roles/remove-content-user.jsp" managed-bean="RemoveContentUserDialog"
icon="/images/icons/delete_large.gif" title-id="title_remove_invited_user"
description-id="remove_content_user_confirm" />
icon="/images/icons/delete_large.gif" description-id="remove_content_user_info" />
<dialog name="editFileDialog" page="/jsp/dialog/edit-file.jsp" managed-bean="EditFileDialog"
icon="/images/icons/edit_large.gif" title-id="title_edit_file"

View File

@@ -27,47 +27,69 @@ package org.alfresco.web.bean.users;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import org.alfresco.web.app.Application;
import org.alfresco.web.bean.dialog.BaseDialogBean;
/**
* Implementation of remove content user dialog.
*
* @author gavinc
*/
public class RemoveContentUserDialog extends BaseDialogBean
{
private ContentUsersBean contentUsersBean;
@Override
public boolean getFinishButtonDisabled()
{
return false;
}
private static final String MSG_REMOVE_USER = "remove_user";
@Override
protected String finishImpl(FacesContext context, String outcome) throws Exception
{
contentUsersBean.removeOK();
return outcome;
}
private ContentUsersBean contentUsersBean;
public void setupUserAction(ActionEvent event)
{
this.contentUsersBean.setupUserAction(event);
}
@Override
public boolean getFinishButtonDisabled()
{
return false;
}
public String getPersonName()
{
return this.contentUsersBean.getPersonName();
}
@Override
protected String finishImpl(FacesContext context, String outcome) throws Exception
{
contentUsersBean.removeOK();
public void setPersonName(String personName)
{
this.contentUsersBean.setPersonName(personName);
}
return outcome;
}
public ContentUsersBean getContentUsersBean()
{
return contentUsersBean;
}
@Override
public String getContainerTitle()
{
return Application.getMessage(FacesContext.getCurrentInstance(), MSG_REMOVE_USER) +
" '" + this.getPersonName() + "'";
}
public void setContentUsersBean(ContentUsersBean contentUsersBean)
{
this.contentUsersBean = contentUsersBean;
}
@Override
public String getContainerSubTitle()
{
return this.browseBean.getDocument().getName();
}
public void setupUserAction(ActionEvent event)
{
this.contentUsersBean.setupUserAction(event);
}
public String getPersonName()
{
return this.contentUsersBean.getPersonName();
}
public void setPersonName(String personName)
{
this.contentUsersBean.setPersonName(personName);
}
public ContentUsersBean getContentUsersBean()
{
return contentUsersBean;
}
public void setContentUsersBean(ContentUsersBean contentUsersBean)
{
this.contentUsersBean = contentUsersBean;
}
}

View File

@@ -4347,6 +4347,10 @@
org.alfresco.web.bean.users.RemoveContentUserDialog
</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>browseBean</property-name>
<value>#{BrowseBean}</value>
</managed-property>
<managed-property>
<property-name>contentUsersBean</property-name>
<value>#{ContentUsersBean}</value>