Hi, if i transmit some data from a mysql database via ajax, then all chars are missing in the result of the request. All other chars like äöü@§$ are still in the result as expected. Whats going wrong? ---------------------------------------------------------- Doc4PC IT-Vor-Ort-Service, Hauptstrasse 15, D-24850 Schuby Tel: 04621 485 194 Fax: 04621 485 196 eMail: <mailto:info-8Zvurif+njuzQB+pC5nmwQ@public.gmane.org> info-8Zvurif+njuzQB+pC5nmwQ@public.gmane.org Website: <http://www.doc4pc.de/> http://www.doc4pc.de/ Inhaber: Andreas Franke Steuernummer: 29 099 04014 Umsatzsteuer-Identifikationsnummer: DE219521670 ---------------------------------------------------------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Andreas, That is most likely not a ajax issue. But there are multiple things to take into considerations. Most likely The page encoding is not UTF-8 but some western iso, which DO include german umlauts äöü, but which do not include the euro sign , which was added only lately. So thats something you could check. Another thing you could check is how the stuff looks on the transport way. Use firebug to examine the xml / json returned by your ajax call. It can also be that your serverside (e.g. php) that handles this just chokes on the Euro and removes it. Hope any of those suggestions helps. .: Fabian _____ From: grbounce-_Pkz0AUAAAB9-VKt0-RY8LHUELm10l3Y=fabian.lange=web.de@googlegroups.com [mailto:grbounce-_Pkz0AUAAAB9-VKt0-RY8LHUELm10l3Y=fabian.lange=web.de-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] On Behalf Of Andreas Franke Sent: Donnerstag, 27. Dezember 2007 00:11 To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Subject: [Rails-spinoffs] Missing (Euro-Sign) Hi, if i transmit some data from a mysql database via ajax, then all chars are missing in the result of the request. All other chars like äöü@§$ are still in the result as expected. Whats going wrong? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Hi Fabian, the ajax-response that I get from the server is exactly this: {"data":[{"Artikel_ID":"1","Bezeichnung":"Test","Beschreibung":"asdf \u0080 @ \u00e4\u00f6\u00fc\u00df"}]} But after an evalJSON the value of data.beschreibung is: "asdf @ äöüß" I checked this with firebug and Im still confused Andreas _____ Von: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org [mailto:rubyonrails-spinoffs@googlegroups.com] Im Auftrag von Fabian Lange Gesendet: Donnerstag, 27. Dezember 2007 01:02 An: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Betreff: [Rails-spinoffs] Re: Missing (Euro-Sign) Hi Andreas, That is most likely not a ajax issue. But there are multiple things to take into considerations. Most likely The page encoding is not UTF-8 but some western iso, which DO include german umlauts äöü, but which do not include the euro sign , which was added only lately. So thats something you could check. Another thing you could check is how the stuff looks on the transport way. Use firebug to examine the xml / json returned by your ajax call. It can also be that your serverside (e.g. php) that handles this just chokes on the Euro and removes it. Hope any of those suggestions helps. .: Fabian _____ From: grbounce-_Pkz0AUAAAB9-VKt0-RY8LHUELm10l3Y=fabian.lange=web.de@googlegroups.com [mailto:grbounce-_Pkz0AUAAAB9-VKt0-RY8LHUELm10l3Y=fabian.lange=web.de-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] On Behalf Of Andreas Franke Sent: Donnerstag, 27. Dezember 2007 00:11 To: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Subject: [Rails-spinoffs] Missing (Euro-Sign) Hi, if i transmit some data from a mysql database via ajax, then all chars are missing in the result of the request. All other chars like äöü@§$ are still in the result as expected. Whats going wrong? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Christophe Porteneuve
2007-Dec-27 11:05 UTC
[Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)
Andreas Franke a écrit :> the ajax-response that I get from the server is exactly this:Don''t look at the body of the response, look at the HEADERS. Specifically, the Content-Type header. It is most likely some ISO-8859-x, instead of either ISO-8859-15 (which includes ) or better yet, UTF-8 (which includes everything!). Character encoding issues always boil down to people not having a full-spectrum UTF-8 encoding in their app which they should. -- Christophe Porteneuve aka TDD tdd-x+CfDp/qHev2eFz/2MeuCQ@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Andreas Franke
2007-Dec-27 14:27 UTC
AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)
Hi Christophe, so I took a look at headers. This is my response-header: Date Thu, 27 Dec 2007 14:18:55 GMT Server: Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.3 X-Powered-By: PHP/5.2.3 Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Content-Length: 205 Keep-Alive: timeout=5, max=66 Connection: Keep-Alive Content-Type: text/html; charset=UTF-8 And this is the request-header: Host: appbuilder.loc User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11 Accept: text/javascript, text/html, application/xml, text/xml, */* Accept-Language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive X-Requested-With: XMLHttpRequest X-Prototype-Version: 1.6.0 Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Referer: http://appbuilder.loc/builds/prototype/forms/Artikel_mastertable.php Content-Length: 14 Cookie: PHPSESSID=dbab2f26862af16f45246d7b58d1ac16 Pragma: no-cache Cache-Control: no-cache Still can''t find the Prob, because all seems to be UTF-8 encoded... Thanks for helping. Andreas> -----Urspr�ngliche Nachricht----- > Von: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org [mailto:rubyonrails- > spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] Im Auftrag von Christophe Porteneuve > Gesendet: Donnerstag, 27. Dezember 2007 12:06 > An: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > Betreff: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing � (Euro- > Sign) > > > Andreas Franke a �crit : > > the ajax-response that I get from the server is exactly this: > > Don''t look at the body of the response, look at the HEADERS. > Specifically, the Content-Type header. It is most likely some > ISO-8859-x, instead of either ISO-8859-15 (which includes �) or better > yet, UTF-8 (which includes everything!). > > Character encoding issues always boil down to people not having a > full-spectrum UTF-8 encoding in their app� which they should. > > -- > Christophe Porteneuve aka TDD > tdd-x+CfDp/qHev2eFz/2MeuCQ@public.gmane.org > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Nicolás Sanguinetti
2007-Dec-27 14:39 UTC
Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)
Check the database. Probably your database is not saving things in UTF-8. Best, -Nicolas On Dec 27, 2007 12:27 PM, Andreas Franke <info@doc4pc.de> wrote:> > Hi Christophe, > so I took a look at headers. > > This is my response-header: > > Date Thu, 27 Dec 2007 14:18:55 GMT > Server: Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.3 > > X-Powered-By: PHP/5.2.3 > Expires: Thu, 19 Nov 1981 08:52:00 GMT > Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 > Pragma: no-cache > Content-Length: 205 > Keep-Alive: timeout=5, max=66 > Connection: Keep-Alive > Content-Type: text/html; charset=UTF-8 > > > And this is the request-header: > > Host: appbuilder.loc > User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11 > Accept: text/javascript, text/html, application/xml, text/xml, */* > Accept-Language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3 > Accept-Encoding: gzip,deflate > Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 > Keep-Alive: 300 > Connection: keep-alive > X-Requested-With: XMLHttpRequest > X-Prototype-Version: 1.6.0 > Content-Type: application/x-www-form-urlencoded; charset=UTF-8 > Referer: http://appbuilder.loc/builds/prototype/forms/Artikel_mastertable.php > Content-Length: 14 > Cookie: PHPSESSID=dbab2f26862af16f45246d7b58d1ac16 > Pragma: no-cache > Cache-Control: no-cache > > Still can't find the Prob, because all seems to be UTF-8 encoded... > > Thanks for helping. > > Andreas > > > -----Urspr�ngliche Nachricht----- > > Von: rubyonrails-spinoffs@googlegroups.com [mailto:rubyonrails- > > spinoffs@googlegroups.com] Im Auftrag von Christophe Porteneuve > > Gesendet: Donnerstag, 27. Dezember 2007 12:06 > > An: rubyonrails-spinoffs@googlegroups.com > > Betreff: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing � (Euro- > > Sign) > > > > > > > Andreas Franke a �crit : > > > the ajax-response that I get from the server is exactly this: > > > > Don't look at the body of the response, look at the HEADERS. > > Specifically, the Content-Type header. It is most likely some > > ISO-8859-x, instead of either ISO-8859-15 (which includes �) or better > > yet, UTF-8 (which includes everything!). > > > > Character encoding issues always boil down to people not having a > > full-spectrum UTF-8 encoding in their app� which they should. > > > > -- > > Christophe Porteneuve aka TDD > > tdd@tddsworld.com > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Andreas Franke
2007-Dec-27 15:24 UTC
AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)
Hi Nicolas,> Check the database. Probably your database is not saving things in UTF-8.All Data in the databas is stored in utf-8. if check the responseText all is fine! But after that i''m doing the evalJSON on the responseText and after i did this the � (\u0080) is lost the evalJSON seems to be the prob. Before evalJSON: "Beschreibung":"asdf \u0080 @ \u00e4\u00f6\u00fc\u00df" After evalJSON: "asdf � @ ����" Andreas> > On Dec 27, 2007 12:27 PM, Andreas Franke <info-8Zvurif+njuzQB+pC5nmwQ@public.gmane.org> wrote: > > > > Hi Christophe, > > so I took a look at headers. > > > > This is my response-header: > > > > Date Thu, 27 Dec 2007 14:18:55 GMT > > Server: Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e > mod_autoindex_color PHP/5.2.3 > > > > X-Powered-By: PHP/5.2.3 > > Expires: Thu, 19 Nov 1981 08:52:00 GMT > > Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre- > check=0 > > Pragma: no-cache > > Content-Length: 205 > > Keep-Alive: timeout=5, max=66 > > Connection: Keep-Alive > > Content-Type: text/html; charset=UTF-8 > > > > > > And this is the request-header: > > > > Host: appbuilder.loc > > User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; > rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11 > > Accept: text/javascript, text/html, application/xml, text/xml, */* > > Accept-Language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3 > > Accept-Encoding: gzip,deflate > > Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 > > Keep-Alive: 300 > > Connection: keep-alive > > X-Requested-With: XMLHttpRequest > > X-Prototype-Version: 1.6.0 > > Content-Type: application/x-www-form-urlencoded; charset=UTF-8 > > Referer: > http://appbuilder.loc/builds/prototype/forms/Artikel_mastertable.php > > Content-Length: 14 > > Cookie: PHPSESSID=dbab2f26862af16f45246d7b58d1ac16 > > Pragma: no-cache > > Cache-Control: no-cache > > > > Still can''t find the Prob, because all seems to be UTF-8 encoded... > > > > Thanks for helping. > > > > Andreas > > > > > -----Urspr?ngliche Nachricht----- > > > Von: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org [mailto:rubyonrails- > > > spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] Im Auftrag von Christophe Porteneuve > > > Gesendet: Donnerstag, 27. Dezember 2007 12:06 > > > An: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org > > > Betreff: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing ? > (Euro- > > > Sign) > > > > > > > > > > > Andreas Franke a ?crit : > > > > the ajax-response that I get from the server is exactly this: > > > > > > Don''t look at the body of the response, look at the HEADERS. > > > Specifically, the Content-Type header. It is most likely some > > > ISO-8859-x, instead of either ISO-8859-15 (which includes ?) or better > > > yet, UTF-8 (which includes everything!). > > > > > > Character encoding issues always boil down to people not having a > > > full-spectrum UTF-8 encoding in their app? which they should. > > > > > > -- > > > Christophe Porteneuve aka TDD > > > tdd-x+CfDp/qHev2eFz/2MeuCQ@public.gmane.org > > > > > > > > > > > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Jon Trelfa
2007-Dec-27 15:46 UTC
Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)
On Dec 27, 2007 10:24 AM, Andreas Franke <info@doc4pc.de> wrote:> > Hi Nicolas, > > > Check the database. Probably your database is not saving things in > UTF-8. > > All Data in the databas is stored in utf-8. if check the responseText all > is > fine! But after that i'm doing the evalJSON on the responseText and after > i > did this the � (\u0080) is lost the evalJSON seems to be the prob. > > > Before evalJSON: "Beschreibung":"asdf \u0080 @ \u00e4\u00f6\u00fc\u00df" > > After evalJSON: "asdf � @ ����" > > AndreasThere have been times where I've found that using something like rawurlencode to escape that character - then unescaping it with JavaScript does the trick. Certain special characters get hung up for some reason (I have a particularly hard time with Cyrillic characters) Jon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs@googlegroups.com To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Robert Durgin
2007-Dec-27 19:08 UTC
Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing € (Euro-Sign)
Switch to USD, much better currency! On Dec 27, 2007, at 10:24 AM, "Andreas Franke" <info-8Zvurif+njuzQB+pC5nmwQ@public.gmane.org> wrote:> > Hi Nicolas, > >> Check the database. Probably your database is not saving things in >> UTF-8. > > All Data in the databas is stored in utf-8. if check the > responseText all is > fine! But after that i''m doing the evalJSON on the responseText and > after i > did this the � (\u0080) is lost the evalJSON seems to be the prob. > > > Before evalJSON: "Beschreibung":"asdf \u0080 @ \u00e4\u00f6\u00fc > \u00df" > > After evalJSON: "asdf � @ ����" > > Andreas > > >> >> On Dec 27, 2007 12:27 PM, Andreas Franke <info-8Zvurif+njuzQB+pC5nmwQ@public.gmane.org> wrote: >>> >>> Hi Christophe, >>> so I took a look at headers. >>> >>> This is my response-header: >>> >>> Date Thu, 27 Dec 2007 14:18:55 GMT >>> Server: Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e >> mod_autoindex_color PHP/5.2.3 >>> >>> X-Powered-By: PHP/5.2.3 >>> Expires: Thu, 19 Nov 1981 08:52:00 GMT >>> Cache-Control: no-store, no-cache, must-revalidate, post-check=0, >>> pre- >> check=0 >>> Pragma: no-cache >>> Content-Length: 205 >>> Keep-Alive: timeout=5, max=66 >>> Connection: Keep-Alive >>> Content-Type: text/html; charset=UTF-8 >>> >>> >>> And this is the request-header: >>> >>> Host: appbuilder.loc >>> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; de; >> rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11 >>> Accept: text/javascript, text/html, application/xml, text/xml, */* >>> Accept-Language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3 >>> Accept-Encoding: gzip,deflate >>> Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 >>> Keep-Alive: 300 >>> Connection: keep-alive >>> X-Requested-With: XMLHttpRequest >>> X-Prototype-Version: 1.6.0 >>> Content-Type: application/x-www-form-urlencoded; charset=UTF-8 >>> Referer: >> http://appbuilder.loc/builds/prototype/forms/Artikel_mastertable.php >>> Content-Length: 14 >>> Cookie: PHPSESSID=dbab2f26862af16f45246d7b58d1ac16 >>> Pragma: no-cache >>> Cache-Control: no-cache >>> >>> Still can''t find the Prob, because all seems to be UTF-8 encoded... >>> >>> Thanks for helping. >>> >>> Andreas >>> >>>> -----Urspr?ngliche Nachricht----- >>>> Von: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org [mailto:rubyonrails- >>>> spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org] Im Auftrag von Christophe Porteneuve >>>> Gesendet: Donnerstag, 27. Dezember 2007 12:06 >>>> An: rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org >>>> Betreff: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing ? >> (Euro- >>>> Sign) >>>> >>>> >>> >>>> Andreas Franke a ?crit : >>>>> the ajax-response that I get from the server is exactly this: >>>> >>>> Don''t look at the body of the response, look at the HEADERS. >>>> Specifically, the Content-Type header. It is most likely some >>>> ISO-8859-x, instead of either ISO-8859-15 (which includes ?) or >>>> better >>>> yet, UTF-8 (which includes everything!). >>>> >>>> Character encoding issues always boil down to people not having a >>>> full-spectrum UTF-8 encoding in their app? which they should. >>>> >>>> -- >>>> Christophe Porteneuve aka TDD >>>> tdd-x+CfDp/qHev2eFz/2MeuCQ@public.gmane.org >>>> >>>> >>> >>>> >>> >> >> > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Andrew Dupont
2007-Dec-27 21:23 UTC
Re: AW: [Rails-spinoffs] Re: AW: [Rails-spinoffs] Re: Missing EURO (Euro-Sign)
On Dec 27, 1:08 pm, Robert Durgin <rbdur...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Switch to USD, much better currency!Not in terms of buying power. ;-) Cheers, Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---