[Pharo-project] [update 3.0] #30070

2013-04-29 Thread Marcus Denker
30070 - 10428 Fast-up significandAsInteger https://pharo.fogbugz.com/f/cases/10428 10429 Fast up LargeInteger modulo https://pharo.fogbugz.com/f/cases/10429 10430 add #compiler to PseudoClass (and fix #comment in CompiledMethod)

Re: [Pharo-project] State of PharoConf videos

2013-04-29 Thread Christoph Wysseier
Hi Stephan I would like to show my talk (Selling Pharo-based Solutions at PharoConf) to my team and enhance it for the next time. Just out of curiosity: are you still working on those videos? Otherwise, would you mind to provide the video file somehow? Cheers and thank you for your work,

Re: [Pharo-project] ssl fails on build CI

2013-04-29 Thread Damien Cassou
On Mon, Apr 29, 2013 at 12:28 AM, Camillo Bruni camillobr...@gmail.com wrote: that's gonna be the same mess again and we do not care for the slaves as we manage them by ourselves for not so old slaves, we should use the .deb files as well -- Damien Cassou http://damiencassou.seasidehosting.st

[Pharo-project] Generalizing Keymapping idea

2013-04-29 Thread Denis Kudriashov
Hello. Do you think about generalizing Keymapping idea on any event combinations (not just keyboard)? So we can write code like morph on: Mouse click ctrl do: [] morph on: $a click ctrl do: [] morph on: Mouse move shift + $b do: [] morph on: Gesture cicle shift + $x do: [] I think with such

Re: [Pharo-project] rubric performace

2013-04-29 Thread Usman Bhatti
Thanx for benchmarking Rubric. Alain, is doing great work and I'll integrate in Glamour for a demo. usman On Thu, Apr 25, 2013 at 12:03 AM, Tudor Girba tu...@tudorgirba.com wrote: Hi, I did a little experiment to check the performance of Rubric when dealing with large content. And by

Re: [Pharo-project] cannot modify class comments on Linux

2013-04-29 Thread Henrik Johansen
On Apr 26, 2013, at 8:06 PM, Nicolas Cellier wrote: To be perfectly clear, does the bug occurs 1) because we open a new file descriptor for read without flushing the old one for write, 2) or does it occur with a single file descriptor opened 'rw' ? If 1), then this is probably our fault.

Re: [Pharo-project] Trying to understand DateAndTime

2013-04-29 Thread Igor Stasenko
On 29 April 2013 07:39, stephane ducasse stephane.duca...@free.fr wrote: On Apr 28, 2013, at 11:19 PM, Nicolas Cellier nicolas.cellier.aka.n...@gmail.com wrote: \\ returns a positive remainder. example: -1 \\ 86400 - 86399 -1 // 86400 - -1 Yes I saw that and now I realized I

[Pharo-project] Spec LabelModel color

2013-04-29 Thread roberto.mine...@usi.ch
Hi, I'm building a small UI with spec and I have a problem with the LabelModel. Is there any way to change the default color (white) of the #text: in a LabelModel? Thanks, Roberto

[Pharo-project] [update 3.0] #30071

2013-04-29 Thread Marcus Denker
30071 - 10433 Remove showing decompied code from Old Browser https://pharo.fogbugz.com/f/cases/10433 10437 Add spec inspectors to Andreis spec debugger https://pharo.fogbugz.com/f/cases/10437 Diff information:

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Benjamin
In the latests image, it should be black :) Which image are you using ? Ben On Apr 29, 2013, at 12:27 PM, roberto.mine...@usi.ch wrote: Hi, I'm building a small UI with spec and I have a problem with the LabelModel. Is there any way to change the default color (white) of the #text: in a

Re: [Pharo-project] Pharo 3.1 meeting

2013-04-29 Thread Benjamin
Penelope is running on the Inria server at Paris (bugs.pharo.org), and only Nicolas have access to it :s On next iteration I will see if we can do a loop checking if a new version exists and load it :) To debug it, you can load the code, and run it locally Ben On Apr 29, 2013, at 5:30 AM,

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Clément Bera
I don't know any easy way to do it right now. What I would do, as LabelModel#text: can take a Text instance as argument, is : self text: ('the string I want to display' asText addAttribute: TextColor red) But of course it is not very good. Clement 2013/4/29 roberto.mine...@usi.ch

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Benjamin
Now the default colour is specified in the corresponding Spec (LabelSpec here) Otherwise, you should be able to specify the colour by sending the message color: too, but some morphs are slightly broken from this point of view :s Ben On Apr 29, 2013, at 1:45 PM, Clément Bera

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread roberto.mine...@usi.ch
Thanks for the answers… I will update to the last image ;) On Apr 29, 2013, at 1:38 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: In the latests image, it should be black :) Which image are you using ? Ben On Apr 29, 2013, at 12:27 PM, roberto.mine...@usi.ch wrote: Hi,

[Pharo-project] [update 3.0] #30072

