Re: [Pharo-dev] About category

2015-05-30 Thread Cyril Ferlicot
A category is not a sub classification into the package ? A category is not to a package what a protocol is for a class ? A way to have some classification on a package. On 30 May 2015 at 21:44, stepharo steph...@free.fr wrote: Hi guys We introduced protocol for sorting methods and package for

Re: [Pharo-dev] About category

2015-05-30 Thread Sean P. DeNigris
stepharo wrote Now I have a question what is a class category? IDK what it is currently, but I wish it was a logical domain tag (or multiple) which had nothing to do with packaging ;) - Cheers, Sean -- View this message in context:

[Pharo-dev] what is a GTSpotterRecorderCategorySelectedEvent?

2015-05-30 Thread stepharo
A GTSpotterRecorderCategorySelectedEvent models the action of selecting a category in the search results. This event stores the name of the category and the number of results that were matched by the current query. Instance Variables categoryLabel:Object elementCount:

Re: [Pharo-dev] what is a GTSpotterRecorderCategorySelectedEvent?

2015-05-30 Thread Tudor Girba
Hi Stef, I am not sure I understand the question. This class records the selection of a Spotter category, not a system category. This is the thing that appears in light gray in Spotter (like Classes, Packages, ... ) Cheers Doru On Sat, May 30, 2015 at 9:51 PM, stepharo steph...@free.fr wrote:

Re: [Pharo-dev] System Morphs in OSWindows

2015-05-30 Thread Matthieu Lacaton
I am not sure I understand the first part of your mail. But as for the Raspberry application it should be possible to do it with OSWindow since SDL library seems to be supported on Raspberry. You just have to use your normal Pharo environment for your standard sized screen and you open an OSWindow

Re: [Pharo-dev] [pharo-project/pharo-core] f6306b: 50075

2015-05-30 Thread Cyril Ferlicot
Hum. I still have the issue on the version 50077 http://puu.sh/i65bE/841f437d7d.png On 30 May 2015 at 18:20, Esteban Lorenzano esteba...@gmail.com wrote: thats fixed already, in version 50077 Esteban On 30 May 2015, at 18:16, Cyril Ferlicot cyril.ferli...@gmail.com wrote: 15631 Change

Re: [Pharo-dev] [pharo-project/pharo-core] f6306b: 50075

2015-05-30 Thread Esteban Lorenzano
weird, I don’t :P On 30 May 2015, at 18:25, Cyril Ferlicot cyril.ferli...@gmail.com wrote: Hum. I still have the issue on the version 50077 http://puu.sh/i65bE/841f437d7d.png On 30 May 2015 at 18:20, Esteban Lorenzano esteba...@gmail.com wrote: thats fixed already, in version 50077

[Pharo-dev] About category

2015-05-30 Thread stepharo
Hi guys We introduced protocol for sorting methods and package for categories but we left many users of categories. I think that it would be good to finish the clean this. I'm cleaning some of the method level one. Now I have a question what is a class category? Because it does not look like

Re: [Pharo-dev] About category

2015-05-30 Thread Thierry Goubier
Le 30/05/2015 21:44, stepharo a écrit : Hi guys We introduced protocol for sorting methods and package for categories but we left many users of categories. I think that it would be good to finish the clean this. I'm cleaning some of the method level one. Now I have a question what is a class

Re: [Pharo-dev] System Morphs in OSWindows

2015-05-30 Thread stepharo
- If possible I'd like not to have to modify any Bloc code. If it is not possible then as little as possible. What is the aversion here? Bloc is still developing and since its semantics are based on old-Morphic maybe this use-case is not considered. Adding this use-case may be an opportunity

[Pharo-dev] Libgit2 and Windows vm build

2015-05-30 Thread Nicolai Hess
Latest change for libgit2 makes the Windows vm bulid failing. (See Jenkins job)

Re: [Pharo-dev] System Morphs in OSWindows

