- install nuxeo
- create user toto
- login with toto
- go to the personal workspace
- import through drag and drop a test.txt file
- import through drag and drop a test[1].txt file
- now access the personal workspace through WebDAV url in a browser:
http://127.0.0.1:8080/nuxeo/site/dav/toto
- observe the files are correctly listed
- click the test.txt link
- observe the file is correctly downloaded
- click the test[1].txt link
- observe it returns a Bad Request 400 error
- observe there is no error in the logs
- observe the link for test[1].txt is actually the following:
http://127.0.0.1:8080/nuxeo/site/dav/toto/oaizue[1].txt
- now url encode the filename
- try the encoded url:
http://127.0.0.1:8080/nuxeo/site/dav/toto/oaizue%5B1%5D.txt
- observe the file is downloaded correctly
- is related to
-
NXP-25684 Names containing brackets don't show up with WebDav
- Resolved