[xwiki-users] Attachment name
Hi! Is it possible to automatically change attachment name to lowercase / uppercase when uploading it (so when using some picture, you wouldn't need to specify it's name as a case sensitive)? Best regards, Mike
Hello Mike A. wrote:
Hi! Is it possible to automatically change attachment name to lowercase / uppercase when uploading it (so when using some picture, you wouldn't need to specify it's name as a case sensitive)?
Yes, you can achieve this. The easiest way is probably to replace this line : var fname = form.filepath.value; by this one : var fname = form.filepath.value.toUpperCase() // or toLowerCase() in the function updateAttachName(form, msg) of xwiki.js (the one under skins/albatross) (haven't tested, though) Hope it helps, Jerome/
Best regards, Mike _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
participants (2)
-
Jerome Velociter -
Mike A.