krono / squeaksource3

Seaside-based Monticello code repository for Squeak, Pharo and GemStone
0 stars 0 forks source link

Gofer instructions use #repository: instead of #url: #82

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Under "Getting the code", the gofer instructions show:

Gofer new
    repository: 'http://ss3.gemstone.com/ss/...

when it should be Gofer new url: 'http://...

#repository: gives an MNU

Original issue reported on code.google.com by damien.p...@gmail.com on 31 Jan 2012 at 2:50

GoogleCodeExporter commented 9 years ago
Why do you think so?

My Seaside-one-click image contains Gofer>>repository:

Gofer>>repository: aRepository
    "Add aRepository to the repository configuration. If there is already a repository defined in the global configuration with that URL take this one instead."

    | repository |
    repository := MCRepositoryGroup default repositories
        detect: [ :each | each = aRepository ]
        ifNone: [ aRepository ].
    repositories addLast: repository

with the author line: "lr 1/11/2010 10:34 - repositories - 135 senders - 11 
implementors - in no change set".

Original comment by tobiasp...@gmail.com on 31 Jan 2012 at 2:54

GoogleCodeExporter commented 9 years ago
I got the error in a brand new 1.4 image, maybe a Gofer version problem.

aRepository is a String, but each (in the code you pasted) is a MCHttpRepository

Original comment by damien.p...@gmail.com on 31 Jan 2012 at 3:11

GoogleCodeExporter commented 9 years ago
Ok, it should be #url: then, thank you.

Original comment by tobiasp...@gmail.com on 31 Jan 2012 at 3:14

GoogleCodeExporter commented 9 years ago

Original comment by tobiasp...@gmail.com on 31 Jan 2012 at 3:22

GoogleCodeExporter commented 9 years ago
As of April 2012, this is implemented, somewhere in SqueakSource-Core-topa.7?

Original comment by tobiasp...@gmail.com on 26 Apr 2012 at 12:53

GoogleCodeExporter commented 9 years ago
It seems that this never got pushed to the site.

Original comment by sean.p.d...@gmail.com on 1 Feb 2013 at 9:37

GoogleCodeExporter commented 9 years ago
no, the site update is still pending

Original comment by tobiasp...@gmail.com on 22 Feb 2013 at 3:39