similar to: Iconv library error

Displaying 20 results from an estimated 300 matches similar to: "Iconv library error"

2006 Apr 08
5
Creating sub actions
Hi, So finally I have also decided to roll my engines on Rails. But I am kind of stuck in a situation. I understand that for every model there is a controller class. This controller class has cirtain set of methods where each method defines cirtain action to be performed. And each of this action renders cirtain UI. [The background] Now let say I have a object "Car". Apart from
2008 Mar 13
2
Google Calendar
Anyone aware of good calendar library in Ruby? I need to design a calendar similar to Google calendar. The idea is to have ability to add recurring or even infinite events as it is possible in Google calendar. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on
2006 Dec 11
2
Custom Validator
I want to add a custom validator in one of Model. For example Rails has inbuilt validation methods like validates_uniqueness_of, validates_presence_of . What I need is a similar kind of method (example: validates_line_items), that can run my custom code while saving, updating the record and can add custom error messages to the record. Please help me by suggesting how i can do this. -- Posted via
2006 Apr 12
1
Link helpers and AJAX callbacks
Hi, So after lots of efforts to understand Ruby and Rails, I am finally scratching the surface of AJAX in Rails. So here goes another problem. I am able to sucessfully call server side method using AJAX. Now I need to fill this function with something useful to return back. Now I see that only inbuilt function I can play with is "render_text". This means it simply doesn''t
2006 Oct 14
2
sending parameters with link_to_remote Ajax Request
In a panel, I have an hidden input field which is modified by a javascript function (from calendar) how can I sent the value of this input field in my link_to_remote call ? presently I just send back one parameter (an id) but I need both... <input type="hidden" name="booking[start_at]" id="f_date_s" value="booking[start_at]" /> ... <%=
2006 Apr 29
2
Unable to Make Asterisk-addons
The following occurs during make asterisk-addons. I'm ok with asterisk but debugging things like this isnt my strong point. Can anyone give me a pointer? Thanks Dan Journo [root@sip1 src]# cd asterisk-addons [root@sip1 asterisk-addons]# make make -C format_mp3 all make[1]: Entering directory `/usr/src/asterisk-addons/format_mp3' gcc -pipe -fPIC -Wall -Wstrict-prototypes
2006 Mar 23
4
Implementing nested drag and drop using scriptaculous
Hi. I have gone through the scriptaculous wiki. I am trying to implement nested drag and drop but not able to do this. The situation is like this. _____________________________ | abc | => Box1Line1 | cde | => Box1Line2 | efg | => Box1Line3 | h | => Box1Line4
2006 Feb 19
1
distributing iconv.dll
I would like to distribute Iconv for Windows with my Rails application (developing on a Mac, no experience with dlls). I threw iconv.dll and charset.dll under lib without luck. Where would I need to put them (if this is possible at all)? -- fxn PS: The reported error message is in Spanish but translated reads something like "the specified process was not found: Init_iconv".
2006 Jan 08
2
ICONV and REXML
Hi all. I''m having trouble getting REXML to play nicely with an RSS feed that uses an encoding type called WINDOWS-1250. My application works when I comment out the references to the lines that utilize the REXML library. After visiting my app and being told that Rails could not start properly, my server.log file says: FastCGI: comm with server
2010 May 20
1
rsync and the iconv-switch
Hello all, I have problems with sending data names via rsync including german characters like ??, ?, ??. The daemon running on a SLES10. The Rsync version is: 3.0.3, Protocol version:30. My Client is a Windows XP machine with Rsync: 3.0.4 (or alternative 3.0.6), Protocol version:30. For the conversion between both machines I use the ??iconv=850,UTF-8? ? switch. chcp told me that 850 is my
2008 Jan 24
1
Rsync iconv (Cygwin) (file has vanished)
I have another question. I'm not sure if this is the correct post for cygwin rsync related questions. I've compiled rsync 3.0.0pre8 under cygwin. Works splendidly and compiles cleanly. I made sure to have libiconv installed and it supports the --iconv command (at least it accepts it). I've been using rsync to test a backup of some files from a windows box to a linux box. I use
2008 Jan 03
1
Iconv translit working in every situation… but the running app!
Hi all, I scourged the web, including this ML''s archives, and did not find an answer for this. I have the following code in my Rails app: require ''iconv'' ... @@converter = Iconv.new(''ASCII//TRANSLIT'', ''UTF-8'') ... result = @@converter.iconv(text.to_s).downcase ... Now, the facts: * Inbound text is indeed valid
2008 Oct 21
1
SPSS to R conversion "error in iconv..."
Dear R users, I am trying to get R to read an .sav data file generated in SPSS 17 for Mac. Here is the command and the error message: > data = read.spss('/Users/userdir/Desktop/filename.sav') Error in iconv(names(rval), cp, "") : unsupported conversion In addition: Warning message: In read.spss("/Users/userdir/Desktop/filename.sav") :
2010 May 29
1
iconv issues with samba-3.2.15
Hello Experts: I upgraded from 3.0.25 to 3.2.15 - the compilation went thru fine but I get segmentation fault during runtime. It dumps core when function lp_load_ex (in file param/loadparm.c) calls init_iconv(). I'm using GCC 4.3.3 to compile samba. I tried google search but couldn't find anything relevant. Can somone please suggest what could be going wrong. Thanks, Marty
2009 Jun 07
1
Iconv::InvalidEncoding (""ISO-8859-1"", "UTF-8")
Hi, I''m having the error: Iconv::InvalidEncoding: invalid encoding (""ISO-8859-1"", "UTF-8") when trying to post via Mechanize. It used to work just fine, but the error appeared after (I think) upgrading to Rails 2.3.2, Ruby 1.8.7, Mechanize 0.9.2 (I upgraded a while ago and only now noticed the problem). What does it mean? Is there any way to
2008 Mar 20
1
iconv
Hi All, A quick question. I tried --iconv=. but it didn't seem to work for my friend with umlautes in his file names. In the archives I found mention of a patch iconv.diff. Is that necessary or is it now included in the source - it wasn't in my latest atches directory? Rob
2008 Feb 20
1
[PATCH] build fix without iconv support
diff --git a/clientserver.c b/clientserver.c index 2d7c28f..694a72d 100644 --- a/clientserver.c +++ b/clientserver.c @@ -806,6 +806,7 @@ static int rsync_module(int f_in, int f_out, int i, char *addr, char *host) exit_cleanup(RERR_UNSUPPORTED); } +#ifdef ICONV_OPTION if (!iconv_opt) { if (ic_send != (iconv_t)-1) { iconv_close(ic_send); @@ -816,6 +817,7 @@ static int
2013 Oct 16
0
Re: [Hivex] OS X and iconv
On Wed, Oct 16, 2013 at 01:08:02PM -0400, Alex Nelson wrote: > MacPorts' iconv works fine: > > $ file /opt/local/lib/libiconv.dylib > /opt/local/lib/libiconv.dylib: Mach-O 64-bit dynamically linked shared library x86_64 [...] > Or is the correct answer to file a complaint with Apple and commence thumb-twiddling? Heh :-) It's a bit odd that the libiconv library
2007 Dec 09
0
Iconv enviornment variable missing????
I am getting the following message: /reformatting crontab(1), please wait.../ /conv: conversion from utf8 unsupported/ I used crontab merely as an example on the command line. It is not directly a wine problem, but it does affect my operation of the wine package. I remember a few weeks ago someone posted a set of enviornment variables to set -- to instruct iconv to translate from all
2006 Apr 18
0
Need? php-iconv-?
I am experiencing a folder display problem in squirrelmail [SF issue 1471703] which is caused by messages containing a From: header whose data string matches the following regexp: =?iso-2022-jp?B?[.*]=?=[.*] It has been suggested that I require php-iconv extentions to solve this but I seem unable to locate a CentOS or RedHat-EL4 rpm providing this package. Can anyone point me to a location