Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread p...@highoctane.be
What about a Progressing Trait? 2012/6/22 Igor Stasenko siguc...@gmail.com btw, about human readable.., i don't understand, why we don't have something as simple as: collection do: [... ] showingProgress: 'Processing collection' (1 to: 100) do: [ ...] showingProgress: 'Processing ' 1 to:

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Camillo Bruni
You already have that igor (not as complete as you want, but it's there) Collection #do:displayingProgress: On 2012-06-22, at 02:37, Igor Stasenko wrote: btw, about human readable.., i don't understand, why we don't have something as simple as: collection do: [... ] showingProgress:

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Igor Stasenko
On 22 June 2012 09:46, Camillo Bruni camillobr...@gmail.com wrote: You already have that igor (not as complete as you want, but it's there) Collection #do:displayingProgress: ah, good to know On 2012-06-22, at 02:37, Igor Stasenko wrote: btw, about human readable.., i don't understand,

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Pavel Krivanek
It seems that the new progress bar doesn't work well with DummyUIManager, see https://ci.lille.inria.fr/pharo/view/Pharo-Kernel%202.0/job/Pharo%20Kernel%202.0/139/console -- Pavel On Thu, Jun 21, 2012 at 4:14 PM, Sean P. DeNigris s...@clipperadams.com wrote: To help explain the changes, here's

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Pavel Krivanek
http://code.google.com/p/pharo/issues/detail?id=6123 On Fri, Jun 22, 2012 at 11:27 AM, Pavel Krivanek pavel.kriva...@gmail.com wrote: It seems that the new progress bar doesn't work well with DummyUIManager, see

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Sean P. DeNigris
Pavel Krivanek-3 wrote http://code.google.com/p/pharo/issues/detail?id=6123 The fix is good. Made a slice and marked it FixToInclude... Pavel, I understand we probably don't want progress in the kernel, but can you live with it for a bit while we figure out what to do about progress? There

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Pavel Krivanek
22. 6. 2012 v 15:44, Sean P. DeNigris s...@clipperadams.com: Pavel Krivanek-3 wrote http://code.google.com/p/pharo/issues/detail?id=6123 The fix is good. Made a slice and marked it FixToInclude... Pavel, I understand we probably don't want progress in the kernel, but can you live

Re: [Pharo-project] New System Progress Bar

2012-06-22 Thread Sean P. DeNigris
Pavel Krivanek-3 wrote I already included the fix into the build scripts so the Jenkins job is working again and we can put other temporary fixes there too. Okay, great! Will these be included if users update though the world menu? Pavel Krivanek-3 wrote Simply have the alternative UI

[Pharo-project] New System Progress Bar

2012-06-21 Thread Sean P. DeNigris
To help explain the changes, here's a snippet from the fix to Issue 6099: Deprecate #value: for system progress (was red cross during updates) (http://code.google.com/p/pharo/issues/detail?id=6099). The API (see SystemProgressItemMorph) is not set in stone, but it's already much less confusing

Re: [Pharo-project] New System Progress Bar

2012-06-21 Thread Schwab,Wilhelm K
...@lists.gforge.inria.fr] on behalf of Sean P. DeNigris [s...@clipperadams.com] Sent: Thursday, June 21, 2012 10:14 AM To: pharo-project@lists.gforge.inria.fr Subject: [Pharo-project] New System Progress Bar To help explain the changes, here's a snippet from the fix to Issue 6099: Deprecate #value: for system

Re: [Pharo-project] New System Progress Bar

2012-06-21 Thread Sean P. DeNigris
Schwab,Wilhelm K wrote Exceptions should be reserved for things that are exceptional :) Yes :) Although, with humans, progress is an exceptional condition ;-) Also, it'd be *great* if this fix is reviewed quickly because it touches quite a few packages and will rot quickly - S -- View

Re: [Pharo-project] New System Progress Bar

2012-06-21 Thread Stéphane Ducasse
Thanks sean! Thanks thanks! I never the too smart aspect of the value: And I already removed broken code that performed animation inside :) Looking at your changes now. Stef On Jun 21, 2012, at 4:14 PM, Sean P. DeNigris wrote: To help explain the changes, here's a snippet from the fix to

Re: [Pharo-project] New System Progress Bar

2012-06-21 Thread Igor Stasenko
btw, about human readable.., i don't understand, why we don't have something as simple as: collection do: [... ] showingProgress: 'Processing collection' (1 to: 100) do: [ ...] showingProgress: 'Processing ' 1 to: 100 do: [ ...] showingProgress: 'Processing ' i don't care what happens inside,