mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
fix to strip an extra xml extension if entered by the user in the create web content wizard.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5027 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -70,6 +70,7 @@ import org.alfresco.web.forms.XMLUtil;
|
|||||||
import org.alfresco.web.ui.common.Utils;
|
import org.alfresco.web.ui.common.Utils;
|
||||||
import org.alfresco.web.ui.common.component.UIListItem;
|
import org.alfresco.web.ui.common.component.UIListItem;
|
||||||
import org.alfresco.web.ui.wcm.component.UIUserSandboxes;
|
import org.alfresco.web.ui.wcm.component.UIUserSandboxes;
|
||||||
|
import org.apache.commons.io.FilenameUtils;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.w3c.dom.Document;
|
import org.w3c.dom.Document;
|
||||||
@@ -387,7 +388,7 @@ public class CreateWebContentWizard extends BaseContentWizard
|
|||||||
|
|
||||||
parameters.put(WorkflowModel.ASSOC_PACKAGE, packageNodeRef);
|
parameters.put(WorkflowModel.ASSOC_PACKAGE, packageNodeRef);
|
||||||
// TODO: capture label and comment?
|
// TODO: capture label and comment?
|
||||||
parameters.put(AVMWorkflowUtil.PROP_LABEL, form ? this.formInstanceData.getName() : this.fileName);
|
parameters.put(AVMWorkflowUtil.PROP_LABEL, form ? this.formInstanceData.getName() : this.getFileName());
|
||||||
parameters.put(AVMWorkflowUtil.PROP_FROM_PATH, AVMConstants.buildStoreRootPath(sandboxName));
|
parameters.put(AVMWorkflowUtil.PROP_FROM_PATH, AVMConstants.buildStoreRootPath(sandboxName));
|
||||||
|
|
||||||
// update start task with submit parameters
|
// update start task with submit parameters
|
||||||
@@ -433,7 +434,7 @@ public class CreateWebContentWizard extends BaseContentWizard
|
|||||||
throws Exception
|
throws Exception
|
||||||
{
|
{
|
||||||
// get the parent path of the location to save the content
|
// get the parent path of the location to save the content
|
||||||
String fileName = this.fileName;
|
String fileName = this.getFileName();
|
||||||
if (LOGGER.isDebugEnabled())
|
if (LOGGER.isDebugEnabled())
|
||||||
LOGGER.debug("saving file content to " + fileName);
|
LOGGER.debug("saving file content to " + fileName);
|
||||||
|
|
||||||
@@ -512,6 +513,19 @@ public class CreateWebContentWizard extends BaseContentWizard
|
|||||||
// ------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------
|
||||||
// Bean Getters and Setters
|
// Bean Getters and Setters
|
||||||
|
|
||||||
|
/** Overrides in order to strip an xml extension if the user entered it */
|
||||||
|
@Override
|
||||||
|
public String getFileName()
|
||||||
|
{
|
||||||
|
final String result = super.getFileName();
|
||||||
|
return (result != null &&
|
||||||
|
MimetypeMap.MIMETYPE_XML.equals(this.mimeType) &&
|
||||||
|
this.getFormName() != null &&
|
||||||
|
"xml".equals(FilenameUtils.getExtension(result).toLowerCase())
|
||||||
|
? FilenameUtils.removeExtension(result)
|
||||||
|
: result);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Returns the content from the edited form.
|
* @return Returns the content from the edited form.
|
||||||
*/
|
*/
|
||||||
@@ -748,7 +762,7 @@ public class CreateWebContentWizard extends BaseContentWizard
|
|||||||
},
|
},
|
||||||
new String[]
|
new String[]
|
||||||
{
|
{
|
||||||
this.fileName,
|
this.getFileName(),
|
||||||
this.getSummaryObjectType(),
|
this.getSummaryObjectType(),
|
||||||
this.getSummaryMimeType(this.mimeType)
|
this.getSummaryMimeType(this.mimeType)
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user