How top report a fix to github of Pharo????

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

How top report a fix to github of Pharo????

CdAB63

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


attachment0 (851 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: How top report a fix to github of Pharo????

ducasse
Hi casimiro

Here is the bug tracker of Pharo.


Stef

On 20 Oct 2019, at 21:58, <[hidden email]> <[hidden email]> 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' 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

Reply | Threaded
Open this post in threaded view
|

Re: How top report a fix to github of Pharo????

tbrunz
In reply to this post by CdAB63
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

Reply | Threaded
Open this post in threaded view
|

Re: How top report a fix to github of Pharo????

Pavel Krivanek-3
BTW. fix of this issue is already part of this PR that did changes is the Catalog loading:

-- Pavel

ne 20. 10. 2019 v 22:07 odesílatel Brainstorms <[hidden email]> 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