Re: [Pharo-dev] Refactoring and traits…

2015-11-23 Thread Nicolai Hess
2015-11-23 9:01 GMT+01:00 Yuriy Tymchuk : > But is there an issue or not? Because I was not able to find it. If there > is no issue I will create one. > please create one. There are two other issues about RB and Traits but they don't match this issue - I think > > Cheers.

Re: [Pharo-dev] Change in String>>#expandMacros between Pharo v4 and v5

2015-11-23 Thread Nicolai Hess
2015-11-23 21:53 GMT+01:00 Esteban A. Maringolo : > Hi, > > I'm testing the new glorp port in Pharo 5 and got some failing errors > related with #expandMacros that don't fail in Pharo 4. > > Does somebody know why this works in Pharo 4 but not in Pharo 5? > Maybe this one:

Re: [Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-22 Thread Nicolai Hess
gt; That will prevent reads and writes from and to the changes / sources > files. Of course, that doesn’t solve the problem in general. > > Cheers, > Max > > > > On 21 Nov 2015, at 20:09, Nicolai Hess <nicolaih...@gmail.com> wrote: > > > > recompiling a

Re: [Pharo-dev] Differences Compiler vs. OpalCompiler (or parser)

2015-11-21 Thread Nicolai Hess
2015-11-20 22:57 GMT+01:00 Eliot Miranda <eliot.mira...@gmail.com>: > Hi Nicolai, > > On Fri, Nov 20, 2015 at 1:37 PM, Nicolai Hess <nicolaih...@gmail.com> > wrote: > >> GTDummyExamples class >> d: anInteger >> >> >> > anI

[Pharo-dev] recompiling all classes and traits is slow (at least on windows)

2015-11-21 Thread Nicolai Hess
recompiling all classes -> ~ 2 minutes recompiling all traits -> ~ 13 minutes is there any way to recompile all without removing and adding all trait methods for trait users ? Because this touches the changes file (although recompiling shouldn't change the source) and touching the changes file

Re: [Pharo-dev] opal optimize to do limits

2015-11-21 Thread Nicolai Hess
2015-11-20 9:58 GMT+01:00 Eliot Miranda <eliot.mira...@gmail.com>: > Hi Nicolai, > > On Nov 20, 2015, at 12:33 AM, Nicolai Hess <nicolaih...@gmail.com> wrote: > > Thanks eliot, Clement, > > but if the argument for to:do: is not an expression but one of the method

Re: [Pharo-dev] Cleanup of debug requests API

2015-11-21 Thread Nicolai Hess
2015-11-21 10:43 GMT+01:00 Max Leske : > > On 21 Nov 2015, at 10:22, Denis Kudriashov wrote: > > Ok. > I just read Nicolai comment. > So question: is SyntaxErrorDebugger used anywhere? I remove it because it > uses another way how to open debugger > > >

Re: [Pharo-dev] Cleanup of debug requests API

2015-11-21 Thread Nicolai Hess
Or if you type in a syntactically incorrect expression in inspectors search field: 2015-11-21 10:55 GMT+01:00 Nicolai Hess <nicolaih...@gmail.com>: > > > 2015-11-21 10:43 GMT+01:00 Max Leske <maxle...@gmail.com>: > >> >> On 21 Nov 2015, at 10:22, Denis Kud

Re: [Pharo-dev] Opal problem causing crash but old compiler works [WAS] Re: [Vm-dev] Debugging VM crash, INVALID RECEIVER / a(n) bad class ??

2015-11-20 Thread Nicolai Hess
ting. 17057 <https://pharo.fogbugz.com/f/cases/17057/BackPort-Pharo4-13854-frameSize-calculated-wrongly-for-lineSegmentsDo> BackPort Pharo4: 13854 frameSize calculated wrongly for #lineSegmentsDo: > Cheers, > > On Wed, Nov 18, 2015 at 6:43 AM, Nicolai Hess <nicolaih...@gmail.com> >

Re: [Pharo-dev] Recovering _lost_ changes

2015-11-20 Thread Nicolai Hess
2015-11-20 23:01 GMT+01:00 Yuriy Tymchuk : > > > On 20 Nov 2015, at 17:52, Skip Lentz wrote: > > > > Hi, > > > >> On Nov 20, 2015, at 5:27 PM, Yuriy Tymchuk > wrote: > >> is Epicea integrated already? > > > > No, not yet I think.

[Pharo-dev] Unable to accept changes in SyntaxErrorDebugger -> DNU: receiver of asSymbol is nil

2015-11-20 Thread Nicolai Hess
Any idea how to solve this: 16961 Unable to accept changes in SyntaxErrorDebugger -> DNU: receiver of asSymbol is nil and 16723

[Pharo-dev] Differences Compiler vs. OpalCompiler (or parser)

2015-11-20 Thread Nicolai Hess
GTDummyExamples class d: anInteger MessageNotUnderstood> ^ 1 + anInteger The old Parser complains about the class name "MessageNotUnderstood" used as a pragma argument without being a string or symbol Opal does not complain Is Opals behavior intended ? >From

[Pharo-dev] opal optimize to do limits

2015-11-19 Thread Nicolai Hess
What is the purpose of replacing expressions, used as limits in a to:do: call with by a new temporary variable? For example: OCOpalExamples>>#exampleToDoArgumentLimitIsExpression the code is exampleToDoArgumentLimitIsExpression | count sum | count := 10. sum := 0. 1 to: count -

Re: [Pharo-dev] opal optimize to do limits

2015-11-19 Thread Nicolai Hess
1. 1 to: tmp2 do: [ :tmp3 | tmp1 := tmp1 + tmp3 ]. ^ tmp1" > Le 19/11/15 22:14, Nicolai Hess a écrit : > > What is the purpose of replacing expressions, used as limits in a >> to:do: call with by a new temporary variable? >> >> For example: >> >> O

Re: [Pharo-dev] News about FastTable

2015-11-19 Thread Nicolai Hess
2015-11-18 10:53 GMT+01:00 Ferlicot D. Cyril : > Hi everyone! > > I just wanted to say that I added a first version of Tree in FastTable > and I corrected some bugs. > > If someone want to try it and give some feedback you can see some > examples on the latest Pharo 5 in

Re: [Pharo-dev] Opal problem causing crash but old compiler works [WAS] Re: [Vm-dev] Debugging VM crash, INVALID RECEIVER / a(n) bad class ??

2015-11-18 Thread Nicolai Hess
g :-) nicolai > > Cheers, > > On Wed, Nov 18, 2015 at 6:43 AM, Nicolai Hess <nicolaih...@gmail.com> > wrote: > >> >> >> 2015-11-17 14:21 GMT+01:00 Mariano Martinez Peck <marianop...@gmail.com>: >> >>> Hi Nicolai, >>> Thanks for sha

Re: [Pharo-dev] Resolving issue 16760

2015-11-18 Thread Nicolai Hess
2015-11-04 21:01 GMT+01:00 monty : > > https://pharo.fogbugz.com/f/cases/16760/Dictionary-breaks-when-comparing-identity-and-non-identity-dictionaries > > The newest fix that changes Dictionary>>= and related = methods to use > species == tests can go in. or I can redo the

Re: [Pharo-dev] Opal problem causing crash but old compiler works [WAS] Re: [Vm-dev] Debugging VM crash, INVALID RECEIVER / a(n) bad class ??

2015-11-18 Thread Nicolai Hess
Nov 17, 2015 at 6:36 AM, Nicolai Hess <nicolaih...@gmail.com> > wrote: > >> >> >> 2015-11-17 1:35 GMT+01:00 Mariano Martinez Peck <marianop...@gmail.com>: >> >>> >>> >>> On Mon, Nov 16, 2015 at 8:41 PM, Nicolai Hess <nicola

Re: [Pharo-dev] Opal problem causing crash but old compiler works [WAS] Re: [Vm-dev] Debugging VM crash, INVALID RECEIVER / a(n) bad class ??

2015-11-17 Thread Nicolai Hess
2015-11-17 1:35 GMT+01:00 Mariano Martinez Peck <marianop...@gmail.com>: > > > On Mon, Nov 16, 2015 at 8:41 PM, Nicolai Hess <nicolaih...@gmail.com> > wrote: > >> >> >> 2015-11-16 22:16 GMT+01:00 Mariano Martinez Peck <marianop...@gmail.com&

Re: [Pharo-dev] Opal problem causing crash but old compiler works [WAS] Re: [Vm-dev] Debugging VM crash, INVALID RECEIVER / a(n) bad class ??

2015-11-16 Thread Nicolai Hess
gister: t17. > t3 add: 'Successfully added ' , t17 selector , '/' , t17 context. > t4 crLog: t3 last. > ^ t3 > > > > > > > > > > > >> >> On Mon, Nov 16, 2015 at 2:48 PM, Mariano Martinez Peck < >> marianop...@gmail.com> wrote: >&

Re: [Pharo-dev] [Pharo-project] [Vm-dev] Cog issue? Re: StandardFileStream size limit?

2015-11-13 Thread Nicolai Hess
2015-11-12 14:15 GMT+01:00 Nicolai Hess <nicolaih...@gmail.com>: > > > 2015-11-12 14:10 GMT+01:00 Dimitris Chloupis <kilon.al...@gmail.com>: > >> latest vm has issues with OSProcess stdout the last time I checked on >> Yosemite. I would not call it sta

Re: [Pharo-dev] keyboard events in the windows VM

2015-11-13 Thread Nicolai Hess
2015-11-13 8:33 GMT+01:00 Nicolai Hess <nicolaih...@gmail.com>: > > > 2015-11-12 16:43 GMT+01:00 EuanM <euan...@gmail.com>: > >> I'm happy to test on Windows 7, and on Raspbian Linux >> >> (Although Raspbian Linux runs Pharo UI events slo-o-owly, so I

Re: [Pharo-dev] Ubuntu fullscreen problems

2015-11-12 Thread Nicolai Hess
) windowmanager may not support the wm-protocol we used in our fix) see http://bugs.squeak.org/view.php?id=7833 I am sure, as soon as this change is in the squeak vm sources, estaban can pick this change for the pharo vm. > > Thanks! > > Jeff > > > On Sun, Nov 8, 20