2015-05-30 Thread Ben Coman
On Sun, May 31, 2015 at 1:10 AM, Matthieu Lacaton matthieu.laca...@gmail.com wrote: I am not sure I understand the first part of your mail. On Windows I often use dual-screen (two normal size screens). Typically an application's Maximise button maximises to a single screen only. So I need to

Re: [Pharo-dev] shortcut change in pharo 50075

2015-05-30 Thread stepharo
Thanks nicolas. What we are trying to do (not easy) is to use rubric for texteditor with the idea that it will be easier to migrate to Bloc. Stef Le 30/5/15 11:45, Nicolai Hess a écrit : in pharo 50075 some shortcuts are removed (issue 15630 https://pharo.fogbugz.com/default.asp?15630

Re: [Pharo-dev] DebugAction category

2015-05-30 Thread stepharo
Oki You see when you browse the code you wonder if you should pass a class tag or a method protocol. So I will update the comment. To me category is a bit too much overloaded. Stef Le 31/5/15 07:35, Tudor Girba a écrit : Hi, This is not dead code, only the default Pharo debugger does not

Re: [Pharo-dev] DebugAction category

2015-05-30 Thread stepharo
I wrote category Return the kind of debugger action. It has nothing to do with class category or the old method category now method protocol. ^ category ifNil: [ self defaultCategory ] Stef Le 31/5/15 07:35, Tudor Girba a écrit : Hi, This is not dead code, only the default Pharo

Re: [Pharo-dev] DebugAction category

2015-05-30 Thread Tudor Girba
Hi, This is not dead code, only the default Pharo debugger does not make use of it. It is used in the GTDebugger for helping group actions by their category. The terminology is taken from Glamour (GLMAction#category). Cheers, Doru On Sun, May 31, 2015 at 7:24 AM, stepharo steph...@free.fr

[Pharo-dev] SyntaxErrorNotification api question

2015-05-30 Thread stepharo
Hi marcus we SyntaxErrorNotificationsetClass: aClass category: aCategory code: codeString doitFlag: aBoolean errorMessage: errorString location: anInteger inClass := aClass. category := aCategory. code := codeString. doitFlag := aBoolean. messageText := errorString.

Re: [Pharo-dev] About category

2015-05-30 Thread stepharo
Now I have a question what is a class category? IDK what it is currently, but I wish it was a logical domain tag (or multiple) which had nothing to do with packaging ;) So sleeping on it I realized that we use category has a tag that embeds the package name. So I will only clean the method

Re: [Pharo-dev] About category

2015-05-30 Thread stepharo
thanks thierry (just getting up and I realised that too). Stef Le 30/5/15 22:13, Thierry Goubier a écrit : Le 30/05/2015 21:44, stepharo a écrit : Hi guys We introduced protocol for sorting methods and package for categories but we left many users of categories. I think that it would be good

Re: [Pharo-dev] what is a GTSpotterRecorderCategorySelectedEvent?

2015-05-30 Thread stepharo
OK I'm trying to see how to make category less spread as a term because after a while it is confusing. so could you make the class comment a bit more precise. Stef Le 30/5/15 21:56, Tudor Girba a écrit : Hi Stef, I am not sure I understand the question. This class records the selection of

Re: [Pharo-dev] System Morphs in OSWindows

2015-05-30 Thread Matthieu Lacaton
I think it would be better to name these for their function rather than the package: Nautilus openInExternalWindowOnPackage: nil. GTPlayground external openInExternalWindow. ThreadSafeTranscript external openInExternalWindow. I don't know if its a workable idea, but

Re: [Pharo-dev] System Morphs in OSWindows

2015-05-30 Thread Matthieu Lacaton
Oh by the way for some reasons, the quality of the video is really crappy if you watch it directly from Dropbox but if you download it, it is much better. I don't know why :/ 2015-05-30 10:16 GMT+02:00 Matthieu Lacaton matthieu.laca...@gmail.com: I think it would be better to name these for

[Pharo-dev] any idea about the broken Nautilus tests?

2015-05-30 Thread stepharo
Hi I wanted to integrate some changes but when I run the tests I get a bunch of broken tests in Nautilus. Stef

Re: [Pharo-dev] untypeable key combination

2015-05-30 Thread stepharo
For now could not we use when: send: to: instead of a block in key registration? Stef

Re: [Pharo-dev] untypeable key combination

2015-05-30 Thread stepharo
Can anyone help me with this. I need a way to break the circular references. a class is referenced by its compiled method the compiled method is referenced by the method context the method context is reference by a block context (the keymapping action) the block context is

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

2015-05-30 Thread GitHub
Branch: refs/tags/50075 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] f6306b: 50075

