Re: [Pharo-dev] ZnEasy question

2017-08-25 Thread Sven Van Caekenberghe
With the following commits === Name: Zinc-Resource-Meta-Core-SvenVanCaekenberghe.63 Author: SvenVanCaekenberghe Time: 25 August 2017, 4:51:26.632889 pm UUID: b81e01d1-f613-0d00-b8a2-b72f05cf217b Ancestors: Zinc-Resource-Meta-Core-SvenVanCaekenberghe.62 Adapt ZnUrl>>#parsePath: to allow for empty

Re: [Pharo-dev] ZnEasy question

2017-08-17 Thread Sven Van Caekenberghe
Hi Milton, > On 5 Aug 2017, at 03:15, milton mamani wrote: > > Hi to all > > I want to use the next instruction in my code > > response := ZnEasy get: > 'https://archive.softwareheritage.org/api/1/origin/git/url/https://github.com/hylang/hy'. > response. > > The

Re: [Pharo-dev] ZnEasy question

2017-08-06 Thread Max Leske
Hi Milton, >From the URL RFC (http://tools.ietf.org/html/rfc3986, relevant grammar attached below) it seems that 'https://' in indeed a valid path component. ZnUrl seems to remove empty segments (which '//' would be) but that is not correct according to the RFC (empty segments appear to be valid

[Pharo-dev] ZnEasy question

2017-08-04 Thread milton mamani
Hi to all I want to use the next instruction in my code response := ZnEasy get: 'https://archive.softwareheritage.org/api/1/ origin/git/url/https://github.com/hylang/hy'. response. The previous code works from command line or in a webbrowser, but I does not work with ZnEasy Because it takes the