Re: [Pharo-dev] [Pharo-project] [Vm-dev] Cog issue? Re: StandardFileStream size limit?

2015-11-12 Thread Nicolai Hess
2015-11-12 6:14 GMT+01:00 Jimmie Houchin : > This still fails three and a half years later with a default Pharo 4 vm > and image. > :( > > I spent a few hours trying to diagnose why Pharo was telling me that I > file I knew existed didn't exist. Very frustrating trying to

Re: [Pharo-dev] keyboard events in the windows VM

2015-11-12 Thread Nicolai Hess
s in which humans use keyboard tasks ] . > > we should > >capture the results ; > >and feed them into automated the regression tests results database > > ] > > > > > > On 12 November 2015 at 08:35, Nicolai Hess <nicolaih...@gm

Re: [Pharo-dev] [Pharo-project] [Vm-dev] Cog issue? Re: StandardFileStream size limit?

2015-11-12 Thread Nicolai Hess
s it is working with the "official" stable vm ? > > On Thu, Nov 12, 2015 at 2:55 PM Nicolai Hess <nicolaih...@gmail.com> > wrote: > >> 2015-11-12 6:14 GMT+01:00 Jimmie Houchin <jlhouc...@gmail.com>: >> >>> This still fails three and a half years later

Re: [Pharo-dev] [Pharo-users] Changing playground and monticello shortcuts

