Re: [Pharo-users] XML verification using an external XSD file - possible yet in Pharo?

2016-02-04 Thread stepharo
Hi paul monty told me that his XML parser is validating. Stef Le 2/2/16 23:53, PAUL DEBRUICKER a écrit : Hi - Is there a way to validate XML files with an external XML schema file (XSD file) in Pharo ? Something like xerces (http://xerces.apache.org/) or xmllint (http://xmlsoft.org/xmllint

Re: [Pharo-users] XML verification using an external XSD file - possible yet in Pharo?

2016-02-04 Thread monty
> Sent: Thursday, February 04, 2016 at 4:31 AM > From: stepharo > To: "Any question about pharo is welcome" > Subject: Re: [Pharo-users] XML verification using an external XSD file - > possible yet in Pharo? > > Hi paul > > monty told me that his XML parser is validating. It is but only agai

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Stephan Eggermont
On 04-02-16 08:28, Julien Delplanque wrote: To match my needs, I simply added an extension to WindowModel with the message #activate. Just create an issue and fix it in place and put a slice in the inbox. You will not be the only one needing it. Stephan

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Johan Fabry
Yes, please do that! I would do it myself but I’m on holiday this month and not allowed to touch the computer much ;-) > On Feb 4, 2016, at 09:10, Stephan Eggermont wrote: > > On 04-02-16 08:28, Julien Delplanque wrote: >> To match my needs, I simply added an extension to WindowModel with the

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Sven Van Caekenberghe
> On 04 Feb 2016, at 15:21, Johan Fabry wrote: > > > Yes, please do that! I would do it myself but I’m on holiday this month and > not allowed to touch the computer much ;-) And still you somehow managed to type this message ;-) >> On Feb 4, 2016, at 09:10, Stephan Eggermont wrote: >> >> O

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Julien Delplanque
Ok, it will be a good occasion to learn the contribution process *shame on me*. Julien On 04/02/16 13:10, Stephan Eggermont wrote: On 04-02-16 08:28, Julien Delplanque wrote: To match my needs, I simply added an extension to WindowModel with the message #activate. Just create an issue and f

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Julien Delplanque
Ok, its done here [1], I hope I followed the procedure correctly. :) Julien [1]: https://pharo.fogbugz.com/f/cases/17528/Missing-activate-message-in-WindowModel On 04/02/16 15:26, Sven Van Caekenberghe wrote: On 04 Feb 2016, at 15:21, Johan Fabry wrote: Yes, please do that! I would do it

Re: [Pharo-users] Image Cleaner no longer useful?

2016-02-04 Thread Marcus Denker
Hello, Sorry for the late answer. I think there are multiple problems… 1) slowness. This is strange that unloading packages is so slow. This looks like a bug to me. 2) image size in Pharo5: We have a bug right now that images *never* shrink. This means that if you save an image once with 80MB

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Johan Fabry
> On Feb 4, 2016, at 11:26, Sven Van Caekenberghe wrote: > >> >> On 04 Feb 2016, at 15:21, Johan Fabry wrote: >> >> >> Yes, please do that! I would do it myself but I’m on holiday this month and >> not allowed to touch the computer much ;-) > > And still you somehow managed to type this me

Re: [Pharo-users] Another question about Spec

2016-02-04 Thread Johan Fabry
I don’t know the details of drag and drop, but it seems that you get the source widget as well as an argument of the block. From there you can get the selectedItem, which should be the one that you are dragging I suppose. Can you confirm that this works? > On Feb 4, 2016, at 04:38, Julien Delp

Re: [Pharo-users] Scrollbar in Spec layout

2016-02-04 Thread Johan Fabry
If I understand correctly, you are adding a lot of labels dynamically to the window, and you want a scrollbar to appear to the window, correct? I am afraid that this scenario is not supported by Spec. Instead you should use a list and add items there. Then you will get the scroll bar for free.

Re: [Pharo-users] Another question about Spec

2016-02-04 Thread Julien Delplanque
I understand what you say but sadly, it will not work in my case because: - I use #displayBlock: - Two or more items may be different objects but the result of the display block is the same. So I can't just use the string to retrieve the item in the list... :( Julien On 04/02/16 16:55

[Pharo-users] Spec doc

2016-02-04 Thread Hilaire
Hello I want to evaluate the use of Spec for desktop application. What are the recommended spec reading? Is Spec feature complete enough to develop application with complex GUI? (very subjective question) Is it intended to remain compatible with future release and modification of the underneath

Re: [Pharo-users] Another question about Spec

