[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Stéphane Ducasse
no just recursive and without correct exit :) > On 3 Jun 2021, at 15:32, Russ Whaley wrote: > > Yes, I figured I had done something taboo :) > > On Thu, Jun 3, 2021 at 9:31 AM Gabriel Cotelli > wrote: > Probably you put a breakpoint in code that is used by the de

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Russ Whaley
Yes, I figured I had done something taboo :) On Thu, Jun 3, 2021 at 9:31 AM Gabriel Cotelli wrote: > Probably you put a breakpoint in code that is used by the debugger > infrastructure... you can use object-centric breakpoints for this use case > to break only on the presenter instance that you

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Gabriel Cotelli
Probably you put a breakpoint in code that is used by the debugger infrastructure... you can use object-centric breakpoints for this use case to break only on the presenter instance that you want to debug. On Thu, Jun 3, 2021 at 10:24 AM Russ Whaley wrote: > Well, good news, bad news. I AM abl

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Joachim Tuchel
David, I don’t think the question is whether you need breakpoints or not. You should be able to set breakpoints without these repositories. Maybe you could give a few hints at what happens when you try… Joachim > Am 03.06.2021 um 14:38 schrieb David Pennington : > > Surely, one of the bases

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread David Pennington
Surely, one of the bases of OO development is to subclass and extend existing classes? How can you code on the fly, as mentioned as one great benefit of Smalltalk, if you can’t set break points? I have lost you here. David > On 3 Jun 2021, at 08:39, Esteban Lorenzano wrote: > > I still do not

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Russ Whaley
Interesting. However, when I attempt to set a breakpoint on any code in those repos, I get a debugger failure when attempting to run my app. I’ll see if I can get a screenshot of the error message. On Thu, Jun 3, 2021 at 7:49 AM Tim Mackinnon wrote: > Following this from the sidelines - I think

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Esteban Lorenzano
On Jun 3 2021, at 1:48 pm, Tim Mackinnon wrote: > Following this from the sidelines - I think sometimes the confusion comes > from the Iceberg window showing red/detached repos that are only important if > you are actively working on Pharo itself - however they “look” important. > > I’m not su

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Tim Mackinnon
Following this from the sidelines - I think sometimes the confusion comes from the Iceberg window showing red/detached repos that are only important if you are actively working on Pharo itself - however they “look” important. I’m not sure if we have this feature request - but I’ve often thought

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-03 Thread Esteban Lorenzano
I still do not understand why you need to repository at all. you should not need it to do anything of what you are trying to do (adding extensions and setting breakpoints). Esteban On Jun 3 2021, at 12:18 am, Russ Whaley wrote: > Thanks for the info, Stephane. I was wondering also about the sour

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-02 Thread Russ Whaley
Thanks for the info, Stephane. I was wondering also about the source code as I was unable to set breakpoints on Pharo code to work without the repos. On Wed, Jun 2, 2021 at 4:18 PM Stéphane Ducasse wrote: > To fix a missing repo you follow iceberg you click on the repair menu item > of the proje

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-02 Thread Stéphane Ducasse
To fix a missing repo you follow iceberg you click on the repair menu item of the project. Iceberg will then propose some several different ways (explained) and sorted by order of probability that they will solve your problem. So if you select clone iceberg will clone pharo on your local machine.

[Pharo-users] Re: And it goes on - How do I fix a missing repository

2021-06-01 Thread Esteban Lorenzano
Hi, I am sorry, but why you need a repository to add an extension methods? To add an extension, the easiest way to open calypso and put your method in ScaledDecimal. Then you can use the menu right clicking on the method you added : The fact that you need a repository to save those changes late