[Pharo-project] SS down?

2011-08-02 Thread Alexander Lazarević
http://www.downforeveryoneorjustme.com/squeaksource.com Alex

Re: [Pharo-project] SS down?

2011-08-02 Thread laurent laffont
grrr... Laurent On Tue, Aug 2, 2011 at 8:10 AM, Alexander Lazarević l...@blobworks.comwrote: http://www.downforeveryoneorjustme.com/squeaksource.com Alex

[Pharo-project] Squeaksource down?

2011-08-02 Thread Cyrille Delaunay
Hello, I am not able to connect to squeaksource

Re: [Pharo-project] Squeaksource down?

2011-08-02 Thread Jorge Ressia
It is working On Tue, Aug 2, 2011 at 9:27 AM, Cyrille Delaunay cy.delau...@gmail.com wrote: Hello, I am not able to connect to squeaksource -- Jorge Ressia www.jorgeressia.com

[Pharo-project] Optimizing RunArray

2011-08-02 Thread Nicolas Cellier
I played a bit with RunArray, and found some un-optimized features. First, I don't know why RunArray is an ArrayedCollection. It cannot #add: but it can #addFirst: and #addLast:. It cannot #add:withOccurrences: but it can #addLast:times:. Why inventing new selectors for old behaviours ? These

[Pharo-project] [update 1.4] #14070

2011-08-02 Thread Marcus Denker
14070 - Issue 3923: #condenseChanges not working in 1.3 http://code.google.com/p/pharo/issues/detail?id=3923 -- Marcus Denker -- http://marcusdenker.de

[Pharo-project] [update 1.3] #13292

2011-08-02 Thread Marcus Denker
13292 - Issue 3923: #condenseChanges not working in 1.3 http://code.google.com/p/pharo/issues/detail?id=3923 -- Marcus Denker -- http://marcusdenker.de

[Pharo-project] Hudson build is back to normal : Pharo Core 1.3 #392

2011-08-02 Thread marcus . denker
See https://pharo-ic.lille.inria.fr/hudson/job/Pharo%20Core%201.3/392/

[Pharo-project] Hudson build is back to normal : Pharo 1.3 #248

2011-08-02 Thread marcus . denker
See https://pharo-ic.lille.inria.fr/hudson/job/Pharo%201.3/248/

Re: [Pharo-project] Optimizing RunArray

2011-08-02 Thread Nicolas Cellier
To complete myself, the fast #collect: already exists and is named #mapValues: except that it modifies the RunArray in place and also won't coalesce... I also gain a huge factor for #collect:as: be defining this method: RunArrayfillFrom: aCollection with: aBlock Evaluate aBlock with each

[Pharo-project] updating the state of a state button

2011-08-02 Thread Hilaire Fernandes
In a dialog, I found the state of a button is not updated, even after self changed. See the code bellowm with methodes defnied in the dialog: newMySketchesButton ^ self newButtonFor: self getState: #isMySketches action: #sketches

Re: [Pharo-project] updating the state of a state button

2011-08-02 Thread Gary Chambers
Need to send self changed: #isMySketches Regards, Gary - Original Message - From: Hilaire Fernandes hilaire.fernan...@edu.ge.ch To: pharo-project@lists.gforge.inria.fr Sent: Tuesday, August 02, 2011 12:11 PM Subject: [Pharo-project] updating the state of a state button In a

Re: [Pharo-project] a.4 combox box bug

2011-08-02 Thread Henrik Johansen
On Jul 28, 2011, at 11:04 31PM, Stéphane Ducasse wrote: just for education purpose yes it was like that delete model isMorphicModel ifFalse: [^ super delete]. slotName ifNotNil: [(self confirm: 'Shall I remove the slot ' translated ,

Re: [Pharo-project] a.4 combox box bug

2011-08-02 Thread Henrik Johansen
On Jul 29, 2011, at 10:52 47AM, Stéphane Ducasse wrote: :) delete or delete = remove delete :) Disregard my last mail. That's what I get for not read mail for couple of days, then briefly scan list for replies, and miss one :) Cheers, Henry

Re: [Pharo-project] updating the state of a state button

