Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/28 stephane ducasse > Hi denis > > Alain is gone on vacation but it told me that if you code scale he will > throw away what he did :) > May be the decorators that alain wrote can be merged. > In any case this is excellent to get a better system. > Yes. This is why I work on this project.

Re: [Pharo-project] Trying to understand DateAndTime

2013-04-27 Thread stephane ducasse
thanks a lot! Friday we have an official sprint so I'm sure that this issue will be addressed. Stef > See https://pharo.fogbugz.com/default.asp?10425# and corresponding SLICE in > 3.0 inbox > Note: I don't know what is the policy with the labels/states of these bug > tracker, and it rather bo

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
Hi 2013/4/27 Sean P. DeNigris > Sean P. DeNigris wrote > > You're my new best friend :) > > The cursor is an actual Morph (TxCursorMorph) instead of magic conjured up > my Paragraph!!! All my other friends are fired, they've never given me a > present this nice :) > :) > > Also, please add me t

Re: [Pharo-project] Trying to understand DateAndTime

2013-04-27 Thread Sean P. DeNigris
Nicolas Cellier wrote > Note: I don't know what is the policy with the labels/states of these bug > tracker, and it rather bothers me, but the SLICE is ready for > tests/reviews. I was a bit confused at first too. You have to click "Resolved" and then you get a whole other set of states, including

Re: [Pharo-project] Trying to understand DateAndTime

2013-04-27 Thread Nicolas Cellier
See https://pharo.fogbugz.com/default.asp?10425# and corresponding SLICE in 3.0 inbox Note: I don't know what is the policy with the labels/states of these bug tracker, and it rather bothers me, but the SLICE is ready for tests/reviews. 2013/4/27 Nicolas Cellier > There is more: > > 1) hasEqual

Re: [Pharo-project] Pharo 3.0 TestRunner results

2013-04-27 Thread Benoit St-Jean
Here are the results with Pharo 3.0, update 30068). See attached file. I'm on Windows XP SP3.   - Benoit St-Jean Yahoo! Messenger: bstjean Blogue: endormitoire.wordpress.com A standpoint is an intellectual horizon of radius zero. (Albert Einstein) 10531 run, 10496 passes, 2 skipp

Re: [Pharo-project] Trying to understand DateAndTime

2013-04-27 Thread Nicolas Cellier
There is more: 1) hasEqualTicks: use julianDayNumber instead of julianDayNumberUTC 2) (Time dateAndTime now) interprets the (Time localSeconds) which are from the wrong primitive (seconds ellapsed since squeak epoch translated to local time) as seconds ellapsed since squeak Epoch (UTC time). We s

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread stephane ducasse
On Apr 27, 2013, at 8:00 PM, Nicolas Cellier wrote: > Right, if you embed source along with CompiledMethod (to handle the case when > the CompiledMethod has been replaced but one of its block of code is still > used), then you don't need Decompiler in the first place. > > Nonetheless, I woul

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread stephane ducasse
> Thanks Marcus. > I'm among the skepticals concerning the AST, but I'd like to be proven wrong, > because AST level would certainly simplify things a lot. Me too :) But marcus knows it since the end of his PhD :D. This is why I really want to see AST compression. > My main reserve is that int

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread stephane ducasse
But I would like that we finish first all the other cool tasks for 3.0 before opening something new. Finishing is difficult so let us focus on it. Stef On Apr 27, 2013, at 8:13 PM, Marcus Denker wrote: > > On Apr 27, 2013, at 8:01 PM, Nicolas Cellier > wrote: > >> Right, if you embed sourc

Re: [Pharo-project] Trying to understand DateAndTime

