surface removal of multilingual space dialogs plus removal of native tomcat connector config

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6122 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Paul Holmes-Higgin
2007-06-27 20:17:24 +00:00
parent f6c4af6d9b
commit f67b0f07c0
4 changed files with 3 additions and 41 deletions

View File

@@ -394,17 +394,6 @@
<action>dialog:createSpace</action> <action>dialog:createSpace</action>
</action> </action>
<!-- Create multilingual space -->
<action id="create_multilingual_space">
<permissions>
<permission allow="true">CreateChildren</permission>
</permissions>
<label-id>create_multilingual_space</label-id>
<image>/images/icons/create_space.gif</image>
<action>dialog:createMultilingualSpace</action>
</action>
<!-- Create Advanced Space Wizard --> <!-- Create Advanced Space Wizard -->
<action id="create_space_wizard"> <action id="create_space_wizard">
<permissions> <permissions>
@@ -723,7 +712,6 @@
<action idref="create_form" /> <action idref="create_form" />
<action idref="create_website_wizard" /> <action idref="create_website_wizard" />
<action idref="create_space" /> <action idref="create_space" />
<action idref="create_multilingual_space" />
<action idref="create_space_wizard" /> <action idref="create_space_wizard" />
</action-group> </action-group>

View File

@@ -489,7 +489,7 @@
</step> </step>
</wizard> </wizard>
<!-- Definition of the Start Workflow wizard --> <!-- Definition of the New Edition wizard -->
<wizard name="newEdition" managed-bean="NewEditionWizard" <wizard name="newEdition" managed-bean="NewEditionWizard"
title-id="new_edition_wizard_title" title-id="new_edition_wizard_title"
description-id="new_edition_wizard_desc" description-id="new_edition_wizard_desc"

View File

@@ -179,18 +179,8 @@ public class EditSpaceDialog extends CreateSpaceDialog
} }
} }
// do nothing by default, subclasses can override if necessary
// do nothing by default, subclasses can override if necessary return AlfrescoNavigationHandler.CLOSE_DIALOG_OUTCOME;
if(isEdit())
{
this.browseBean.setDocument(this.getEditableNode()); // (this.editableNode.getNodeRef());
return "dialog:createMultilingualProperties";
}
else
{
return AlfrescoNavigationHandler.CLOSE_DIALOG_OUTCOME;
}
} }
@Override @Override
@@ -215,17 +205,4 @@ public class EditSpaceDialog extends CreateSpaceDialog
return this.editableNode; return this.editableNode;
} }
public boolean isEdit()
{
return this.edit;
}
public void setEdit(boolean x)
{
this.edit=x;
}
private boolean edit;
} }

View File

@@ -36,7 +36,4 @@
var="spaceProps" columns="1" labelStyleClass="propertiesLabel" var="spaceProps" columns="1" labelStyleClass="propertiesLabel"
externalConfig="true" cellpadding="2" cellspacing="2" /> externalConfig="true" cellpadding="2" cellspacing="2" />
</h:panelGrid> </h:panelGrid>
<h:selectBooleanCheckbox value="#{EditSpaceDialog.edit}" id="edit" />
<h:outputText value="#{msg.create_properties_close}" />