[Pharo-project] jenkins cog - slow monticello on osx

2011-08-26 Thread Tudor Girba
Hi, Since a couple of weeks I am working with the Cog VM built on Jenkins: https://ci.lille.inria.fr/pharo/view/Cog/job/Cog-Mac-Cocoa/ Here is a little feedback. It worked quite well, the only problem is that Monticello is really slow in the Moose image. This means that even opening the

Re: [Pharo-project] [ANN] glamorous inspector

2011-08-29 Thread Tudor Girba
gtInspectorPresentationOrder: 40 composite text title: 'Bytecode'; display: [:anObject | anObject symbolic ]Cheers,DoruOn 29 Aug 2011, at 09:19, Stéphane Ducasse wrote:getting really sexy.On Aug 29, 2011, at 12:06 AM, Tudor Girba wrote:Hi,There are a couple of improvements related to the GT Inspector:- A morph has

Re: [Pharo-project] Pharo Future was: Re: Omnibrowser in 1.4

2011-08-29 Thread Tudor Girba
Hi, On 29 Aug 2011, at 21:03, Marcus Denker wrote: On Aug 29, 2011, at 8:55 PM, Marcus Denker wrote: On Aug 29, 2011, at 8:47 PM, Lukas Renggli wrote: Is the current system simple and minimal? No, it is complex and it is getting bigger with every release. The size of the image

Re: [Pharo-project] Bug or feature? XMLElementallElementsDo:

2011-08-29 Thread Tudor Girba
Indeed, it should be named withAllElementsDo: to be consistent with Smalltalk naming, and then it would exactly what the name says :) Doru On 30 Aug 2011, at 07:51, Max Leske wrote: … and maybe it should be renamed to #withAllElementsDo: ? On 30.08.2011, at 00:01, Levente Uzonyi wrote:

Re: [Pharo-project] Symbolvalue:

2011-08-30 Thread Tudor Girba
I proposed this some one or two years ago. I got shut down, but I still find it a good idea. And I even have a semantic reason: - A Block represents a piece of functionality that can be evaluated with some input - A Symbol often represents a selector which in turns represents a piece of

Re: [Pharo-project] Pharo 1.3 release

2011-08-30 Thread Tudor Girba
Thanks a lot, Igor! Doru On 30 Aug 2011, at 19:04, Igor Stasenko wrote: On 30 August 2011 17:17, Marcus Denker marcus.den...@inria.fr wrote: On Aug 30, 2011, at 5:15 PM, Mariano Martinez Peck wrote: so what is missing now? just an ANN email? No, as much as I know we do not have yet

Re: [Pharo-project] Polymorph changes

2011-08-30 Thread Tudor Girba
Actually, the only reason why the development of Moose is not on 1.4 is that we did not release the current version yet, due to a couple of issues still open in Moose. As soon as we release it, we move to 1.4. Cheers, Doru On 30 Aug 2011, at 20:38, Stéphane Ducasse wrote: :) you are

Re: [Pharo-project] [Pharo-users] PLEASE HELP testing Pharo 1.3 One Click [WAS] Pharo 1.3 release

2011-08-31 Thread Tudor Girba
Hi, For development involving multiple people in the same time, you cannot rely on hardcoded package versions in configurations, because there is no merge support, so you will never know when you are missing a version. The only model that works reliably now is to depend on a baseline for

[Pharo-project] editing methods without header

2011-08-31 Thread Tudor Girba
Hi, Currently, when we edit a method, we use one text morph that includes both the header and the body of the method. I am searching for an easy way to edit only the body of the methods, but still have completion and syntax highlighting. Any ideas of how to approach this? Cheers, Doru --

Re: [Pharo-project] Glamour configuration doesn't load in Pharo 1.3

2011-09-04 Thread Tudor Girba
Hi, Strange indeed. The thing is that in my image, these methods are not extensions. So, I cannot see why they would not load. In any case, Glamour was always loaded in the Dev image. Cheers, Doru On 4 Sep 2011, at 10:58, Stéphane Ducasse wrote: Hi lukas Does not look good to me. Looks

Re: [Pharo-project] Glamour configuration doesn't load in Pharo 1.3

2011-09-04 Thread Tudor Girba
Hi, On 4 Sep 2011, at 20:59, Alain Plantec wrote: On 04/09/2011 11:13, Lukas Renggli wrote: Strange indeed. The thing is that in my image, these methods are not extensions. So, I cannot see why they would not load. In any case, Glamour was always loaded in the Dev image. Ok, I do not

[Pharo-project] data set

2011-09-04 Thread Tudor Girba
Hi, To show how Moose can support the analysis of various data sets, I am looking for a case study containing a complex data structure that does not represent a software system, and a set of questions associated with it. Ideally, the data should be freely available and it should contain a set

Re: [Pharo-project] data set

2011-09-04 Thread Tudor Girba
need more or something more specific just ask :) Cheers, Hernán 2011/9/4 Tudor Girba tu...@tudorgirba.com: Hi, To show how Moose can support the analysis of various data sets, I am looking for a case study containing a complex data structure that does not represent a software system

Re: [Pharo-project] data set

2011-09-06 Thread Tudor Girba
at 11:58 PM, Hernán Morales Durand hernan.mora...@gmail.com wrote: 2011/9/4 Tudor Girba tu...@tudorgirba.com: Hi, Thanks, but I am looking for data sets that contained graphs of entities with properties, rather then numbers. Oh, that was just the top of the iceberg, look at cellular

[Pharo-project] how to capture pasting in a textmorph

2011-09-07 Thread Tudor Girba
Hi, I have a PluggableTextMorph, and I would like to get notified every time the text contents change. Currently, I intercept keystroke:from:, but the problem is that this does not capture pasting of text. Is there a better hook? Cheers, Doru -- www.tudorgirba.com Value is always

Re: [Pharo-project] how to capture pasting in a textmorph

2011-09-07 Thread Tudor Girba
Is this available only in 1.4? Cheers, Doru On 7 Sep 2011, at 10:05, Camillo Bruni wrote: I added a PluggableTextMorph #changedAction: which should do exactly that. It's currently used for the new ClassSerach widget which as a live-filtered list. cami On 2011-09-07, at 09:57, Tudor

Re: [Pharo-project] how to capture pasting in a textmorph

2011-09-07 Thread Tudor Girba
How do I find the changes? Doru On 7 Sep 2011, at 14:56, Camillo Bruni wrote: It has been integrated in 1.4 but I guess you can copy out the changes and merge them in 1.3 (though no guarantee that this works)… cami On 2011-09-07, at 10:22, Tudor Girba wrote: Is this available only

Re: [Pharo-project] A new way to render the debugger

2011-09-08 Thread Tudor Girba
+1 Doru On 8 Sep 2011, at 08:14, Max Leske wrote: Awesome! On 08.09.2011, at 07:17, HwaJong Oh wrote: I like it. Reads nice. -- View this message in context: http://forum.world.st/Fwd-A-new-way-to-render-the-debugger-tp3796782p3797894.html Sent from the Pharo Smalltalk mailing

[Pharo-project] jenkins mac cogvm misses os process?

2011-09-08 Thread Tudor Girba
Hi, When I try to run OSProcess with the Jenkins version of the CogVM, I get the message that the accessor is missing. When I run the same code with the Cog 2489 from Eliot, it works fine. You can reproduce by executing: OSProcess waitForCommand: 'echo sleeping...; sleep 3; echo I just slept

Re: [Pharo-project] [Vm-dev] jenkins cog - slow monticello on osx

2011-09-08 Thread Tudor Girba
Hi, I did not forget about this, but I did not have enough time yet. Cheers, Doru On 26 Aug 2011, at 14:40, Igor Stasenko wrote: On 26 August 2011 13:30, Tudor Girba tu...@tudorgirba.com wrote: Hi, Since a couple of weeks I am working with the Cog VM built on Jenkins: https

Re: [Pharo-project] jenkins mac cogvm misses os process?

2011-09-08 Thread Tudor Girba
2011, at 12:17, Igor Stasenko wrote: On 8 September 2011 13:09, Tudor Girba tu...@tudorgirba.com wrote: Hi, When I try to run OSProcess with the Jenkins version of the CogVM, I get the message that the accessor is missing. When I run the same code with the Cog 2489 from Eliot, it works

Re: [Pharo-project] union intersection difference

2011-09-08 Thread Tudor Girba
+1 This is the implementation of union: we used to have as an extension in VW: Collectionunion: aSet Answer the union of the receiver A and aSet B. The union is defined as { x | x in A or x in B }. | stream set | self isEmpty ifTrue: [^Set new]. stream

Re: [Pharo-project] jenkins mac cogvm misses os process?

2011-09-08 Thread Tudor Girba
Btw, the latest successful build of the Mac CogVM on Jenkins dates from August 8. https://ci.lille.inria.fr/pharo/view/Cog/job/Cog-Mac-Cocoa/ Cheers, Doru On 8 Sep 2011, at 13:16, Tudor Girba wrote: Hi, Here is the list: ADPCMCodecPlugin VMMaker-oscog-EstebanLorenzano.109 (i

Re: [Pharo-project] jenkins mac cogvm misses os process?

2011-09-08 Thread Tudor Girba
Thanks. I will try this one from now on :). Just a note regarding communication. I am using the Cocoa from the first time you announced it. This is exactly because I strongly believe in continuously stressing the latest version as a means to cope with limited resources. It might be counter

Re: [Pharo-project] A new way to render the debugger

2011-09-08 Thread Tudor Girba
Hi, On 8 Sep 2011, at 14:48, Benjamin wrote: On Sep 8, 2011, at 9:29 AM, Damien Cassou wrote: On Wed, Sep 7, 2011 at 6:09 PM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: Do you like it ? (Should it be integrated ?) What happens when the a frame is a closure? In the standard

