Community
Participate
Working Groups
Currently it is impossible to use file path that contain invalid URI characters in R4E. For example this means that no review groups or rule sets can be created in folders thst e.g. have apces in their names. This is not acceptable and will need to be fixed ASAP. I temporarly prevent users to use such folers/files for now, but it will need to be supported
Creating a URI from a string with special characters (e.g. spaces) in the path get encoded e.g. space -> %20. A couple of considerations are needed: 1) Preserving the URI as string shall remove /decode (i.e. URI.decode()) the special characters so a later conversion (i.e. string to URI can successfully re-build the URI). 2) Using the URI device path string to create a File / Resource shall also make sure to decode the URI to replace special encoded characters in the path. Using the URI towards EMF for creation of Resource sets does not need any special actions on the special characters and behaves as expected. The two actions above are now implemented and pushed.