2013-04-27 Thread stephane ducasse
On Apr 27, 2013, at 6:33 PM, Nicolas Cellier wrote: > Since DateAndTime comment is out of date (sic !) and current implementation > seems not free of bug, here is an effort to summarize and understand the > whole thing, let's call this a review. Thanks this is a great initiative! > Please

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread stephane ducasse
Hi denis Alain is gone on vacation but it told me that if you code scale he will throw away what he did :) May be the decorators that alain wrote can be merged. In any case this is excellent to get a better system. Stef On Apr 27, 2013, at 5:17 PM, Denis Kudriashov wrote: > I should say it i

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread Marcus Denker
On Apr 27, 2013, at 8:01 PM, Nicolas Cellier wrote: > Right, if you embed source along with CompiledMethod (to handle the case when > the CompiledMethod has been replaced but one of its block of code is still > used), then you don't need Decompiler in the first place. > > Nonetheless, I woul

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread Nicolas Cellier
Right, if you embed source along with CompiledMethod (to handle the case when the CompiledMethod has been replaced but one of its block of code is still used), then you don't need Decompiler in the first place. Nonetheless, I would remove the .sources but not the .changes. The .changes is not only

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread Marcus Denker
On Apr 27, 2013, at 6:42 PM, Nicolas Cellier wrote: > Thanks Marcus. > I'm among the skepticals concerning the AST, but I'd like to be proven wrong, > because AST level would certainly simplify things a lot. > My main reserve is that interruption can occur at BC level, so for debugging > purp

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread Nicolas Cellier
Thanks Marcus. I'm among the skepticals concerning the AST, but I'd like to be proven wrong, because AST level would certainly simplify things a lot. My main reserve is that interruption can occur at BC level, so for debugging purpose, what are your plans? Will you move the PC at some AST node boun

[Pharo-project] Trying to understand DateAndTime

2013-04-27 Thread Nicolas Cellier
Since DateAndTime comment is out of date (sic !) and current implementation seems not free of bug, here is an effort to summarize and understand the whole thing, let's call this a review. Please tell me where my interpretations are wrong. 1) The DateAndTime is stored internally as - a point in UTC

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread Marcus Denker
On Apr 27, 2013, at 5:59 PM, Marcus Denker wrote:. > >> Could we have a primer on what remains to do on the Opal front? >> > > > -> debug BC-IR->AST->text mapping more (lots of it working already) > -> debug temp variable lookup in optimized blocks in the debugger (almost > there, too) > ->

Re: [Pharo-project] Opal Decompiler status

2013-04-27 Thread Marcus Denker
On Apr 27, 2013, at 5:26 PM, Nicolas Cellier wrote: > I see that the OCFakeDecompiler which uses the old and horrible (*) > Decompiler is still in use. > Though, IRBytecodeDecompiler seems already quite advanced. The idea actually is to not have a decompiler BC->AST. We have one BC->IR for m

[Pharo-project] Opal Decompiler status

2013-04-27 Thread Nicolas Cellier
I see that the OCFakeDecompiler which uses the old and horrible (*) Decompiler is still in use. Though, IRBytecodeDecompiler seems already quite advanced. Could we have a primer on what remains to do on the Opal front? (*) just look number of inst vars, count how many times their state change, and

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Sean P. DeNigris
Sean P. DeNigris wrote > You're my new best friend :) The cursor is an actual Morph (TxCursorMorph) instead of magic conjured up my Paragraph!!! All my other friends are fired, they've never given me a present this nice :) Also, please add me to the repo. I have a small fix (TxCursorMorph should

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
I should say it is not difficult to do with current design. I were think about it and current layout building logic requires little changes, maybe just one spesific method. But there is cases where any text change required rebuilding full layout. Fo example, single line text with wrapping mode.

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Sean P. DeNigris
OMG, TxTextMorph can grow horizontally. You're my new best friend :) - Cheers, Sean -- View this message in context: http://forum.world.st/Ann-TxText-New-text-editor-done-tp4683876p4683988.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Sean P. DeNigris
Denis Kudriashov wrote > You can load configuration from > http://www.smalltalkhub.com/#!/~sig/TxText. For the recreationally-inclined, like myself ;) Gofer it url: 'http://www.smalltalkhub.com/#!/~sig/TxText'; package: 'ConfigurationOfTxText'; load. ((Smalltalk at

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Igor Stasenko
Very impressive progress, Denis! :) I going to finish low-level stuff in Athens (path approximation / point location) and then go straight to text rendering with existing Text. Next stage will be to take TxText model and provide rendering for it with Athens, as well as review the code. About text

Re: [Pharo-project] [update 3.0] #30066

2013-04-27 Thread Sean P. DeNigris
stephane ducasse wrote > marcus do you know why the diff does not work with SmalltalkHub? It works sometimes. It seems that it works when the ancestors are present and produces a confusing error message when they are not... - Cheers, Sean -- View this message in context: http://forum.world

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 Denis Kudriashov > 2013/4/27 Denis Kudriashov > >> 2013/4/27 Denis Kudriashov >> >>> 2013/4/27 stephane ducasse >>> Nice! Denis did you see the benchs that doru tried to see if we can use Rubric? Because it is interesting to see if we can load and manipulate reall

Re: [Pharo-project] Pharo 3.0 TestRunner results

