similar to: Unicode in client? (was c cedilla problem)

Displaying 20 results from an estimated 3000 matches similar to: "Unicode in client? (was c cedilla problem)"

2000 May 04
0
C cedilla problem
Hi, I'm having a problem with Samba (which is strange because I don't usually have any problems with Samba). I have the following directories on a Windows NT 4.0 server, as I see them from my SuSE Linux 6.3 box with Samba 2.0.7 (self-compiled). Both the Linux and Windows box are the English versions, however we're using Portuguese language filenames. .
2013 Jun 08
1
reading a character translation table into R
I have a txt file (attached) that defines equivalents among characters in latin1 (or iso-8859-1), numeric &#xxx; codes, HTML entities and latex equivalents. A portion of the file is shown inline below, but may not be rendered well in this email. I'd like to read this into R to use as a character translation table, but am stuck on two things: - The 5 fields in the file are
2002 Sep 02
1
incomplete smbmount smbfs Win98SE iso8859-1 translation in kernel 2.4.18
I'm getting only partial iso8859-1 translation from an smbfs mount from my Win98SE machine. The smbfs mounted file system shows most lower-case accented characters fine; but, it substitutes underscores for most of the upper-case accented characters (and a few lower-case ones too): # uname -a Linux elm 2.4.18-8.1mdkian3 #7 Sat Aug 17 15:19:44 EDT 2002 i686 unknown (Mandrake 8.2 Linux with all
2003 Dec 01
0
No subject
8. You have join to this mail a text file with the few characters that don't = match. On Swat, it's easier. = I use Swat from my win98 box. When I write a share comment with some chara= cters, there are not translated properly inside smb.conf file. = When I read my smb.conf file, I noticed that for example a cp1252 characte= r like (0xC1) has been changed onto an ISO8859-15 character
2018 Nov 29
2
virsh console and other language keymaps
Hi, I've got a small vm server running kvm + libvirt, and I made a simple shell script that allows users to ssh in and control their vms (power off, etc). However, one of my users uses the french canadian keyboard layout on her home computer, and upon being told "escape character is ^]" expected to need to press ctrl+right-alt_] (] being in the same location it is on a US keyboard).
2008 Sep 04
0
[ANNOUNCE] libX11 1.1.5
Hi, This is just an i18n and bugfix release, essentially. Most of the fixes bar James's most recent ones have been in 1.1 branch for a while, and the rest were just cherry-picked from master. Per discussion on ajax with IRC, this is targeted at 7.4, so I've bumped the archive and wiki both. Adam Jackson (1): Bug #15884: Remove useless sleep()'s from the connection code. Alan
2008 Nov 05
0
[ANNOUNCE] libX11 1.1.99.2
Together with the usual bug fixes and compose and keysym updates, this release candidate brings support for Generic Events (XGE), and makes use of libxcb's new socket handoff mechanism. The shortlog from 1.1.5 follows. Adam Jackson (2): Bug #14898: Don't abuse the sprintf() implementation. Fix the previous patch for the BadFont case. Alan Coopersmith (3): Strip
2006 Jun 08
1
ss->translate > 0.001f makes my compiz working slow
plugin/switcher.c:1290: if (ss->grabIndex || (ss->zooming && ss->translate > 0.001f)) that line you have added 2006-06-06 and this made my compiz extremely slow. I am changing it back to `if (ss->grabIndex || ss->zooming)' after every cvs update and it makes compiz working propely. FreeBSD 6.1, ATI Mobility Radeon M7 LW [Mobility Raden 7500], driver "radeon"
2004 Feb 11
1
Fwd: samba problem
Hi samba-technical, i installed samba propely and configured it as a domain server of my LAN , and at the same time as a gateway (with a firewall) to the Internet. Initially before configuring the firewall and connecting to the internet, samba was working properly. But after connecting to the intrenet and activating the firewall samba couldn't work i'll be gratefull for your advice
2009 Oct 14
1
using mapply to avoid loops
Hello, I would like to use mapply to avoid using a loop but for some reason, I can't seem to get it to work. I've included copies of my code below. The first set of code uses a loop (and it works fine), and the second set of code attempts to use mapply but I get a "subscript out of bounds" error. Any guidance would be greatly appreciated. Xj, Yj, and Wj are also lists, and s2,
2019 Jun 14
1
[R] Open a file which name contains a tilde
Hi John, First, the unix and linux filesystem allows the use of any nonzero character in its filesystem filenames and the c functions open / fopen, symlink. rename, chdir and so on don't care about any tilde. If the open systemcall gets a file which begins with a tilde then it will try to open this filename without any preceding modification. So the tilde expansion is not really a unix
2008 Nov 14
1
Unable to install Cairo package
Hello: I'm running R 2.7.1 in Antix (Mepis kernel but heavily debian based). I have installed libcairo2 (1.6.4-6.1). I tried installing the Cairo package since I'm interested in generating some SVG graphs, and I got the following message: Only partial output (lines with no): .... checking if R was compiled with the RConn patch... no checking cairo.h usability... yes checking cairo.h
2012 Aug 09
2
[LLVMdev] The use-define chain in LLVM
Thanks for your response! But I want to determine wheter the specific variable's value has been changed between two usages of variable, and wheter the parameter's value is changed in a function. Like the reaching definition analysis, and ud chains. 2012/8/9 ��f�� (Wei-Ren Chen) <chenwj at iis.sinica.edu.tw>: > On Thu, Aug 09, 2012 at 11:16:15AM +0800, Jianfei Hu wrote: >>
2019 Jun 13
0
[R] Open a file which name contains a tilde
At the risk of looking silly, note that all of this is now largely moot anyway (or will be with the next release of R), thanks to Kurt Hornik's fixing of the bug in question (which he announced on this thread prior to but I read after Paul's). ~G On Wed, Jun 12, 2019 at 11:51 PM Gabriel Becker <gabembecker at gmail.com> wrote: > > > On Wed, Jun 12, 2019, 5:16 AM Paul
2017 Jun 27
0
paste strings in C
To do this in C, it would probably be easier and faster to just do the string manipulation directly. Luckily, there are already packages that have done this for you. See an example below using the S4Vectors package. foo2 <- function(mymat, colnms, tilde=FALSE) { chars <- colnms[col(mymat)] lowerChars <- if (tilde) paste0("~", chars) else tolower(chars) chars <-
2019 Jun 12
0
[R] Open a file which name contains a tilde
@ Gabriel: "Avoid tilde in file names": Not quite. A tilde *suffix* is commonly used by *nix editors for backup files https://unix.stackexchange.com/questions/76189/what-does-the-tilde-mean-at-the-end-of-a-filename On Wed, Jun 12, 2019 at 2:43 AM Kurt Hornik <Kurt.Hornik at wu.ac.at> wrote: > >>>>> Duncan Murdoch writes: > > With c76695 in the trunk, we
2006 Apr 13
1
xmkmf? problem
I am having the xmkmf problem below with todays beta, but I also am trying to use an new (PGI 6.1), so lots of other things in my setup may be wrong, and the warning may also be important. Any hints would be appreciated. Paul _____ Red Hat Enterprise Linux AS release 3 (Taroon Update 7) .... checking whether C runtime needs -D__NO_MATH_INLINES... no checking for xmkmf...
2012 Aug 09
0
[LLVMdev] The use-define chain in LLVM
On Thu, Aug 9, 2012 at 6:57 AM, Jianfei Hu <hujianfei258 at gmail.com> wrote: > Thanks for your response! > > But I want to determine wheter the specific variable's value has been > changed between > two usages of variable, and wheter the parameter's value is changed in > a function. Like the > reaching definition analysis, and ud chains. > > > 2012/8/9
2006 Mar 24
2
ajax redirection
Hi, Is there a simple way to redirect towards another page (controller, action) when using form_remote_tag ? I used it tipically to check fields of a account login form. I''d like if the user exists, he''s redirected towards another page, otherwise I display some error div''s. Any ideas ? Thanks a lot. Seb
2004 Jan 13
1
Long filenames and 8.3 conversion
Hello List, Can anyone please help explain how Samba handles long filename conversion to DOS 8.3 tilde format? I have a client with a Windows app that works great when using 8.3 type filenames. When an attempt to use long filenames is made, the files are created great and the data is there. But when the app builds the index and attempt to retrieve the data file is made, the wrong file is