Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-08 Thread Thierry Goubier
2016-03-08 10:34 GMT+01:00 Sven Van Caekenberghe : > I don't know exactly how this is implemented or how it was designed; but I > often felt as if you can easily have multiple copies of the same repository > spec, where different packages use different ones; setting the credentials

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-08 Thread Sven Van Caekenberghe
I don't know exactly how this is implemented or how it was designed; but I often felt as if you can easily have multiple copies of the same repository spec, where different packages use different ones; setting the credentials for one sometimes makes no difference for another user ... > On 08

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-08 Thread Cyril Ferlicot D.
Le 07/03/2016 18:21, Peter Uhnák a écrit : > MCRepositoryGroup default removeRepository: > (MCSmalltalkhubRepository > owner: 'Pharo' > project: 'Pharo50Inbox'). > MCRepositoryGroup default addRepository: > (MCSmalltalkhubRepository > owner:

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-07 Thread Peter Uhnák
> > MCRepositoryGroup default removeRepository: > (MCSmalltalkhubRepository > owner: 'Pharo' > project: 'Pharo50Inbox'). > MCRepositoryGroup default addRepository: > (MCSmalltalkhubRepository > owner: 'Pharo' > project: 'Pharo50Inbox' > user: 'peteruhnak' >

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-06 Thread Sean P. DeNigris
Metacello new repository: 'github://seandenigris/Monticello-Login:master/repository'; baseline: 'MonticelloLogin'; onConflict: [ :ex | ex allow ]; load. It expects a file named .mcconfig in a user-specifiable folder (set with `MlConfigurationFile folder: aFolder`),

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-06 Thread stepharo
Hi sean where is your tool :). Stef Le 5/3/16 18:37, Sean P. DeNigris a écrit : Peter Uhnák wrote repo user: 'peteruhnak'; password: '**' ... has no effect. Hmm, I wonder if something changed in 5.0. I do this all the time. In fact I wrote a small tool that picks up the credentials from

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-05 Thread Sean P. DeNigris
Peter Uhnák wrote > repo > user: 'peteruhnak'; > password: '**' > ... has no effect. Hmm, I wonder if something changed in 5.0. I do this all the time. In fact I wrote a small tool that picks up the credentials from a config file so I can invoke it from the World menu - Cheers, Sean --

Re: [Pharo-users] adding credentials to a repo via a playground script

2016-03-05 Thread Cyril Ferlicot D.
Le 05/03/2016 12:08, Peter Uhnák a écrit : > Hi, > > is it possible to add credentials to an existing repo via a script? > > I've tried something like > > ~ > |repo| > repo := MCSmalltalkhubRepository allInstances detect: [ :each | each > location includesSubstring: