Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Damien Cassou
Julien Delplanque writes: > From which package does these classes come from? Gofer new smalltalkhubUser: 'Pier' project: 'Pillar'; configurationOf: 'Pillar'; load. (ConfigurationOfPillar project version: #stable) load: 'latex exporter'. With this loaded, you now have

Re: [Pharo-users] how to see methods implemented in super classes

2015-05-17 Thread stepharo
The problem is that you have to flatten inheritance so this means that we would have to prefix methods based on the classes because just putting grey does not help. Long time ago there was such browser but it was not really good so we removed it. Now put yourself in inheritance mode and you can

Re: [Pharo-users] Store a png in a class variable

2015-05-17 Thread Sven Van Caekenberghe
"Quick and easy way to get an image from a URL" ZnEasy getPng: 'http://www.pharo.org/files/pharo.png'. "Turn bytes into an image inside Pharo" (PNGReadWriter on: 'http://www.pharo.org/files/pharo.png' asUrl retrieveContents readStream) nextImage. "Store image bytes as Base64 and recreate the ima

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Julien Delplanque
Is there anything already done to generate code related to math environment? I would like messages like: Fraction>>asMathLatex that returns $\frac{numerator}{denominator}$. Julien On 17/05/15 09:06, Damien Cassou wrote: Julien Delplanque writes: From which package does these classes com

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Cyril Ferlicot
Sorry but that's an item of the TODO list of Pillar. On 17 May 2015 at 11:25, Julien Delplanque wrote: > Is there anything already done to generate code related to math environment? > > I would like messages like: > > Fraction>>asMathLatex > > that returns $\frac{numerator}{denominator}$. > > Jul

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Julien Delplanque
Oh ok :) Do you have this todo list online? On 17/05/15 12:19, Cyril Ferlicot wrote: Sorry but that's an item of the TODO list of Pillar. On 17 May 2015 at 11:25, Julien Delplanque wrote: Is there anything already done to generate code related to math environment? I would like messages like

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Cyril Ferlicot
http://smalltalkhub.com/#!/~Pier/Pillar "LaTeX embedding: LaTeX is very useful to write mathematical formulas for example. It would be nice to be able to embed LaTeX formulas inside a Pillar document and get these formulas fully exported. Org mode does something similar already." On 17 May 2015 a

Re: [Pharo-users] Pillar used directly from Pharo

2015-05-17 Thread Jan Valášek
Dne 2015-04-20 14:12, Damien Cassou napsal: Hi Damien, Finally, I have used both ways in my work. So thank you for the clarification. Pillar is a very useful tool :-) Jan > Hi Jan, > > the following complements Cyril's answers. You can have a look at all > the unit-tests, they do a lot of thing

Re: [Pharo-users] Pillar used directly from Pharo

2015-05-17 Thread Cyril Ferlicot
To help the person who'll need to use Pillar from Pharo I added some documentation about it on the Pillar's documentation: https://ci.inria.fr/pharo-contribution/view/Books/job/EnterprisePharoBook/lastBuild/artifact/PillarChap/Pillar.html On 17 May 2015 at 13:03, Jan Valášek wrote: > Dne 2015-04

Re: [Pharo-users] [OT] Pharo pi machine

2015-05-17 Thread Julien Delplanque
Nice! I'm going to try Pharo on mine right now. On 17/05/15 14:26, Torsten Bergmann wrote: Got my Raspberry Pi B+ with a Tontec® 3.5 touch screen display to bootstrap into Pharo. The Raspberry Pi from CI (https://ci.inria.fr/pharo/view/RaspberryPi/) worked out of the box on Raspbian. Nice!

[Pharo-users] MagicMagritte Questions

2015-05-17 Thread stepharo
Hi sean I loaded magicMagritte and I'm going over the old tutorial of lukas and porting it to Pharo30. Now I do not get why I only get a WATestServerAdaptor for the Seaside webserver. Stef

