Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Bad accent causes problem

From: patrick::philipot::laposte::net at: 11-Oct-2003 10:25

Hi List, Publishing photos on Internet, I got problems with filename with accent. For example, a photo named "Ebouriffée.jpg" displays well under Windows, but give me an "HTTP error 404" under Linux. I thought I could rename the file using lowercase or uppercase or even a combinaison of the two, but I can't.
>> f: %Ebouriffée.jpg
== %Ebouriffée.jpg
>> lowercase f
== %ebouriffée.jpg
>> uppercase f
== %EBOURIFFÉE.JPG
>> lowercase uppercase f
== %ebouriffée.jpg Do I have to write a function to handle those "àéèïôùç" or is there some trick out there? Regards Patrick