[Pharo-dev] Number#percent

2015-02-16 Thread Sean P. DeNigris
What do you think of this in core? Like a mini Aconcagua ;) Number#percent e.g. 20 / 40 = 50 percent ^ self / 100.0 - Cheers, Sean -- View this message in context: http://forum.world.st/Number-percent-tp4805988.html Sent from the Pharo Smalltalk Developers mailing list

[Pharo-dev] 14942 Cleaning Delay newCodeEnabled:

2015-02-16 Thread Ben Coman
In wanting to remove DelaynewCodeEnabled, I find that this is sent by ScriptLoaderupdate40387. How should that be handled? cheers -ben

Re: [Pharo-dev] Running some code at fogbugz CI

2015-02-16 Thread Marcus Denker
On Fri, Feb 13, 2015 at 5:07 PM, Pablo Herrero pablodherr...@gmail.com wrote: 2015-02-13 12:34 GMT-03:00 Pablo Herrero pablodherr...@gmail.com: Ok, now is running again but failing, I don't really understand what's going on neither what's the problem. Also, how can you tell if the

[Pharo-dev] Fwd: Running Pharo on Ubuntu 14.04.1 LTS 64-bit

2015-02-16 Thread J.F. Rick
It's probably obvious to you now but arguments up to and including the image name are processed by the VM and arguments thereafter are left for the image. Indeed. I've just always been used to practice of setting flags first when executing a unix command. Perhaps this would be worthwhile

Re: [Pharo-dev] do we need to debug testmethods from within Nautilus ?

2015-02-16 Thread Marcus Denker
On 15 Feb 2015, at 18:34, Nicolai Hess nicolaih...@web.de wrote: Issue: 14060 https://pharo.fogbugz.com/default.asp?14060 MNU: receiver of stepToCallee is nil I suggest we remove this method from nautilus. If we really want to provide such a feature, the implementation should go to

Re: [Pharo-dev] do we need to debug testmethods from within Nautilus ?

2015-02-16 Thread Marcus Denker
On 16 Feb 2015, at 16:45, Marcus Denker marcus.den...@inria.fr wrote: On 15 Feb 2015, at 18:34, Nicolai Hess nicolaih...@web.de mailto:nicolaih...@web.de wrote: Issue: 14060 https://pharo.fogbugz.com/default.asp?14060 MNU: receiver of stepToCallee is nil I suggest we remove this

Re: [Pharo-dev] Running Pharo on Ubuntu 14.04.1 LTS 64-bit

2015-02-16 Thread Eliot Miranda
On Feb 16, 2015, at 5:54 AM, J.F. Rick s...@je77.com wrote: Well, after sleeping over it, I too figured that it was the --no-quit that you were looking for. Still, the --headless is not needed with the plain pharo command ;-) I had actually found the --no-quit option a long time ago but

Re: [Pharo-dev] 14942 Cleaning Delay newCodeEnabled:

2015-02-16 Thread Marcus Denker
On 16 Feb 2015, at 16:45, Ben Coman b...@openinworld.com wrote: In wanting to remove DelaynewCodeEnabled, I find that this is sent by ScriptLoaderupdate40387. How should that be handled? Just edit the method. Because when updating, it will step by step load the Scriptloader package.

[Pharo-dev] [pharo-project/pharo-core] 2cc3b3: 40493

2015-02-16 Thread GitHub
Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: 2cc3b3936c4f0cbcd6f99145e5f2e10a0ee8bc2f https://github.com/pharo-project/pharo-core/commit/2cc3b3936c4f0cbcd6f99145e5f2e10a0ee8bc2f Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2015-02-16 Thread GitHub
Branch: refs/tags/40493 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] Number#percent

2015-02-16 Thread Gabriel Cotelli
I will add something like Numberpercent ^Percentage of: self And Percentage value should be The number / 100, the printOn: can show the % sign, something like '50 %'. Obviously this must behave exactly as a number. This allows to be extended in case something specific is needed for percentages.

Re: [Pharo-dev] DBXTalk

2015-02-16 Thread Tudor Girba
Welcome! Great news. This is an important area for Pharo. Please do keep us informed of your progress. Do you have a specific target in mind for this project (besides the SQL Builder)? Cheers, Doru On Mon, Feb 16, 2015 at 9:12 PM, Franck Warlouzet franck.warlou...@hotmail.fr wrote: Hi,

Re: [Pharo-dev] Number#percent

2015-02-16 Thread Guillermo Polito
Sean, but if you need something like that, why wouldn't you load aconcagua? I'm just in the crusade of putting less in the kernel by default ^^. El Mon Feb 16 2015 at 5:54:11 PM, Gabriel Cotelli g.cote...@gmail.com escribió: I will add something like Numberpercent ^Percentage of: self And

Re: [Pharo-dev] Number#percent

2015-02-16 Thread Sven Van Caekenberghe
I like it, it is just one method. On 16 Feb 2015, at 22:41, Sean P. DeNigris s...@clipperadams.com wrote: Guillermo Polito wrote Sean, but if you need something like that, why wouldn't you load aconcagua? I'm just in the crusade of putting less in the kernel by default ^^. Good

