Well, this issue is closed in the 1.2 version.. by marcus.. with the comment
"12217"
I dont know what means that..
I can guess, this was solved..
In my case, applying the code from the inbox.. that work fine..
best.
------------------------------------
here the code:
MIMEType class>>forURIReturnMimeTypesOrNil: aURI
| ext fileName mimes |
mimes := aURI schemeIsFile
ifTrue:
[fileName := FileDirectory fullPathForURI: aURI.
self forFileNameReturnMimeTypesOrNil: fileName]
ifFalse:
[ext := aURI extension.
self forExtensionReturnMimeTypesOrNil: ext].
^mimes
MIMEType class>>forURIReturnSingleMimeTypeOrDefault: aURI
| mimes |
mimes := self forURIReturnMimeTypesOrNil: aURI.
mimes ifNil: [^MIMEType defaultStream].
^mimes first
On Fri, Feb 18, 2011 at 4:03 PM, Stéphane Ducasse
<[hidden email]> wrote:
I'm in the train so no internet access.
Tell us what should be done? It is a fix to be integrated?
> Well I find the solution in the 2797 issue. [1]
>
>
> thanks anyway
>
> [1]
http://code.google.com/p/pharo/issues/detail?id=2797
>
> On Fri, Feb 18, 2011 at 11:57 AM, Diogenes Moreira <
[hidden email]> wrote:
> Hi..
>
> that is a StandardFileStream bug or I'm loosing some thing...
> may be a versions problem..
>
> somebody can say where is implement that method.
>
>
> Best
>