Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Miguel Enrique Cobá Martinez
> > The link is: > https://gforge.inria.fr/frs/download.php/25397/Pharo1.0-10508-rc2dev10.01.2.zip > Just a minor thing. Shouldn't the name be: Pharo-1.0-10508-rc2dev10.01.2.zip in order to match the PharoCore name format: PharoCore-1.0-10508-rc2.zip Format: (Pharo|PharoCore)-version-updat

Re: [Pharo-project] [ANN 1.0] Pre-cuilt CoreRC2 (#10508)

2010-01-22 Thread Miguel Enrique Cobá Martinez
El vie, 22-01-2010 a las 13:12 +0100, Marcus Denker escribió: > http://gforge.inria.fr/frs/download.php/25366/PharoCore-1.0-10508rc2.zip > Magnifique! Just one little thing, isn't the name format going to be tokens separated by "-" PharoCore-1.0-10508rc2.zip -> PharoCore-1.0-10508-rc2.zip

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Igor Stasenko
2010/1/23 Eliot Miranda : > > So for me image segments are too low-level and constraining. Right. Every time we wanting to say 'let VM do it for us' , we should always consider implementing it in smalltalk. For reasons you described before. My own rule of thumb: - do not put 'clever' code into V

[Pharo-project] PluggableButtonMorph>>askBeforeChanging

2010-01-22 Thread Igor Stasenko
As to me this is a good example of placing a decisive role into wrong place, bloating the morph's protocol. The 'askBeforeChanging' is used in #performAction which asks the model , if it wants to change: askBeforeChanging ifTrue: [model okToChange ifFalse: [^ self]]. But why doing that, i

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Alexandre Bergel
Thanks Mariano for this image. I like the background. Am I the only one to prefer rounded windows instead of straight corners? Cheers, Alexandre On 22 Jan 2010, at 11:32, Mariano Martinez Peck wrote: > Hi folks. This is 1.0 RC2. Please, look at this image in a nice way > because it is very

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Eliot Miranda
On Fri, Jan 22, 2010 at 5:51 PM, Martin McClure wrote: > Eliot Miranda wrote: > > > > Parcels are wonderful things, but my impression is that ImageSegment > and > > parcels are designed to do rather different things. Parcels are used > for > > physical delivery of packages (primarily c

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Martin McClure
Eliot Miranda wrote: > > Parcels are wonderful things, but my impression is that ImageSegment and > parcels are designed to do rather different things. Parcels are used for > physical delivery of packages (primarily code), whereas ImageSegments > are for arbitrary graphs of objects

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Gary Chambers
On Fri, 2010-01-22 at 17:11 +0100, Torsten Bergmann wrote: > Things I've noticed: > > - Code completion is working for me > - the intro workspace window should be smaller > - the intro workspace window should provide colors as the other two > workspaces (maybe we can group them in a window with

Re: [Pharo-project] Input different data types (integers or datetimes) in a textbox.

2010-01-22 Thread Gary Chambers
Something like the following example could work, though there are a few rough edges at present in terms of caret position and editing (I've only used the treansform bit to change case of strings, for instance, which behaves reasonably)... (UITheme builder newAutoAcceptTextEntryFor: ValueHolder new

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Eliot Miranda
On Fri, Jan 22, 2010 at 4:33 PM, Martin McClure wrote: > Eliot Miranda wrote: > > > > > > On Fri, Jan 22, 2010 at 12:35 PM, Stéphane Ducasse > > mailto:stephane.duca...@inria.fr>> wrote: > > > > hi guys > > > > the more I read about imageSegments the more I would like to remove > > the

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Ramiro Diaz Trepat
What about the NetNameResolver issues ? 1852 1853

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Miguel Enrique Cobá Martinez
El vie, 22-01-2010 a las 18:40 +0100, Mariano Martinez Peck escribió: > This is weird...we have several tests failing, erroring, successing in > different OS. > > Someone has already reported in windows, Laurent in Linux, and here is > in mac. > > Can someone please put all the information toget

Re: [Pharo-project] Copy/paste not works

2010-01-22 Thread Igor Stasenko
2010/1/22 Stéphane Ducasse : > probably my mistake to remove SqueakClipBoard. > Sorry. > Could you file it out of a previous image and check if this is the problem? > If I could reproduce your problem I would have fixed it already. > Not until monday. Because the system, where i tested it was at my

Re: [Pharo-project] Smalltalk vs Eclipse

2010-01-22 Thread Adrian Kuhn
Ralph Boland writes: > Unfortunately Smalltalk jobs in Canada are extremely rare so I can going > to have to program in C or Java or learn Python or Php or Ruby (any > recommendations as to which of those languages is the best) j As a Smalltalker you'll gonna love Ruby. --AA

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Martin McClure
Eliot Miranda wrote: > > > On Fri, Jan 22, 2010 at 12:35 PM, Stéphane Ducasse > mailto:stephane.duca...@inria.fr>> wrote: > > hi guys > > the more I read about imageSegments the more I would like to remove > them (or to package them > carefully - not sure that this is possible)

Re: [Pharo-project] Smalltalk vs Eclipse

2010-01-22 Thread Hernán Morales Durand
;>> focus on arbitrarily complex topologies of remote images.  Instead focus on >>> building a robust, well-engineered remote tools framework that just allows >>> one to do what one can do today in a browser and debugger, but remotely >>> between two image

Re: [Pharo-project] Smalltalk vs Eclipse

2010-01-22 Thread Adrian Kuhn
Ralph Boland writes: > I think the Eclipse model suggests an improvement to Smalltalk. > It seems to me that when you run Smalltalk ideally you would > run two images. One would be the development environment image > and the other would be the application image. You might want to take a look at

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Martin McClure
Stéphane Ducasse wrote: > hi guys > > the more I read about imageSegments the more I would like to remove them (or > to package them > carefully - not sure that this is possible) and may be add a new class to > just have one simple way of invoking the save (but not swapping back in) > > I thi

Re: [Pharo-project] Deadlock detection for testcases

2010-01-22 Thread Adrian Kuhn
Lukas Renggli writes: Please don't add this to TestCase. Sometimes I want to keep my > debuggers open. Also this slows running lots of tests considerably > down. > > I suggest that you create your own subclass of TestCase and override > runCase as such: > > runCase > [ super runCase ] >

Re: [Pharo-project] Smalltalk vs Eclipse

2010-01-22 Thread Ralph Boland
ects >> with local development-only code.  In a deployed image I would expect there >> to be no inspectorClass methods or debugPrintOn: messages etc.  The target >> is lean and mean.  Anything not needed for deployment except that which >> supports adequate remote messaging is

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Miguel Enrique Cobá Martinez
El vie, 22-01-2010 a las 22:14 +0100, Stéphane Ducasse escribió: > don't put magma > there was a list of tools that we wanted in the dev image. Not loaded in the image, but only the snippet to load it in the welcome workspace. As an example of the packages available to load. :) Cheers > > The d

Re: [Pharo-project] Fwd: [squeak-dev] Smalltalk vs Eclipse

2010-01-22 Thread Eliot Miranda
On Fri, Jan 22, 2010 at 1:32 PM, Stéphane Ducasse wrote: > > Hi ralph and eliot > > > Nevertheless there are advantages to both and I wonder to what > > extent I can have my cake and eat it too (that would be an orapple > > cake I suppose). I should also point out that my discussion is abstract

[Pharo-project] Fwd: [squeak-dev] Smalltalk vs Eclipse

2010-01-22 Thread Stéphane Ducasse
Hi ralph and eliot > Nevertheless there are advantages to both and I wonder to what > extent I can have my cake and eat it too (that would be an orapple > cake I suppose). I should also point out that my discussion is abstract; > I am asking if it would have been better if Smalltalk had > been

Re: [Pharo-project] smart MorphTreeWidget

2010-01-22 Thread Stéphane Ducasse
this kind of widgets is really important! Tx a lot alain! Stef On Jan 22, 2010, at 10:23 PM, Tudor Girba wrote: > Hi, > > I would just want to praise publicly the work of Alain Plantec on the > MorphTreeWidget. In Pharo 1.0 you can get it at: > Gofer new squeaksource: 'Momo10'; package: 'Mor

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Stéphane Ducasse
On Jan 22, 2010, at 9:59 PM, Eliot Miranda wrote: > > > On Fri, Jan 22, 2010 at 12:35 PM, Stéphane Ducasse > wrote: > hi guys > > the more I read about imageSegments the more I would like to remove them (or > to package them > carefully - not sure that this is possible) and may be add a ne

[Pharo-project] smart MorphTreeWidget

2010-01-22 Thread Tudor Girba
Hi, I would just want to praise publicly the work of Alain Plantec on the MorphTreeWidget. In Pharo 1.0 you can get it at: Gofer new squeaksource: 'Momo10'; package: 'MorphTreeWidget'; load. It's a list, a tree and a table (with single and multiple selection) in one easily customizable widge

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Stéphane Ducasse
don't put magma there was a list of tools that we wanted in the dev image. The dev image should be convenient for coding after people should load what they want. On Jan 22, 2010, at 5:58 PM, Mariano Martinez Peck wrote: > > > Don't forget Magma. There is a ConfigurationOfMagma already in >

Re: [Pharo-project] Input different data types (integers or datetimes) in a textbox.

2010-01-22 Thread Schwab,Wilhelm K
In addition to Stef's recommendation, the correct approach to this is to use value converters and a mixture of flags on the widgets (e.g. numeric-only) and closures for validation. That way, the widgets "think" in text, and the ultimate model (or aspect thereof) can have whatever type is approp

Re: [Pharo-project] Input different data types (integers or datetimes) in a textbox.

2010-01-22 Thread Stéphane Ducasse
As far as I know, what you are looking for does not exist. May be you should have a look at Magritte because it describes a lot of data type already and there validation. Stef > > I want know if exists some way or mechanism for input data in a widget of a > specific type. For example a textbox

Re: [Pharo-project] about imageSegments

2010-01-22 Thread Eliot Miranda
On Fri, Jan 22, 2010 at 12:35 PM, Stéphane Ducasse < stephane.duca...@inria.fr> wrote: > hi guys > > the more I read about imageSegments the more I would like to remove them > (or to package them > carefully - not sure that this is possible) and may be add a new class to > just have one simple wa

Re: [Pharo-project] Copy/paste not works

2010-01-22 Thread Stéphane Ducasse
probably my mistake to remove SqueakClipBoard. Sorry. Could you file it out of a previous image and check if this is the problem? If I could reproduce your problem I would have fixed it already. Stef >>> >>> 11161" self withUpdateLog: 'Issue 765: Menu must not be zero s

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Schwab,Wilhelm K
We do not need new tools to take several lines and lots of irrelevant/redundant sugar down to one line with two relevant items. Please consider adding something like the attached to *anything* that is in the image; then load scripts will be far simpler than we are encouraging at present. Bill

[Pharo-project] about imageSegments

2010-01-22 Thread Stéphane Ducasse
hi guys the more I read about imageSegments the more I would like to remove them (or to package them carefully - not sure that this is possible) and may be add a new class to just have one simple way of invoking the save (but not swapping back in) I think that mariano diving into them is a gr

[Pharo-project] Input different data types (integers or datetimes) in a textbox.

2010-01-22 Thread nullPointer
I want know if exists some way or mechanism for input data in a widget of a specific type. For example a textbox with only numbers ( decimals or only integers ) or some mechanism of mask edit for fill a text in a textbox of "type" DateTime ?? I´m developing a grid widget and I need in each column

Re: [Pharo-project] Dedicated image now available for Pharo by Example

2010-01-22 Thread Stéphane Ducasse
Thanks a lot oscar. Stef On Jan 22, 2010, at 1:51 PM, Oscar Nierstrasz wrote: > > Hi Folks, > > Apparently people have been having problems following Pharo by Example with > the latest Pharo images. > > To make their lives easier, I have now added a download link to > http://PharoByExample.

Re: [Pharo-project] [ANN 1.0] Pre-cuilt CoreRC2 (#10508)

2010-01-22 Thread Stéphane Ducasse
coool! We are getting there. On Jan 22, 2010, at 1:12 PM, Marcus Denker wrote: > > http://gforge.inria.fr/frs/download.php/25366/PharoCore-1.0-10508rc2.zip > > -- > Marcus Denker -- http://www.marcusdenker.de > INRIA Lille -- Nord Europe. Team RMoD. > > > _

Re: [Pharo-project] Copy/paste not works

2010-01-22 Thread Igor Stasenko
2010/1/22 Stéphane Ducasse : > Igor > > could you try to save the images so that we can spot which changes broke the > behavior? > I suspect this is applying the 11161. The problem is that i applied each item in list without saving an image. And there was no bug until i saved & restarted an image.

Re: [Pharo-project] about bufferedFileStream

2010-01-22 Thread Stéphane Ducasse
Thanks. I was wondering if in addition to chunk versus single element reading, the logic of the tools was not fooled and for example accessing two times the source code (may be for identifying selector and the other for method body or something like that). Stef On Jan 21, 2010, at 8:19 PM, Leve

Re: [Pharo-project] Copy/paste not works

2010-01-22 Thread Stéphane Ducasse
Igor could you try to save the images so that we can spot which changes broke the behavior? Stef On Jan 20, 2010, at 6:03 PM, Igor Stasenko wrote: > 2010/1/20 Stéphane Ducasse : >> Ok excellent >> >>> Everything works perfectly on #11151 >> >> then can you look at the Utilities there is a

Re: [Pharo-project] [update] #10507

2010-01-22 Thread Stéphane Ducasse
cool! Stef On Jan 21, 2010, at 11:31 PM, Adrian Lienhard wrote: > 10507 > - > > Issue 945:Annoying bug: UndefinedObject(Object)>>doesNotUnderstand: > #mimeTypes > Issue 1769: TestRunner author while running tests > Issue 1772: testSymbolTableM6812 is failing > Issue 1815: Montice

Re: [Pharo-project] Newbie Confusion

2010-01-22 Thread Stéphane Ducasse
Michael we will provide an image with Pharo by example. We were waiting to get 1.0 out and this is really soon now. Thanks for your feedback. Stef On Jan 21, 2010, at 7:23 PM, Michael Litchard wrote: > Just to let you know, I think the problems I've been experiencing > would scare away many new

Re: [Pharo-project] [squeak-dev] Smalltalk vs Eclipse

2010-01-22 Thread Eliot Miranda
Hi Ralph, On Thu, Jan 21, 2010 at 10:40 PM, Ralph Boland wrote: > Lest I confuse you let me state that I STRONGLY prefer using the > Smalltalk (Squeak in my case) development environment to using > Eclipse. It is also worth pointing out that Eclipse is a development > environment that works wit

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
> - I hate the old style Squeak cursor and would rather see different > cursors (see ConfigurationOfVistaCursors for an example) I tried. It looks nicer, but...too white. Most of the backgrounds are white or soft colors...thus, I really cannot distinguish very much the mouse... Can I put that c

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
2010/1/22 Miguel Enrique Cobá Martinez > El vie, 22-01-2010 a las 18:13 +0100, Mariano Martinez Peck escribió: > > > > > > I generally use: > > Preferences enable: #fastDragWindowForMorphic. > > Preferences disable: #windowAnimation. > > > > ok...this two are ok in the dev

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Miguel Enrique Cobá Martinez
El vie, 22-01-2010 a las 18:13 +0100, Mariano Martinez Peck escribió: > > > I generally use: > Preferences enable: #fastDragWindowForMorphic. > Preferences disable: #windowAnimation. > > ok...this two are ok in the dev image. Aren't they ? > > Preference

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
> > I generally use: > Preferences enable: #fastDragWindowForMorphic. > Preferences disable: #windowAnimation. > ok...this two are ok in the dev image. Aren't they ? > Preferences enable: #updateSavesFile. > I am not sure what it does. But anyway, we remove the update from the dev image...so, t

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
> ... > > I cannot reproduce the Gofer test failure. Can you debug it and/or > provide a stack trace? > > Sorry...I cannot reproduce them. Here are green. Can some someone that has failing do it ? > Lukas > > -- > Lukas Renggli > http://www.lukas-renggli.ch > > _

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
Thanks lukas, It worked :) On Fri, Jan 22, 2010 at 5:52 PM, Lukas Renggli wrote: > > Ok, OBButtonBarTest>>testLayout we have seen before. I thought that I > > fixed it, but obviously it still breaks depending on the active UI > > Theme. The thing is that the "Watery 2" are so bulky that they flo

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
2010/1/22 Miguel Enrique Cobá Martinez > El vie, 22-01-2010 a las 16:10 +0100, Mariano Martinez Peck escribió: > > > > > > Hey Mariano, good work. the 1.0 release is almost here. > > I like the image, but as the others say centered and in a white > background or a blue like the one of the image.

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Simon Denier
On 22 janv. 2010, at 16:33, Tudor Girba wrote: > Hi Mariano, > > Nice work. > > Moose loads and works as expected. I also loaded O2 without problems. And the Moose tests run fine on a linux server. > > Cheers, > Doru > > > On 22 Jan 2010, at 15:32, Mariano Martinez Peck wrote: > >> Hi f

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 5:52 PM, David Röthlisberger wrote: > > >> Gofer new > >> squeaksource: 'MetacelloRepository'; > >> package:'ConfigurationOfO2'; > >> load. > >> > >> ((Smalltalk at: #ConfigurationOfO2) project version: '1.0') load: > 'Dev' > > > > > > That gives

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
Don't forget Magma. There is a ConfigurationOfMagma already in > MetacelloRepository. > > Yes...there are a lot of projects..I even didn't put SqueakDBX/GlorpDBX. I guess that in a future we will have Loader to do this... I don't know. Do you think we should also include Magma? I put the projects

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Lukas Renggli
> Ok, OBButtonBarTest>>testLayout we have seen before. I thought that I > fixed it, but obviously it still breaks depending on the active UI > Theme. The thing is that the "Watery 2" are so bulky that they float > over the space that the test-case gives them, so the layout breaks. I > made the spac

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Miguel Enrique Cobá Martinez
El vie, 22-01-2010 a las 16:10 +0100, Mariano Martinez Peck escribió: > > Hey Mariano, good work. the 1.0 release is almost here. I like the image, but as the others say centered and in a white background or a blue like the one of the image. Cheers -- Miguel Cobá http://miguel.leugim.com.mx

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread David Röthlisberger
>> Gofer new >> squeaksource: 'MetacelloRepository'; >> package:'ConfigurationOfO2'; >> load. >> >> ((Smalltalk at: #ConfigurationOfO2) project version: '1.0') load: 'Dev' > > > That gives me an error: ah, there was an error in the dev spec group, I fixed thi

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Lukas Renggli
Ok, OBButtonBarTest>>testLayout we have seen before. I thought that I fixed it, but obviously it still breaks depending on the active UI Theme. The thing is that the "Watery 2" are so bulky that they float over the space that the test-case gives them, so the layout breaks. I made the space wider, s

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Miguel Enrique Cobá Martinez
El vie, 22-01-2010 a las 15:32 +0100, Mariano Martinez Peck escribió: > Hi folks. This is 1.0 RC2. Please, look at this image in a nice way > because it is very likely that if there is no big issue, it will be > 1.0 official. We need to release 1.0. > > Issues fixed: In addition to the fixes fro

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 5:11 PM, Torsten Bergmann wrote: > Things I've noticed: > > - Code completion is working for me > Ok, because you probably use OB > - the intro workspace window should be smaller > Ok, give me the size you think is perfect for you. > - the intro workspace window shou

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2 - Win32 Installer

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 5:00 PM, Torsten Bergmann wrote: > >Cool. I was going to explicitly ask you :) > > Its up for win32 on > > > https://gforge.inria.fr/frs/download.php/25407/setup_pharo1.0-10508-rc2dev10.01.2.exe > > > >Yes, but later. Remember the idea of the beta testing. Once the image i

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
2010/1/22 Schwab,Wilhelm K > I'm very pressed for time right now, but I like the external projects > workspace. I still think that there is way too much code, as all of the > work can be done by one method that forms the name of the configuation class > and takes (at most) a version string. Th

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
2010/1/22 laurent laffont > > 2010/1/22 Schwab,Wilhelm K > >> I'm very pressed for time right now, but I like the external projects >> workspace. I still think that there is way too much code, as all of the >> work can be done by one method that forms the name of the configuation class >> and

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Stefan Marr
Just tried a fresh image, there you get the same error: Could not load: OCForO2 On 22 Jan 2010, at 17:01, Stefan Marr wrote: > > On 22 Jan 2010, at 16:54, Mariano Martinez Peck wrote: > >>Gofer new >>squeaksource: 'MetacelloRepository'; >>package:'ConfigurationOfO2'; >>

[Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Torsten Bergmann
Things I've noticed: - Code completion is working for me - the intro workspace window should be smaller - the intro workspace window should provide colors as the other two workspaces (maybe we can group them in a window with tree like help system) - maybe the background should be stretched accor

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread laurent laffont
2010/1/22 Schwab,Wilhelm K > I'm very pressed for time right now, but I like the external projects > workspace. I still think that there is way too much code, as all of the > work can be done by one method that forms the name of the configuation class > and takes (at most) a version string. Th

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
Ok...there seems to be a problem in the configuration then... 2010/1/22 Stefan Marr > > On 22 Jan 2010, at 16:54, Mariano Martinez Peck wrote: > > > Gofer new > > squeaksource: 'MetacelloRepository'; > > package:'ConfigurationOfO2'; > > load. > > > > ((Smalltalk at: #

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Schwab,Wilhelm K
I'm very pressed for time right now, but I like the external projects workspace. I still think that there is way too much code, as all of the work can be done by one method that forms the name of the configuation class and takes (at most) a version string. The phrase "syntactic sugar" comes to

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread laurent laffont
2010/1/22 Mariano Martinez Peck > > > On Fri, Jan 22, 2010 at 4:42 PM, Stefan Marr wrote: > >> Hi Mariano: >> >> looks great, but the background picture should be fixed ;) (no repetition >> and centered please). >> >> > It was just for fun. As this image is for beta-testers, I could give my > se

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread laurent laffont
On Fri, Jan 22, 2010 at 4:55 PM, George Herolyants < george.herolya...@gmail.com> wrote: > 2010/1/22 Stefan Marr : > > Well, and in the whole system, there is no code completion at all. > > > > Neither in the code editor, nor in the search bar... > > > > Very nasty... > > Very strange... I've just

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 4:55 PM, George Herolyants < george.herolya...@gmail.com> wrote: > 2010/1/22 Stefan Marr : > > Well, and in the whole system, there is no code completion at all. > > > > Neither in the code editor, nor in the search bar... > > > > Very nasty... > > Very strange... I've just

[Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2 - Win32 Installer

2010-01-22 Thread Torsten Bergmann
>Cool. I was going to explicitly ask you :) Its up for win32 on https://gforge.inria.fr/frs/download.php/25407/setup_pharo1.0-10508-rc2dev10.01.2.exe >Yes, but later. Remember the idea of the beta testing. Once the image is >tested by the beta-testers, and only if it is ok, it will be uploaded

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
Thanks for testings ! Yes, sorry, when I said there was only one failing I was talking about core, sorry for the confusion. I already know that those tests are failing, and I even sent several mails asking for help. I even cc'ed maintainers...sorry, cannot do more. There are mostly failings for

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread George Herolyants
2010/1/22 Stefan Marr : > Well, and in the whole system, there is no code completion at all. > > Neither in the code editor, nor in the search bar... > > Very nasty... Very strange... I've just checked. Code completion works just fine in this RC. ___ Ph

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 4:42 PM, Stefan Marr wrote: > Hi Mariano: > > looks great, but the background picture should be fixed ;) (no repetition > and centered please). > > It was just for fun. As this image is for beta-testers, I could give my self this luxury ahahah. But yes, we need someone th

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Stefan Marr
Well, and in the whole system, there is no code completion at all. Neither in the code editor, nor in the search bar... Very nasty... Best Stefan On 22 Jan 2010, at 16:42, Stefan Marr wrote: > Hi Mariano: > > looks great, but the background picture should be fixed ;) (no repetition and > cen

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Stefan Marr
Hi Mariano: looks great, but the background picture should be fixed ;) (no repetition and centered please). First thing I noticed, is that the behavior of the code editor changed. I am using O2 incase that matters. Looks like the type assistance is disabled? Examples are opening parentheses, wh

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 4:27 PM, Torsten Bergmann wrote: > Thanks. The image (both the ST-part and the background) looks good. > > Mariano would you please use the numbering from Damien when > uploading to inria, currently http://gforge.inria.fr/frs/?group_id=1299 > looks like: > > Pharo (phar

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Tudor Girba
Hi Mariano, Nice work. Moose loads and works as expected. I also loaded O2 without problems. Cheers, Doru On 22 Jan 2010, at 15:32, Mariano Martinez Peck wrote: > Hi folks. This is 1.0 RC2. Please, look at this image in a nice way > because it is very likely that if there is no big issue,

[Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Torsten Bergmann
Thanks. The image (both the ST-part and the background) looks good. Mariano would you please use the numbering from Damien when uploading to inria, currently http://gforge.inria.fr/frs/?group_id=1299 looks like: Pharo (pharo-dev) Pharo1.0-10508-rc2dev10.01.2 2010-01-22 15:26

[Pharo-project] BlockCannotReturn: Block cannot return

2010-01-22 Thread Mariano Martinez Peck
see: http://code.google.com/p/pharo/issues/detail?id=1865 Problem when canceling the quit of an image. Pharo image: PharoCore Pharo core version: 11177 Virtual machine used: Squeak 4.2.2beta1U.app Steps to reproduce: 1. Cmd + Q to quit 2. When the popup brings, select cancel 3. Theere you will

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
2010/1/22 Lukas Renggli > >> Could a single instance > >> be aligned in the top middle of the screen? > > > > Lukas, I really don't understand the problem when you have a bigger > screen. > > Is the picture cut ? do you have an screenshot ? > > It is a minor problem, but I couldn't find another o

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 3:56 PM, Lukas Renggli wrote: > > - Background with Pharo picture. This was a joke. It looked nice :)I > > promise I don't put it again if you don't like. To remove it evaluate: > > World color: Color white. > > I was shocked when I read this, but actually it looks pre

Re: [Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Lukas Renggli
> - Background with Pharo picture. This was a joke. It looked nice :)    I > promise I don't put it again if you don't like. To remove it evaluate: > World color: Color white. I was shocked when I read this, but actually it looks pretty cool. The only problem is that my screen is too large. Could

[Pharo-project] [BetaTesting] [ANN] Pharo1.0-10507-rc2dev10.01.2

2010-01-22 Thread Mariano Martinez Peck
Hi folks. This is 1.0 RC2. Please, look at this image in a nice way because it is very likely that if there is no big issue, it will be 1.0 official. We need to release 1.0. * Issues fixed*: In addition to the fixes from the PharoCore, we have: 1033, 1182, 1826, 1862. *Big changes*: - Now we us

[Pharo-project] Dedicated image now available for Pharo by Example

2010-01-22 Thread Oscar Nierstrasz
Hi Folks, Apparently people have been having problems following Pharo by Example with the latest Pharo images. To make their lives easier, I have now added a download link to http://PharoByExample.org for a dedicated image. It is essentially pharo1.0-10451-BETAweb09.09.3 with the OB Package

[Pharo-project] [ANN 1.0] Pre-cuilt CoreRC2 (#10508)

2010-01-22 Thread Marcus Denker
http://gforge.inria.fr/frs/download.php/25366/PharoCore-1.0-10508rc2.zip -- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD. ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gfo

[Pharo-project] [update] #10508

2010-01-22 Thread Marcus Denker
10508 - Issue 1826:1.0 rc2 need to be done -- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD. ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman

Re: [Pharo-project] Deadlock detection for testcases

2010-01-22 Thread Lukas Renggli
> Ok, then it looks like: > > runCase >        "STEFAN: Added simple hack to 'detect' deadlocks" >        Author >                ifUnknownAuthorUse: 'TestRunner' >                during: [ >                        [ [self setUp. >                           self performTest.] >                    

Re: [Pharo-project] Spell check test cases

2010-01-22 Thread Stan Shepherd
Absolutely. Those hacks were to demonstrate that the tests were working, not as the mechanism to get there. Let me know if there's anything you need added/changed in the tests. ...Stan -- View this message in context: http://n2.nabble.com/Spell-check-test-cases-tp4288633p4439243.html Sent from t

Re: [Pharo-project] [ANN 1.0] prebuilt Core#10507

2010-01-22 Thread Marcus Denker
On Jan 22, 2010, at 10:49 AM, Mariano Martinez Peck wrote: > > > On Fri, Jan 22, 2010 at 10:47 AM, Marcus Denker > wrote: > > On Jan 22, 2010, at 10:04 AM, Mariano Martinez Peck wrote: > > > RC2 thanks damien > > > The version number says rc1... and we need to run the script to clean up so

Re: [Pharo-project] [ANN 1.0] prebuilt Core#10507

2010-01-22 Thread Mariano Martinez Peck
On Fri, Jan 22, 2010 at 10:47 AM, Marcus Denker wrote: > > On Jan 22, 2010, at 10:04 AM, Mariano Martinez Peck wrote: > > > RC2 thanks damien > > > The version number says rc1... and we need to run the script to clean up > some cruft (deleting changesets, > rehashing sets...). > > that than will

Re: [Pharo-project] [ANN 1.0] prebuilt Core#10507

2010-01-22 Thread Marcus Denker
On Jan 22, 2010, at 10:04 AM, Mariano Martinez Peck wrote: > RC2 thanks damien > The version number says rc1... and we need to run the script to clean up some cruft (deleting changesets, rehashing sets...). that than will be rc2 (but code identical) Marcus -- Marcus Denker -- http

Re: [Pharo-project] Deadlock detection for testcases

2010-01-22 Thread Stefan Marr
Hi Marcus: On 22 Jan 2010, at 09:59, Marcus Denker wrote: > > On Jan 22, 2010, at 12:39 AM, Stefan Marr wrote: > >> Hi: >> >> Have currently a lot of trouble with tests which are just deadlocking. >> >> Here is quick hack which specifies a timeout for test cases. >> Maybe it is useful for ot

Re: [Pharo-project] [ANN 1.0] prebuilt Core#10507

2010-01-22 Thread Mariano Martinez Peck
RC2 thanks damien On Fri, Jan 22, 2010 at 10:00 AM, Damien Cassou wrote: > On Fri, Jan 22, 2010 at 9:55 AM, Marcus Denker > wrote: > > http://gforge.inria.fr/frs/download.php/25339/PharoCore-1.0-10507rc1.zip > > is it an RC1 or an RC2? > > -- > Damien Cassou > http://damiencassou.seasidehosting

Re: [Pharo-project] [ANN 1.0] prebuilt Core#10507

2010-01-22 Thread Damien Cassou
On Fri, Jan 22, 2010 at 9:55 AM, Marcus Denker wrote: > http://gforge.inria.fr/frs/download.php/25339/PharoCore-1.0-10507rc1.zip is it an RC1 or an RC2? -- Damien Cassou http://damiencassou.seasidehosting.st "Lambdas are relegated to relative obscurity until Java makes them popular by not havi

Re: [Pharo-project] Deadlock detection for testcases

2010-01-22 Thread Marcus Denker
On Jan 22, 2010, at 12:39 AM, Stefan Marr wrote: > Hi: > > Have currently a lot of trouble with tests which are just deadlocking. > > Here is quick hack which specifies a timeout for test cases. > Maybe it is useful for others, too. > Any suggestions for improvement are welcome. maybe you can

Re: [Pharo-project] [update] #10507

2010-01-22 Thread Mariano Martinez Peck
Thanks Marcus. Now it seems to work. The problem was that Squeaksource was down :) On Fri, Jan 22, 2010 at 9:55 AM, Marcus Denker wrote: > > On Jan 22, 2010, at 9:15 AM, Mariano Martinez Peck wrote: > > > Adrian: I cannot update as I have the error "Can't find EOCD position" > > > > Can you uploa

[Pharo-project] [ANN 1.0] prebuilt Core#10507

2010-01-22 Thread Marcus Denker
http://gforge.inria.fr/frs/download.php/25339/PharoCore-1.0-10507rc1.zip -- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD. ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria

Re: [Pharo-project] [update] #10507

2010-01-22 Thread Marcus Denker
On Jan 22, 2010, at 9:15 AM, Mariano Martinez Peck wrote: > Adrian: I cannot update as I have the error "Can't find EOCD position" > > Can you upload the image to gforge? > > I am uploading one now (as rc1, rc2 will have the cleanup scripts run and versionumber changed) Marcus -- M

Re: [Pharo-project] Problem with RB, code critics, Tests package and Traits

2010-01-22 Thread Mariano Martinez Peck
Excellent :) On Fri, Jan 22, 2010 at 1:06 AM, Alexandre Bergel wrote: > Thanks Lukas, > > Alexandre > > > On 21 Jan 2010, at 19:46, Lukas Renggli wrote: > > >> Can someone reproduce it ? > > > > Yeah, usually I can reproduce the easy ones: > > > > Name: Refactoring-Core-lr.101 > > Author: lr > >

Re: [Pharo-project] Deadlock detection for testcases

2010-01-22 Thread Mariano Martinez Peck
Cool. I cc Adrian Kuhn that maybe he is interested. Cheers Mariano 2010/1/22 Stefan Marr > Hi: > > Have currently a lot of trouble with tests which are just deadlocking. > > Here is quick hack which specifies a timeout for test cases. > Maybe it is useful for others, too. > Any suggestions for

  1   2   >