About 4.0.1

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

About 4.0.1

Stéphane Ducasse
Hi john

doubleclicking on a image does not launch anymore a new VM but try to  
load the image in a running one.
is it coming from me?

Stef


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

Re: About 4.0.1

Alexandre Bergel
I experienced the same

Alexandre


On 27 Apr 2009, at 15:04, Stéphane Ducasse wrote:

> Hi john
>
> doubleclicking on a image does not launch anymore a new VM but try to
> load the image in a running one.
> is it coming from me?
>
> Stef
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






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

Re: About 4.0.1

Stéphane Ducasse
strange enough now it does not do it anymore.
bizarre.

On Apr 27, 2009, at 3:15 PM, Alexandre Bergel wrote:

> I experienced the same
>
> Alexandre
>
>
> On 27 Apr 2009, at 15:04, Stéphane Ducasse wrote:
>
>> Hi john
>>
>> doubleclicking on a image does not launch anymore a new VM but try to
>> load the image in a running one.
>> is it coming from me?
>>
>> Stef
>>
>>
>> _______________________________________________
>> Pharo-project mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>>
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
>
> _______________________________________________
> Pharo-project mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
>


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

Re: About 4.0.1

johnmci
In reply to this post by Stéphane Ducasse
ah, well that invokes some really old code.

Technically the apple event for open file(s) in comes in, we get one  
or many files because not only can you double
click you can drag/drop multiple files onto the desktop or dock squeak  
vm icon.

We then see if the finder type file type is STim or the file suffix is

int IsImageName(char *name) {
        char *suffix;

        suffix = strrchr(name, '.');  /* pointer to last period in name */
        if (suffix == NULL) return false;
        if (strcmp(suffix, ".ima") == 0) return true;
        if (strcmp(suffix, ".image") == 0) return true;
        if (strcmp(suffix, ".IMA") == 0) return true;
        if (strcmp(suffix, ".IMAGE") == 0) return true;
        return false;
}


Now if you have created an image on windows or linux, and dragged that  
to the macintosh file system, or are pulling the image from
some non HFS+ file system we won't have a proper finder file type, and  
rely on the IsImageName.   That also applies to an image downloaded
from the internet, or images that are zipped without Apple's gzip that  
as we all know includes that __MACOSX meta-data

Er yes it should do non-case sensitive compares but this I assure  you  
is orginal legacy code written by a individual who will not be named...

The question then is what name does the image file have, and where did  
it come from?


On 27-Apr-09, at 6:04 AM, Stéphane Ducasse wrote:

> Hi john
>
> doubleclicking on a image does not launch anymore a new VM but try  
> to load the image in a running one.
> is it coming from me?
>
> Stef
>

--
=
=
=
========================================================================
John M. McIntosh <[hidden email]>
Corporate Smalltalk Consulting Ltd.  http://www.smalltalkconsulting.com
=
=
=
========================================================================




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

Re: About 4.0.1

Stéphane Ducasse

On Apr 27, 2009, at 5:43 PM, John M McIntosh wrote:

> ah, well that invokes some really old code.
>
> Technically the apple event for open file(s) in comes in, we get one  
> or many files because not only can you double
> click you can drag/drop multiple files onto the desktop or dock  
> squeak vm icon.
>
> We then see if the finder type file type is STim or the file suffix is
>
> int IsImageName(char *name) {
> char *suffix;
>
> suffix = strrchr(name, '.');  /* pointer to last period in name */
> if (suffix == NULL) return false;
> if (strcmp(suffix, ".ima") == 0) return true;
> if (strcmp(suffix, ".image") == 0) return true;
> if (strcmp(suffix, ".IMA") == 0) return true;
> if (strcmp(suffix, ".IMAGE") == 0) return true;
> return false;
> }
>
>
> Now if you have created an image on windows or linux, and dragged  
> that to the macintosh file system, or are pulling the image from
> some non HFS+ file system we won't have a proper finder file type,  
> and rely on the IsImageName.   That also applies to an image  
> downloaded
> from the internet, or images that are zipped without Apple's gzip  
> that as we all know includes that __MACOSX meta-data
>
> Er yes it should do non-case sensitive compares but this I assure  
> you is orginal legacy code written by a individual who will not be  
> named...

This is a mac file that I zipped and put on the pharo web site. So  
this is probably something along what you describe :)

>
>
> The question then is what name does the image file have, and where  
> did it come from?

http://gforge.inria.fr/frs/?group_id=1299

Stef

>
>
>
> On 27-Apr-09, at 6:04 AM, Stéphane Ducasse wrote:
>
>> Hi john
>>
>> doubleclicking on a image does not launch anymore a new VM but try  
>> to load the image in a running one.
>> is it coming from me?
>>
>> Stef
>>
>
> --
> =
> =
> =
> =
> =
> ======================================================================
> John M. McIntosh <[hidden email]>
> Corporate Smalltalk Consulting Ltd.  http://
> www.smalltalkconsulting.com
> =
> =
> =
> =
> =
> ======================================================================
>
>
>
>


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