Issue 6324 in pharo: For Pharo 1.4 disable StartupPreferences only for Windows

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

Issue 6324 in pharo: For Pharo 1.4 disable StartupPreferences only for Windows

pharo
Status: FixReviewNeeded
Owner: marianopeck
CC: [hidden email],  [hidden email]
Labels: Type-Bug Milestone-1.4

New issue 6324 by marianopeck: For Pharo 1.4 disable StartupPreferences  
only for Windows
http://code.google.com/p/pharo/issues/detail?id=6324

In Pharo 2.0 this has been really fixed but we cannot backport everything.  
So I propose to just disable the broken behavior for windows:


buildActionList

     "First, we look at image folder,
     then we look at preferences folder,
     and finally at general preferences folder "

     ^  OrderedCollection new
         add: [ self lookInImageDirectory ];
         add: [self lookInPreferencesFolder ];
         add: [self lookInGeneralPreferencesFolder ];
         yourself.



_______________________________________________
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 6324 in pharo: For Pharo 1.4 disable StartupPreferences only for Windows

pharo

Comment #1 on issue 6324 by marianopeck: For Pharo 1.4 disable  
StartupPreferences only for Windows
http://code.google.com/p/pharo/issues/detail?id=6324

Thanks esteban.... here it is the correct one:

buildActionList

     "First, we look at image folder,
     then we look at preferences folder,
     and finally at general preferences folder "

     | directories |
     self flag: #todo. "I'm disabling this sequence because lookup of  
preferences folder is broken in windows.
NOTE: this has been fixed in Pharo 2.0"
     directories := OrderedCollection new.
     directories add: [ self lookInImageDirectory ].
     (OSPlatform current platformFamily = #Windows)
         ifFalse: [
             directories add: [self lookInPreferencesFolder ].
             directories add: [self lookInGeneralPreferencesFolder ].
         ].
     ^ directories


_______________________________________________
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 6324 in pharo: For Pharo 1.4 disable StartupPreferences only for Windows

pharo
Updates:
        Status: FixToInclude

Comment #2 on issue 6324 by [hidden email]: For Pharo 1.4 disable  
StartupPreferences only for Windows
http://code.google.com/p/pharo/issues/detail?id=6324

I don't like it, but I'll include it :)


_______________________________________________
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 6324 in pharo: For Pharo 1.4 disable StartupPreferences only for Windows

pharo
Updates:
        Status: Integrated

Comment #3 on issue 6324 by [hidden email]: For Pharo 1.4 disable  
StartupPreferences only for Windows
http://code.google.com/p/pharo/issues/detail?id=6324

in 14452


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