Sven Van Caekenberghe
Sven Van Caekenberghe
@Ducasse the link to the Zinc Client chapter from the Enterprise book does no longer work, it is the same link as shown on this page TOC: http://books.pharo.org/enterprise-pharo/ Maybe something...
But how can someone link to an individual chapter in the book then ?
Aren't DNS names case insensitive and usually lowercase ?
This is difficult. I do not think there is a real solution here. At least on macOS and other Unix based systems, a path to something can be both a...
I understand. But my point is that doing #isDirectory on a FileReference is accessing OS/filesystem info that is not obvious from the path alone. This means you can only do...
> May be sven the solution is to provide a solution to configure the ZnUrl to be a directory when the use knows it. > Because in our case, we...
Yeah, the name is maybe a bit strange, don't forget that URLs are for much more than just file references. We could add an alias in the future, but maybe...
Try: ``` ZnOptions globalDefault clone at: #queryKeyValueSafeSet put: (ZnOptions queryKeyValueSafeSet \ '/;'); during: [ 'https://github.com/SquareBracketAssociates/Booklet-DataFrame/releases/download/continuous/DataFrame-wip.pdf' asUrl saveContentsToFile: '/tmp/foo.pdf' ]. ``` See https://github.com/svenvc/zinc/issues/69
In most cases (99%), .txt files are served so that they are automatically decoded correctly as text. Hence the #utf8Decoded is not needed. ```` (ZnClient new get: 'https://raw.githubusercontent.com/SquareBracketAssociates/LearningOOPWithPharo/master/resources/listeDeMotsAFrancaisUTF8.txt') lines. ````
Hi, It would be great to add support for more types. Pharo, being object oriented, is better served with specific objects for each type, I think. Consider that you do...