2016-02-04 Thread Julien Delplanque
Oh, I realize I didn't read your mail correctly, I'm sorry. I will try this trick. Julien On 04/02/16 16:55, Johan Fabry wrote: I don’t know the details of drag and drop, but it seems that you get the source widget as well as an argument of the block. From there you can get the selectedItem,

Re: [Pharo-users] Spec doc

2016-02-04 Thread Julien Delplanque
Hi, On 04/02/16 17:42, Hilaire wrote: Hello I want to evaluate the use of Spec for desktop application. What are the recommended spec reading? I suppose this link: http://spec.st/docs/home/ and the examples in 'Spec-Examples' package. Is Spec feature complete enough to develop application w

Re: [Pharo-users] Another question about Spec

2016-02-04 Thread Julien Delplanque
Ok, I just tried what you said and it does not always works since it is possible to drag an item from the list without selecting it... Julien On 04/02/16 17:42, Julien Delplanque wrote: Oh, I realize I didn't read your mail correctly, I'm sorry. I will try this trick. Julien On 04/02/16 16:5

Re: [Pharo-users] Spec doc

2016-02-04 Thread Johan Fabry
Hello Hilaire, I think a mail of Sven of last year will answer most of your questions, I quote it below. In addition to that mail: - Spec is the standard UI builder for Pharo so it is reasonably complete and should be supported in the future. - The book Sven talks about is very much a work in

Re: [Pharo-users] Simple question about Spec

2016-02-04 Thread Ben Coman
On Fri, Feb 5, 2016 at 12:02 AM, Johan Fabry wrote: > >> On Feb 4, 2016, at 11:26, Sven Van Caekenberghe wrote: >> >>> >>> On 04 Feb 2016, at 15:21, Johan Fabry wrote: >>> >>> >>> Yes, please do that! I would do it myself but I’m on holiday this month and >>> not allowed to touch the computer m

Re: [Pharo-users] Spec doc

2016-02-04 Thread Stephan Eggermont
On 04-02-16 17:42, Hilaire wrote: Hello I want to evaluate the use of Spec for desktop application. What are the recommended spec reading? Is Spec feature complete enough to develop application with complex GUI? (very subjective question) You will probably have to encapsulate a few more Morp

Re: [Pharo-users] Spec doc

2016-02-04 Thread stepharo
Hilaire Spec is not at the level I would like. I feel concerned about it and sad as well. Now I do not have the time to improve it. What would be is that people provide some snippet showing their use and that we collect that into the draft. Stef Le 4/2/16 17:42, Hilaire a écrit : Hello I

Re: [Pharo-users] stupid spur question

2016-02-04 Thread stepharo
Could somene take the time to propose a better class comments? Stef Le 2/2/16 15:11, Werner Kassens a écrit : Hi Clement, i see, thanks for this answer. werner On 02/02/2016 03:07 PM, Clément Bera wrote: Hello, Both classes (SmallFloat64 and BoxedFloat64) are present on 32 bits and 64 bits

[Pharo-users] Pharo mooc registration is available

2016-02-04 Thread stepharo
https://www.france-universite-numerique-mooc.fr/courses/inria/41010/session01/about?platform=hootsuite

Re: [Pharo-users] How to set the server debugger in seaside?

2016-02-04 Thread stepharo
Thanks this is so inintuitive that I forget 5 min after. Le 2/2/16 09:56, Cyril Ferlicot Delbecque a écrit : On 02/02/2016 09:47, stepharo wrote: Hi guys I hate so much this bad configuration interface of seaside. I lose all the time 20 min to find how to set the debugger. So I have to do a pr

Re: [Pharo-users] How to set the server debugger in seaside?

2016-02-04 Thread Cyril Ferlicot D.
Le 04/02/2016 22:42, stepharo a écrit : > Thanks this is so inintuitive that I forget 5 min after. > > > If I don't use seaside for more than a week, I need 5-10min to find it. Maybe you can set it at the registry like: MyComponant class>>initialize (WAAdmin register: self asApplicationA

Re: [Pharo-users] How to set the server debugger in seaside?

2016-02-04 Thread Stephan Eggermont
On 02/02/16 09:47, stepharo wrote: Hi guys I hate so much this bad configuration interface of seaside. I lose all the time 20 min to find how to set the debugger. So I have to do a presentation and I cannot show the debugger. What a great wonderful experience. How can I configure seaside to get

Re: [Pharo-users] How to set the server debugger in seaside?

2016-02-04 Thread Johan Brichau
Stef, You know you can contribute and improve it? You should remember a bit more the talk of Kim Mackinnon in Cambridge… This negative way of talking about work of others is not the way to get things done. I don’t think you would appreciate someone mailing this way about the Pharo interface.