Re: [Pharo-dev] Proposal for LiteralArray class

2015-02-16 Thread Nicolai Hess
2015-02-05 16:02 GMT+01:00 Sven Van Caekenberghe s...@stfx.eu: On 05 Feb 2015, at 15:44, Nicolai Hess nicolaih...@web.de wrote: 2015-02-02 3:03 GMT+01:00 Eliot Miranda eliot.mira...@gmail.com: On Sun, Feb 1, 2015 at 3:39 AM, Nicolai Hess nicolaih...@web.de wrote: 2015-02-01

Re: [Pharo-dev] Proposal for LiteralArray class

2015-02-16 Thread Sven Van Caekenberghe
On 16 Feb 2015, at 23:32, Nicolai Hess nicolaih...@web.de wrote: 2015-02-05 16:02 GMT+01:00 Sven Van Caekenberghe s...@stfx.eu: On 05 Feb 2015, at 15:44, Nicolai Hess nicolaih...@web.de wrote: 2015-02-02 3:03 GMT+01:00 Eliot Miranda eliot.mira...@gmail.com: On Sun, Feb 1, 2015

Re: [Pharo-dev] Number#percent

2015-02-16 Thread Sean P. DeNigris
Guillermo Polito wrote Sean, but if you need something like that, why wouldn't you load aconcagua? I'm just in the crusade of putting less in the kernel by default ^^. Good question! The little project I was working on when I implemented that method /was/ using Aconcagua! But: 1. This is a

Re: [Pharo-dev] do we need to debug testmethods from within Nautilus ?

2015-02-16 Thread Nicolai Hess
Ok, thank you marcus Nicolai 2015-02-16 16:52 GMT+01:00 Marcus Denker marcus.den...@inria.fr: On 16 Feb 2015, at 16:45, Marcus Denker marcus.den...@inria.fr wrote: On 15 Feb 2015, at 18:34, Nicolai Hess nicolaih...@web.de wrote: Issue: 14060 https://pharo.fogbugz.com/default.asp?14060

Re: [Pharo-dev] GT / Debugger Inspector Duplication

2015-02-16 Thread Tudor Girba
Indeed, this debugger only uses the GT inspector. Once the debugger will be integrated in Pharo, the whole tooling will be more uniform. Cheers, Doru On Tue, Feb 17, 2015 at 7:19 AM, Marcus Denker marcus.den...@inria.fr wrote: On 17 Feb 2015, at 01:59, Sean P. DeNigris

Re: [Pharo-dev] What is a Behavior, are Traits behavior too?

2015-02-16 Thread Nicolai Hess
Thank you for your feedback Camille, 2015-02-10 10:24 GMT+01:00 Camille camille.ter...@gmail.com: On 09 Feb 2015, at 18:24, Nicolai Hess nicolaih...@web.de wrote: I thought, Behaviors define the behavior of objects, therefore: Integer is a behavior, because it defines the behavior of

Re: [Pharo-dev] Proposal for LiteralArray class

2015-02-16 Thread Tudor Girba
Hi, DeepTraverser is small (427 lines of code including comments and tests) and robust in that it deals with cycles, but it does not have support for limiting the depth of the search. Efficiency is not its strength, and it would be great if someone would review it. I think something like this

[Pharo-dev] GT / Debugger Inspector Duplication

2015-02-16 Thread Sean P. DeNigris
Right now, for the Debugger one must describe an object-specific inspector using EyeInspector, and then again with GT for the Playground. Can these tools be unified and build themselvs using the same declarative code? - Cheers, Sean -- View this message in context:

Re: [Pharo-dev] [pharo-project/pharo-core] 6a5096: 40477

2015-02-16 Thread Ben Coman
Just for history. No hidden bug. It was an race condition introduced by my code. Fix has been integrated for this issue... https://pharo.fogbugz.com/default.asp?14874 cheers -ben On Sat, Feb 7, 2015 at 1:08 AM, Ben Coman b...@openinworld.com wrote: My first thought is that it may expose some

Re: [Pharo-dev] Super fast delay

2015-02-16 Thread Ben Coman
This is the issue [1]. I did a fix a while ago, but its preload (see issue) stops Delay processing while it loads, which locked up the UI loop and Integration Tool. That was recently fixed by issue [2], but I wanted to rebase the [1] on the latest Pharo - but first I should strip out

[Pharo-dev] [pharo-project/pharo-core] ec9418: 40492

2015-02-16 Thread GitHub
Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: ec94188cfac97c84f753cd613b9d1df0e6ab8cc2 https://github.com/pharo-project/pharo-core/commit/ec94188cfac97c84f753cd613b9d1df0e6ab8cc2 Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2015-02-16 Thread GitHub
Branch: refs/tags/40492 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] Running Pharo on Ubuntu 14.04.1 LTS 64-bit

2015-02-16 Thread J.F. Rick
Well, after sleeping over it, I too figured that it was the --no-quit that you were looking for. Still, the --headless is not needed with the plain pharo command ;-) I had actually found the --no-quit option a long time ago but never thought that it had to come after the image name. BTW,