2015-05-30 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: f6306b7d4c4b6efe1384e2c455ee4ac70e4e0d28 https://github.com/pharo-project/pharo-core/commit/f6306b7d4c4b6efe1384e2c455ee4ac70e4e0d28 Author: Jenkins Build Server bo...@pharo-project.org Date:

[Pharo-dev] [pharo-project/pharo-core] f8ff5e: 50076

2015-05-30 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: f8ff5e61c8a5e137104b0f30c77857acdb644863 https://github.com/pharo-project/pharo-core/commit/f8ff5e61c8a5e137104b0f30c77857acdb644863 Author: Jenkins Build Server bo...@pharo-project.org Date:

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

2015-05-30 Thread GitHub
Branch: refs/tags/50076 Home: https://github.com/pharo-project/pharo-core

Re: [Pharo-dev] any idea about the broken Nautilus tests?

2015-05-30 Thread stepharo
I fixed them.! Le 30/5/15 09:44, stepharo a écrit : Hi I wanted to integrate some changes but when I run the tests I get a bunch of broken tests in Nautilus. Stef

Re: [Pharo-dev] untypeable key combination

2015-05-30 Thread Nicolai Hess
2015-05-30 9:49 GMT+02:00 stepharo steph...@free.fr: For now could not we use when: send: to: instead of a block in key registration? I will check. Thank you for your response. Stef

Re: [Pharo-dev] untypeable key combination

2015-05-30 Thread Nicolai Hess
2015-05-30 2:20 GMT+02:00 Eliot Miranda eliot.mira...@gmail.com: Hi Nicolai, On Mon, May 18, 2015 at 12:28 PM, Nicolai Hess nicolaih...@web.de wrote: 2015-05-15 9:55 GMT+02:00 Nicolai Hess nicolaih...@web.de: We now use a new class for the space-key as key combination. fixed and

Re: [Pharo-dev] About compileSilently

2015-05-30 Thread Nicolai Hess
2015-05-28 21:14 GMT+02:00 Thierry Goubier thierry.goub...@gmail.com: Le 28/05/2015 20:40, Nicolai Hess a écrit : 2015-05-28 16:55 GMT+02:00 Thierry Goubier thierry.goub...@gmail.com mailto:thierry.goub...@gmail.com: 2015-05-28 16:49 GMT+02:00 Nicolai Hess nicolaih...@web.de

Re: [Pharo-dev] FogBugz (Case [Issue]13315) Morphic - NewList without icons

2015-05-30 Thread Aliaksei Syrel
No, I don't have both of them. It would be great to have a Jenkins job. With increasing amount of tests it already becomes complicated to check stability. Cheers, Alex On May 30, 2015 7:41 AM, stepharo steph...@free.fr wrote: Aliaksei do you have a configuration of Brick? I can do one and

[Pharo-dev] styling in spotter preview broken ?

2015-05-30 Thread Nicolai Hess
since 50064 some methods lost syntaxhighlight when previewed in spotter. This does not happens for all methods (but most of them) and I can not see a pattern. Styling is lost on short and or long methods

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

2015-05-30 Thread GitHub
Branch: refs/tags/50077 Home: https://github.com/pharo-project/pharo-core

[Pharo-dev] [pharo-project/pharo-core] 64aaee: 50077

2015-05-30 Thread GitHub
Branch: refs/heads/5.0 Home: https://github.com/pharo-project/pharo-core Commit: 64aaee4df4aab40ef01edff500f795063f37a6d9 https://github.com/pharo-project/pharo-core/commit/64aaee4df4aab40ef01edff500f795063f37a6d9 Author: Jenkins Build Server bo...@pharo-project.org Date:

