Re: [Pharo-dev] request for improvements in GTInspector or debugger

2016-08-12 Thread Christophe Demarey
Hi Doru, Will the new presentation be the default one? If the new presentation will not be the default presentation for a String, it won’t be useful as we can already use the raw presentation. > Le 12 août 2016 à 06:22, Tudor Girba a écrit : > > Hi, > > Nice one. > > But, I do not want to ch

[Pharo-dev] [pharo-project/pharo-core]

2016-08-12 Thread GitHub
Branch: refs/tags/60179 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 631a5a: 60179

2016-08-12 Thread GitHub
Branch: refs/heads/6.0 Home: https://github.com/pharo-project/pharo-core Commit: 631a5a977701f9d2a35dad5c42fba3a9bd70d000 https://github.com/pharo-project/pharo-core/commit/631a5a977701f9d2a35dad5c42fba3a9bd70d000 Author: Jenkins Build Server Date: 2016-08-12 (Fri, 12 Aug 2016

Re: [Pharo-dev] request for improvements in GTInspector or debugger

2016-08-12 Thread Tudor Girba
Hi, We will change the presentation for String to use the new one :) Doru > On Aug 12, 2016, at 9:23 AM, Christophe Demarey > wrote: > > Hi Doru, > > Will the new presentation be the default one? > If the new presentation will not be the default presentation for a String, it > won’t be use

Re: [Pharo-dev] Feedback request: Editor with highlighting message-sends on mouse over

2016-08-12 Thread stepharo
Hi nicolai It is nice. I would not put the border in black. What is needed to integrate it. Stef Le 10/8/16 à 16:48, Nicolai Hess a écrit : I opened an issue 18901 Highlight message send selector on mou

Re: [Pharo-dev] Feedback request: Editor with highlighting message-sends on mouse over

2016-08-12 Thread Nicolai Hess
2016-08-12 19:09 GMT+02:00 stepharo : > Hi nicolai > > It is nice. I would not put the border in black. > > What is needed to integrate it. > I put the issue to "Resolved ", so the monkey can check. The background color is the same as for "secondary selection" and the border color is the same "muc

Re: [Pharo-dev] Feedback request: Editor with highlighting message-sends on mouse over

2016-08-12 Thread stepharo
I like the idea to use shift to activate it. Le 12/8/16 à 19:19, Nicolai Hess a écrit : 2016-08-12 19:09 GMT+02:00 stepharo >: Hi nicolai It is nice. I would not put the border in black. What is needed to integrate it. I put the issue to "Resolved ",

Re: [Pharo-dev] Feedback request: Editor with highlighting message-sends on mouse over

2016-08-12 Thread Nicolai Hess
2016-08-12 19:31 GMT+02:00 stepharo : > I like the idea to use shift to activate it. > > Ok, I 'll can change it. > Le 12/8/16 à 19:19, Nicolai Hess a écrit : > > > > 2016-08-12 19:09 GMT+02:00 stepharo : > >> Hi nicolai >> >> It is nice. I would not put the border in black. >> >> What is neede

[Pharo-dev] missing message pattern in pharo 5.0 gives misleading error message:

2016-08-12 Thread Dale Henrichs
`'|' expected` is not the error message I would expect when the message pattern is missing from a method and I try to accept in browser: | text | text '|' expected ->:= self requestPassword ifTrue: [ UIManager default requestPassword: self prompt ] ifFalse: [ UIManager

Re: [Pharo-dev] missing message pattern in pharo 5.0 gives misleading error message:

2016-08-12 Thread Nicolai Hess
2016-08-12 20:30 GMT+02:00 Dale Henrichs : > `'|' expected` is not the error message I would expect when the message > pattern is missing from a method and I try to accept in browser: > > > | text | > text '|' expected ->:= self requestPassword > ifTrue: [ UIManager default reque

Re: [Pharo-dev] missing message pattern in pharo 5.0 gives misleading error message:

2016-08-12 Thread Dale Henrichs
On 08/12/2016 11:40 AM, Nicolai Hess wrote: 2016-08-12 20:30 GMT+02:00 Dale Henrichs >: `'|' expected` is not the error message I would expect when the message pattern is missing from a method and I try to accept in browser: |

Re: [Pharo-dev] missing message pattern in pharo 5.0 gives misleading error message:

2016-08-12 Thread Nicolas Cellier
But the bar is a valid binary selector which takes a text parameter | text | text '|' expected -> := self requestPassword You seem to suggest that the parser should use formatting, presence/absence or spaces/newlines, but it never did so, it just skips/ignores spaces. The parser process as

Re: [Pharo-dev] let's talk about themes (and GLMBrickThemer)

2016-08-12 Thread Glenn Cavarlé
Hi all, just few words about theme/skin concepts in Brick. A skin defines the way a widget is internally composed. The Datepicker is a good example, you can just compare the one in iOS and the one in jQuery, they don't use the same UI components internally and provide a completely different user

Re: [Pharo-dev] missing message pattern in pharo 5.0 gives misleading error message:

2016-08-12 Thread Dale Henrichs
Actually I'm just suggesting that the error message is ambiguous and I that an error message that acknowledged the ambiguity would be useful. ... pretty simple change I would think ... If one WERE writing a method using the | message selector, the existing error messages make perfect sense. Fo