[Pharo-users] Building Pharo using Interpreter Class

2013-12-03 Thread Kirstin Heidler
My freind Dimitri was not able to post his message. I am working with him on this. ___ Hello, as part of a Seminar in the University im trying to build the PharoVM. According to the README file here ([1]) I was able to

[Pharo-users] command line command from pharo image

2013-12-03 Thread Sabine Knöfel
Hi, how can I perform a commandline command from within Pharo? Sabine -- View this message in context: http://forum.world.st/command-line-command-from-pharo-image-tp4727022.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Esteban Lorenzano
depends on the kind of command line :) the most easy way is to do something like: ./pharo Pharo.image eval "42 factorial" Esteban On Tue, Dec 3, 2013 at 2:45 PM, Sabine Knöfel wrote: > Hi, > > how can I perform a commandline command from within Pharo? > > Sabine > > > > -- > View this message

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Yuriy Tymchuk
I think the question was how do you do that worm within Pharo. Not Pharo from command line Uko On 03 Dec 2013, at 14:48, Esteban Lorenzano wrote: > depends on the kind of command line :) > > the most easy way is to do something like: > > ./pharo Pharo.image eval "42 factorial" > > Esteban

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Ryan Bell
In that case, wouldn't you find the corrent CommandLineHandler class and call >>activate on it? /Ryan On Tue, Dec 3, 2013 at 8:51 AM, Yuriy Tymchuk wrote: > I think the question was how do you do that worm *within* Pharo. Not > Pharo from command line > > Uko > > > On 03 Dec 2013, at 14:48, Es

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Sabine Knöfel
Hi, Uko2 is right, I want to call an os command (esteban: mongodump) from within Pharo. Sabine On Tue, Dec 3, 2013 at 2:52 PM, Uko2 [via Smalltalk] < ml-node+s1294792n4727029...@n4.nabble.com> wrote: > I think the question was how do you do that worm *within* Pharo. Not > Pharo from command li

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Sergi Reyner
2013/12/3 Sabine Knöfel > Hi, > > how can I perform a commandline command from within Pharo? > Check OSProcess and CommandShell. Cheers, Sergi

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Sabine Knöfel
Hi, the mailinglist is so helpful! Its really great! CommandShell is my solution. Thanks! Sabine On Tue, Dec 3, 2013 at 3:00 PM, Sergi Reyner [via Smalltalk] < ml-node+s1294792n4727033...@n4.nabble.com> wrote: > 2013/12/3 Sabine Knöfel <[hidden > email]

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Yuriy Tymchuk
On 03 Dec 2013, at 15:26, Sabine Knöfel wrote: > Hi, > > the mailinglist is so helpful! Its really great! But it’s not well indexable and does not provide quality information about data. That’s why I encourage people to use Stack Overflow > > CommandShell is my solution. > > Thanks! > Sabi

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Esteban Lorenzano
ah :) then you need OSProcess. and I do not remember exactly how it was, but something like this: OSProcess command: 'mycommand with parameters'. cheers, Esteban On Tue, Dec 3, 2013 at 3:29 PM, Yuriy Tymchuk wrote: > > On 03 Dec 2013, at 15:26, Sabine Knöfel wrote: > > Hi, > > the mailing

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Sabine Knöfel
Hi Esteban, yes, like this: OSProcess thisOSProcess command: ('{1}mongodump --out {2}' format: { RKAConfiguration databaseUtilsPath. (RKAConfiguration databaseBackupPath )}). Cheers Sabine On Tue, Dec 3, 2013 at 4:28 PM, EstebanLM [via Smalltalk] < ml-node+s1294792n4727066...@n4.nabble.com

Re: [Pharo-users] command line command from pharo image

2013-12-03 Thread Sean P. DeNigris
Sabine Knöfel wrote > OSProcess thisOSProcess You can remove the send of #thisOSProcess and it will still work. Also, if you don't care about output, you can use NB without installing anything. In Pharo 3.0, it works on Windows, will work on Mac with Igor's latest changes... not sure about Linux.

Re: [Pharo-users] Seaside on Pharo 3.0

2013-12-03 Thread sminni
What do I need to do for a Windows Environment pls - --- Regards, Sanjay -- View this message in context: http://forum.world.st/Seaside-on-Pharo-3-0-tp4726765p4727102.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Building Pharo using Interpreter Class

2013-12-03 Thread Stéphane Ducasse
Hello kirstin why dimitri is not able to post? can you tell us more? Stef On Dec 3, 2013, at 1:17 PM, Kirstin Heidler wrote: > My freind Dimitri was not able to post his message. I am working with him on > this. > > ___

[Pharo-users] About deprecation and unit testing

2013-12-03 Thread Damien Cassou
http://stackoverflow.com/questions/20369972/about-deprecation-and-unit-testing-in-pharo -- Damien Cassou http://damiencassou.seasidehosting.st "Success is the ability to go from one failure to another without losing enthusiasm." Winston Churchill