Re: [Pharo-users] [OT] Pharo pi machine

2015-05-17 Thread Merwan Ouddane
Awesome ! I'll try this out :) On 17/05/2015 14:26, Torsten Bergmann wrote: Got my Raspberry Pi B+ with a Tontec® 3.5 touch screen display to bootstrap into Pharo. The Raspberry Pi from CI (https://ci.inria.fr/pharo/view/RaspberryPi/) worked out of the box on Raspbian. Nice!

Re: [Pharo-users] Problems getting a png image with ZnEasy

2015-05-17 Thread Offray Vladimir Luna Cárdenas
Hi Sven, Thanks for your quick answer. It seems that the problem is related with encoding errors on the images. I download them (with ZnClient #get), try to preview them using "FileSystem disk" navigation facilities and get the same error, but after converting and then with "convert" from Unix

Re: [Pharo-users] [OT] Pharo pi machine

2015-05-17 Thread Julien Delplanque
Managed to make Pharo run headless on Archlinux ARM! :) An important point is that you need to install xorg packages even if you don't use any GUI (in fact xorg is a group of package, it's possible to select only needed packages but I didn't took time to do that). On 17/05/15 14:53, Merwan Ou

Re: [Pharo-users] [OT] Pharo pi machine

2015-05-17 Thread Ben Coman
On Sun, May 17, 2015 at 8:26 PM, Torsten Bergmann wrote: > The Raspberry Pi from CI (https://ci.inria.fr/pharo/view/RaspberryPi/) > worked out of the box on Raspbian. Nice! > Thanks for reporting. Makes me more want to try it. btw, I'd say this was entirely On-Topic as a use of Pharo. cheers -b

Re: [Pharo-users] [OT] Pharo pi machine

2015-05-17 Thread Tudor Girba
Really cool. I just do not understand what is the purpose of the pink marker :). Cheers, Doru On Sun, May 17, 2015 at 2:26 PM, Torsten Bergmann wrote: > Got my Raspberry Pi B+ with a Tontec® 3.5 touch screen display > to bootstrap into Pharo. > > The Raspberry Pi from CI (https://ci.inria.fr

[Pharo-users] ConfigOf in meta and project repositories

2015-05-17 Thread Pierce Ng
Hi all, When Torsten moved NBSQLite3 to PharoExtras on STH, he wrote a ConfigurationOf, which is in the PharoExtras/NBSQLite3 repository, and I have been updating that. As it happens, in recent images, I used the configuration browser to install NBSQLite3. After updating and committing the Configu

Re: [Pharo-users] ConfigOf in meta and project repositories

2015-05-17 Thread Norbert Hartl
> Am 17.05.2015 um 16:54 schrieb Pierce Ng : > > Hi all, > > When Torsten moved NBSQLite3 to PharoExtras on STH, he wrote a > ConfigurationOf, > which is in the PharoExtras/NBSQLite3 repository, and I have been updating > that. As it happens, in recent images, I used the configuration browser t

Re: [Pharo-users] ShortCut

2015-05-17 Thread Cyril Ferlicot
hi, Shift + Enter On 17 May 2015 at 17:54, Cristian Vazquez wrote: > Hi! > > What is a shortcut for open Spotter? > > Thank > > -- > Saludos. > Cristian -- Cheers Cyril Ferlicot

[Pharo-users] ShortCut

2015-05-17 Thread Cristian Vazquez
Hi! What is a shortcut for open Spotter? Thank -- Saludos. Cristian

Re: [Pharo-users] MagicMagritte Questions

2015-05-17 Thread Sean P. DeNigris
stepharo wrote > Now I do not get why I only get a WATestServerAdaptor for the Seaside > webserver. I don't have an image handy, but IIRC the server(s) are in Zinc-Seaside. Let me know if not... - Cheers, Sean -- View this message in context: http://forum.world.st/MagicMagritte-Questions-

[Pharo-users] Reopen last closed nautilus window

2015-05-17 Thread Merwan Ouddane
Hello everyone, I always close some nautilus windows by mistake, and I that was really pissing me off... For people like me I made a little extension to reopen the last closed nautilus window with CTRL+MAJ+T or CMD+MAJ+T like most of internet browers (I know it erases the ifTrue: shortcut b

Re: [Pharo-users] Reopen last closed nautilus window

2015-05-17 Thread Sergio Fedi
Remember you can always make a window uncloseable. On Sun, May 17, 2015 at 3:03 PM, Merwan Ouddane wrote: > Hello everyone, > > I always close some nautilus windows by mistake, and I that was really > pissing me off... > > For people like me I made a little extension to reopen the last closed >

[Pharo-users] Any way to create multiple accessors in one time?

2015-05-17 Thread Julien Delplanque
Hi everyone, The subject is explicit enough... I find it annoying when I have to do lots of click to create each accessors using the gui... :) I suppose it's possible to modify the browser to do that but I wonder if anyone already did it? Regards, Julien

Re: [Pharo-users] Any way to create multiple accessors in one time?

2015-05-17 Thread Udo Schneider
Hi Julien In the Popup Menu use "Refactoring/Class Refactoring/Generate Accessors". This allows you to choose from all possible accessors to create. "Refactoring/Inst Var Refactoring/Accessors" only allows one inst var at a time as you already discovered. CU, Udo On 17/05/15 20:42, Juli

Re: [Pharo-users] Any way to create multiple accessors in one time?

2015-05-17 Thread Julien Delplanque
Oh! Thank you, it will save me lots of time. :) On 17/05/15 20:59, Udo Schneider wrote: Hi Julien In the Popup Menu use "Refactoring/Class Refactoring/Generate Accessors". This allows you to choose from all possible accessors to create. "Refactoring/Inst Var Refactoring/Accessors" only allo

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Damien Cassou
Julien Delplanque writes: > Is there anything already done to generate code related to math environment? > > I would like messages like: > > Fraction>>asMathLatex > > that returns $\frac{numerator}{denominator}$. stream := PROutputStream on: String new writeStream. configuration := PRCocoonConf

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Damien Cassou
Cyril Ferlicot writes: > http://smalltalkhub.com/#!/~Pier/Pillar > > "LaTeX embedding: LaTeX is very useful to write mathematical formulas > for example. It would be nice to be able to embed LaTeX formulas > inside a Pillar document and get these formulas fully exported. Org > mode does somethin

