How top report a fix to github of Pharo????
Hello, As mentioned before, there´s a problem with CatalobBrawser in Pharo 8. Basically the message: createRepositoryURLtoNameMappings "Return a mapping between repositories URLs and their user names" <script: 'self createRepositoryURLtoNameMappings inspect'> |repos| repos := Dictionary new. 3 to: SystemVersion current major do: [:v | repos at: ('http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo{1}0/main' format: v asArray) put: ('Pharo{1}.0' format: v asArray)]. repos at: 'http://www.squeaksource.com/MetacelloRepository' put: 'Unsorted'. ^repos Must be fixed so it goes to: createRepositoryURLtoNameMappings "Return a mapping between repositories URLs and their user names" <script: 'self createRepositoryURLtoNameMappings inspect'> |repos| repos := Dictionary new. 3 to: SystemVersion current major do: [:v | repos at: ('http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo{1}0/main' format: (Array with: v)) put: ('Pharo{1}.0' format: (Array with: v))]. repos at: 'http://www.squeaksource.com/MetacelloRepository' put: 'Unsorted'. ^repos Or something like it without the use of asArray. I was asked to report the bug in github, but I´m not sure where. Thanx, Casimiro Barreto
Hi casimiro Here is the bug tracker of Pharo. https://github.com/pharo-project/pharo/issues Stef
On 20 Oct 2019, at 21:58, <casimiro.barreto@gmail.com> <casimiro.barreto@gmail.com> wrote:
Hello,
As mentioned before, there´s a problem with CatalobBrawser in Pharo 8. Basically the message:
createRepositoryURLtoNameMappings "Return a mapping between repositories URLs and their user names"
<script: 'self createRepositoryURLtoNameMappings inspect'> |repos| repos := Dictionary new. 3 to: SystemVersion current major do: [:v | repos at: ('http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo{1}0/main <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo%7B1%7D0/main>' format: v asArray) put: ('Pharo{1}.0' format: v asArray)]. repos at: 'http://www.squeaksource.com/MetacelloRepository' put: 'Unsorted <http://www.squeaksource.com/MetacelloRepository'%20put:%20'Unsorted>'. ^repos
Must be fixed so it goes to:
createRepositoryURLtoNameMappings "Return a mapping between repositories URLs and their user names"
<script: 'self createRepositoryURLtoNameMappings inspect'> |repos| repos := Dictionary new. 3 to: SystemVersion current major do: [:v | repos at: ('http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo{1}0/main <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo%7B1%7D0/main>' format: (Array with: v)) put: ('Pharo{1}.0' format: (Array with: v))]. repos at: 'http://www.squeaksource.com/MetacelloRepository' put: 'Unsorted <http://www.squeaksource.com/MetacelloRepository'%20put:%20'Unsorted>'. ^repos
Or something like it without the use of asArray.
I was asked to report the bug in github, but I´m not sure where.
Thanx,
Casimiro Barreto
Hi Casimiro, Since you have a coded fix, you should take a look at this web page: https://github.com/pharo-project/pharo/wiki/Contribute-a-fix-to-Pharo Alternatively, you can just enter an issue against Pharo here: https://github.com/pharo-project/pharo/issues Cheers, -Ted -- Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
BTW. fix of this issue is already part of this PR that did changes is the Catalog loading: https://github.com/pharo-project/pharo/pull/4943 <https://github.com/pharo-project/pharo/pull/4943/files> -- Pavel ne 20. 10. 2019 v 22:07 odesÃlatel Brainstorms <wild.ideas@gmail.com> napsal:
Hi Casimiro,
Since you have a coded fix, you should take a look at this web page: https://github.com/pharo-project/pharo/wiki/Contribute-a-fix-to-Pharo
Alternatively, you can just enter an issue against Pharo here: https://github.com/pharo-project/pharo/issues
Cheers, -Ted
-- Sent from: http://forum.world.st/Pharo-Smalltalk-Developers-f1294837.html
participants (4)
-
Brainstorms -
casimiro.barreto@gmail.com -
ducasse -
Pavel Krivanek