[Pharo-dev] [pharo-project/pharo-core] 7cd3b6: 40491

2015-02-16 Thread GitHub
Branch: refs/heads/4.0 Home: https://github.com/pharo-project/pharo-core Commit: 7cd3b62f462d80f7af379192a7b1b70c6a78c44b https://github.com/pharo-project/pharo-core/commit/7cd3b62f462d80f7af379192a7b1b70c6a78c44b Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core]

2015-02-16 Thread GitHub
Branch: refs/tags/40491 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] GT / Debugger Inspector Duplication

2015-02-16 Thread Marcus Denker
On 17 Feb 2015, at 01:59, Sean P. DeNigris s...@clipperadams.com wrote: Right now, for the Debugger one must describe an object-specific inspector using EyeInspector, and then again with GT for the Playground. Can these tools be unified and build themselvs using the same declarative code?

Re: [Pharo-dev] [FIX]: Issue 4795: Horizontal wheel

2015-02-16 Thread Sean P. DeNigris
Nicolai Hess wrote now only ALT+ArrowLeft/Right works. Hmm, are you sure it stopped working with this fix? I don't have this feature on Mac in 40489 either. If it did, and it's important, maybe we can have both. Let me know... - Cheers, Sean -- View this message in context:

Re: [Pharo-dev] [FIX]: Issue 4795: Horizontal wheel

2015-02-16 Thread Sean P. DeNigris
EstebanLM wrote because is probably already there. Yes, it is in 40492. - Cheers, Sean -- View this message in context: http://forum.world.st/FIX-Issue-4795-Horizontal-wheel-tp4805005p4805911.html Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.

Re: [Pharo-dev] [FIX]: Issue 4795: Horizontal wheel

2015-02-16 Thread Nicolai Hess
2015-02-16 15:46 GMT+01:00 Sean P. DeNigris s...@clipperadams.com: Nicolai Hess wrote now only ALT+ArrowLeft/Right works. Hmm, are you sure it stopped working with this fix? I don't have this Yes I am SURE :) I use this key combination a lot. And I used a lot of the recent image versions.

Re: [Pharo-dev] Recover lost changes | Where are class definitions?

2015-02-16 Thread Sean P. DeNigris
Noury Bouraqadi-2 wrote But, in the Recent changes, I don't see class definitions. Now fixed in latest Pharo 3.0 and 4.0. Thank you Marcus :) - Cheers, Sean -- View this message in context: http://forum.world.st/Recover-lost-changes-Where-are-class-definitions-tp4802200p4805927.html Sent

Re: [Pharo-dev] [FIX]: Issue 4795: Horizontal wheel

2015-02-16 Thread Sean P. DeNigris
Nicolai Hess wrote Yes I am SURE :) I use this key combination a lot. And I used a lot of the recent image versions. Okay, since I am on Mac, I'm not sure how to proceed. Please advise if you have any suggestions... - Cheers, Sean -- View this message in context:

Re: [Pharo-dev] [FIX]: Issue 4795: Horizontal wheel

2015-02-16 Thread Esteban Lorenzano
because is probably already there. I remember integrating it… probably I forget to close it ? Esteban On 16 Feb 2015, at 10:07, stepharo steph...@free.fr wrote: Hi Sean I tried to merge the version v3 and it is empty with the latest Pharo : #40490 Stef Will someone please manually

Re: [Pharo-dev] [FIX]: Issue 4795: Horizontal wheel

2015-02-16 Thread stepharo
Hi Sean I tried to merge the version v3 and it is empty with the latest Pharo : #40490 Stef Will someone please manually review this? It touches Morphic so it may go stale quickly. Hello? Bueller? Anyone? Come on, guys. This is horizontal scrolling - people have been asking for this for a

[Pharo-dev] Access inspector from presentation?

2015-02-16 Thread Yuriy Tymchuk
Hi, is it possible to asses the inspector image from a presentation inside of it? My goal is to have something different in a presentation based on the state of the inspector. Cheers. Uko

Re: [Pharo-dev] Super fast delay

2015-02-16 Thread Holger Hans Peter Freyther
On Thu, Oct 30, 2014 at 06:32:48PM -0400, stepharo wrote: Good Morning Ben, Stef, We really need people to have a look at the code of Ben. I downloaded a Pharo-4 image today and executed: time pharo --nodisplay --headless ./Pharo-40490.image eval (Delay forSeconds: 5) wait a Delay(5000

Re: [Pharo-dev] Access inspector from presentation?

2015-02-16 Thread Tudor Girba
Hi, Great question :) Yes, it is possible. Basically, if your presentation selector has two arguments, the second one will be the GTInspector instance. Take a look at: ObjectgtInspectorExampleSourceIn: composite inContext: aGTInspector This presentation shows the sources of the example, but

Re: [Pharo-dev] Access inspector from presentation?

2015-02-16 Thread Yuriy Tymchuk
Nice, thank you. Uko On 16 Feb 2015, at 10:46, Tudor Girba tu...@tudorgirba.com wrote: Hi, Great question :) Yes, it is possible. Basically, if your presentation selector has two arguments, the second one will be the GTInspector instance. Take a look at: