Upload new version Name

cancel
Showing results for 
Search instead for 
Did you mean: 
sakshik
Established Member

Upload new version Name

When user clicks on "Upload New Version" on a document, I need to enforce the user that the new document has the same name as the old document, otherwise don't allow the user to upload new version. 

Any suggestions?

2 Replies
krutik_jayswal
Senior Member II

Re: Upload new version Name

You can write behavior for same.Implement the behavior for VersionServicePolicies.OnCreateVersionPolicy (Alfresco 5.3.a-SNAPSHOT API)  using this policy.You will be able to compare old name and new name in this.Throw the exception if it does not match.

If you don't want throw exception, you can update new name with the old name.

sakshik
Established Member

Re: Upload new version Name

Could it be done through manipulating upload.post.js in

tomcat/webapps/alfresco/WEB-INF/classes/alfresco/extension/templates/webscripts/org/alfresco/repository/upload/

Since I don't have maven setup, I am not sure whether it can be done through classes you mentioned.

Either ways, could you please elaborate on the steps.