Re: [Pharo-project] jenkins mac cogvm misses os process?

2011-09-08 Thread Tudor Girba
Thanks. It works fine! Doru On 8 Sep 2011, at 19:25, Tudor Girba wrote: Thanks. I will try this one from now on :). Just a note regarding communication. I am using the Cocoa from the first time you announced it. This is exactly because I strongly believe in continuously stressing

Re: [Pharo-project] [Seaside] Announcements/Seaside continuations collision in newer cog vm's

2011-09-09 Thread Tudor Girba
Igor and Stef can provide more details. The reason for forking is that even if one announcement breaks, the others should still be announced. Announcements are used for the functioning of the core of the system and this means that even if you register new objects, the core mechanisms (such as

Re: [Pharo-project] [Seaside] Announcements/Seaside continuations collision in newer cog vm's

2011-09-09 Thread Tudor Girba
AM, Tudor Girba wrote: Igor and Stef can provide more details. The reason for forking is that even if one announcement breaks, the others should still be announced. Announcements are used for the functioning of the core of the system and this means that even if you register new objects

Re: [Pharo-project] shift of -1@0 when clicking a morph

2011-09-10 Thread Tudor Girba
Just to stress this issue a bit more: The problem is critical for getting Mondrian to work properly with Glamour (be able to get the interaction from the visualization in the surrounding browser), and it is a show stopper for releasing Moose 4.6. Any help would be appreciated. Cheers, Doru

Re: [Pharo-project] about keybinder

2011-09-12 Thread Tudor Girba
I guess it is still not usable per morph instance, right? Cheers, Doru On 12 Sep 2011, at 17:31, Stéphane Ducasse wrote: Hi guys we need some beta testers too :) Stef Begin forwarded message: From: Guillermo Polito guillermopol...@gmail.com Date: September 12, 2011 4:21:53 PM

Re: [Pharo-project] shift of -1@0 when clicking a morph

2011-09-13 Thread Tudor Girba
the decimal part. (just a stab-in-the-dark, worth checking though) Regards, Gary - Original Message - From: Tudor Girba tu...@tudorgirba.com To: Pharo-project@lists.gforge.inria.fr Sent: Saturday, September 10, 2011 7:34 PM Subject: Re: [Pharo-project] shift of -1@0 when clicking

[Pharo-project] default window menu

2011-09-17 Thread Tudor Girba
Hi, Every window comes with a default menu. Most actions are useless or they can be found in the halo anyway. But, the window menu is not harmless: even if a window does have a specific set of actions (not just the default ones), the user is not informed because the same triangle appears in

Re: [Pharo-project] [Pharo-users] Clarify VM download info on the website

2011-09-19 Thread Tudor Girba
+1 Doru On 19 Sep 2011, at 21:43, Stéphane Ducasse wrote: Good job! Stef On Sep 19, 2011, at 3:15 PM, Marcus Denker wrote: Hi, I did the following: 1) I took the VMs used in the one-click and made zip files from them.

Re: [Pharo-project] Page for Blogs on pharo-project.org

2011-09-20 Thread Tudor Girba
Hi, Here are some more possible: - www.moosetechnology.org/news (Smalltalk-based solution) - www.humane-assessment.com (Smalltalk-based solution) Cheers, Doru On 19 Sep 2011, at 17:40, Marcus Denker wrote: http://www.pharo-project.org/community/blogs More links can be added...

Re: [Pharo-project] [Vm-dev] jenkins cog - slow monticello on osx

2011-09-22 Thread Tudor Girba
there is a package-cache, it becomes hardly unusable. Cheers, Doru On 8 Sep 2011, at 12:10, Tudor Girba wrote: Hi, I did not forget about this, but I did not have enough time yet. Cheers, Doru On 26 Aug 2011, at 14:40, Igor Stasenko wrote: On 26 August 2011 13:30, Tudor Girba tu

Re: [Pharo-project] [Vm-dev] jenkins cog - slow monticello on osx

2011-09-22 Thread Tudor Girba
Hi, On 22 Sep 2011, at 19:59, Igor Stasenko wrote: On 22 September 2011 19:32, Tudor Girba tu...@tudorgirba.com wrote: Hi, I looked a bit into the slowness of the OS X Jenkins Cog VM with Monticello. The problem exists and it is reproducible. I performed the following experiments

[Pharo-project] image persistency does not seem to work

2011-09-24 Thread Tudor Girba
Hi, I am testing the latest Pier2 based on Pharo 1.3, and I got an error when trying to use the image-based persistency. The error happens in: PRImagePersistencysaveImageAndBackupAs: aString ... image openSourceFiles; saveImageSegments; snapshot: true andQuit: false in

Re: [Pharo-project] image persistency does not seem to work

2011-09-24 Thread Tudor Girba
September 2011, Tudor Girba tu...@tudorgirba.com wrote: Hi, I am testing the latest Pier2 based on Pharo 1.3, and I got an error when trying to use the image-based persistency. The error happens in: PRImagePersistencysaveImageAndBackupAs: aString ... image