Re: [Pharo-users] Generate latex from Pharo

2015-05-17 Thread Julien Delplanque
Ok thank you :) On 17/05/15 21:18, Damien Cassou wrote: Julien Delplanque writes: Is there anything already done to generate code related to math environment? I would like messages like: Fraction>>asMathLatex that returns $\frac{numerator}{denominator}$. stream := PROutputStream on: Strin

Re: [Pharo-users] Any way to create multiple accessors in one time?

2015-05-17 Thread Esteban Lorenzano
… or you can just press cmd+h+a :) > On 17 May 2015, at 21:07, Julien Delplanque wrote: > > Oh! Thank you, it will save me lots of time. :) > > On 17/05/15 20:59, Udo Schneider wrote: >> Hi Julien >> >> In the Popup Menu use "Refactoring/Class Refactoring/Generate Accessors". >> This allows

Re: [Pharo-users] Pillar used directly from Pharo

2015-05-17 Thread Damien Cassou
Cyril is now doing all the work on Pillar On May 17, 2015 1:03:19 PM GMT+02:00, "Jan Valášek" wrote: >Dne 2015-04-20 14:12, Damien Cassou napsal: >Hi Damien, > >Finally, I have used both ways in my work. So thank you for the >clarification. Pillar is a very useful tool :-) > >Jan > >> Hi Jan, >>