Re: [Pharo-dev] Call a WebService with authentication

2016-03-22 Thread Paul DeBruicker
ZnClient new url: 'https://www.example.com'; username: 'myuser' password: 'mypwd'; get angelo.favero wrote > Hi, all. > > I'm calling a web service with java using this java code to authenticate. > >

Re: [Pharo-dev] Discussing FileSystem >> #workingDirectory and VM process getcwd(3)

2016-03-22 Thread Dale Henrichs
Mariano, I think this _is_ the OSX issue that I was talking about ... there is a way to arrange for PWD to be set correctly when double clicking apps, but it has to be set a system option so each user has to do it themselves ... Dale On 3/22/16 6:01 AM, Mariano Martinez Peck wrote: On Tu

[Pharo-dev] [pharo-project/pharo-core]

2016-03-22 Thread GitHub
Branch: refs/tags/50657 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 49cb75: 50657

2016-03-22 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 49cb75a51167fc38fcd4ff73460e00aa8ebdef0c https://github.com/pharo-project/pharo-core/commit/49cb75a51167fc38fcd4ff73460e00aa8ebdef0c Author: Jenkins Build Server Date: 2016-03-22 (Tue, 22 Mar 2016

Re: [Pharo-dev] Discussing FileSystem >> #workingDirectory and VM process getcwd(3)

2016-03-22 Thread Mariano Martinez Peck
On Tue, Mar 22, 2016 at 9:37 AM, Damien Pollet wrote: > Because there is this concept called "consistency" that's interesting to > have :p > > If your code wants $HOME it can ask for it explicitly, same for /. However > if it just wants to do something in $PWD consistent with most use-cases, > th

Re: [Pharo-dev] Discussing FileSystem >> #workingDirectory and VM process getcwd(3)

2016-03-22 Thread Damien Pollet
Because there is this concept called "consistency" that's interesting to have :p If your code wants $HOME it can ask for it explicitly, same for /. However if it just wants to do something in $PWD consistent with most use-cases, the image directory is the sensible default. On 22 March 2016 at 13:

Re: [Pharo-dev] Enterprise Pharo Book updates

2016-03-22 Thread Damien Cassou
Gabriel Cotelli writes: > Are the book versions available at books.pharo.org automatically > updated? It seems that are missing the last updates. no. Things are manual. Automated updated are on the continuous integration servers. https://ci.inria.fr/pharo-contribution/job/UpdatedPharoByExample/

Re: [Pharo-dev] Discussing FileSystem >> #workingDirectory and VM process getcwd(3)

2016-03-22 Thread Damien Cassou
Damien Pollet writes: > On 22 March 2016 at 12:56, Damien Cassou wrote: > >> typical applications ran with double-click are bound to the HOME >> directory. Why do you want to do it differently? >> > > Only on Linux. On OS X it's / so, why do you want to make it the image directory? -- Damien

Re: [Pharo-dev] Discussing FileSystem >> #workingDirectory and VM process getcwd(3)

2016-03-22 Thread Damien Pollet
On 22 March 2016 at 12:56, Damien Cassou wrote: > typical applications ran with double-click are bound to the HOME > directory. Why do you want to do it differently? > Only on Linux. On OS X it's / -- Damien Pollet type less, do more [ | ] http://people.untyped.org/damien.pollet

Re: [Pharo-dev] Discussing FileSystem >> #workingDirectory and VM process getcwd(3)

2016-03-22 Thread Damien Cassou
Mariano Martinez Peck writes: > 1) *If Pharo was launched from double click* then we do not care about its > location and I think it's correct to default to image location: > > 1.1) FileSystem >> #workingDirectory refers to the directory containing > the .image file > 1.2) The VM process getcm