2011-08-02 Thread Hilaire Fernandes
Yeah, I just figure out Thanks Hilaire Le 02/08/2011 13:36, Gary Chambers a écrit : Need to send self changed: #isMySketches Regards, Gary - Original Message - From: Hilaire Fernandes hilaire.fernan...@edu.ge.ch To: pharo-project@lists.gforge.inria.fr Sent: Tuesday,

Re: [Pharo-project] [squeak-dev] Re: Optimizing RunArray

2011-08-02 Thread Igor Stasenko
Does it impacts the text rendering/processing speed? On 2 August 2011 12:11, Nicolas Cellier nicolas.cellier.aka.n...@gmail.com wrote: To complete myself, the fast #collect: already exists and is named #mapValues: except that it modifies the RunArray in place and also won't coalesce... I

Re: [Pharo-project] identityHash bits not incremented for new objects?

2011-08-02 Thread Henrik Johansen
On Aug 1, 2011, at 8:43 53AM, Igor Stasenko wrote: I found that #testBecomeIdentityHash sometimes failing, sometimes not. It seems like VM 'forgets' to produce different identityHash bits for two consequently allocated objects, while test assumes that they are always different. If i

Re: [Pharo-project] identityHash bits not incremented for new objects?

2011-08-02 Thread Igor Stasenko
On 2 August 2011 14:18, Henrik Johansen henrik.s.johan...@veloxit.no wrote: On Aug 1, 2011, at 8:43 53AM, Igor Stasenko wrote: I found that #testBecomeIdentityHash sometimes failing, sometimes not. It seems like VM 'forgets' to produce different identityHash bits for two consequently

[Pharo-project] importing versions in squeaksource does not work anymore

2011-08-02 Thread Veronica Isabel Uquillas Gomez
Hi, This feature is broken. I am getting the following error: There was an error importing the file xxx.25.mcz. The file has to be in mcz format! It does not make sense. How can I publish files in a repository now? Regards, Veronica

Re: [Pharo-project] identityHash bits not incremented for new objects?

2011-08-02 Thread Henrik Johansen
On Aug 2, 2011, at 3:14 15PM, Igor Stasenko wrote: On 2 August 2011 14:18, Henrik Johansen henrik.s.johan...@veloxit.no wrote: On Aug 1, 2011, at 8:43 53AM, Igor Stasenko wrote: I found that #testBecomeIdentityHash sometimes failing, sometimes not. It seems like VM 'forgets' to produce

Re: [Pharo-project] importing versions in squeaksource does not work anymore

2011-08-02 Thread Marcus Denker
On Aug 2, 2011, at 3:24 PM, Veronica Isabel Uquillas Gomez wrote: Hi, This feature is broken. I am getting the following error: There was an error importing the file xxx.25.mcz. The file has to be in mcz format! It does not make sense. How can I publish files in a repository

Re: [Pharo-project] trait method tagging is not consistent

