search for: multibyte

Displaying 20 results from an estimated 337 matches for "multibyte".

2010 May 10
6
feedback on a few ActiveSupport::Multibyte patches
...drigo Rosas''s message about mb_chars.upcase not giving the expected result on 1.9, I''ve done some work in a fork to make String#mb_chars always return an instance of a proxy class, both with Ruby 1.8 and Ruby 1.9. The end result of the patch is (hopefully) to make Rails'' multibyte functionality behave the same way in 1.8.7 and 1.9.x. http://github.com/norman/rails/tree/multibyte Basically, the problem is that with current edge Rails and 1.9.x, `"café".mb_chars.upcase` will return "CAFé" rather than the expected "CAFÉ". In my changes, the prox...
2005 Apr 14
2
Using idmap_rid backend, cannot browse home directory from XP
...indd_priv_pipe_dir(297) [11340]: request location of privileged pipe [2005/04/14 10:11:15, 3] nsswitch/winbindd_user.c:winbindd_getpwnam(126) [11340]: getpwnam domain1\ssmith [2005/04/14 10:11:15, 3] lib/charcnv.c:convert_string_allocate(576) ) convert_string_allocate: Conversion error: Illegal multibyte sequence(µ [2005/04/14 10:11:15, 3] nsswitch/winbindd_group.c:winbindd_getgroups(1003) [11340]: getgroups DOMAIN1\ssmith [2005/04/14 10:11:15, 0] sam/idmap_rid.c:rid_idmap_get_id_from_sid(461) rid_idmap_get_id_from_sid: no suitable range available for sid: S-1-5-21-1844237615-1644491937-7253455...
2005 Jun 17
2
Illegal multibyte sequence error in pdbedit output
dear list, in the output of pdbedit -L -v heupink I'm getting these errors: convert_string_allocate: Conversion error: Illegal multibyte sequence(???p? ????????) Any ideas where to look..? Are these serieus errors..? (it looks as if the errors occur BEFORE the actual ldap connection is opened, so I guess they're not ldap related...) My samba is 3.0.14a, and system is sles9 Below find the complete output of pdbedit -L -v heupi...
2005 Mar 11
0
convert_string_allocate: Conversion error: Incomplete multibyte sequence
...rs and groups from the ADS. I am not able to login to the server with ADS user id and password. The winbindd.log has the following error. Please let me know what is the solution for this. ?lib/charcnv.c:convert_string_allocate(567) + convert_string_allocate: Conversion error: Incomplete multibyte sequence? [2005/03/11 10:24:04, 3] lib/charcnv.c:convert_string_allocate(576) P 1^? ^A^?^P?^G^?? ^ClX ^CUH)nversion error: Illegal multibyte sequence(???/??x^ [2005/03/11 10:24:04, 3] lib/charcnv.c:convert_string_allocate(576) 1^? ^A^?^P?^G^?? ^ClX ^CUH)onversion error: Illegal multi...
2009 Oct 15
5
invalid multibyte character error
Hi. When I try to use multibyte characters in my rails controller I get an invalid multibyte characters error (<rails_app>/app/controllers/admin_controller.rb:6: invalid multibyte char (US-ASCII)). Here is my controller: contoller AdminController < ApplicationController def read @title = ''Заголовок стран...
2011 Sep 07
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
As was mentioned once before, the correct solution is to never use multibyte anywhere. Any Windows functions that currently return multibyte strings should be converted to their wide-string (unicode) equivalent, with the result converted to UTF-8. > From: Nikola Smiljanic <popizdeh at gmail.com> > > I think I got it this time. I realized that ::open and ::s...
2016 Nov 29
2
slow directory access, convert_string_internal: Conversion error: Incomplete multibyte sequence
...hine logs shows things like: smbd_dirptr_get_entry mask=[*] found somedirectory/somedirectory/somefile/@�!�P fname=@�!�P (@�!�P) [2016/11/29 18:23:02.279482, 3] lib/charcnv.c:537(convert_string_talloc) convert_string_talloc: Conversion error: Illegal multibyte sequence(�!�P) [2016/11/29 18:23:02.279560, 3] lib/charcnv.c:528(convert_string_talloc) convert_string_talloc: Conversion error: Incomplete multibyte sequence(�P) [2016/11/29 18:23:02.279628, 3] lib/charcnv.c:161(convert_string_internal)...
2008 Sep 02
1
Winbind 3.2.3 error with trusted domains
...sid(247) string_to_sid: Sid S-0-0 is not in a valid format. [2008/08/31 21:06:01, 0] lib/util_sid.c:string_to_sid(247) string_to_sid: Sid S-0-0 is not in a valid format. [2008/08/31 21:06:01, 3] lib/charcnv.c:convert_string_allocate(607) convert_string_allocate: Conversion error: Incomplete multibyte sequence( o * * * ) [2008/08/31 21:06:01, 3] lib/charcnv.c:convert_string_allocate(607) convert_string_allocate: Conversion error: Incomplete multibyte sequence( o * * * ) [2008/08/31 21:06:01, 3] lib/charcnv.c:convert_string_allocate(616) convert_string_allocate: Conversion...
2008 Oct 06
10
DO NOT REPLY [Bug 5811] New: rsync error: error allocating core memory buffers (code 22) at io.c(635)
https://bugzilla.samba.org/show_bug.cgi?id=5811 Summary: rsync error: error allocating core memory buffers (code 22) at io.c(635) Product: rsync Version: 3.0.4 Platform: x64 OS/Version: Linux Status: NEW Severity: blocker Priority: P3 Component: core AssignedTo: wayned@samba.org
2002 Nov 13
1
Does the newest version support Mulitibyte NETBIOS name?
Dear Sir, I remember that I can use multibyte NETBIOS name (just as Traditional Chinese) in Microsoft Windows to talk with the previous version of samba (maybe 2.0.7). But since I use 2.2.3a (which is included in RedHat 7.3), the log file name is incorrect when the client use multibyte NETBIOS name. And when I use the newest version (2.2.6),...
2010 Jun 09
1
[patch] fix bytesize in exception template; multibyte titleize
Hi all, I wanted to draw some attention to a couple of very small multibyte-related patches I believe should be included before Rails 3.0 RC1: * Use String#bytesize rather than String#length in exception templates: This is a simple case where string length is checked, but bytes is needed, so it breaks with string with multibyte chars. https://rails.lighthouseapp.com/pro...
2006 Oct 02
22
Multi Byte Strings
Hey guys, We''ve been talking about the multi-byte patch and I think it''s time to get feedback from you guys on a possible way forward. We can include ActiveSupport::Multibyte with rails 1.2, and update all of the relevant helpers to use the String#chars proxy. This will mean that none of the action view helpers will mangle multibyte strings. Similarly, if any Strings are being mangled in ActiveRecord or anywhere else, we''ll accept patches to fix them. But an...
2012 Sep 25
2
OpenSSH banner doesnot display multibyte characters like korean
...ayed on the screen contain octal values instead of korean chars. Prior to ssh 5.1 the banner message would display the charaters properly. I understand that starting from 5.1 the message is passed through strnvis() function. I looked into documentation on strnvis and found that it does not support multibyte chars and doesnt work well with international chars. Could you please share any workaround to display international chars like korean in banner message. I also found little information inthe changelog on why strnvis() was introduced in input_userauth_banner. Is it added to address any security vu...
2010 Aug 02
1
Multibyte characters in (row) names
I have an array with names which contain multibyte characters. ?When I try to write the array to a file using write.table and row.names = T I receive an error message when the first such name is encountered, saying that I have not specified the option to generate NA instead. ?I really would be satisfied if the row name in the file were exactly what...
2011 Sep 07
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
The problem is not in the functions that return multibyte strings (the multibyte string is coming from argv) but in the functions that can't handle utf8 input on windows, such as ::open and ::stat. llvm::sys::fs module assumes utf8 input and I don't think this is true for windows. One solution would be to make the module work with multibyte strin...
2013 Sep 05
1
Conversion error: Illegal multibyte sequence
...ent lengths. [2013/09/05 20:43:50.280597, 3] smbd/dir.c:1046(smbd_dirptr_get_entry) smbd_dirptr_get_entry mask=[*] found ./?_Corbeille fname=?_Corbeille (?_Corbeille) [2013/09/05 20:43:50.280641, 3] lib/charcnv.c:161(convert_string_internal) convert_string_internal: Conversion error: Illegal multibyte sequence(?_Corbeille) [2013/09/05 20:43:50.280679, 3] lib/charcnv.c:140(convert_string_internal) convert_string_internal: Conversion error: Incomplete multibyte sequence(??_Corbeille) [2013/09/05 20:43:50.280715, 3] lib/charcnv.c:140(convert_string_internal) convert_string_internal: Conversio...
2006 Oct 26
1
Error: invalid multibyte string
I'm observing the following on different platforms: > parse(text='"\\x7F"') expression("\177") > parse(text='"\\x80"') Error: invalid multibyte string ... > parse(text='"\\xFF"') Error: invalid multibyte string However, cat("\x7F\n\x80\n...\xFF\n") works. Using R --vanilla. SYSTEMS GIVING THE ERROR: > sessionInfo() R version 2.4.0 (2006-10-03) x86_64-unknown-linux-gnu locale: LC_CTYPE=en_AU.UTF-8;LC_N...
2011 Sep 07
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
On Tue, Sep 6, 2011 at 11:28 PM, Nikola Smiljanic <popizdeh at gmail.com> wrote: > The problem is not in the functions that return multibyte strings (the > multibyte string is coming from argv) argv is implicitly the return from a UTF16->multibyte conversion (i.e. it's lossy). -Eli
2016 Nov 30
0
slow directory access, convert_string_internal: Conversion error: Incomplete multibyte sequence
...gt; > > smbd_dirptr_get_entry mask=[*] found > somedirectory/somedirectory/somefile/@�!�P fname=@�!�P (@�!�P) > [2016/11/29 18:23:02.279482, 3] > lib/charcnv.c:537(convert_string_talloc) > convert_string_talloc: Conversion error: Illegal multibyte > sequence(�!�P) > [2016/11/29 18:23:02.279560, 3] > lib/charcnv.c:528(convert_string_talloc) > convert_string_talloc: Conversion error: Incomplete multibyte > sequence(�P) > [2016/11/29 18:23:02.279628, 3] > lib/charcnv.c:1...
2008 Mar 23
1
Errors: Conversion error: Illegal multibyte sequence ...
...4 (Nahant Update 6). The server is set to be a part of the Windows AD domain. The domain name is IIS. In the /var/log/samba/wb-IIS.log I keep getting the messages similar to: [2008/03/23 09:01:01, 3] lib/charcnv.c:convert_string_internal(265) ? ? convert_string_internal: Conversion error: Illegal multibyte sequence (?`??*U) [2008/03/23 09:01:01, 3] lib/charcnv.c:convert_string_internal(265) ? ?convert_string_internal: Conversion error: Illegal multibyte sequence (??*U) I've seen that questions about these messages have been already asked in this list, but unfortunately I have not find any satisf...