Re: [Pharo-project] [Vm-dev] jenkins cog - slow monticello on osx

2011-09-25 Thread Tudor Girba
. I see it. Doru, do you ? This has a big effect on Monticello performance. Dave On Thu, Sep 22, 2011 at 07:32:17PM +0200, Tudor Girba wrote: Hi, I looked a bit into the slowness of the OS X Jenkins Cog VM with Monticello. The problem exists and it is reproducible. I

[Pharo-project] windows vm to open large images

2011-09-27 Thread Tudor Girba
Hi, I am raising the issue regarding opening large images (400+ MB) on Windows. I currently have a Pharo 1.3 image and I cannot load it anymore once I save it. The behavior is rather odd now: it shows the window and then it crashes silently without leaving anything behind. Igor provided a fix

Re: [Pharo-project] windows vm to open large images

2011-09-27 Thread Tudor Girba
Hi again, Sorry for the noise. The reason the image broke was an outdated version of OSProcess. Both the Elliot's Cog VM and the released Pharo Cog VM open the image without problems. Cheers, Doru On 27 Sep 2011, at 16:04, Tudor Girba wrote: Hi, I am raising the issue regarding opening

Re: [Pharo-project] OSProcess bug affecting OSP 4.4.4 on Windows

2011-09-27 Thread Tudor Girba
Thanks a lot for fixing it. I just stumbled over the problem in Pharo and could benefit from your timely fix :). Cheers, Doru On 27 Sep 2011, at 16:52, David T. Lewis wrote: If you are using OSProcess and have updated to version 4.4.4 posted to SqueakSource 10-Sept-2011, please update once

Re: [Pharo-project] how to capture pasting in a textmorph

2011-10-04 Thread Tudor Girba
Hi again, Could anyone point me to how I should go about getting the changes related to changedAction: from Pharo 1.4 to Pharo 1.3? Cheers, Doru On 7 Sep 2011, at 15:21, Tudor Girba wrote: How do I find the changes? Doru On 7 Sep 2011, at 14:56, Camillo Bruni wrote: It has been

Re: [Pharo-project] Sexy font look

2011-10-05 Thread Tudor Girba
I am using ImageSetupgirbaLargeDejaVu or something like that. Doru On Wed, Oct 5, 2011 at 2:09 PM, Stéphane Ducasse stephane.duca...@inria.frwrote: Hi guys we are preparing some videos around moose and we would like to use good (and large) fonts. Do you have some experience/suggestions in

Re: [Pharo-project] [update 1.4] #14191

2011-10-13 Thread Tudor Girba
This is exciting :) Doru On 12 Oct 2011, at 11:43, Stéphane Ducasse wrote: The kind of update we all love :) Stef http://code.google.com/p/pharo/issues/detail?id=4904 14191 - - Speed improvement: 10 to 12 times faster ! the speed is now very near from what is possible with

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-15 Thread Tudor Girba
Hi, On 15 Oct 2011, at 23:13, Stéphane Ducasse wrote: On Oct 15, 2011, at 10:58 PM, Tudor Girba wrote: Hi, On 15 Oct 2011, at 22:36, Mariano Martinez Peck wrote: Hi Tudor. Today I wanted to give it a try to 'GT-Inspector' 'GT-Playground' hence I did: I am happy you decided

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-15 Thread Tudor Girba
Hi, Btw, you can download a ready-made image with the GlamorousToolkit from: http://ci.moosetechnology.org/job/glamorous-toolkit-latest-dev/lastSuccessfulBuild/artifact/glamoroust/*zip*/glamoroust.zip Cheers, Doru On 15 Oct 2011, at 23:32, Tudor Girba wrote: Hi, On 15 Oct 2011, at 23:13

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-16 Thread Tudor Girba
:40, Mariano Martinez Peck wrote: On Sat, Oct 15, 2011 at 11:37 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi, Btw, you can download a ready-made image with the GlamorousToolkit from: http://ci.moosetechnology.org/job/glamorous-toolkit-latest-dev/lastSuccessfulBuild/artifact/glamoroust

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-16 Thread Tudor Girba
Hi Mariano, On 16 Oct 2011, at 20:39, Mariano Martinez Peck wrote: On Sat, Oct 15, 2011 at 11:32 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi, On 15 Oct 2011, at 23:13, Stéphane Ducasse wrote: On Oct 15, 2011, at 10:58 PM, Tudor Girba wrote: Hi, On 15 Oct 2011, at 22:36

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-16 Thread Tudor Girba
wrote: On Oct 15, 2011, at 11:13 PM, Stéphane Ducasse wrote: On Oct 15, 2011, at 10:58 PM, Tudor Girba wrote: Hi, On 15 Oct 2011, at 22:36, Mariano Martinez Peck wrote: Hi Tudor. Today I wanted to give it a try to 'GT-Inspector' 'GT-Playground' hence I did: I am happy you

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-16 Thread Tudor Girba
are loading ConfigurationOfRB stable. Cheers, Doru On 16 Oct 2011, at 21:55, Tudor Girba wrote: Hi Marcus, Thanks for pointing it out. I had it on my to do list to update to the latest 1.3 release, but did not get around to do it. I now replaced the source image with Pharo 1.3 13307

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-16 Thread Tudor Girba
Hi, If you give me the script, I build one based on the Core. Cheers, Doru On 16 Oct 2011, at 22:05, Marcus Denker wrote: On Oct 16, 2011, at 10:00 PM, Tudor Girba wrote: Ok. We did it. Now, the whole Moose is unbuildable :) The issue is that it tells us that: *** Warning: Warning

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-16 Thread Tudor Girba
Hi Mariano, On 16 Oct 2011, at 21:57, Mariano Martinez Peck wrote: On Sun, Oct 16, 2011 at 9:53 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi Mariano, On 16 Oct 2011, at 20:39, Mariano Martinez Peck wrote: On Sat, Oct 15, 2011 at 11:32 PM, Tudor Girba tu...@tudorgirba.com wrote

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-17 Thread Tudor Girba
Hi Stef, The issue seems to be with the ConfigurationOfRefactoringBrowser from MetacelloRepository. I just took a Pharo 1.3 image and then: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfRefactoringBrowser'; load.

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-17 Thread Tudor Girba
classes still around and OB is broken. I guess this will be a non-issue once the new Pharo 1.3 is available. Cheers, Doru On 17 Oct 2011, at 09:20, Tudor Girba wrote: Hi Stef, The issue seems to be with the ConfigurationOfRefactoringBrowser from MetacelloRepository. I just took a Pharo