2011-08-02 Thread Veronica Isabel Uquillas Gomez
On 01 Aug 2011, at 21:30, Stéphane Ducasse wrote: (SourceFiles sourcedDataAt: (Point#dist:) sourcePointer) 'Point methodsFor: ''point functions'' stamp: ''lr 7/4/2009 10:42''' SourceFiles sourcedDataAt: (ComposableMorph#newToolSpacer) sourcePointer 'Trait method'

Re: [Pharo-project] importing versions in squeaksource does not work anymore

2011-08-02 Thread Veronica Isabel Uquillas Gomez
On 02 Aug 2011, at 15:33, Marcus Denker wrote: On Aug 2, 2011, at 3:24 PM, Veronica Isabel Uquillas Gomez wrote: Hi, This feature is broken. I am getting the following error: There was an error importing the file xxx.25.mcz. The file has to be in mcz format! It does not

[Pharo-project] building from PharoKernel

2011-08-02 Thread Hilaire Fernandes
I would like to build a DrGeo image from PharoKernel. Is it something possible? I guess I am not the only one wondering about that Hilaire -- Education 0.2 -- http://blog.ofset.org/hilaire

Re: [Pharo-project] identityHash bits not incremented for new objects?

2011-08-02 Thread Igor Stasenko
On 2 August 2011 15:31, Henrik Johansen henrik.s.johan...@veloxit.no wrote: On Aug 2, 2011, at 3:14 15PM, Igor Stasenko wrote: On 2 August 2011 14:18, Henrik Johansen henrik.s.johan...@veloxit.no wrote: On Aug 1, 2011, at 8:43 53AM, Igor Stasenko wrote: I found that #testBecomeIdentityHash

Re: [Pharo-project] building from PharoKernel

2011-08-02 Thread laurent laffont
On Tue, Aug 2, 2011 at 3:41 PM, Hilaire Fernandes hilaire.fernan...@edu.ge.ch wrote: I would like to build a DrGeo image from PharoKernel. Is it something possible? I guess I am not the only one wondering about that I'm interested, but for Seaside / SmallHarbour. Laurent. Hilaire

Re: [Pharo-project] identityHash bits not incremented for new objects?

2011-08-02 Thread David T. Lewis
On Tue, Aug 02, 2011 at 03:31:30PM +0200, Henrik Johansen wrote: On Aug 2, 2011, at 3:14 15PM, Igor Stasenko wrote: On 2 August 2011 14:18, Henrik Johansen henrik.s.johan...@veloxit.no wrote: On Aug 1, 2011, at 8:43 53AM, Igor Stasenko wrote: I found that

[Pharo-project] Polymorph improvements

2011-08-02 Thread Gary Chambers
Hi all. I've added an issue with some tweaks/improvements to a few Polymorph classes. http://code.google.com/p/pharo/issues/detail?id=4590 Groupboxes can now have dynamic content (model/getContentSelector based). Abaility to create icon lists via builder/TEasilyThemed. Expander labels now

Re: [Pharo-project] Polymorph improvements

2011-08-02 Thread Gary Chambers
Screenshot of part of project: http://www.flickr.com/photos/12018791@N06/6001799235/in/photostream Regards, Gary - Original Message - From: Gary Chambers To: Pharo Development Sent: Tuesday, August 02, 2011 4:40 PM Subject: [Pharo-project] Polymorph improvements Hi all.

[Pharo-project] Disable the debugger

2011-08-02 Thread laurent laffont
Hi, is it possible to disable the debugger in a Seaside image for production ? Laurent Laffont - @lolgzs http://twitter.com/#!/lolgzs Pharo Smalltalk Screencasts: http://www.pharocasts.com/ Blog: http://magaloma.blogspot.com/ Developer group: http://cara74.seasidehosting.st

Re: [Pharo-project] Polymorph improvements

2011-08-02 Thread Germán Arduino
Very nice! 2011/8/2 Gary Chambers gazzagu...@btinternet.com: Screenshot of part of project: http://www.flickr.com/photos/12018791@N06/6001799235/in/photostream Regards, Gary - Original Message - From: Gary Chambers To: Pharo Development Sent: Tuesday, August 02, 2011 4:40 PM

Re: [Pharo-project] Disable the debugger

2011-08-02 Thread Mariano Martinez Peck
Check in older Pharo images like 1.1.1 all the stuff in #disableProgrammerFacilities disableProgrammerFacilities Warning: do not call this lightly! It disables all access to menus, debuggers, halos. There is no guaranteed return from this, which is to say, you cannot necessarily reenable

Re: [Pharo-project] building from PharoKernel

2011-08-02 Thread Mariano Martinez Peck
For DrGeo I don't think it makes that much sense since you need Morphic and all its friends. So maybe it is just easier to unload some unused packages from PharoCore. For seaside/SmallHarbour it makes much sense, but you should not start from PharoKernel but from the PharoKernel that contains

Re: [Pharo-project] Disable the debugger

2011-08-02 Thread Igor Stasenko
ToolSet is deprecated in 1.4 (will be removed) Use Smalltalk tools instead. On 2 August 2011 19:06, Mariano Martinez Peck marianop...@gmail.com wrote: Check in older Pharo images like 1.1.1 all the stuff in #disableProgrammerFacilities disableProgrammerFacilities     Warning: do not call

[Pharo-project] [update 1.4] #14071

2011-08-02 Thread Marcus Denker
14071 - Issue 4582: Failing tests: CompiledMethodTest restReadField and testWriteField http://code.google.com/p/pharo/issues/detail?id=4582 Issue 4583: Undeclared in #allLocalCallsOn:ofClass: http://code.google.com/p/pharo/issues/detail?id=4583 Issue 4585:

Re: [Pharo-project] [squeak-dev] Re: SS down?

2011-08-02 Thread Tobias Pape
You may want to temporarily push to http://ss3.gemstone.com/ and copy from there to squeaksource.com when it's up again :) best -tobias Am 2011-08-02 um 09:24 schrieb laurent laffont: grrr... Laurent On Tue, Aug 2, 2011 at 8:10 AM, Alexander

Re: [Pharo-project] [squeak-dev] Optimizing RunArray

2011-08-02 Thread Nicolas Cellier
No, I wanted to reuse RunArray for other purposes, that's why the methods weren't optimized. For Text, the major operation is ... Hmm wait, this is really hard to track by just reading code, and debugging it is not that easy ! Nicolas 2011/8/2 Bert Freudenberg b...@freudenbergs.de: On

Re: [Pharo-project] [squeak-dev] Optimizing RunArray

2011-08-02 Thread Nicolas Cellier
Normal text editing (inserting) follows that path and main RunArray operation is #copyReplaceFrom:to:with: It seems it could be marginally optimized, but I don't think this would be noticed at all. Anyway, the operation never appear on a MessageTally (maybe I should try again with a huge Text).

Re: [Pharo-project] a.4 combox box bug

2011-08-02 Thread Stéphane Ducasse
No problem :) Indeed this method was really strange and this is why we were wrong thinking that our semantics was better. Stef :) delete or delete = remove delete :) Disregard my last mail. That's what I get for not read mail for couple of days, then briefly scan list for

