You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ace.apache.org by "Wilfried Sibla (JIRA)" <ji...@apache.org> on 2013/05/17 10:07:16 UTC

[jira] [Created] (ACE-351) Corrupt URLs in shop repository on Windows containing \ instead of /

Wilfried Sibla created ACE-351:
----------------------------------

             Summary: Corrupt URLs in shop repository on Windows containing \ instead of /
                 Key: ACE-351
                 URL: https://issues.apache.org/jira/browse/ACE-351
             Project: ACE
          Issue Type: Bug
          Components: Repository
    Affects Versions: 0.8.1-incubator
            Reporter: Wilfried Sibla


When uploading artifacts to the ACE server running on a windows OS, URLs added to the repository files contain windows file paths including the \ instead of /.

Replacing line 116 in class BundleFileStore (trunk)
String filePath = storeLocation.getAbsolutePath().substring(getWorkingDir().getAbsolutePath().length());

with:
String filePath = storeLocation.toURI().toString().substring(getWorkingDir().toURI().toString().length());

solves this problem.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira