Displaying 20 results from an estimated 3000 matches similar to: "Validating Umlauts"
2006 Nov 14
2
umlauts problem...
Hi,
I have a MSSQL db server which I am accessing from RoR. But
the database has a table T with a field name ("Hölle") consisting
of umlauts :( how to access this field??
Thanks,
Ram
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on
2006 Sep 19
9
Very strange: Umlauts (äöü) aren't displayed correctly in
Hi all
Take a look at the following video, please... I just'' can''t help me
anymore...
http://josh.ch/files/temp/rails_problem.mov
I''m sorry for the bad quality, it''s just a demo of Snapz Pro X 2... ;-)
But I hope you''ll see enought...
Thanks for any help.
Josh
--
Posted via http://www.ruby-forum.com/.
2006 Jul 12
7
Does anyone work with iso-8859-1 database ?
hello,
Our database is in is-8859-1, and I want to update some text fields
without success due to some accentuate characters ?? ect ...
In my html page (where the charset is iso-8859-19) my textarea
display the accentuate characters well and when the user post the form
... I thought that I just need to save it .... without success since
ruby map one byte for one character ...
So I
2006 Mar 21
2
How do I get substring of utf-8 string?
I''m trying to get substring from a utf-8 encoded string. (say, first
50 characters of the string) String#[0..49] would give me the first
50 bytes not 50 characters..
I know there is jcode library, but it only let you count number of
characters in utf-8 string.
unicode gem doesn''t seem to help much. unicode_hacks gem seem to
solve the problem, but it also seems to
2007 Apr 29
1
Chinese full-text support! Still fail-_-
Hi all,
I want to use ferrent in my website but when i input chinese words, i
have the same symptom like Chengcai. In order to fix it, i have reviewed
all the topics about chinese support in our forum and tried all the way
your guys suggested but still made any progress. i downloaded the latest
version of ferret from svn.
Thanks and regards.
captain
Chengcai He wrote:
> Hello everyone!
2005 Aug 28
7
Unicode support in FXRuby 1.6
All,
As some of you know, Jeroen has added support for Unicode strings in
the unstable development version of FOX (version 1.5). I''m trying to
plan ahead to decide how best to support this for FXRuby 1.6, but I
don''t really know anything about Ruby''s support for Unicode or i18n in
general. If you''re familiar with this topic (how/if Ruby deals with
Unicode
2005 Nov 02
4
Trouble with Umlauts
I am developing an application in German. This means I have umlauts. When I
was using rails version 0.13.1 there seemed to be no further configuration
needed for umlauts to be shown correctly. Now I have upgraded to 0.14.2 and
the umlauts are being displayed at ''?''s. I changed the encoding of the page
and it is UTF-8. I have also tried the steps listed at
2007 Jan 19
1
Trouble with Rails/Ri18n
Hi,
I am new to Ruby/Rails but totally fall in love with :D
Nonetheless, today I am totally stuck with Ri18n. I basically followed
the 10 Steps to Make Your Rails Apps Multilingual. No errors are
thrown,
the english version works as before with the freshly added <%= _('''') %>
Still, no translations are performed. Setting I18nService.instance.lang
= ''de''
2007 Mar 31
8
Problem with encoding (Umlaut: ü, ä...)
Hi there from Germany,
I just installed and set up ferret and act_as_ferret for rails. All of
them at the most recent version. The development environment is running
fine with Mac OS X. But I got problems with the productive environment
(debian).
In the (mysql-)database are few records stored, containig german umlauts
(? for example). Running a query for "k?ln" returns the correct
2006 May 07
3
Character Encoding
Hi,
I''m sure I''m doing something dumb, but...
I have an application that dynamically produces UTF8 encoded html
exclusively. This application works using webrick without a problem.
When using Mongrel 3.12.4 it looks as though the encoding is lost and
garbage appears on the string. I suppose this could also be a double
encoding, but personally, I can''t tell the
2006 Jul 22
1
(bug) auto_complete_for has no support for umlauts!
i wanted to file a bug in the rubyonrails trac, since trac is currently
broken, i am writing this here. maybe there is a solution allready:
auto_complete_for has no support for umlauts. this i a very big problem
for non-english developers out there, since almost everything searched
for contains umlauts.
* searching by umlauts is not possible
* displaying of the found entries is screwed
see
2007 Apr 19
5
Chinese full text searching by acts_as_ferret?
How to add Chinese language full text searching function by using
acts_as_ferret?
RegExpAnalyzer.new(/./,false)
this analyzer, i don''t know how to use it!
does it works like this:
user searching---->acts_as_ferret---->ferret
????
--
Posted via http://www.ruby-forum.com/.
2006 Jan 17
4
textarea problem with accentued chars
Hello, I have a problem with accentued characters return from a textarea
I have 3 simple files to show example ( below ).
index.rhml : If I put "?nial" inside the textarea, then submit to
:action => post
post.rhml : wrote
?nial
195
"\303\251nial"
//
params[:comment][:message] return => ?nial
params[:comment][:message][1] return => 195 ! ( 195 is not
2006 Feb 05
2
working with rails and unicode
I''m trying to get basic unicode support working using the "Iteration
A1" sample application from the "Agile Web Development With Rails"
book.
Following the "HowToUseUnicodeStrings" wiki document, I have made the
following changes:
config/environment.rb:
# Include your application configuration below
$KCODE = ''u''
require
2005 Mar 16
1
Re: Unicode support
How about this: we expose the known conversions of wxMBConv to wxruby
global methods. Then we create a $WXSTRING_TO_RUBY and $RUBY_TO_WXSTRING
globals that has a reference to those procs. In the ruby-string to
wxString typemap, we use ruby to invoke $WXSTRING_TO_RUBY and
$RUBY_TO_WXSTRING. That way, if people want a different method, they can
write one (even a pure-ruby one) that changes the
2010 Sep 23
2
rspec runner setting $KCODE considered harmful?
I ran across a problem today in which some code ran fine in regular
operation but failed in a test case. I scratched my head and thought "why
would running from within the test harness change the behavior of my code?"
Clearly it was the Heisenberg uncertainty principle in action! :)
I discovered the root cause was that the rspec runner is setting the magical
ruby global, $KCODE, to
2006 Jan 05
1
unicode hacks - fixes for webrick and Safari
Hello!
First, thank you Julian for the useful plugin ''unicode_hacks'' <
http://julik.textdriven.com/svn/tools/rails_plugins/unicode_hacks/>.
I have found some problems running my app in development on Webrick
and looking at it with Safari (MacOS X 10.4.3, Safari 2.0.2). Some
files are sent with different sizes (e.g. default css example, or
controls.js ), and it
2006 Jul 11
0
malformed utf-8 character error
Hi,
I am using ajax scaffold generator with charset=iso-8859-9(Turkish)...
Edit & Create buttons work correctly when there is no turkish chars in the current record. But, if there are turkish chars in any of the fields in the current row, buttons don''t work... (loading indicator simply spinning forever...)
I put the KCODE=''u'' line in
2006 Jul 22
10
Non English characters
Hi folks,
Does anyone know how to tackle Swedish letters in Rails. Am I
completely off track in thinking that it should be done using map or
regex in some clever way?
Bealach
2007 May 23
1
Memory Leak When Searching For Multilingual Keyword(s)
On Windows XP, I played the AAF demo
(svn://projects.jkraemer.net/acts_as_ferret/trunk/demo) that works
nicely with English content. However, if the keyword is non-English (no
matter whether there is any content in db), the server immediately
causes memory leak over 1GB and stops responding. The languages I tried
include:
French (utf-8)
German (utf-8)
Spanish (utf-8)
Chinese (utf-8)
Japanese