[Pharo-project] ConfigurationOfGrease stable does not load in Pharo 1.3

2011-10-17 Thread Tudor Girba
Hi, Try this in the latest Pharo 1.3 13315: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfGrease'; load. (ConfigurationOfGrease project version: #stable) load It won't work because ParseTreeEnvironment got renamed into RBParseTreeEnvironment. Any takes for updating

Re: [Pharo-project] [Pharo-users] Pharo Sprint at Smalltalks Conference 2011 Fwd: [clubSmalltalk] Smalltalks 2011 = Eventos Relacionados

2011-10-18 Thread Tudor Girba
Ah, I will only arrive on Thursday morning. Will there be other gatherings? Doru On 18 Oct 2011, at 16:25, Mariano Martinez Peck wrote: Hi guys. Remember there will be a Pharo Sprint just before Smalltalks Conference. If you want to attend, please contact Guillermo Polito at:

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-19 Thread Tudor Girba
Hi, Thanks. It is fixed now by removing the explicit setting of a styler. However, I do not quite understand why not being able to set the styler on a per PluggableTextMorph instance basis is a good idea. You still have an instance variable for the styler, but you do not have the possibility

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-19 Thread Tudor Girba
if this is the point. Cheers Alain On 19/10/2011 09:03, Stéphane Ducasse wrote: On Oct 19, 2011, at 8:38 AM, Tudor Girba wrote: Hi, Thanks. It is fixed now by removing the explicit setting of a styler. However, I do not quite understand why not being able to set the styler on a per

Re: [Pharo-project] Can this be improved in Glamourous?

2011-10-19 Thread Tudor Girba
19, 2011 at 9:39 AM, Alain Plantec alain.plan...@yahoo.comwrote: I agree. Issue 4918 http://code.google.com/p/**pharo/issues/detail?id=4918http://code.google.com/p/pharo/issues/detail?id=4918 Cheers Alain On 19/10/2011 09:23, Tudor Girba wrote: Hi Alain, I do not need

Re: [Pharo-project] [ANN 1.3] One-Click #13315

2011-10-19 Thread Tudor Girba
Moose is building now using this image. It looks quite good. The only issue seems to be with RoelTyper when trying to type the variables from AST-Core. But, I did not investigate this in details yet. Cheers, Doru On 19 Oct 2011, at 14:53, Mariano Martinez Peck wrote: On Wed, Oct 19,

[Pharo-project] the moose call

2011-10-27 Thread Tudor Girba
Hi, The other week I was at GOTO Aarhus. This was a great conference. And I got to talk about humane assessment with Moose. The presentation seemed to have captured some attention:http://martinfowler.com/bliki/gotoAarhus2011.html I think it's great that a project that was built mostly on the

Re: [Pharo-project] Is RPackage dead?

2011-10-28 Thread Tudor Girba
Hi, B. Actually, I really do not understand what the issue is. We said from the very beginning that the strategy is the following: Stage 1: Get RPackage in the image and pretend that it acts like a smart cache for categories. Everything is expressed in terms of categories and mirrored in

Re: [Pharo-project] Is RPackage dead?

