Re: [Pharo-users] "News" section of the website down

2018-06-15 Thread orsayman via Pharo-users
--- Begin Message --- Yes, it's back. Thanks ! -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html --- End Message ---

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Tim Mackinnon
Phew - I can confirm that (unsurprisingly I guess) - just committing in Iceberg (without ticking - push changes to origin/master) does then let you easily overlay the same checked out project (typically ./iceberg/ProjectName) in a tool like VSCode or IntelliJ where you can then also commit furth

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Tim Mackinnon
Tod/Norbert - I won’t shy away from answering your comments on this - but if its ok - lets move that conversation to a new thread. I don’t want to distract away from how one actually does some form of atomic checkin (and I’m talking a small one - one Smalltalk class, one associated text file).

Re: [Pharo-users] How to contribute to Pharo Launcher?

2018-06-15 Thread Tim Mackinnon
Hi Christophe - you are right, I did contribute many years ago (I found the Mcz field on my disk when I just checked now) - but I’ll be darned If I can remember how it works (I have to confess, I never really got on with Metacello and slices). Do I simply take my latest .mcz file in my local di

Re: [Pharo-users] Lost in stream

2018-06-15 Thread Hilaire
Le 15/06/2018 à 20:40, Sven Van Caekenberghe a écrit : I don't see anything wrong with Toto-Wrong.png. When loading like this I have space low detection: PNGReadWriter formFromStream: 'Toto-Wrong.png' asFileReference binaryReadStream As for the XML part, the following seemed to work: xmldo

Re: [Pharo-users] Lost in stream

2018-06-15 Thread Sven Van Caekenberghe
I don't see anything wrong with Toto-Wrong.png. As for the XML part, the following seemed to work: xmldoc := (FileLocator desktop / 'Toto-ok.fgeo') readStreamDo: [ :in | XMLDOMParser parse: in ]. (FileLocator desktop / 'drgeo.xml') writeStreamDo: [ :out | xmldoc writeXMLOn: (XMLWriter on: out)

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Todd Blanchard
> On Jun 15, 2018, at 2:05 AM, Esteban Lorenzano wrote: > > > >> On 15 Jun 2018, at 10:29, Tim Mackinnon > > wrote: >> >> >> In many parts of the dev world - every commit should be shippable, meaning >> atomic - particularly with the use of CI systems (Travis, Gitl

Re: [Pharo-users] Lost in stream

2018-06-15 Thread Hilaire
I investigated a bit more the other issue, and it looks like XML entities are not correctly decoded when read from the newer File API. Somehow it is related to stream I guess. For example, drgeo document starting like: are correctly decoded with DrGeo 17.07, but not with the newer one. Whe

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Norbert Hartl
> Am 15.06.2018 um 10:29 schrieb Tim Mackinnon : > > > In many parts of the dev world - every commit should be shippable, meaning > atomic - particularly with the use of CI systems (Travis, Gitlab etc) that > build on every commit. > To be honest I don’t like such comments. Do you have a pr

Re: [Pharo-users] "News" section of the website down

2018-06-15 Thread Marcus Denker
Hi, It should now work: http://pharo.org/news (thanks to esteban) Marcus > On 11 Apr 2018, at 08:30, orsayman via Pharo-users > wrote: > > > From: orsayman > Subject: Re: "News" section of the website down > Date: 11 April 2018 at 08:30:17 CEST > To

Re: [Pharo-users] Insecure issue tracker registration

2018-06-15 Thread Marcus Denker
Hi, I have found a simple workaround (not yet the final solution): Please check: https://tracker.pharo.org/issues-register-service > On 15 Jun 2018, at 13:56, Tim Mackinnon wrote: > > I think Let’s Encrypt can be your friend (that seems to be the instructions > all of the providers g

Re: [Pharo-users] [ann] gt documenter

2018-06-15 Thread Offray Vladimir Luna Cárdenas
Hi Doru, Thanks for the update in Markdown. I will try to bring better Markdown support in Pharo by developing my ideas on a Playground for Markdown with syntax highlighting, image preview and so on and maybe I can help in incorporating them in GT Documenter on Pharo 7. I can confirm that fonts d

Re: [Pharo-users] Insecure issue tracker registration

2018-06-15 Thread Tim Mackinnon
I think Let’s Encrypt can be your friend (that seems to be the instructions all of the providers give - e.g. https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04

[Pharo-users] Call for TechTalks

2018-06-15 Thread Marcus Denker
Hi, As you might now, we organised “tech talks” in the past: https://pharo.org/TechTalk We would like to continue the next half of 2018 with this series. The form itself is quite open: it can be a lecture, a demo, or just some “guided” discussion on Discord

Re: [Pharo-users] Insecure issue tracker registration

2018-06-15 Thread Marcus Denker
Hello, yes, we really need to setup SSL for that server. I will have a look next week. > On 13 Jun 2018, at 10:25, Manuel Leuenberger wrote: > > Hi, > > I announced my concerns on Discord already, but got no reaction, so I post it > here as well to have it properly archived. > > "A colleague

[Pharo-users] @pharoproject: > 2000 followers

2018-06-15 Thread Marcus Denker
@pharoproject on twitter now has >2000 followers: https://twitter.com/pharoproject

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Esteban Lorenzano
> On 15 Jun 2018, at 10:29, Tim Mackinnon wrote: > > > In many parts of the dev world - every commit should be shippable, meaning > atomic - particularly with the use of CI systems (Travis, Gitlab etc) that > build on every commit. but then, you mean every *push* should be shippable :) tha

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Guillermo Polito
Hi Tim, On Fri, Jun 15, 2018 at 10:31 AM Tim Mackinnon wrote: > > In many parts of the dev world - every commit should be shippable, meaning > atomic - particularly with the use of CI systems (Travis, Gitlab etc) that > build on every commit. > > Of course you can choose to work a different way

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Tim Mackinnon
In many parts of the dev world - every commit should be shippable, meaning atomic - particularly with the use of CI systems (Travis, Gitlab etc) that build on every commit. Of course you can choose to work a different way - but our tools shouldn’t force a very common practice to be awkward, s

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Thierry Goubier
2018-06-15 8:19 GMT+02:00 Esteban Lorenzano : > > > On 15 Jun 2018, at 08:11, Norbert Hartl wrote: > > > > Am 14.06.2018 um 13:12 schrieb Thierry Goubier >: > > Hi Norbert, Tim, > > 2018-06-14 11:33 GMT+02:00 Norbert Hartl : > >> >> >> Am 14.06.2018 um 10:30 schrieb Tim Mackinnon : >> >> Hi - ye

Re: [Pharo-users] Why doesn't Iceberg checkin other assets (scripts) but does check them out?

2018-06-15 Thread Thierry Goubier
2018-06-15 8:11 GMT+02:00 Norbert Hartl : > > > Am 14.06.2018 um 13:12 schrieb Thierry Goubier >: > > Hi Norbert, Tim, > > 2018-06-14 11:33 GMT+02:00 Norbert Hartl : > >> >> >> Am 14.06.2018 um 10:30 schrieb Tim Mackinnon : >> >> Hi - yes I’m pleased you check out the entire tree, although curren

Re: [Pharo-users] How to contribute to Pharo Launcher?

2018-06-15 Thread Christophe Demarey
Hi Tim, > Le 14 juin 2018 à 18:48, Tim Mackinnon a écrit : > > Is PharoLauncher using git - there is a note saying the StHub repo is about > to be moved? > > I ask as I wanted to contribute a simple change that shows the modified date > of the images and lets you sort by that (I sometimes for