-
Notifications
You must be signed in to change notification settings - Fork 347
Redox support #477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redox support #477
Conversation
The initial value of Does the |
Good point, I can do that |
I will check path_to_file_url_segments |
I cleaned up the patch. It is the best I can do so far. There is not much I can do with I would recommend that this PR is merged and I can create an issue to update the other function when possible. |
Thanks! @bors-servo r+ |
📌 Commit 01404b7 has been approved by |
Redox support Redox uses `file:` at the beginning of any file paths. Therefore, a path like `file:///home/user/some%20file.txt` needs to turn into `file:/home/user/some file.txt` <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-url/477) <!-- Reviewable:end -->
☀️ Test successful - checks-travis |
Redox uses
file:
at the beginning of any file paths. Therefore, a path likefile:///home/user/some%20file.txt
needs to turn intofile:/home/user/some file.txt
This change is