2011-10-28 Thread Tudor Girba
Hi, On 28 Oct 2011, at 21:30, Lukas Renggli wrote: Actually, I really do not understand what the issue is. We said from the very beginning that the strategy is the following: Stage 1: Get RPackage in the image and pretend that it acts like a smart cache for categories. Everything is

Re: [Pharo-project] Is RPackage dead?

2011-10-30 Thread Tudor Girba
Hi, Wait. The RPackage should not hold more than one category. That is the whole point. If you will allow mapping more than one category to an RPackage, we will either never get rid of categories or we will enter into the messy territory of nested packages. At this time, we certainly do not

Re: [Pharo-project] Is RPackage dead?

2011-10-30 Thread Tudor Girba
Hi, On 30 Oct 2011, at 22:43, Igor Stasenko wrote: On 30 October 2011 23:05, Tudor Girba tu...@tudorgirba.com wrote: Hi, Wait. The RPackage should not hold more than one category. That is the whole point. If you will allow mapping more than one category to an RPackage, we will either

Re: [Pharo-project] Athens news :)

2011-10-31 Thread Tudor Girba
Great. I can't wait to play with it :) Doru On Mon, Oct 31, 2011 at 11:06 AM, Stéphane Ducasse stephane.duca...@inria.fr wrote: Hi guys I asked igor to do a pre pre pre pre release of athens and then perform regular ones so that you can follow what he is doing and get excited. Because

Re: [Pharo-project] Is FS loadable in 1.3?

2011-10-31 Thread Tudor Girba
Hi, Please note that the official up-to-date ConfigurationOfFilesystem can be found in the squeaksource.com/fs repository. Cheers, Doru On 31 Oct 2011, at 23:04, Sean P. DeNigris wrote: Stéphane Ducasse wrote: can you compare what you loaded in 1.3 and what is in 1.4 What's the

Re: [Pharo-project] Someone bought Smalltalk?

2011-11-01 Thread Tudor Girba
Oh, my God! I will have to delete every piece of Smalltalk evidence! Ah, but I guess it will be a while until they get to Switzerland. I just hope they do not catch me in Argentina. Doru On 1 Nov 2011, at 11:12, Damien Cassou wrote: I just received this email: -- Forwarded

Re: [Pharo-project] Thank you

2011-11-15 Thread Tudor Girba
It's great to see this nice product catching on! Doru On Tue, Nov 15, 2011 at 5:23 PM, Hilaire Fernandes hilaire.fernan...@edu.ge.ch wrote: Hello people, A small note to say DrGeo is doing great progresses in term of features, usability and fun. I am working regularly with teachers from my

[Pharo-project] how to get a string read stream from filesystem

2011-11-17 Thread Tudor Girba
Hi, I am using Filesystem, and I would like to get a read stream that provides a string instead of bytes. If I do aReference readStream, I get a FSReadStream which is a byte stream. To get to the string, I now do the ugly: aReference readStream contents asString Is there a cleverer way?

Re: [Pharo-project] Unsubscribing for Announcements

2011-11-17 Thread Tudor Girba
On 17 Nov 2011, at 05:46, Igor Stasenko wrote: On 17 November 2011 05:17, Sean P. DeNigris s...@clipperadams.com wrote: Tudor Girba wrote: The WeakAnnouncement are already on the agenda for 1.3. Bump... What is the status of this? Also, what are people doing in the mean time? I

Re: [Pharo-project] how to get a string read stream from filesystem

2011-11-19 Thread Tudor Girba
On 17.11.2011, at 22:01, Tudor Girba wrote: Hi, I am using Filesystem, and I would like to get a read stream that provides a string instead of bytes. If I do aReference readStream, I get a FSReadStream which is a byte stream. To get to the string, I now do the ugly: aReference readStream

Re: [Pharo-project] [squeak-dev] OmniBrowser and ToolBuilder

2011-11-20 Thread Tudor Girba
Excellent! Doru On 20 Nov 2011, at 14:53, Stéphane Ducasse wrote: On Nov 20, 2011, at 1:11 PM, Lukas Renggli wrote: FYI: The mail of Colin Putney to the Squeak mailing list regarding the future of OmniBrowser. For Pharo there are also some changes upcoming: The latest GUI takes

Re: [Pharo-project] Athens work in progress: couple screenshots

2011-11-22 Thread Tudor Girba
Is there a way to load these? Doru On Tue, Nov 22, 2011 at 1:40 PM, Alexandre Bergel alexandre.ber...@me.com wrote: Stephane, asked me to show this :) Gorgeous! Go go go Igor! Alexandre Nothing fancy there, just a same window, rendered with different scale. The code which doing this,

Re: [Pharo-project] GUI Testing Library

2011-11-23 Thread Tudor Girba
I am quite interested, as well. I am not sure I understand how to reproduce your approach, though. Could you provide more information? Or maybe an example? Cheers, Doru On Wed, Nov 23, 2011 at 11:54 AM, Igor Stasenko siguc...@gmail.com wrote: On 23 November 2011 02:09, Sean P. DeNigris

