Re: [Pharo-users] Create png from pdf

2017-01-18 Thread Stephane Ducasse
Ah you want to convert pdf to png I thought graphics to png. PDF to png means that we would need a pdf renderer and this is not an easy task. On Mon, Jan 16, 2017 at 10:26 AM, Sabine Manaa wrote: > Hi, > > currently, I create pdfs with Artefact and it works fine. > For

Re: [Pharo-users] [Deployement] Apache rewrite rules for Pharo

2017-01-18 Thread Sven Van Caekenberghe
There is also this chapter: https://ci.inria.fr/pharo-contribution/job/EnterprisePharoBook/lastSuccessfulBuild/artifact/book-result/DeploymentWeb/DeployForProduction.html which contains the same solution and more. > On 18 Jan 2017, at 19:04, Steven Costiou wrote: > >

Re: [Pharo-users] [Deployement] Apache rewrite rules for Pharo

2017-01-18 Thread Steven Costiou
Hi, not sure that's what you are looking for but for my Pharo images with Iliad applications i just add the following to my website vhost in the /etc/apache directory: ProxyPass / http://localhost:/ ProxyPassReverse / http://localhost:/ That redirects all queries to my domain to this

[Pharo-users] [Deployement] Apache rewrite rules for Pharo

2017-01-18 Thread Blondeau Vincent
Hi, I need to put on the same server and access through the port 80 several Pharo images. I know that it is possible to do it thanks to the apache rewrite rules to redirect outside urls http://myserver:80/myservice to internal ones: http://localhost:8080. Did someone

Re: [Pharo-users] STON encoding of slashes

2017-01-18 Thread Sven Van Caekenberghe
> On 18 Jan 2017, at 16:20, Peter Uhnak wrote: > > On Wed, Jan 18, 2017 at 03:38:17PM +0100, Sven Van Caekenberghe wrote: >> So talking only about the encoding/writing phase, the conclusion would be > > 10. Generators > > A JSON generator produces JSON text. The

Re: [Pharo-users] STON encoding of slashes

2017-01-18 Thread Peter Uhnak
On Wed, Jan 18, 2017 at 03:38:17PM +0100, Sven Van Caekenberghe wrote: > So talking only about the encoding/writing phase, the conclusion would be 10. Generators A JSON generator produces JSON text. The resulting text MUST strictly conform to the JSON grammar. I guess the ABNF table is

Re: [Pharo-users] STON encoding of slashes

2017-01-18 Thread Sven Van Caekenberghe
So talking only about the encoding/writing phase, the conclusion would be - not to escape $/ - escape everything with code points [0,31], using named escapes if they exist, else \u - escape $\ itself That leaves the question about $' and $". $' is used in STON as string delimiter, so

Re: [Pharo-users] STON encoding of slashes

2017-01-18 Thread Peter Uhnak
On Wed, Jan 18, 2017 at 11:11:06AM +0100, Christophe Demarey wrote: > > > Le 18 janv. 2017 à 09:51, Sven Van Caekenberghe a écrit : > > > > Hi Christophe, > > > >> STON toString: 'g...@github.com:foo/bar.git’ => > >> ''g...@github.com:foo\/bar.git’' > >> It used to be

[Pharo-users] Pharo not opening my image automatically

2017-01-18 Thread Dimitris Chloupis
Hey guys, I have a makefile that downloads Pharo with curl get.pharo.org/alpha+vmLatest | bash I then move pharo.app from the pharo-vm subfolder to the parent folder that contains my Ephestos.image , together with Pharo50.sources the problem is that when I double click on it instead of opening

[Pharo-users] STON encoding of slashes

2017-01-18 Thread Christophe Demarey
Hi, I just noticed that STON encoding of forward slashes changed. STON toString: 'g...@github.com:foo/bar.git’ => ''g...@github.com:foo\/bar.git’' It used to be ''g...@github.com:foo/bar.git’’. Is it on purpose? Thanks, Christophe