2015-11-11 Thread Nicolai Hess
2015-11-11 10:45 GMT+01:00 Peter Uhnák : > Hi, > > currently to open a Playground via shortcut one has to type +o+w, > that's because it used to open Workspace. > However since it now opens Playground the shortcut is no longer > appropriate. > > So can we change it to +o+p? >

Re: [Pharo-dev] It looks like I broke the category menu...

2015-11-11 Thread Nicolai Hess
2015-11-11 15:16 GMT+01:00 stepharo : > Hi > > It looks like I broke the category menu... when I folded the > CategoryWidget into its superclass. > I will try to find why? > class side method with menu/shortcut pragma! > > Stef > >

Re: [Pharo-dev] Cannot use command-P in inspector in the debugger

2015-11-08 Thread Nicolai Hess
2015-11-08 22:33 GMT+01:00 Alain Plantec via Pharo-dev < pharo-dev@lists.pharo.org>: > > > -- Weitergeleitete Nachricht -- > From: Alain Plantec > To: Pharo Development List > Cc: > Date: Sun, 8 Nov 2015 22:32:17 +0100 >

Re: [Pharo-dev] Ubuntu fullscreen problems

2015-11-08 Thread Nicolai Hess
e time to look at Squeak bug tracker? > If it is not in fogbugz it does not exist. Try to simplify our live > instead of making it more complex. > > Stef > not a problem. I opened the bug on squeak and I keep track on it. > > If you need someone to test a solution on Ubuntu 15.10, let m

[Pharo-dev] Nautilus with fasttable and transparenticons

2015-11-05 Thread Nicolai Hess
Since we use FastTable in Nautilus, if you drag a Nautilus window, some icons become transparent. (protocol icons for "private" and "initialization"). This is because fast table scales all icons to size 16@16 and this will convert 8bit forms to 16 bit forms and this may lose transparency

Re: [Pharo-dev] Case 16725: why no reaction?

2015-11-02 Thread Nicolai Hess
2015-11-02 16:49 GMT+01:00 Nicolai Hess <nicolaih...@gmail.com>: > > > 2015-11-02 16:30 GMT+01:00 webwarrior <r...@webwarrior.ws>: > >> https://pharo.fogbugz.com/f/cases/16725 >> >> Almost a month has passed >> >> > - there are many ot

Re: [Pharo-dev] Case 16725: why no reaction?

2015-11-02 Thread Nicolai Hess
2015-11-02 16:30 GMT+01:00 webwarrior : > https://pharo.fogbugz.com/f/cases/16725 > > Almost a month has passed > > - there are many other things to do - we don't have a real spec maintainer - the issue has milestone "Later" - ~ 300 for milestone pharo 5 if you can create

[Pharo-dev] loading bloc or brick

2015-10-31 Thread Nicolai Hess
Current Bloc or Brick bleedingEdge or development, can not be loaded in Pharo 5 : This package depends on the following classes: BlMorphicCompatibleBlocSpace You must resolve these dependencies before you will be able to load these definitions: BlOSWindowMorphicCompatibleBlocSpace

Re: [Pharo-dev] what is this method?

2015-10-30 Thread Nicolai Hess
2015-10-30 12:49 GMT+01:00 Esteban Lorenzano : > I saw this today: > > Class>>#private_subclass: t instanceVariableNames: f classVariableNames: d > poolDictionaries: s category: cat > > 1) method name is not according to conventions (should be >

Re: [Pharo-dev] Write (rubric) text changes back to the object in GTInspector