2013-04-27 Thread Marcus Denker
On Apr 27, 2013, at 3:12 PM, Benoit St-Jean wrote: > I don't know if that's of any help (or if it's been reported before) but here > are the results of TestRunner (against all tests) on a Pharo3.0 (Latest > update: #30021) image on Windows XP SP3. Can you check with the latest 3.0? it should

[Pharo-project] Pharo 3.0 TestRunner results

2013-04-27 Thread Benoit St-Jean
I don't know if that's of any help (or if it's been reported before) but here are the results of TestRunner (against all tests) on a Pharo3.0 (Latest update: #30021) image on Windows XP SP3. Btw, timezone here is GMT -5:00 (Montreal). See results in attached file. Hope this helps.  

[Pharo-project] [regression reporter]regression occurred

2013-04-27 Thread no-reply
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-2-Validation/./label=win/88/ 1 regressions found. KernelTests.Classes.ClassDescriptionTest.testUnCategorizedMethods

[Pharo-project] [regression reporter]regression occurred

2013-04-27 Thread no-reply
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-2-Validation/./label=mac/88/ 1 regressions found. KernelTests.Classes.ClassDescriptionTest.testUnCategorizedMethods

[Pharo-project] [regression reporter]regression occurred

2013-04-27 Thread no-reply
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-2-Validation/./label=linux/88/ 1 regressions found. KernelTests.Classes.ClassDescriptionTest.testUnCategorizedMethods

[Pharo-project] [update 3.0] #30068

2013-04-27 Thread Marcus Denker
30068 - 10402 Cannot print TestCase when testSelector is not set https://pharo.fogbugz.com/f/cases/10402 10421 Move reformatMethodAt: --> #reformat on CompiledMethod https://pharo.fogbugz.com/f/cases/10421 10422 cleanup unused code Compiler more https

[Pharo-project] Fwd: IWST 2013 Call for papers

2013-04-27 Thread plantec
Begin forwarded message: > From: Alain Plantec > Subject: Fwd: IWST 2013 Call for papers > Date: 27 avril 2013 14:00:40 UTC+02:00 > To: squeak-...@lists.squeakfoundation.org > Cc: Alain Plantec , Board ESUG , > Loic Lagadec > > > > Begin forwarded message: > >> From: Alain Plantec >> Subje

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 Denis Kudriashov > 2013/4/27 Denis Kudriashov > >> 2013/4/27 stephane ducasse >> >>> Nice! >>> Denis did you see the benchs that doru tried to see if we can use Rubric? >>> Because it is interesting to see if we can load and manipulate really >>> large file. >>> >>> Now it would be go

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
With wrapping mode layout building take 27 seconds which is not too much than without wrapping. But it get 3.5 times more layout lines. (230 000 lines without wrapping and 750 000 with wrapping in my test) 2013/4/27 Denis Kudriashov > 2013/4/27 Denis Kudriashov > >> 2013/4/27 stephane ducasse

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread stephane ducasse
Thanks for your energy, alain told me that he will also have a look. This is good to see movement from this front. Having a scalable texteditor with rich editing capabilities (icons, line number) is important for Moose and synectique. Also the new generation code browser will benefit from this new

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 Denis Kudriashov > 2013/4/27 stephane ducasse > >> Nice! >> Denis did you see the benchs that doru tried to see if we can use Rubric? >> Because it is interesting to see if we can load and manipulate really >> large file. >> >> Now it would be good that alain releases Rubric with a sta

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread plantec
On 27 avr. 2013, at 12:39, Denis Kudriashov wrote: > 2013/4/27 stephane ducasse > Nice! > Denis did you see the benchs that doru tried to see if we can use Rubric? > Because it is interesting to see if we can load and manipulate really large > file. > > Now it would be good that alain release

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 Denis Kudriashov > 2013/4/27 stephane ducasse > >> Nice! >> Denis did you see the benchs that doru tried to see if we can use Rubric? >> Because it is interesting to see if we can load and manipulate really >> large file. >> >> Now it would be good that alain releases Rubric with a sta

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 stephane ducasse > Nice! > Denis did you see the benchs that doru tried to see if we can use Rubric? > Because it is interesting to see if we can load and manipulate really > large file. > > Now it would be good that alain releases Rubric with a stable version and > check how to take ad

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Sven Van Caekenberghe
On 27 Apr 2013, at 10:11, Denis Kudriashov wrote: > 2013/4/27 Sven Van Caekenberghe > > On 27 Apr 2013, at 10:02, Denis Kudriashov wrote: > > > Hi > > > > 2013/4/27 Sven Van Caekenberghe > > Hi Denis, > > > > On 26 Apr 2013, at 23:19, Denis Kudriashov wrote: > > > > > I'm happy to announce

Re: [Pharo-project] Smart Suggestion Version 1

2013-04-27 Thread stephane ducasse
On Apr 26, 2013, at 4:41 PM, Gisela Decuzzi wrote: > > 2013/4/24 stephane ducasse > What would be cool is to have a way to select the enclosing expression but > you know it:) > > Now I'm selecting the node from the expression where you asked for > suggestions... I'm looking to for underline

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 Denis Kudriashov > 2013/4/27 Sven Van Caekenberghe > >> >> On 27 Apr 2013, at 10:02, Denis Kudriashov wrote: >> >> > Hi >> > >> > 2013/4/27 Sven Van Caekenberghe >> > Hi Denis, >> > >> > On 26 Apr 2013, at 23:19, Denis Kudriashov >> wrote: >> > >> > > I'm happy to announce that new

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread stephane ducasse
Nice! Denis did you see the benchs that doru tried to see if we can use Rubric? Because it is interesting to see if we can load and manipulate really large file. Now it would be good that alain releases Rubric with a stable version and check how to take advantage of the new TextMorph. Stef On

Re: [Pharo-project] [update 3.0] #30066

2013-04-27 Thread Marcus Denker
On Apr 27, 2013, at 10:10 AM, stephane ducasse wrote: > marcus do you know why the diff does not work with SmalltalkHub? > No. > > On Apr 26, 2013, at 5:43 PM, Marcus Denker wrote: > >> 30066 >> - >> >> 10401 Add Amber BlockClosure asynchronous methods into Pharo >> https://pharo

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
2013/4/27 Sven Van Caekenberghe > > On 27 Apr 2013, at 10:02, Denis Kudriashov wrote: > > > Hi > > > > 2013/4/27 Sven Van Caekenberghe > > Hi Denis, > > > > On 26 Apr 2013, at 23:19, Denis Kudriashov wrote: > > > > > I'm happy to announce that new text editor based on new text model > done. Yo

Re: [Pharo-project] [update 3.0] #30066

2013-04-27 Thread stephane ducasse
marcus do you know why the diff does not work with SmalltalkHub? On Apr 26, 2013, at 5:43 PM, Marcus Denker wrote: > 30066 > - > > 10401 Add Amber BlockClosure asynchronous methods into Pharo > https://pharo.fogbugz.com/f/cases/10401 > > 10418 cleanUp #methodHeaderFor: >

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Sven Van Caekenberghe
On 27 Apr 2013, at 10:02, Denis Kudriashov wrote: > Hi > > 2013/4/27 Sven Van Caekenberghe > Hi Denis, > > On 26 Apr 2013, at 23:19, Denis Kudriashov wrote: > > > I'm happy to announce that new text editor based on new text model done. > > You can load configuration fromhttp://www.smalltal

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Denis Kudriashov
Hi 2013/4/27 Sven Van Caekenberghe > Hi Denis, > > On 26 Apr 2013, at 23:19, Denis Kudriashov wrote: > > > I'm happy to announce that new text editor based on new text model done. > You can load configuration fromhttp://www.smalltalkhub.com/#!/~sig/TxText. > Last version: 0.6. > > See class sid

Re: [Pharo-project] more self documentation

2013-04-27 Thread Sven Van Caekenberghe
Beautiful. If we are not careful, Pharo will look like a really hip & hot project ;-) On 27 Apr 2013, at 09:12, Camillo Bruni wrote: > I switched the listing template on the file-server to something smother > and started to add a bit more documentation about all the files there: > > http://upd

Re: [Pharo-project] [Ann] TxText. New text editor done!

2013-04-27 Thread Sven Van Caekenberghe
Hi Denis, On 26 Apr 2013, at 23:19, Denis Kudriashov wrote: > I'm happy to announce that new text editor based on new text model done. You > can load configuration fromhttp://www.smalltalkhub.com/#!/~sig/TxText. Last > version: 0.6. > See class side example methods. Impressive & cool ! But h

[Pharo-project] more self documentation

2013-04-27 Thread Camillo Bruni
I switched the listing template on the file-server to something smother and started to add a bit more documentation about all the files there: http://updates.pharo.org/pharo3.0/