Issue 4591 in pharo: Monticello problem

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

Issue 4591 in pharo: Monticello problem

pharo
Status: Accepted
Owner: [hidden email]

New issue 4591 by [hidden email]: Monticello problem
http://code.google.com/p/pharo/issues/detail?id=4591

When I try to save, I got a DNU

In this method

saveVersion
        | repo newVersion|
        self canSave ifFalse: [ ^ self ].
        repo := self repository.
        newVersion := workingCopy newVersion.
        newVersion ifNil: [ ^ self ].
        Cursor wait showWhile: [
                repo storeVersion: newVersion.
                repo storeDependencies: newVersion.
                (MCVersionInspector new version: newVersion) show]

storeDependencies doesn't seems to be implemented


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4591 in pharo: Monticello problem

pharo

Comment #1 on issue 4591 by [hidden email]: Monticello problem
http://code.google.com/p/pharo/issues/detail?id=4591

Can you tell us the scenario you did?
Version also because we always save and it works.

In my image (14077) I have

MCRepository>>storeDependencies: aVersion
        MCCacheRepository default cacheAllFileNamesDuring:
                [self cacheAllFileNamesDuring:
                        [aVersion allAvailableDependenciesDo:
                                [:dep |
                                        (self includesVersionNamed: dep info name)
                                                ifFalse: [self storeVersion: dep]]]]


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4591 in pharo: Monticello problem

pharo
Updates:
        Status: Closed

Comment #2 on issue 4591 by [hidden email]: Monticello problem
http://code.google.com/p/pharo/issues/detail?id=4591

Using a out dated version


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker