[Pharo-project] [update 1.1] #11378

2010-05-29 Thread Stéphane Ducasse
11378 - - Issue2458: ChooseColorDefaults - Issue 2182: Part one. http://code.google.com/p/pharo/issues/detail?id=2182 This slice adds a class ObsoleteTest that tests the various flavor of isObsolete (on classes, metaclasses and traits). Furthermore, it adds some very useful methods: Trait

[Pharo-project] SUnit Time out

2010-05-29 Thread stephane ducasse
Hi guys in Squeak andreas introduced the idea of test time out Do you think that this is interesting? Stef SUnit - All test cases now have an associated timeout after which the test is considered failed. The purpose of the timeout is to catch issues like infinite loops, unexpected user

Re: [Pharo-project] SUnit Time out

2010-05-29 Thread Michael Roberts
yes think it's a good idea. I'm not sure the granularity that's required though. mike On Saturday, May 29, 2010, stephane ducasse stephane.duca...@free.fr wrote: Hi guys in Squeak andreas introduced the idea of test time out Do you think that this is interesting? Stef SUnit - All

[Pharo-project] How do I install seaside in Pharo 1.0?

2010-05-29 Thread magique poter
Hello, I have problem installing Seaside on Pharo 1.0. Evaluate ConfigurationOfSeaside workspace did not work. I have also tryed this code: Gofer new squeaksource: 'MetacelloRepository'; package: 'ConfigurationOfSeaside'; load. ((Smalltalk at: #ConfigurationOfSeaside ) project

Re: [Pharo-project] SUnit Time out

2010-05-29 Thread Schwab,Wilhelm K
Stef, Time to expose some of my ignorance (don't worry, I have plenty more waiting where I found this): what is the tag concept? That sounds very Tweak-ish, and I am a real believer in doing things with the language, not TO the language whenever possible. That is not to say that frameworks

Re: [Pharo-project] SUnit Time out

2010-05-29 Thread Stéphane Ducasse
On May 29, 2010, at 4:43 PM, Schwab,Wilhelm K wrote: Stef, Time to expose some of my ignorance (don't worry, I have plenty more waiting where I found this): what is the tag concept? probably a pragma That sounds very Tweak-ish, and I am a real believer in doing things with the

Re: [Pharo-project] SUnit Time out

2010-05-29 Thread Lukas Renggli
We already have #should:notTakeMoreThan: and friends in TestCase. The complete TestCase can be protected by overriding #runCase, the individual test by wrapping the code of the test method. Lukas On 29 May 2010 16:43, Schwab,Wilhelm K bsch...@anest.ufl.edu wrote: Stef, Time to expose some of

Re: [Pharo-project] How do I install seaside in Pharo 1.0?

2010-05-29 Thread Mariano Martinez Peck
On Sat, May 29, 2010 at 2:24 PM, magique poter sebov...@gmail.com wrote: Hello, I have problem installing Seaside on Pharo 1.0. Evaluate ConfigurationOfSeaside workspace did not work. Hi! In the Smalltalk world, when you see aClass aMmethod it means that you are talking about the method

Re: [Pharo-project] How do I install seaside in Pharo 1.0?

2010-05-29 Thread magique poter
I have problem installing Seaside on Pharo 1.0. Evaluate ConfigurationOfSeaside workspace did not work. Hi! Hello! Thanks for your response, In the Smalltalk world, when you see aClass aMmethod it means that you are talking about the method aMethod from the class aClass. Actually,

[Pharo-project] trait composition conflict autoresolution

2010-05-29 Thread aizcorbe
Hi all, I'm doing some work with traits, and I found something like this case: Trait T1m1 ^self requirement Trait T2m1 doSomeStuff Class C1 uses: T1 + T2 [note, i'm not excluding m1 from T1 in the T1 + T2 composition.] And the resulting: C1m1 doSomeStuff It is just ok, since the

Re: [Pharo-project] SUnit Time out

2010-05-29 Thread Stéphane Ducasse
For me the point is that I have the impression that this is an interesting feature to have when we have a test server. Like that you make sure that you do not have tests with infinite recursion now this is also true that on a test server you do not really care if your tests take 30s or 2 min.

Re: [Pharo-project] trait composition conflict autoresolution

2010-05-29 Thread Stéphane Ducasse
Hi all, I'm doing some work with traits, and I found something like this case: Trait T1m1 ^self requirement Trait T2m1 doSomeStuff Class C1 uses: T1 + T2 [note, i'm not excluding m1 from T1 in the T1 + T2 composition.] And the resulting: C1m1 doSomeStuff It is just

[Pharo-project] Using WebClient

2010-05-29 Thread Germán Arduino
Hi: I'm trying to automate some operations on a web page that requires authentication. I managed to arrive to the form that I need to process, authenticated without problems. But I can't figure out how to process the button (is a button of this type: input class=lButton style=

Re: [Pharo-project] Using WebClient

2010-05-29 Thread Stéphane Ducasse
if you get answers from squeak-dev let us know. Stef On May 29, 2010, at 10:02 PM, Germán Arduino wrote: Hi: I'm trying to automate some operations on a web page that requires authentication. I managed to arrive to the form that I need to process, authenticated without problems.

[Pharo-project] [ANN] Camp Smalltalk London filling up

2010-05-29 Thread Julian Fitzell
Much to our delight, there seems to be a lot of interest in the Camp Smalltalk event in London. We originally estimated our capacity at 30, and those slots have already filled up in less than 4 days! We are just now discussing what our actual maximum capacity is. We'll be able to handle a few

Re: [Pharo-project] Using WebClient

2010-05-29 Thread Schwab,Wilhelm K
It's been a long time, but won't the button cause the browser to send a post or get (whichever action is specified in the form) to the server? It might be enough to decide the content of that and send it over the socket. I am probably thinking in CGI terms, which might not be what you need.

Re: [Pharo-project] Using WebClient

2010-05-29 Thread Germán Arduino
I think that is a post method in this case, but can't make it work (yet). 2010/5/29 Schwab,Wilhelm K bsch...@anest.ufl.edu: It's been a long time, but won't the button cause the browser to send a post or get (whichever action is specified in the form) to the server?  It might be enough to

Re: [Pharo-project] trait composition conflict autoresolution

2010-05-29 Thread aizcorbe
Stéphane Ducasse wrote: Hi all, I'm doing some work with traits, and I found something like this case: Trait T1m1 ^self requirement Trait T2m1 doSomeStuff Class C1 uses: T1 + T2 [note, i'm not excluding m1 from T1 in the T1 + T2 composition.] And the resulting: C1m1