Re: [Pharo-project] trait method tagging is not consistent

2011-08-02 Thread Stéphane Ducasse
strange! Stef On Aug 2, 2011, at 3:33 PM, Veronica Isabel Uquillas Gomez wrote: On 01 Aug 2011, at 21:30, Stéphane Ducasse wrote: (SourceFiles sourcedDataAt: (Point#dist:) sourcePointer) 'Point methodsFor: ''point functions'' stamp: ''lr 7/4/2009 10:42''' SourceFiles

Re: [Pharo-project] identityHash bits not incremented for new objects?

2011-08-02 Thread Stéphane Ducasse
+ 1000 Please include a comment with that. :) Like this has shown, it's rather hard to know wtf to do when you can't unambiguously read what its actually intended to test from the code itself. Cheers, Henry

Re: [Pharo-project] Polymorph improvements

2011-08-02 Thread Stéphane Ducasse
thanks for sharing that with us. BTW did you see my question (some weeks ago) about minimalExtent or maximalExtent for window it seems that it is totally unused. Stef Screenshot of part of project: http://www.flickr.com/photos/12018791@N06/6001799235/in/photostream Regards, Gary -

Re: [Pharo-project] Disable the debugger

2011-08-02 Thread Stéphane Ducasse
would be nice to have a class responsible for that and that slowly we get a complete system ready for this kind of deployement Stef On Aug 2, 2011, at 7:06 PM, Mariano Martinez Peck wrote: Check in older Pharo images like 1.1.1 all the stuff in #disableProgrammerFacilities

Re: [Pharo-project] Optimizing RunArray

2011-08-02 Thread Stéphane Ducasse
Excellent! Stef On Aug 2, 2011, at 12:11 PM, Nicolas Cellier wrote: To complete myself, the fast #collect: already exists and is named #mapValues: except that it modifies the RunArray in place and also won't coalesce... I also gain a huge factor for #collect:as: be defining this method:

Re: [Pharo-project] [squeak-dev] Re: Optimizing RunArray

2011-08-02 Thread Stéphane Ducasse
Yes I was wondering about the same (for athens too :)) Stef On Aug 2, 2011, at 2:16 PM, Igor Stasenko wrote: Does it impacts the text rendering/processing speed? On 2 August 2011 12:11, Nicolas Cellier nicolas.cellier.aka.n...@gmail.com wrote: To complete myself, the fast #collect:

[Pharo-project] [update 1.4] #14072

2011-08-02 Thread Stéphane Ducasse
14072 - - Issue 3433: Color improvement http://code.google.com/p/pharo/issues/detail?id=3433 - Better class comment for FlatListMessageBrowser

Re: [Pharo-project] building from PharoKernel

2011-08-02 Thread Pavel Krivanek
We still do not have MinimalMorphic image equivalent so there is no reason to use it for DrGeo. However you may try to create DrGeo image, then start with Gefer image, load all methods that are not present in the Gofer image in form of a proxy method that will log the method call, loads the right

Re: [Pharo-project] [squeak-dev] Re: Optimizing RunArray

2011-08-02 Thread Nicolas Cellier
I have tried again with huge text (my 45 MByte change log). Main contributor seems to be Text composition. A marginal gain (2 to 3% when resizing the window) is to remove the indirection in TextStopConditions, and replace instance variable stops with direct integer slots (variableSubclass) No

Re: [Pharo-project] building from PharoKernel

2011-08-02 Thread laurent laffont
Is it actually possible to load ConfigurationOfSeaside30 in PharoKernel ? I've tried using https://ci.lille.inria.fr/pharo/job/Pharo%20Kernel%20Gofer/6/artifact/PharoKernel-Gofer-1.4.zipbut it seems to do nothing... Note that builds #7 and #8 .zip seem to contain a PharoCore and not PharoKernel.

Re: [Pharo-project] [squeak-dev] Re: Optimizing RunArray

2011-08-02 Thread Nicolas Cellier
One thing that super upset me is that TextEditor is still using the old selectors #readKeyboard #keyboard #keyboardPeek instead of using events. Look #handleInteraction:fromEvent: It still has this hackish code to transform event driven Morph into st-80-polling-ParagraphEditor-friendly-Sensor-like

[Pharo-project] something we lost with events [was Optimizing RunArray]

2011-08-02 Thread Nicolas Cellier
I've got the feeling that we've lost one feature: When you're typing super fast, characters would be inserted several at once in a st80 ParagraphEditor That typically happens when the displaying or more probably the paragraph re-composition is slow. The composition/display cycle would occur after

Re: [Pharo-project] Disable the debugger

2011-08-02 Thread Igor Stasenko
On 2 August 2011 22:04, Stéphane Ducasse stephane.duca...@inria.fr wrote: would be nice to have a class responsible for that and that slowly we get a complete system ready for this kind of deployement I think best would be to adopt this with Pharo-Kernel , since it unloads a lot of stuff and

Re: [Pharo-project] [squeak-dev] something we lost with events [was Optimizing RunArray]

2011-08-02 Thread Igor Stasenko
On 3 August 2011 03:00, Nicolas Cellier nicolas.cellier.aka.n...@gmail.com wrote: I've got the feeling that we've lost one feature: When you're typing super fast, characters would be inserted several at once in a st80 ParagraphEditor That typically happens when the displaying or more probably

[Pharo-project] Inspector limiting an object printString output

2011-08-02 Thread Igor Stasenko
In InspectorselectionPrintString it uses: text := [self selection printStringLimitedTo: 5000] which sometimes not quite adequate (sometimes i need to display more). I think it would be nicer if inspector would ask object, if it desires to limit itself (when printing in big inspection pane) and

Re: [Pharo-project] Inspector limiting an object printString output

2011-08-02 Thread Tudor Girba
+1 Doru On 3 Aug 2011, at 06:10, Igor Stasenko wrote: In InspectorselectionPrintString it uses: text := [self selection printStringLimitedTo: 5000] which sometimes not quite adequate (sometimes i need to display more). I think it would be nicer if inspector would ask object, if it

Re: [Pharo-project] building from PharoKernel

2011-08-02 Thread Pavel Krivanek
I will look at it but today I'm not neer my computer -- Pavel 2.8.2011 v 23:15, laurent laffont laurent.laff...@gmail.com: Is it actually possible to load ConfigurationOfSeaside30 in PharoKernel ? I've tried using