2013-04-29 Thread Marcus Denker
30072 - 10373 instead of #parserClass, everyone should use the Compiler Frontend https://pharo.fogbugz.com/f/cases/10373 10435 Fast-up asFloat https://pharo.fogbugz.com/f/cases/10435 10440 Integrate latest Opal in 3.0

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread roberto.mine...@usi.ch
By the way.. I often use the Moose image hosted at http://ci.inria.fr/moose/job/moose-latest-dev-4.8/lastSuccessfulBuild/artifact/moose-latest-dev-4.8.zip instead of the Pharo image.. And here Spec is not up to date. When I run the SystemSoftware Update from the World menu, packages are not

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Benjamin
I can't say because I never use Moose image Ben On Apr 29, 2013, at 3:07 PM, roberto.mine...@usi.ch roberto.mine...@usi.ch wrote: By the way.. I often use the Moose image hosted at http://ci.inria.fr/moose/job/moose-latest-dev-4.8/lastSuccessfulBuild/artifact/moose-latest-dev-4.8.zip

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread roberto.mine...@usi.ch
By the way I used a fresh Pharo 2.0 image and labels are still white :D Do I have to use Pharo 3.0 to have black labels? Cheers, R On Apr 29, 2013, at 3:32 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: I can't say because I never use Moose image Ben On Apr 29, 2013, at 3:07

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Clément Bera
* Do I have to use Pharo 3.0 to have black labels?* If you want to implement something for a customer, you should *not* use Pharo 3.0. It is in alpha state which means you might have unexpected bugs or VM crashes (even if the alpha version is currently quite stable). The best for you

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Clément Bera
* Do I have to use Pharo 3.0 to have black labels?* If you want to implement something for a customer, you should *not* use Pharo 3.0. It is in alpha state which means you might have unexpected bugs or VM crashes (even if the alpha version is currently quite stable). The best for you would be to

[Pharo-project] [update 3.0] #30073

2013-04-29 Thread Marcus Denker
30073 - 10445 Running NonDestructive Regression Tests Headless: wrong error handling https://pharo.fogbugz.com/f/cases/10445 Diff information: http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/UIManager-md.101 http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Polymorph-Widgets-md.798

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread roberto.mine...@usi.ch
Thanks a lot. Now I implemented the solution you proposed in the previous mail and it works. Cheers, R On Apr 29, 2013, at 4:49 PM, Clément Bera clement.b...@inria.fr wrote: Do I have to use Pharo 3.0 to have black labels? If you want to implement something for a customer, you

Re: [Pharo-project] Why keymap modifiers change receiver instead of return new instance?

2013-04-29 Thread Igor Stasenko
On 28 April 2013 22:01, Denis Kudriashov dionisi...@gmail.com wrote: 2013/4/28 stephane ducasse stephane.duca...@free.fr Hello. I found this: shortcut := $a ctrl. self assert: shortcut == shortcut shift Why modifiers change receiver state instead of create new instance? I can

[Pharo-project] State of PharoConf videos

2013-04-29 Thread Stephan Eggermont
Chris wrote: I would like to show my talk (Selling Pharo-based Solutions at PharoConf) to my team and enhance it for the next time. Just out of curiosity: are you still working on those videos? Otherwise, would you mind to provide the video file somehow? Too many distractions, so not enough

[Pharo-project] [update 3.0] #30074

2013-04-29 Thread Marcus Denker
30074 - 10447 Sync Opal again with 3.0 https://pharo.fogbugz.com/f/cases/10447 10446 deprecate #parserClass https://pharo.fogbugz.com/f/cases/10446 Diff information: http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Regex-Tests-Core-MarcusDenker.5

Re: [Pharo-project] Spec LabelModel color

2013-04-29 Thread Benjamin
You could load the latest Spec but it depends on some Morphic changes so :s Ben On Apr 29, 2013, at 4:12 PM, roberto.mine...@usi.ch wrote: By the way I used a fresh Pharo 2.0 image and labels are still white :D Do I have to use Pharo 3.0 to have black labels? Cheers, R On Apr 29,

[Pharo-project] Athens news :)

2013-04-29 Thread Stéphane Ducasse
since I'm quite sure that you are happy to know that one guy is pushing Athens :) From: Igor Stasenko siguc...@gmail.com Subject: Re: [Lsehub-staff] [Mm10s] 2013-04-29 Date: April 29, 2013 12:12:50 PM GMT+02:00 To: RMoD private list lsehub-st...@lists.gforge.inria.fr Reply-To: RMoD

Re: [Pharo-project] Generalizing Keymapping idea

2013-04-29 Thread stephane ducasse
On Apr 29, 2013, at 9:24 AM, Denis Kudriashov dionisi...@gmail.com wrote: Hello. Do you think about generalizing Keymapping idea on any event combinations (not just keyboard)? So we can write code like morph on: Mouse click ctrl do: [] morph on: $a click ctrl do: [] morph on: Mouse

Re: [Pharo-project] rubric performace

2013-04-29 Thread stephane ducasse
doru can you reproduce your crash? Because igor asked and I did not see your answer. Stef On Apr 25, 2013, at 12:03 AM, Tudor Girba tu...@tudorgirba.com wrote: Hi, I did a little experiment to check the performance of Rubric when dealing with large content. And by large, I mean 45 MB or

Re: [Pharo-project] State of PharoConf videos

2013-04-29 Thread Christoph Wysseier
Am 29.04.13 17:41, schrieb Stephan Eggermont: Chris wrote: I would like to show my talk (Selling Pharo-based Solutions at PharoConf) to my team and enhance it for the next time. Just out of curiosity: are you still working on those videos? Otherwise, would you mind to provide the video file

Re: [Pharo-project] rubric performace

2013-04-29 Thread Tudor Girba
Hi, I tried but could not :(. I tried multiple times to load the file and go around the out of memory limitation and then at some random point, Pharo crashed. I was on Mac when I did the experiment. If I get more info I will let you know. Doru On Apr 29, 2013, at 8:44 PM, stephane ducasse

Re: [Pharo-project] rubric performace

2013-04-29 Thread stephane ducasse
tx! On Apr 29, 2013, at 9:24 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi, I tried but could not :(. I tried multiple times to load the file and go around the out of memory limitation and then at some random point, Pharo crashed. I was on Mac when I did the experiment. If I get more