Re: [Midnight Commander] #2: savannah: UTF-8 locales not supported

2009-01-06 Thread Vladimir Nadvornik
Hi all, On po 5. ledna 2009, Ticket System wrote: > #2: savannah: UTF-8 locales not supported > -+- >- Reporter: slavazanko | Owner: slavazanko > Type: defect | Status: accepted > Priority: major

[bug #24505] loading X11 library is broken

2008-10-09 Thread Vladimir Nadvornik
URL: Summary: loading X11 library is broken Project: GNU Midnight Commander Submitted by: nadvornik Submitted on: Thu 09 Oct 2008 09:55:07 AM GMT Category: Keyboard input

Re: comparing our patches

2008-03-14 Thread Vladimir Nadvornik
On neděle 09 březen 2008, Patrick Winnertz wrote: > Hello, > I guess a good start to get a repository with a set of all of our patches > is > to get a overview about all of them, in order to find patches which are > identical in every distribution. > > In order to do this I've set up a git reposito

Re: mc and utf-8 again but different

2007-11-22 Thread Vladimir Nadvornik
ken sequences, i.e. it should be possible to copy a file with 8859 name even if mc is in utf-8 mode. Both versions of utf-8 patch replace the invalid utf-8 sequences with questionmarks in target file name. -- Vladimir Nadvornik ___ Mc-devel mailing li

Re: mc and utf-8 again but different

2007-11-14 Thread Vladimir Nadvornik
n utf-8 xterm and it does not work. It seems that a call to SLutf8_enable(-1) in slang_init() is missing. What version of slang did you use? -- Vladimir Nadvornik ___ Mc-devel mailing list http://mail.gnome.org/mailman/listinfo/mc-devel

Re: Various small fixes to 4.6.2-pre1

2007-11-02 Thread Vladimir Nadvornik
On čtvrtek 01 listopad 2007, Oswald Buddenhagen wrote: > On Thu, Nov 01, 2007 at 04:48:02PM +0100, Vladimir Nadvornik wrote: > > --- mc-4.6.2-pre1/vfs/smbfs.c > > -result = g_strconcat (my_remote, trailing_asterik ? "/*" : "", 0); > > +result =

Various small fixes to 4.6.2-pre1

2007-11-01 Thread Vladimir Nadvornik
Vladimir Nadvornik --- edit/editlock.c +++ edit/editlock.c @@ -69,9 +69,11 @@ lock_build_name (void) { char host[BUF_SIZE]; -const char *user; +const char *user = NULL; +struct passwd *pw; -user = getpwuid (getuid ())->pw_name; +pw = getpwuid (getuid ()); +if

Re: xterm title in the prompt

2007-11-01 Thread Vladimir Nadvornik
and \007. The patch removes > this sequence. > Here is a similar patch that removes ESC(B sequence, which appears in default prompt on openSUSE 10.3. Vladimir Nadvornik --- src/util.c +++ src/util.c @@ -1193,6 +1193,8 @@ /* strchr() matches trailing binary 0 */ while (*(++r) &&

Re: Switching the internal editor between byte and UTF-8 mode

2007-10-22 Thread Vladimir Nadvornik
ave time to implement it, it's just that it would be > nice to have. :) > Vladimir Nadvornik ___ Mc-devel mailing list http://mail.gnome.org/mailman/listinfo/mc-devel

[bug #19328] MC fail to notice when archive is replaced

2007-05-18 Thread Vladimir Nadvornik
Follow-up Comment #1, bug #19328 (project mc): Some VFS (for example tar and cpio) can detect changed archives, others (bzip, extfs) can't. There is no consistent support of change detection in VFS. ___ Reply to this item at:

Re: Request for discussion - how to make MC unicode capable

2007-02-26 Thread Vladimir Nadvornik
) can't be used for converting to utf-8 where the string actually grows. With the current utf-8 patches charsets can't be used in utf-8 locales. -- Vladimir Nadvornik developer - SUSE LINUX, s. r

Re: utf8 patch for mc, slang 2 version

2006-06-14 Thread Vladimir Nadvornik
ed with Fedora. > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. > Good idea. However we need a long-term solution. We should discuss what must be done to have UTF support in upstream. -- Vladimir Nadvornik __

Re: utf8 patch for mc, slang 2 version

2006-06-08 Thread Vladimir Nadvornik
idea is to replace all occurrences of SLsmg_write_char with the now fixed SLsmg_write_nwchars, because it is the only way that works in all locales. -- Vladimir Nadvornik ___ Mc-devel mailing list http://mail.gnome.org/mailman/listinfo/mc-devel

Re: utf8 patch for mc, slang 2 version

2006-06-07 Thread Vladimir Nadvornik
o be fully compatible with the slang1 version and uses it consistently instead of SLsmg_write_char(). It should be applied on top of all the previous patches. -- Vladimir Nadvornik developer - SuSE CR, s.r.o.

[bug #15576] Switching panels in long mode

2006-01-30 Thread Vladimir Nadvornik
URL: Summary: Switching panels in long mode Project: GNU Midnight Commander Submitted by: nadvornik Submitted on: Mon 01/30/06 at 16:58 Category: Core