Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread Norbert Hartl
> Am 11.10.2018 um 02:02 schrieb Jerry Kott : > > A lot of thse types of services do that. Not sure why because it’s so easy to > spoof anything in an HTTP(s) request... > Technically this is right. Practically you still have to know which content to provide. I use it to get rid of requests t

Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread Norbert Hartl
It is done very often. In the past you could solve glitches between browser engines. Nowadays it is done e.g. to discover mobile clients. In one of my services the easiest to keep foreigners out was rejecting all requests which are not zinc 😉 Norbert > Am 11.10.2018 um 00:32 schrieb Hernán Mor

Re: [Pharo-users] [ANN] Migrated Artefact to GitHub

2018-10-10 Thread Norbert Hartl
I really like when I read projects are safed from smalltalkhub. It makes everything so much more manageable > Am 10.10.2018 um 16:59 schrieb Cyril Ferlicot : > >> On Wed, Oct 10, 2018 at 4:37 PM Sean P. DeNigris >> wrote: >> >> Sean P. DeNigris wrote >>> I migrated the >>> repo with the hopes

Re: [Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Norbert Hartl
Well, you can but then the access is not forwarded anymore to the repo you‘ve transferred. Transferring and forking makes everyone link something they maybe don‘t want. Transferring and creating a new one with the same name brings all request to the former to your new repo which is unlikely to b

Re: [Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Esteban Lorenzano
Why not? > On 10 Oct 2018, at 17:55, Norbert Hartl wrote: > > No, that you cannot > >> Am 10.10.2018 um 16:36 schrieb Sean P. DeNigris : >> >> NorbertHartl wrote >>> The rest is provided by github as long as you do not create a new >>> repository with the same name. >> >> Can you still fork t

Re: [Pharo-users] [ANN] Migrated Artefact to GitHub

2018-10-10 Thread Sean P. DeNigris
CyrilFerlicot wrote > This repo contains the project: > https://github.com/pharo-contributions/Artefact Great! Mine is now deleted. - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Glorp with P3

2018-10-10 Thread Pierce Ng
On Wed, Oct 10, 2018 at 11:12:37AM +0200, Sven Van Caekenberghe wrote: > I know that the actual PSQL DB that I am using has all the Glorp test > tables in it, I forgot whether that happened automatically or not. The Glorp test database is set up by "#GlorpDemoTablePopulatorResource asClass invali

Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread Jerry Kott
A lot of thse types of services do that. Not sure why because it’s so easy to spoof anything in an HTTP(s) request... Jerry Kott This message has been digitally signed. PGP Fingerprint: A9181736DD2F1B6CC7CF9E51AC8514F48C0979A5 > On 10-10-2018, at 3:32 PM, Hernán Morales Durand > wrote: > >

Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread Hernán Morales Durand
Wow, didn't knew that someone actually could reject/allow specific UAs. Thank you Sven, Cheers, Hernán El mié., 10 oct. 2018 a las 17:33, Sven Van Caekenberghe () escribió: > > Because they don't like Pharo or Zinc ;-) > > ZnClient new >systemPolicy; >beOneShot; >url: 'http://ifconfi

Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread p...@highoctane.be
Works for me in a 5.0 Did this c :=ZnClient new systemPolicy; beOneShot; accept: ZnMimeType textPlain; timeout: 6000; url: 'http://ifconfig.me/ip'; yourself. c request headers at: 'User-Agent' put: 'Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0

Re: [Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread Sven Van Caekenberghe
Because they don't like Pharo or Zinc ;-) ZnClient new systemPolicy; beOneShot; url: 'http://ifconfig.me/ip'; accept: ZnMimeType textPlain; headerAt: 'User-Agent' put: 'curl/7.54.0'; get. Changing the User-Agent (effectively lying) works. > On 10 Oct 2018, at 22:02, Hernán Mora

[Pharo-users] ZnClient 403 but 200 in Firefox

2018-10-10 Thread Hernán Morales Durand
When I visit this site http://ifconfig.me/ip using the web browser I get the expected text output. However if I try to do it from Pharo 6.1 (Windows 8.1) I get a 403 forbidden response using this code: ZnClient new systemPolicy; beOneShot; accept: ZnMimeType textPlain; timeout: 600

Re: [Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Norbert Hartl
No, that you cannot > Am 10.10.2018 um 16:36 schrieb Sean P. DeNigris : > > NorbertHartl wrote >> The rest is provided by github as long as you do not create a new >> repository with the same name. > > Can you still fork the transferred repo in your personal account? I wasn't > sure, which is wh

Re: [Pharo-users] [ANN] Migrated Artefact to GitHub

2018-10-10 Thread Cyril Ferlicot
On Wed, Oct 10, 2018 at 4:37 PM Sean P. DeNigris wrote: > > Sean P. DeNigris wrote > > I migrated the > > repo with the hopes that someone in the pharo-contributions organization > > will copy it. > > [snip] > > https://github.com/seandenigris/Artefact > > Bump. Anyone? I will do it if you add me

Re: [Pharo-users] [Seaside] [ANN] MaterialDesignLite for Seaside v1.3.0

2018-10-10 Thread Cyril Ferlicot
On Wed, Oct 10, 2018 at 10:46 AM Pierce Ng wrote: > > > Hi Cyril, > > In a Pharo 60541 image with Seaside already loaded, loading MDL resulted > in dependency mismatch error. I resolved (ahem) it the expedient way, by > commenting out the Seaside dependency in BaselineOfMaterialDesignLite. > It is

Re: [Pharo-users] [ANN] Migrated Artefact to GitHub

2018-10-10 Thread Sean P. DeNigris
Sean P. DeNigris wrote > I migrated the > repo with the hopes that someone in the pharo-contributions organization > will copy it. > [snip] > https://github.com/seandenigris/Artefact Bump. Anyone? I will do it if you add me to pharo-contributions… - Cheers, Sean -- Sent from: http://forum.w

Re: [Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Sean P. DeNigris
NorbertHartl wrote > The rest is provided by github as long as you do not create a new > repository with the same name. Can you still fork the transferred repo in your personal account? I wasn't sure, which is why I didn't handle Artefact this way. - Cheers, Sean -- Sent from: http://forum.

Re: [Pharo-users] Why is the root class of tests named TestAsserter?

2018-10-10 Thread James Foster
Hi Abdelghani, I don’t have immediate access to earlier versions of SUnit (oh, that it were on GitHub!), but my recollection is that TestCase was originally a root class but duplicate code with TestResource inspired a refactoring that called for a common superclass. The name TestAsserter was ch

Re: [Pharo-users] Glorp with P3

2018-10-10 Thread Sven Van Caekenberghe
> On 10 Oct 2018, at 14:33, Craig wrote: > > Sven, > > I just ported everything to Pharo 7.0 and the problem disappeared. > > Craig OK, good to know, but 6.1 should be compatible AFAIK. > -Original Message- > From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf

Re: [Pharo-users] Glorp with P3

2018-10-10 Thread Craig
Sven, I just ported everything to Pharo 7.0 and the problem disappeared. Craig -Original Message- From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of Sven Van Caekenberghe Sent: Wednesday, 10 October 2018 11:13 To: Any question about pharo is welcome Subject: Re

Re: [Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Norbert Hartl
If you go on github under settings there is a item „transfer ownership“. The rest is provided by github as long as you do not create a new repository with the same name. Norbert > Am 10.10.2018 um 13:47 schrieb Esteban Maringolo : > > Thank you Norbert. > > How do to achieve the forwarding o

Re: [Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Esteban Maringolo
Thank you Norbert. How do to achieve the forwarding of the old repo to the new one? Esteban A. Maringolo El mié., 10 oct. 2018 a las 7:37, Norbert Hartl () escribió: > > Just a note that I moved the repository > > https://github.com/zweidenker/Cryptography > > to > > https://github.com/pharo-co

[Pharo-users] [ANN] Cryptography moved to pharo-contributions

2018-10-10 Thread Norbert Hartl
Just a note that I moved the repository https://github.com/zweidenker/Cryptography to https://github.com/pharo-contributions/Cryptography It is better suited there. Access to the old URL will st

Re: [Pharo-users] Glorp with P3

2018-10-10 Thread Sven Van Caekenberghe
Craig, I tried in a clean Pharo-7.0.0+alpha.build.1276.sha.6c09bd43bb0d76c18958c720649aaf6834870bb5 (64 Bit). Load expression (as per https://github.com/svenvc/P3), which also loads Glorp itself: Metacello new baseline: 'P3'; repository: 'github://svenvc/P3'; load: 'glorp'. Tra

Re: [Pharo-users] Glorp with P3

2018-10-10 Thread Craig
Hi Sven, Thanks for the support. I'm using Pharo 6.1 - 32bit stable. Craig -Original Message- From: Pharo-users [mailto:pharo-users-boun...@lists.pharo.org] On Behalf Of Sven Van Caekenberghe Sent: Wednesday, 10 October 2018 08:56 To: Any question about pharo is welcome Subject: Re: [P