2015-10-30 Thread Nicolai Hess
smit > to: #preview; > andShow: [ :a | a morph > title: 'Preview'; >display: [ morph ] ]. > > ^ browser openOn: 'some text' > > cool! > On Fri, Oct 30, 2015 at 11:47 AM, Nicolai Hess <nicolaih...@gmail.com> > wrote: > >> >&g

Re: [Pharo-dev] Write (rubric) text changes back to the object in GTInspector

2015-10-30 Thread Nicolai Hess
2015-10-30 16:32 GMT+01:00 Andrei Chis : > Hi, > > You can try this: > > composite := GLMCompositePresentation new. > composite pharoPlayground > title: 'Script'; > variableBindings: [ { #x -> 1. #y -> 2 } ]. > composite > openOn: 'x+y'. > > For the moment

Re: [Pharo-dev] Ubuntu fullscreen problems

2015-10-28 Thread Nicolai Hess
2015-10-28 15:35 GMT+01:00 Peter Uhnák : > I think there must be some incompatibility between Pharo and the host > window manager/desktop environment. > > On Debian/dwm (I am using Ubuntu VM) I can reproduce (1), but not (2). > > There is however interesting behavior... if I

Re: [Pharo-dev] #50409 regression

2015-10-28 Thread Nicolai Hess
2015-10-28 15:33 GMT+01:00 stepharo : > Hi > > I typed 'Take' and source code with it. > - the progress bar does not update > > - more important when I click on the message browser I get a DNU ast > > autoSelect: aSelector > textModel readSelectionBlock: [ :text | >

Re: [Pharo-dev] #50409 regression

2015-10-28 Thread Nicolai Hess
ows-a-MNU-if-the-search-term-was-found-in-a-class-comment> 2015-10-28 16:19 GMT+01:00 stepharo <steph...@free.fr>: > I see this is annoying that comments are not polymorphic. > yes, but comments are text and methods are code > > Stef > > Le 28/10/15 11:05, Nicol

Re: [Pharo-dev] tests should be green

2015-10-27 Thread Nicolai Hess
class and this gets written into thet package. But now, I can not reproduce this anymore. > On 14 Oct 2015, at 17:16, Nicolai Hess <nicolaih...@web.de> wrote: > > Please, someone can look at the Collections-Tests > The ReleaseTest complains about > > testLocalMethodsOf

Re: [Pharo-dev] Broken examples (GLMExamplesBrowser) issue 16111

2015-10-25 Thread Nicolai Hess
2015-10-14 17:09 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > I think some examples in GLMExamplesBrowser In Pharo5.0 are broken. > > see fogbugz issue > "16111 Collections being passed as a whole into blocks, instead of each > individual object" > &g

[Pharo-dev] fix our tools

2015-10-25 Thread Nicolai Hess
since we use rubric in our core tools, I see some major regressions: 16706 TextModel with Rubric Widgets don't update TextModels selection 16705

Re: [Pharo-dev] Help with a bug fix

2015-10-25 Thread Nicolai Hess
2015-10-25 0:58 GMT+02:00 Ferlicot D. Cyril : > Le 24/10/2015 15:27, Ferlicot D. Cyril a écrit : > > Hi, > > > > I begun to fix a bug, I have a working fix (I think). But I am not > > satisfy by a method I made. I think the method can be much better but I > > don't have

Re: [Pharo-dev] Broken examples (GLMExamplesBrowser) issue 16111

2015-10-25 Thread Nicolai Hess
ssue for this? >> >> Doru >> >> On Sun, Oct 25, 2015 at 12:54 PM, Nicolai Hess <nicolaih...@gmail.com> >> wrote: >> >>> >>> >>> 2015-10-14 17:09 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: >>> >>>> I think

[Pharo-dev] missing critics results (maybe important for the issue validation)

2015-10-23 Thread Nicolai Hess
Would be nice if someone can take a look at this issue 16814 Critics Browser seriously broken

Re: [Pharo-dev] missing critics results (maybe important for the issue validation)

2015-10-23 Thread Nicolai Hess
2015-10-23 14:35 GMT+02:00 Christophe Demarey <christophe.dema...@inria.fr>: > > Le 23 oct. 2015 à 11:02, Nicolai Hess a écrit : > > > Would be nice if someone can take a look at this issue > > 16814 > <https://pharo.fogbugz.com/f/cases/16814/Critics-Browser-se

Re: [Pharo-dev] editing incomplete snippet bring RB DNU and this is annoying.

2015-10-22 Thread Nicolai Hess
2015-10-22 22:14 GMT+02:00 stepharo : > Hi guys > > the new syntax hilighter is breaking the fun. > > | s > s := Set new. > > try to add the missing | > What's the problem ? I can add the missing | What pharo version do you use? > > Stef > >

Re: [Pharo-dev] interesting recursive out-of-memory error

2015-10-18 Thread Nicolai Hess
Thanks eliot. Did you run anything that consumed much memory? Platform linux? 2015-10-18 2:24 GMT+02:00 Eliot Miranda : > Hi All, > > this in a bleeding edge Pharo 5 image which had been left standing > with a Playground open which, when I clicked on it after

[Pharo-dev] review needed : step through package list by package first character (Nautilus package pane)

2015-10-16 Thread Nicolai Hess
see issue 15184 Systembrowser package navigation inconsistent behavior I think this change would be a good addition. It makes it easier to find a package resp. navigate by typing the key for the package name first character. please try it out and give feedback.

Re: [Pharo-dev] tests should be green

2015-10-15 Thread Nicolai Hess
tion for all, trait and non trait methods. We could try to solve this by adding a #reject: rPackageSet methods reject:#isFromTrait . > -> we need to write a script to delete all the wrong methods. > > > On 14 Oct 2015, at 17:16, Nicolai Hess <nicolaih...@we

[Pharo-dev] Broken examples (GLMExamplesBrowser) issue 16111

2015-10-14 Thread Nicolai Hess
I think some examples in GLMExamplesBrowser In Pharo5.0 are broken. see fogbugz issue "16111 Collections being passed as a whole into blocks, instead of each individual object" The confusion about "display-block" and "format-block" is sorted out, so we could close the issue. But it seems the

[Pharo-dev] tests should be green

2015-10-14 Thread Nicolai Hess
Please, someone can look at the Collections-Tests The ReleaseTest complains about testLocalMethodsOfTheClassShouldNotBeRepeatedInItsTraits (These are all Test-subclasses that use traits, but all(!) trait method are compiled in the class instead, this happened after someone moved the Test packages

Re: [Pharo-dev] taskbarThumbnail leaks memory?

2015-10-14 Thread Nicolai Hess
2015-10-11 22:21 GMT+02:00 Henrik Nergaard : > > > > > It looks like the taskbarThumbnails might be leaking memory. > > When moving the mouse across the taskbar viewing the different thumbnails > the memory usage increases by quite a lot (viewed in the taskmanager >

Re: [Pharo-dev] Yet another Athens font thread

2015-10-11 Thread Nicolai Hess
t; Do something to fix font. Repeat 4-7. If fix is "fake" fonts will be > broken.. > On Oct 9, 2015 10:31 PM, "Nicolai Hess" <nicolaih...@web.de> wrote: > >> >> >> 2015-10-08 18:05 GMT+02:00 Aliaksei Syrel <alex.sy...@gmail.com>: >> >

Re: [Pharo-dev] Problems with a large block

2015-10-10 Thread Nicolai Hess
2015-10-08 23:45 GMT+02:00 Eliot Miranda <eliot.mira...@gmail.com>: > Hi Nicolai, > > On Thu, Oct 8, 2015 at 2:27 PM, Nicolai Hess <nicolaih...@web.de> wrote: > >> Hello Eliot, and thanks for your time. >> >> >> In our (pharo) implementation

Re: [Pharo-dev] Problems with a large block

2015-10-08 Thread Nicolai Hess
2015-10-08 1:30 GMT+02:00 Eliot Miranda <eliot.mira...@gmail.com>: > Hi Nicolai, > > On Wed, Oct 7, 2015 at 2:13 PM, Nicolai Hess <nicolaih...@web.de> wrote: > >> >> >> 2015-10-07 16:49 GMT+02:00 Marcus Denker <marcus.den...@inria.fr>: >>

Re: [Pharo-dev] Problems with a large block

2015-10-08 Thread Nicolai Hess
2015-10-08 9:39 GMT+02:00 Eliot Miranda <eliot.mira...@gmail.com>: > Hi Nicolai, > > On Thu, Oct 8, 2015 at 12:09 AM, Nicolai Hess <nicolaih...@web.de> wrote: > >> >> >> 2015-10-08 1:30 GMT+02:00 Eliot Miranda <eliot.mira...@gmail.com>: >>

Re: [Pharo-dev] Yet another Athens font thread

2015-10-08 Thread Nicolai Hess
How did you fix it? Am 08.10.2015 17:06 schrieb "Aliaksei Syrel" <alex.sy...@gmail.com>: > Hi > > It looks like I fixed that weird text rendering problem... Just get the > latest Athens-Cairo. > > Cheers, > Alex > > On Mon, Aug 3, 2015 at 9:32

Re: [Pharo-dev] Problems with a large block

2015-10-07 Thread Nicolai Hess
2015-10-07 16:49 GMT+02:00 Marcus Denker : > > > On 07 Oct 2015, at 15:49, Marco Naddeo wrote: > > > > Hi, > > > > I have some problems with the large block at bottom: > > > > -sending the message argumentNames gives me an empty array #() > > -sending

[Pharo-dev] FogBugz-Filter

2015-10-06 Thread Nicolai Hess
Someone changed the fogbugz filter "Fixed To Review" now it shows the same results like "fixed upstream", how can it be changed it back?

Re: [Pharo-dev] [Pharo-users] Better Code Completion

2015-10-06 Thread Nicolai Hess
Am 04.10.2015 23:53 schrieb "Peter Uhnák" : > > This is both rant and list of questions/notes/observations... > > ...but first of all: > do Smalltalkers not like code completion? Because the one in Pharo is really poor and not only that nobody is doing anything about it, but

Re: [Pharo-dev] [Pharo-users] Better Code Completion

2015-10-06 Thread Nicolai Hess
2015-10-06 10:31 GMT+02:00 Yuriy Tymchuk <yuriy.tymc...@me.com>: > > On 06 Oct 2015, at 09:09, Nicolai Hess <nicolaih...@web.de> wrote: > > > Am 04.10.2015 23:53 schrieb "Peter Uhnák" <i.uh...@gmail.com>: > > > > This is both rant and list

Re: [Pharo-dev] Latest changes broke Icons

2015-10-02 Thread Nicolai Hess
2015-10-02 19:40 GMT+02:00 Torsten Bergmann : > > 4. I can not open the settings in the latest image anymore because the > icons >are tried to retrieve from Github using a HTTPS connection. > > That is really bad, I am working behind a proxy too.

Re: [Pharo-dev] Querying the accessors of a variable

2015-10-01 Thread Nicolai Hess
2015-10-01 11:18 GMT+02:00 Henrik Nergaard : > Hi, > > Is there a simple way to query a variable to check how many methods that > access it? (just want to know the size) > > This works, but it is quite slow. > (Morph whichSelectorsAccess: #owner) size > Morph

Re: [Pharo-dev] Code completion in comment pane and Pillar

2015-10-01 Thread Nicolai Hess
2015-09-30 23:36 GMT+02:00 p...@highoctane.be : > Completion in the comment pane is a major PITA for me. > > There are times when it makes sense, but not that often. > > Phil > > On Wed, Sep 30, 2015 at 9:56 PM, Peter Uhnak wrote: > >> Hi, >> >> Some time

Re: [Pharo-dev] If all Pharo projects were on GitHub...

2015-10-01 Thread Nicolai Hess
2015-10-01 6:33 GMT+02:00 Jan Vrany : > On Mon, 2015-09-28 at 16:48 -0700, Dale Henrichs wrote: > > The big issue for git and windows (in general) is that there is a 255 > > character limit on the paths for files I recently pruned some > > file names for Metacello (on

Re: [Pharo-dev] 16666 CI validation Failure misreported as Success

2015-09-30 Thread Nicolai Hess
2015-09-30 3:16 GMT+02:00 Ben Coman : > Of the eight issues currently "Resolved (Fix Reviewed By monkey)" > which passed validation successfully, three seem to actually be failures. > That is, Fogbugz shows SUCCESS when the validation report shows FAILURE. > > * 16577 Random

Re: [Pharo-dev] If all Pharo projects were on GitHub...

2015-09-29 Thread Nicolai Hess
2015-09-29 14:02 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > > > 2015-09-29 10:14 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: > >> >> Yes! Thanks! >> >> Can you run a makefile under Windows? I can prepare one which calls and >

Re: [Pharo-dev] If all Pharo projects were on GitHub...

2015-09-29 Thread Nicolai Hess
2015-09-29 14:27 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > > > 2015-09-29 14:02 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > >> >> >> 2015-09-29 10:14 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: >> >>> >>>

Re: [Pharo-dev] If all Pharo projects were on GitHub...

2015-09-29 Thread Nicolai Hess
2015-09-29 14:38 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: > > 2015-09-29 14:34 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > >> >> >> 2015-09-29 14:27 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: >> >>> >>

Re: [Pharo-dev] If all Pharo projects were on GitHub...

2015-09-29 Thread Nicolai Hess
2015-09-29 10:14 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: > > > 2015-09-29 9:39 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > >> >> >> 2015-09-29 7:05 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: >> >>>

Re: [Pharo-dev] [review needed] speed up RBClassNotReferencedRule

2015-09-27 Thread Nicolai Hess
2015-08-26 10:25 GMT+02:00 Marcus Denker : > Hi, > > Review needed for > > > https://pharo.fogbugz.com/f/cases/16074/Is-RBClassNotReferencedRule-200x-slower-in-Pharo-4-vs-Pharo-3 > > Speedup can be checked with: > > rule:=RBClassNotReferencedRule new. >

Re: [Pharo-dev] - 250 * 1.5 is not the same as 250 * 1.5

2015-09-25 Thread Nicolai Hess
2015-09-24 22:39 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: > Le 24/09/2015 09:11, Nicolai Hess a écrit : > >> >> >> 2015-09-24 8:19 GMT+02:00 Peter Uhnák <i.uh...@gmail.com >> <mailto:i.uh...@gmail.com>>: >> >> >

Re: [Pharo-dev] SHRBTextStyler and workspace/playground variables

2015-09-25 Thread Nicolai Hess
2015-09-24 12:06 GMT+02:00 Andrei Chis : > Hi, > > Currently SHRBTextStyler does not highlight variables in the playground. > This could be added by extending SHRBTextStyler >>#resolveStyleFor: with > > workspace > ifNotNil: [(workspace hasBindingOf: aVariableNode

Re: [Pharo-dev] - 250 * 1.5 is not the same as 250 * 1.5

2015-09-25 Thread Nicolai Hess
2015-09-24 22:39 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: > Le 24/09/2015 09:11, Nicolai Hess a écrit : > >> >> >> 2015-09-24 8:19 GMT+02:00 Peter Uhnák <i.uh...@gmail.com >> <mailto:i.uh...@gmail.com>>: >> >> >

Re: [Pharo-dev] - 250 * 1.5 is not the same as 250 * 1.5

2015-09-24 Thread Nicolai Hess
2015-09-24 8:19 GMT+02:00 Peter Uhnák : > > - 250 * 1.5 returns -2.25 > > why is this valid syntax? > I don't know if this is valid syntax (I always wondered that there is one place in PointTest, that is not compilable with old compiler but compiles fine with opal). But the

[Pharo-dev] reviews needed (collection of rubric fixes)

2015-09-23 Thread Nicolai Hess
Some reviews needed for latest fixes I added to Rubric repository: Issue 16622 Merge latest rubric fixes(and subcases). btw the monkey does not check the issue 16622 (all subcases are resolved and a configuration is provided, did I miss something?) nicolai

Re: [Pharo-dev] SyntaxError: parentheses; cascades and yourself (Opal vs. old compilers parser)

2015-09-17 Thread Nicolai Hess
2015-09-17 1:18 GMT+02:00 John Brant <br...@refactoryworkers.com>: > On 9/16/2015 10:34 AM, Ben Coman wrote: > >> On Wed, Sep 16, 2015 at 4:56 PM, Nicolai Hess <nicolaih...@web.de> wrote: >> >>> The following method compiles with Opal: >>> >>

Re: [Pharo-dev] SyntaxError: parentheses; cascades and yourself (Opal vs. old compilers parser)

2015-09-17 Thread Nicolai Hess
e "this evalulates first, to 'anObject' ", so we send " ; yourself", a cascaded messages with only one message to "anObject". > > > > Thierry > > > 2015-09-16 15:12 GMT+02:00 Thierry Goubier <thierry.goub...@gmail.com>: > >> >> &

Re: [Pharo-dev] Rubric/Event handling issue?

2015-09-17 Thread Nicolai Hess
2015-09-17 10:35 GMT+02:00 Stephan Eggermont : > ping > > > On 15-09-15 17:49, Stephan Eggermont wrote: > >> There is an interesting bad interaction between my drag-and-drop code >> and Rubric. It kills all Rubric editors at the same time, so it looks >> to me like a problem

[Pharo-dev] SyntaxError: parentheses; cascades and yourself (Opal vs. old compilers parser)

2015-09-16 Thread Nicolai Hess
The following method compiles with Opal: createRedMorph ^ (self new color:Color red); yourself but gives a syntax error with the old compilers parser createRedMorph ^ (self new color:Color red)End of block expected -> ; yourself removing the parenthesis of course works for both. Who

Re: [Pharo-dev] SyntaxError: parentheses; cascades and yourself (Opal vs. old compilers parser)

2015-09-16 Thread Nicolai Hess
Arrg, sorry Yuri, this (too) isn't from QualityAssistance, but DependencyAnalyzer 2015-09-16 15:05 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > OK, I think Sven is right and a cascade needs at least one message send > > "self ; yourself" > > doesn't wor

[Pharo-dev] Nautilus package search "broken"

2015-09-15 Thread Nicolai Hess
Needs review : https://pharo.fogbugz.com/f/cases/16523 I just provided a possible solution, but I don't really use the package search. Some feedback is needed. nicolai

[Pharo-dev] call "compress file " from the FileList

2015-09-12 Thread Nicolai Hess
There was a bug on compress file (see issue https://pharo.fogbugz.com/f/cases/10235/StandardFileStream-compressFile-can-t-create-new-compressed-file ) This is fixed know for Pharo 4.0, anyone knows why we can not call "compress file" anymore in Pharo 5.0 ?

Re: [Pharo-dev] Strategies with Nautilus announcements

2015-09-12 Thread Nicolai Hess
2015-09-09 14:32 GMT+02:00 Yuriy Tymchuk : > Hi, > > as NautilusMethodSelected contains also an information about protocol, > class, package; > NautilusProtocolSelected contains an information about class and package; > . > . > . > > I’ve inherited NautilusClassSelected from

Re: [Pharo-dev] issue with large file path on windows

2015-09-10 Thread Nicolai Hess
d you have to choose the image in this dialog. (If you have only one image file in the current directory, this image *is* found, this is because the windows vm searches the current directory for a single .image file) Sorry for that, I'll fix it. nicolai 2015-09-04 22:19 GMT+02:00 Nicolai Hess

Re: [Pharo-dev] FreeType hinting: any way to get a grayscale version for the subpixel rendering?

2015-09-10 Thread Nicolai Hess
Try Setting -> Appeareance -> Use Free type ... -> Monitor type "CRT" 2015-09-10 12:51 GMT+02:00 p...@highoctane.be : > Is there a way to hint without having the subpixels rendered with the RGB > artifacts? > Just getting grayscale for the font? > > I ask because it is

Re: [Pharo-dev] FreeType hinting: any way to get a grayscale version for the subpixel rendering?

2015-09-10 Thread Nicolai Hess
his freetype setting) > > Any command I can type in a workspace|playground in case the dropdown > doesn't do anything? > > FreeTypeSettings current subPixelAntiAliasing: false. FreeTypeCache current removeAll. World restoreMorphicDisplay > Phil > > On Thu, S

Re: [Pharo-dev] chunk file format (unrecoverable changes)

2015-09-10 Thread Nicolai Hess
Now that this is fixed, should we (is it possible?) fix the changes file? 2015-09-06 21:56 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > Do we have a documentation about the format of > - class definitions > - methods > - class comments > for the changes file ? > &g

Re: [Pharo-dev] TextAttributes in source code or class comment?

2015-09-08 Thread Nicolai Hess
2015-09-08 11:03 GMT+02:00 Martin Dias <tinchod...@gmail.com>: > On Sat, Sep 5, 2015 at 1:10 PM, Nicolai Hess <nicolaih...@web.de> wrote: > > The same for the ]lang[ tag (see issue 15750) > > Ok. But I still don't know how to add a url to a method's source code >

Re: [Pharo-dev] Nautilus strange pattern

2015-09-08 Thread Nicolai Hess
a new one. 2015-09-08 1:50 GMT+02:00 Ben Coman <b...@openinworld.com>: > On Tue, Sep 8, 2015 at 5:32 AM, Nicolai Hess <nicolaih...@web.de> wrote: > > We should make sure to unregister to all announcement when the window is > > closed. > > +1. Nautilus seems to le

Re: [Pharo-dev] Did no find yet a way to reproduce QA concurrent access

2015-09-07 Thread Nicolai Hess
Just open Nautilus on class "Model" and add an instance. 2015-09-07 0:56 GMT+02:00 Yuriy Tymchuk : > Also, when if this kind of error happens again, can you please fuel it out > and sent it to me? Having a stack can be helpful in understanding. > > Uko > > > On 06 Sep

Re: [Pharo-dev] Did no find yet a way to reproduce QA concurrent access

2015-09-07 Thread Nicolai Hess
"and add an instance *variable*" :) 2015-09-07 12:01 GMT+02:00 Nicolai Hess <nicolaih...@web.de>: > > Just open Nautilus on class "Model" and add an instance. > > > > 2015-09-07 0:56 GMT+02:00 Yuriy Tymchuk <yuriy.tymc...@me.com>: > >&

Re: [Pharo-dev] ensure: and assignments RB Rule

2015-09-07 Thread Nicolai Hess
*Now* I understand this rule. 2015-09-02 3:40 GMT+02:00 Eliot Miranda <eliot.mira...@gmail.com>: > > > On Tue, Sep 1, 2015 at 1:29 PM, Nicolai Hess <nicolaih...@web.de> wrote: > >> Thank you all for your response, >> now the interesting question is, wh

Re: [Pharo-dev] Nautilus strange pattern

2015-09-07 Thread Nicolai Hess
We should make sure to unregister to all announcement when the window is closed. (Or is there any reason or situation in which nautilus can properly work after the window is closed?) 2015-09-06 10:41 GMT+02:00 stepharo : > Hi > > I'm trying to understand what there is a need

Re: [Pharo-dev] chunk file format (unrecoverable changes)

2015-09-07 Thread Nicolai Hess
2015-09-07 20:10 GMT+02:00 Eliot Miranda <eliot.mira...@gmail.com>: > > > On Sun, Sep 6, 2015 at 12:56 PM, Nicolai Hess <nicolaih...@web.de> wrote: > >> Do we have a documentation about the format of >> - class definitions >> - methods >> - class co

[Pharo-dev] chunk file format (unrecoverable changes)

2015-09-06 Thread Nicolai Hess
Do we have a documentation about the format of - class definitions - methods - class comments for the changes file ? I am asking because some entries are using two separator "! !" and some only one "!" And we have a problem with the "Recover lost changes" browser

Re: [Pharo-dev] Rubric #mouseDown, #mouseUp and #click

2015-09-06 Thread Nicolai Hess
Does the mouseUp on JobProgressMorph work ? I always wondered how I can stop a long running task. 2015-09-02 12:25 GMT+02:00 Stephan Eggermont : > We have a few morphs where #on:#mouseDown send: aMessage to: aTarget is > used where I'd expected that to be on #click. Mostly in

Re: [Pharo-dev] TextAttributes in source code or class comment?

2015-09-05 Thread Nicolai Hess
The same for the ]lang[ tag (see issue 15750) 2015-09-05 12:06 GMT+02:00 Martin Dias : > Hi all > > On Sat, Sep 5, 2015 at 3:44 AM, Ben Coman wrote: > > On Sat, Sep 5, 2015 at 4:43 AM, Eliot Miranda > wrote: > >> > >> On Sep

<    1   2   3   4   5   6   7   8   9   10   >