Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,9 @@ public CmsEditMailinglistDialog(PageContext context, HttpServletRequest req, Htt
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#actionCommit()
*/
@Override
public void actionCommit() {

m_group.setProjectCoWorker(false);
m_group.setProjectManager(false);
m_group.setEnabled(true);
setParentGroup("");
super.actionCommit();
Expand All @@ -97,6 +96,7 @@ public void actionCommit() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#createDialogHtml(java.lang.String)
*/
@Override
protected String createDialogHtml(String dialog) {

StringBuffer result = new StringBuffer(1024);
Expand All @@ -121,6 +121,7 @@ protected String createDialogHtml(String dialog) {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#defineWidgets()
*/
@Override
protected void defineWidgets() {

// initialize the user object to use for the dialog
Expand All @@ -140,6 +141,7 @@ protected void defineWidgets() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#getListClass()
*/
@Override
protected String getListClass() {

return CmsMailinglistsList.class.getName();
Expand All @@ -148,6 +150,7 @@ protected String getListClass() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#getListRootPath()
*/
@Override
protected String getListRootPath() {

return "/newsletter/orgunit/mailinglists";
Expand All @@ -156,6 +159,7 @@ protected String getListRootPath() {
/**
* @see org.opencms.workplace.CmsWorkplace#initMessages()
*/
@Override
protected void initMessages() {

// add specific dialog resource bundle
Expand All @@ -167,6 +171,7 @@ protected void initMessages() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#isEditable(CmsGroup)
*/
@Override
protected boolean isEditable(CmsGroup group) {

return true;
Expand All @@ -175,6 +180,7 @@ protected boolean isEditable(CmsGroup group) {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#validateParamaters()
*/
@Override
protected void validateParamaters() throws Exception {

super.validateParamaters();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,9 @@ public CmsEditMailinglistDialog(PageContext context, HttpServletRequest req, Htt
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#actionCommit()
*/
@Override
public void actionCommit() {

m_group.setProjectCoWorker(false);
m_group.setProjectManager(false);
m_group.setEnabled(true);
setParentGroup("");
super.actionCommit();
Expand All @@ -97,6 +96,7 @@ public void actionCommit() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#createDialogHtml(java.lang.String)
*/
@Override
protected String createDialogHtml(String dialog) {

StringBuffer result = new StringBuffer(1024);
Expand All @@ -121,6 +121,7 @@ protected String createDialogHtml(String dialog) {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#defineWidgets()
*/
@Override
protected void defineWidgets() {

// initialize the user object to use for the dialog
Expand All @@ -140,6 +141,7 @@ protected void defineWidgets() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#getListClass()
*/
@Override
protected String getListClass() {

return CmsMailinglistsList.class.getName();
Expand All @@ -148,6 +150,7 @@ protected String getListClass() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#getListRootPath()
*/
@Override
protected String getListRootPath() {

return "/v8-newsletter/orgunit/mailinglists";
Expand All @@ -156,6 +159,7 @@ protected String getListRootPath() {
/**
* @see org.opencms.workplace.CmsWorkplace#initMessages()
*/
@Override
protected void initMessages() {

// add specific dialog resource bundle
Expand All @@ -167,6 +171,7 @@ protected void initMessages() {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#isEditable(CmsGroup)
*/
@Override
protected boolean isEditable(CmsGroup group) {

return true;
Expand All @@ -175,6 +180,7 @@ protected boolean isEditable(CmsGroup group) {
/**
* @see org.opencms.workplace.tools.accounts.A_CmsEditGroupDialog#validateParamaters()
*/
@Override
protected void validateParamaters() throws Exception {

super.validateParamaters();
Expand Down