Re: [Pharo-project] GUI Testing Library

2011-11-23 Thread Tudor Girba
Wow, this looks brilliant! I will definitely give it a try in the following days. Doru On Wed, Nov 23, 2011 at 4:10 PM, Sean P. DeNigris s...@clipperadams.com wrote: Tudor Girba-2 wrote Could you provide more information? Or maybe an example? Sure. Thanks for the push to write tests

Re: [Pharo-project] experience with large images?

2011-11-23 Thread Tudor Girba
I guess Alex talks about a Moose image. With Moose we can easily get to quite large images with millions of objects. For Windows, we indeed had a problem with the VM that Igor fixed. At that time, the problem appeared in images of over 200MB that could not be reopened (could be built, but once

Re: [Pharo-project] Morphic replacement

2011-11-25 Thread Tudor Girba
Sounds exciting. Doru On Fri, Nov 25, 2011 at 1:07 PM, Alexandre Bergel alexandre.ber...@me.com wrote: Impressive! Let us know Alexandre On 25 Nov 2011, at 07:00, Fernando Olivero wrote: Dear all, I've been working on a hole replacement of Morphic myself, because if was tired of

Re: [Pharo-project] Morphic replacement

2011-11-28 Thread Tudor Girba
So, when is this release to be expected? Cheers, Doru On Sun, Nov 27, 2011 at 10:51 PM, Sean P. DeNigris s...@clipperadams.com wrote: Fernando olivero-2 wrote found much more productive the approach of rewriting it from scratch. Me too. I always started using Morphic, but every time I got

Re: [Pharo-project] SqueakSource

2011-12-01 Thread Tudor Girba
Is it working? http://www.downforeveryoneorjustme.com/http://squeaksource.com/ Cheers, Doru On Thu, Dec 1, 2011 at 10:16 AM, Sven Van Caekenberghe s...@beta9.be wrote: On 01 Dec 2011, at 09:30, Jorge Ressia wrote: It is working Thank you, Jorge! -- www.tudorgirba.com Every thing

Re: [Pharo-project] [Seaside] SqueakSource

2011-12-01 Thread Tudor Girba
Hi Sebastian, First, squeaksource is free and it is hosted for free, too (as the main page says, squeaksource.com is hosted free of charge by the Software Composition Group, University of Bern). Second, it is old: it dates from 2004: http://www.squeaksource.com/ss.html This was a great piece

Re: [Pharo-project] GUI Testing Library

2011-12-03 Thread Tudor Girba
assert: (browser panes first port: #text) value = '123456' It's just cool. Thanks, Doru On 23 Nov 2011, at 16:17, Tudor Girba wrote: Wow, this looks brilliant! I will definitely give it a try in the following days. Doru On Wed, Nov 23, 2011 at 4:10 PM, Sean P. DeNigris s

[Pharo-project] keymapping problem: pasting in a pluggable text morph

2011-12-06 Thread Tudor Girba
Hi, I am trying to handle pasting in a PluggableTextMorph, but there seems to be a problem induced by Keymapping. Consider the following simple case: morph := (PluggableTextMorph on: StringHolder new text: #contents accept: #acceptContents:)

Re: [Pharo-project] [Moose-dev] weird cursor behavior by copy/pasting stuff

2011-12-07 Thread Tudor Girba
Hi, On 7 Dec 2011, at 18:35, Mariano Martinez Peck wrote: On Wed, Dec 7, 2011 at 6:05 PM, Fabrizio Perin pe...@iam.unibe.ch wrote: Hi all, I just download the last Moose build from the server and i notice a weird cursor behavior: If i copy/paste something either in a workspace or into

Re: [Pharo-project] [Moose-dev] weird cursor behavior by copy/pasting stuff

2011-12-07 Thread Tudor Girba
On 7 Dec 2011, at 18:58, Sean P. DeNigris wrote: Mariano Martinez Peck wrote I noticed the same in another image, where KeyMapping is installed. Maybe this is related? Keymapping also conflicts with OB. See http://forum.world.st/Chasing-Browsers-td4102608.html Do we report

[Pharo-project] keymapping

2011-12-07 Thread Tudor Girba
Hi Guille, We recently added Keymapping to the Moose distribution (actually part of Glamour), but it seems that it breaks the image in subtle ways: - Ctrl+v and Cmd+v lead to different behaviour - pasting a piece of code leaves the cursor at the beginning of the pasted text Do you happen to

Re: [Pharo-project] GUI Testing Library

2011-12-08 Thread Tudor Girba
Hi Sean, Unfortunately, it seems that Keymapping introduces subtle bugs in the other tools. Would it be possible to simulate keys with modifiers without Keymapping present? Cheers, Doru On 3 Dec 2011, at 17:38, Sean P. DeNigris wrote: Tudor Girba-2 wrote It's just cool. Excellent

Re: [Pharo-project] GUI Testing Library

2011-12-09 Thread Tudor Girba
Thanks a lot, Sean! It works just great with BDDExtensions and Keymapping-Shortcuts. Cheers, Doru On Thu, Dec 8, 2011 at 3:35 PM, Sean P. DeNigris s...@clipperadams.com wrote: Tudor Girba-2 wrote Would it be possible to simulate keys with modifiers without Keymapping present? I think I

Re: [Pharo-project] GUI Testing Library

2011-12-09 Thread Tudor Girba
Btw, I think these should get in the Pharo distribution because they are just too valuable. Doru On Fri, Dec 9, 2011 at 4:07 PM, Tudor Girba tu...@tudorgirba.com wrote: Thanks a lot, Sean! It works just great with BDDExtensions and Keymapping-Shortcuts. Cheers, Doru On Thu, Dec 8, 2011

Re: [Pharo-project] GUI Testing Library

2011-12-09 Thread Tudor Girba
a 1.0-baseline with BDDExtensions and Keymapping-Shortcuts. Cheers, Doru On 9 Dec 2011, at 17:13, Sean P. DeNigris wrote: Tudor Girba-2 wrote Btw, I think these should get in the Pharo distribution because they are just too valuable. I will open an issue and submit a slice. Do you

Re: [Pharo-project] [Moose-dev] keymapping

2011-12-10 Thread Tudor Girba
Hi, On 10 Dec 2011, at 23:18, Guillermo Polito wrote: On Thu, Dec 8, 2011 at 3:47 AM, Tudor Girba tu...@tudorgirba.com wrote: Hi Guille, We recently added Keymapping to the Moose distribution (actually part of Glamour), but it seems that it breaks the image in subtle ways: - Ctrl+v

Re: [Pharo-project] keymapping problem: pasting in a pluggable text morph

2011-12-10 Thread Tudor Girba
Thanks. Keep us posted. Doru On 10 Dec 2011, at 23:16, Guillermo Polito wrote: On Tue, Dec 6, 2011 at 4:32 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi, I am trying to handle pasting in a PluggableTextMorph, but there seems to be a problem induced by Keymapping. Consider

[Pharo-project] small typo on pharo-project.org

2011-12-11 Thread Tudor Girba
Hi, My contribution for the month: http://www.pharo-project.org/pharo-download/unstable-1-4 Jenkis should be Jenkins :) Doru -- www.tudorgirba.com One cannot do more than one can do.

Re: [Pharo-project] [Pharo-users] [COTDC] 94 - AnnouncementSet

2011-12-11 Thread Tudor Girba
Hi, On 11 Dec 2011, at 08:07, Igor Stasenko wrote: On 10 December 2011 10:41, Stéphane Ducasse stephane.duca...@inria.fr wrote: I would not say useless may be you need the composite and you do not need to repeat AddChild, RemoveChild all the times but use the composite well.. usually

Re: [Pharo-project] small typo on pharo-project.org

2011-12-11 Thread Tudor Girba
Yuppe. My fix got integrated :) Doru On 11 Dec 2011, at 15:03, Marcus Denker wrote: On Sun, Dec 11, 2011 at 1:53 PM, Tudor Girba tu...@tudorgirba.com wrote: Hi, My contribution for the month: http://www.pharo-project.org/pharo-download/unstable-1-4 Jenkis should be Jenkins

Re: [Pharo-project] Keymapping OB conflict (was Re: Chasing Browsers)

2011-12-11 Thread Tudor Girba
Hello gentlemen, Let's loosen up a bit, please :). These are important pieces that nobody wants to see remain behind. But, before we go on, we should first identify the root of these concerns. @Lukas: please, could you point out what are the expected problems? For example, all

Re: [Pharo-project] Keymapping OB conflict (was Re: Chasing Browsers)

2011-12-11 Thread Tudor Girba
Hi, On 11 Dec 2011, at 15:49, Esteban Lorenzano wrote: Hi Lukas, I just loaded Magritte2 into Pharo 1.4 and it loads well with all tests in green. Also, Magritte-Morph loads and seems to run well... just a small change: replace: PluggableListMorphOfMany with:

Re: [Pharo-project] native boost is the best thing since COGVM

2011-12-12 Thread Tudor Girba
I am almost drooling :) Doru On Mon, Dec 12, 2011 at 4:02 PM, Fernando Olivero fernando.oliv...@usi.ch wrote: A taste of what will be available: rendering the same GLabel (the gaucho equivalent to StringMorph), scaling the CairoCanvas. Pesudo Code: create a label label := GLabel on :

Re: [Pharo-project] Startup Preferences

2011-12-13 Thread Tudor Girba
Sounds cool. Doru On Tue, Dec 13, 2011 at 11:37 AM, Benjamin benjamin.vanryseghem.ph...@gmail.com wrote: New version: Now there is a hierarchy for the setting file - first it lloks in the image diretory for st files - if none is found, it looks into ~/.config/pharo/${VERSION} - if none

<    4   5   6   7   8   9   10   11   12   13   >