Re: [Pharo-dev] FogBugz (Case [Issue]13315) Morphic - NewList without icons

2015-05-30 Thread stepharo
Ok I will build one when I have time. Do you have an account on ci.inria.fr? If not please request one for the Pharo project. Le 30/5/15 11:29, Aliaksei Syrel a écrit : No, I don't have both of them. It would be great to have a Jenkins job. With increasing amount of tests it already becomes

[Pharo-dev] shortcut change in pharo 50075

2015-05-30 Thread Nicolai Hess
in pharo 50075 some shortcuts are removed (issue 15630 https://pharo.fogbugz.com/default.asp?15630 Remove duplicate shortcut definition (TextEditors actionMap vs KM)) This is by intention. They were defined in text editors action maps and with the Keymapping framework (pragma keymap). Those were

Re: [Pharo-dev] FogBugz (Case [Issue]13315) Morphic - NewList without icons

2015-05-30 Thread Aliaksei Syrel
EXCELLENT Thanks:) Alain also shows me the logic of the PopUp with the event listener and this event listeners are great. Now I imagine that we can do inplace edit of the list items (for example for changing the protocols we will be able to double click on them :). Exactly! Event

[Pharo-dev] TxText first line top offset

2015-05-30 Thread Aliaksei Syrel
Hi, is there a way to force first line in TxText to have custom offset from the top? Thanks Cheers, Alex

Re: [Pharo-dev] untypeable key combination

2015-05-30 Thread Sean P. DeNigris
Nicolai Hess wrote I don't fully understand what to change. If Spur will be ready for the next release, why don't we just wait... - Cheers, Sean -- View this message in context: http://forum.world.st/untypeable-key-combination-tp4794607p4829511.html Sent from the Pharo Smalltalk

Re: [Pharo-dev] untypeable key combination

2015-05-30 Thread Nicolai Hess
2015-05-30 16:01 GMT+02:00 Sean P. DeNigris s...@clipperadams.com: Nicolai Hess wrote I don't fully understand what to change. If Spur will be ready for the next release, why don't we just wait... I would like to better understand what is the problem and I am sure there is some kind of

Re: [Pharo-dev] System Morphs in OSWindows

2015-05-30 Thread Ben Coman
On Sat, May 30, 2015 at 4:16 PM, Matthieu Lacaton matthieu.laca...@gmail.com wrote: I think it would be better to name these for their function rather than the package: Nautilus openInExternalWindowOnPackage: nil. GTPlayground external openInExternalWindow.

Re: [Pharo-dev] [pharo-project/pharo-core] 443652: 50064

2015-05-30 Thread Ben Coman
On Mon, May 25, 2015 at 5:17 PM, GitHub nore...@github.com wrote: Log Message: --- 50064 15605 Update Rubric https://pharo.fogbugz.com/f/cases/15605 http://files.pharo.org/image/50/50064.zip I feel we have a hole in our process where integration of external packages

Re: [Pharo-dev] [pharo-project/pharo-core] f6306b: 50075

2015-05-30 Thread Cyril Ferlicot
15631 Change PluggableTextMorph in comment pane into a RubScrolledTextMorph via RubScrolledTextModel: The comment pane have the text in black on the Dark Theme. Do we open an issue to have the fonts in white on the dark theme in Rubric ? On 30 May 2015 at 10:21, GitHub nore...@github.com wrote:

Re: [Pharo-dev] [pharo-project/pharo-core] f6306b: 50075

2015-05-30 Thread Esteban Lorenzano
thats fixed already, in version 50077 Esteban On 30 May 2015, at 18:16, Cyril Ferlicot cyril.ferli...@gmail.com wrote: 15631 Change PluggableTextMorph in comment pane into a RubScrolledTextMorph via RubScrolledTextModel: The comment pane have the text in black on the Dark Theme. Do we