I'm trying to match this url with a regexp in django/python (old liferay urls)
http://127.0.0.1:8080/documents/34105/35593/prova+(1)+(1).jpg/da459266-ab36-faf1-726d-fc989385b0bd
but I cannot decode the filename...
This is the regexp that I use:
documents/(?P<repo>[0-9]{5,10})/(?P<folder>[0-9]{5,10})/(?P<filename>[])/(?P<uuid>[\w-]+)
This is the Pythex link